8#include <kea_version.h>
115#include <boost/algorithm/string/erase.hpp>
116#include <boost/algorithm/string/join.hpp>
117#include <boost/algorithm/string/split.hpp>
118#include <boost/foreach.hpp>
119#include <boost/tokenizer.hpp>
133namespace ph = std::placeholders;
139 int hook_index_buffer6_receive_;
140 int hook_index_pkt6_receive_;
141 int hook_index_subnet6_select_;
142 int hook_index_leases6_committed_;
143 int hook_index_lease6_release_;
144 int hook_index_pkt6_send_;
145 int hook_index_buffer6_send_;
146 int hook_index_lease6_decline_;
147 int hook_index_host6_identifier_;
148 int hook_index_ddns6_update_;
149 int hook_index_addr6_register_;
185createStatusCode(
const Pkt6& pkt,
const uint16_t status_code,
186 const std::string& status_message) {
191 .arg(option_status->dataToText());
192 return (option_status);
210createStatusCode(
const Pkt6& pkt,
const Option6IA& ia,
const uint16_t status_code,
211 const std::string& status_message) {
217 .arg(option_status->dataToText());
218 return (option_status);
223std::set<std::string> dhcp6_statistics = {
225 "pkt6-solicit-received",
226 "pkt6-advertise-received",
227 "pkt6-request-received",
228 "pkt6-reply-received",
229 "pkt6-renew-received",
230 "pkt6-rebind-received",
231 "pkt6-decline-received",
232 "pkt6-release-received",
233 "pkt6-infrequest-received",
234 "pkt6-dhcpv4-query-received",
235 "pkt6-dhcpv4-response-received",
236 "pkt6-addr-reg-inform-received",
237 "pkt6-addr-reg-reply-received",
238 "pkt6-unknown-received",
240 "pkt6-advertise-sent",
242 "pkt6-dhcpv4-response-sent",
243 "pkt6-addr-reg-reply-sent",
244 "pkt6-service-disabled",
247 "pkt6-rfc-violation",
248 "pkt6-admin-filtered",
250 "pkt6-processing-failed",
251 "pkt6-limit-exceeded",
253 "v6-allocation-fail",
254 "v6-allocation-fail-shared-network",
255 "v6-allocation-fail-subnet",
256 "v6-allocation-fail-no-pools",
257 "v6-allocation-fail-classes",
258 "v6-ia-na-lease-reuses",
259 "v6-ia-pd-lease-reuses",
302 }
catch (
const std::exception &e) {
318 for (
auto const& it : dhcp6_statistics) {
320 stats_mgr.
setValue(it,
static_cast<int64_t
>(0));
330 }
catch (
const std::exception& ex) {
337 }
catch (
const std::exception& ex) {
356 if (!names.empty()) {
358 for (
size_t i = 1; i < names.size(); ++i) {
359 msg += std::string(
", ") + names[i];
365 io_service_->stopAndPoll();
391 if (
getServerID()->getData() != server_id->getData()){
393 .arg(pkt->getLabel())
397 static_cast<int64_t
>(1));
407 switch (pkt->getType()) {
412 if (pkt->relay_info_.empty() && !pkt->getLocalAddr().isV6Multicast()) {
414 .arg(pkt->getLabel())
415 .arg(pkt->getName());
417 static_cast<int64_t
>(1));
432 for (
auto const& id_type : cfg->getIdentifierTypes()) {
453 std::vector<uint8_t> id;
462 callout_handle->setArgument(
"query6", ctx.
query_);
463 callout_handle->setArgument(
"id_type", type);
464 callout_handle->setArgument(
"id_value",
id);
470 callout_handle->getArgument(
"id_type", type);
471 callout_handle->getArgument(
"id_value",
id);
477 .arg(ctx.
query_->getLabel())
497 ctx.
duid_ = query->getClientId();
524 if (global_host && !global_host->getClientClasses6().empty()) {
529 const ClientClasses& classes = global_host->getClientClasses6();
530 for (
auto const& cclass : classes) {
531 query->addClass(cclass);
540 query->addClass(
"KNOWN");
542 .arg(query->getLabel())
549 if (query->inClass(
"DROP")) {
552 .arg(query->makeLabel(query->getClientId(),
nullptr))
553 .arg(query->toText());
555 static_cast<int64_t
>(1));
557 static_cast<int64_t
>(1));
562 ctx.
hosts_[SUBNET_ID_GLOBAL] = global_host;
596 ctx.
subnet_->getSharedNetwork(sn);
608 global_host && !global_host->getClientClasses6().empty()) ||
609 (!sn && current_host && !current_host->getClientClasses6().empty())) {
630 if (!ctx.
hosts_.empty()) {
631 ctx.
query_->addClass(
"KNOWN");
633 .arg(ctx.
query_->getLabel())
636 ctx.
query_->addClass(
"UNKNOWN");
638 .arg(ctx.
query_->getLabel())
647 .arg(ctx.
query_->getLabel())
651 if (ctx.
query_->inClass(
"DROP")) {
653 .arg(ctx.
query_->makeLabel(ctx.
query_->getClientId(), 0))
654 .arg(ctx.
query_->toText());
656 static_cast<int64_t
>(1));
658 static_cast<int64_t
>(1));
670 const char*
interface = getenv(
"KEA_AFL_INTERFACE");
672 isc_throw(FuzzInitFail,
"no fuzzing interface has been set");
676 const char* address = getenv(
"KEA_AFL_ADDRESS");
678 isc_throw(FuzzInitFail,
"no fuzzing address has been set");
686 while (__AFL_LOOP(fuzzer.maxLoopCount())) {
698 }
catch (
const std::exception& e) {
729 uint32_t timeout = 1;
740 .arg(query->getRemoteAddr().toText())
741 .arg(query->getRemotePort())
742 .arg(query->getLocalAddr().toText())
743 .arg(query->getLocalPort())
744 .arg(query->getIface());
766 }
catch (
const std::exception& e) {
780 .arg(query->getLabel());
783 static_cast<int64_t
>(1));
785 static_cast<int64_t
>(1));
789 query->addPktEvent(
"mt_queued");
790 typedef function<void()> CallBack;
791 boost::shared_ptr<CallBack> call_back =
797 static_cast<int64_t
>(1));
799 static_cast<int64_t
>(1));
811 }
catch (
const std::exception& e) {
813 .arg(query->getLabel())
816 static_cast<int64_t
>(1));
818 static_cast<int64_t
>(1));
821 .arg(query->getLabel());
823 static_cast<int64_t
>(1));
825 static_cast<int64_t
>(1));
842 query->addPktEvent(
"process_started");
845 query->addClass(
"ALL");
847 bool skip_unpack =
false;
864 callout_handle->setArgument(
"query6", query);
875 .arg(query->getRemoteAddr().toText())
876 .arg(query->getLocalAddr().toText())
877 .arg(query->getIface());
886 .arg(query->getRemoteAddr().toText())
887 .arg(query->getLocalAddr().toText())
888 .arg(query->getIface());
895 callout_handle->getArgument(
"query6", query);
907 .arg(query->getRemoteAddr().toText())
908 .arg(query->getLocalAddr().toText())
909 .arg(query->getIface());
916 .arg(query->getLabel())
918 }
catch (
const std::exception &e) {
921 .arg(query->getLabel())
922 .arg(query->getRemoteAddr().toText())
923 .arg(query->getLocalAddr().toText())
924 .arg(query->getIface())
926 .arg(query->makeLabel(query->getClientId(),
nullptr));
930 static_cast<int64_t
>(1));
932 static_cast<int64_t
>(1));
939 .arg(query->getLabel());
942 processStatsReceived(query);
951 static_cast<int64_t
>(1));
962 static_cast<int64_t
>(1));
970 .arg(query->getLabel())
971 .arg(query->getName())
972 .arg(
static_cast<int>(query->getType()))
973 .arg(query->getRemoteAddr())
974 .arg(query->getLocalAddr())
975 .arg(query->getIface());
977 .arg(query->getLabel())
978 .arg(query->toText());
996 callout_handle->setArgument(
"query6", query);
1007 .arg(query->getLabel());
1013 callout_handle->getArgument(
"query6", query);
1027 if (query->inClass(
"DROP")) {
1029 .arg(query->makeLabel(query->getClientId(),
nullptr))
1030 .arg(query->toText());
1032 static_cast<int64_t
>(1));
1034 static_cast<int64_t
>(1));
1051 }
catch (
const std::exception& e) {
1053 .arg(query->getLabel())
1056 static_cast<int64_t
>(1));
1058 static_cast<int64_t
>(1));
1061 .arg(query->getLabel());
1063 static_cast<int64_t
>(1));
1065 static_cast<int64_t
>(1));
1086 if (!client_handler.
tryLock(query, cont)) {
1126 }
catch (
const std::exception& e) {
1128 .arg(query->getLabel())
1131 static_cast<int64_t
>(1));
1133 static_cast<int64_t
>(1));
1136 .arg(query->getLabel());
1138 static_cast<int64_t
>(1));
1140 static_cast<int64_t
>(1));
1153 callout_handle->getContext(
"subnet6", ctx.
subnet_);
1173 bool rfc_violation =
false;
1176 switch (query->getType()) {
1217 rfc_violation =
true;
1220 }
catch (
const std::exception& e) {
1230 .arg(query->getLabel())
1231 .arg(query->getName())
1232 .arg(query->getRemoteAddr().toText())
1237 if (!rfc_violation) {
1239 static_cast<int64_t
>(1));
1242 static_cast<int64_t
>(1));
1262 rsp->setRemoteAddr(query->getRemoteAddr());
1263 rsp->setLocalAddr(query->getLocalAddr());
1268 }
else if (rsp->relay_info_.empty()) {
1270 rsp->setRemotePort(DHCP6_CLIENT_PORT);
1274 rsp->setRemotePort(relay_port ? relay_port : DHCP6_SERVER_PORT);
1280 rsp->setLocalPort(DHCP6_SERVER_PORT);
1282 rsp->setIndex(query->getIndex());
1283 rsp->setIface(query->getIface());
1312 std::shared_ptr<ScopedCalloutHandleState> callout_handle_state =
1313 std::make_shared<ScopedCalloutHandleState>(callout_handle);
1318 callout_handle->setArgument(
"query6", query);
1322 callout_handle->setArgument(
"response6", rsp);
1328 if (new_lease->reuseable_valid_lft_ == 0) {
1329 new_leases->push_back(new_lease);
1333 callout_handle->setArgument(
"leases6", new_leases);
1338 for (
auto const& iac : ctx.
ias_) {
1339 if (!iac.old_leases_.empty()) {
1340 for (
auto const& old_lease : iac.old_leases_) {
1342 deleted_leases->push_back(old_lease);
1345 bool in_new =
false;
1347 if ((new_lease->addr_ == old_lease->addr_) &&
1349 (new_lease->prefixlen_ == old_lease->prefixlen_))) {
1355 deleted_leases->push_back(old_lease);
1360 callout_handle->setArgument(
"deleted_leases6", deleted_leases);
1363 uint32_t parked_packet_limit = 0;
1367 parked_packet_limit = ppl->intValue();
1370 if (parked_packet_limit) {
1372 getParkingLotPtr(
"leases6_committed");
1373 if (parking_lot && (parking_lot->size() >= parked_packet_limit)) {
1377 .arg(parked_packet_limit)
1378 .arg(query->getLabel());
1380 static_cast<int64_t
>(1));
1382 static_cast<int64_t
>(1));
1394 [
this, callout_handle, query, rsp, callout_handle_state, subnet]()
mutable {
1396 typedef function<void()> CallBack;
1397 boost::shared_ptr<CallBack> call_back =
1399 this, callout_handle, query, rsp, subnet));
1400 callout_handle_state->on_completion_ = [call_back]() {
1421 .arg(query->getLabel());
1432 .arg(query->getLabel());
1453 }
catch (
const std::exception& e) {
1455 .arg(query->getLabel())
1459 .arg(query->getLabel());
1467 query->addPktEvent(
"process_completed");
1473 bool skip_pack =
false;
1491 callout_handle->setArgument(
"query6", query);
1494 callout_handle->setArgument(
"response6", rsp);
1497 callout_handle->setArgument(
"subnet6", subnet);
1509 .arg(rsp->getLabel());
1516 .arg(rsp->getLabel());
1526 }
catch (
const std::exception& e) {
1528 .arg(query->getLabel())
1560 callout_handle->setArgument(
"response6", rsp);
1573 .arg(rsp->getLabel());
1577 callout_handle->getArgument(
"response6", rsp);
1581 .arg(rsp->getLabel())
1582 .arg(rsp->getName())
1583 .arg(
static_cast<int>(rsp->getType()))
1584 .arg(rsp->getLocalAddr().isV6Zero() ?
"*" : rsp->getLocalAddr().toText())
1585 .arg(rsp->getLocalPort())
1586 .arg(rsp->getRemoteAddr())
1587 .arg(rsp->getRemotePort())
1588 .arg(rsp->getIface());
1591 .arg(rsp->getLabel())
1592 .arg(rsp->getName())
1593 .arg(
static_cast<int>(rsp->getType()))
1594 .arg(rsp->toText());
1600 }
catch (
const std::exception& e) {
1602 .arg(rsp->getLabel())
1614 for (
auto const& it :
data) {
1618 tmp << hex << setw(2) << setfill('0') << static_cast<uint16_t>(it);
1632 answer->addOption(clientid);
1637 if (!question->relay_info_.empty()) {
1638 answer->copyRelayInfo(question);
1656 co_list.push_back(ctx.
currentHost()->getCfgOption6());
1664 ctx.
subnet_->getPool(resource.getPrefixLength() == 128 ?
1666 resource.getAddress(),
1668 if (pool && !pool->getCfgOption()->empty()) {
1669 co_list.push_back(pool->getCfgOption());
1674 if (!ctx.
subnet_->getCfgOption()->empty()) {
1675 co_list.push_back(ctx.
subnet_->getCfgOption());
1680 ctx.
subnet_->getSharedNetwork(network);
1681 if (network && !network->getCfgOption()->empty()) {
1682 co_list.push_back(network->getCfgOption());
1688 for (
auto const& cclass : classes) {
1691 getClientClassDictionary()->findClass(cclass);
1696 .arg(question->getLabel())
1703 if (ccdef->getCfgOption()->empty()) {
1708 co_list.push_back(ccdef->getCfgOption());
1721 if (co_list.empty()) {
1725 set<uint16_t> requested_opts;
1734 for (uint16_t code : option_oro->getValues()) {
1735 static_cast<void>(requested_opts.insert(code));
1739 set<uint16_t> cancelled_opts;
1743 for (
auto const& copts : co_list) {
1751 BOOST_FOREACH(
auto const& desc, prange) {
1754 uint16_t code = desc.option_->getType();
1755 static_cast<void>(requested_opts.insert(code));
1761 BOOST_FOREACH(
auto const& desc, crange) {
1764 uint16_t code = desc.option_->getType();
1765 static_cast<void>(cancelled_opts.insert(code));
1770 const auto& cclasses = question->getClasses();
1773 for (uint16_t opt : requested_opts) {
1775 if (cancelled_opts.count(opt) > 0) {
1783 if (!answer->getOption(opt)) {
1785 for (
auto const& copts : co_list) {
1790 answer->addOption(desc.
option_);
1803 set<uint32_t> vendor_ids;
1807 vendor_class = boost::dynamic_pointer_cast<OptionVendorClass>(opt.second);
1809 uint32_t vendor_id = vendor_class->getVendorId();
1810 static_cast<void>(vendor_ids.insert(vendor_id));
1814 for (
auto const& copts : co_list) {
1817 if (!desc.option_ || !desc.allowedForClientClasses(cclasses)) {
1821 boost::dynamic_pointer_cast<OptionVendorClass>(desc.option_);
1822 if (!vendor_class) {
1826 uint32_t vendor_id = vendor_class->getVendorId();
1827 if (vendor_ids.count(vendor_id) > 0) {
1831 answer->addOption(desc.option_);
1832 static_cast<void>(vendor_ids.insert(vendor_id));
1841 set<uint32_t> vendor_ids;
1845 vendor_opts = boost::dynamic_pointer_cast<OptionVendor>(opt.second);
1847 uint32_t vendor_id = vendor_opts->getVendorId();
1848 static_cast<void>(vendor_ids.insert(vendor_id));
1852 for (
auto const& copts : co_list) {
1855 if (!desc.option_ || !desc.allowedForClientClasses(cclasses)) {
1859 boost::dynamic_pointer_cast<OptionVendor>(desc.option_);
1864 uint32_t vendor_id = vendor_opts->getVendorId();
1865 if (vendor_ids.count(vendor_id) > 0) {
1871 answer->addOption(vendor_opts);
1872 static_cast<void>(vendor_ids.insert(vendor_id));
1891 if (!ctx.
subnet_ || co_list.empty()) {
1895 set<uint32_t> vendor_ids;
1899 map<uint32_t, OptionVendorPtr> vendor_rsps;
1902 vendor_rsp = boost::dynamic_pointer_cast<OptionVendor>(opt.second);
1904 uint32_t vendor_id = vendor_rsp->getVendorId();
1905 vendor_rsps[vendor_id] = vendor_rsp;
1906 static_cast<void>(vendor_ids.insert(vendor_id));
1912 map<uint32_t, OptionVendorPtr> vendor_reqs;
1915 vendor_req = boost::dynamic_pointer_cast<OptionVendor>(opt.second);
1917 uint32_t vendor_id = vendor_req->getVendorId();
1918 vendor_reqs[vendor_id] = vendor_req;
1919 static_cast<void>(vendor_ids.insert(vendor_id));
1927 vendor_class = boost::dynamic_pointer_cast<OptionVendorClass>(opt.second);
1929 uint32_t vendor_id = vendor_class->getVendorId();
1930 static_cast<void>(vendor_ids.insert(vendor_id));
1936 if (vendor_ids.empty()) {
1940 map<uint32_t, set<uint16_t> > requested_opts;
1954 oro = boost::dynamic_pointer_cast<OptionUint16Array>(oro_generic);
1957 set<uint16_t> oro_req_opts;
1958 for (uint16_t code : oro->getValues()) {
1959 static_cast<void>(oro_req_opts.insert(code));
1965 map<uint32_t, set<uint16_t> > cancelled_opts;
1966 const auto& cclasses = question->getClasses();
1970 for (uint32_t vendor_id : vendor_ids) {
1971 for (
auto const& copts : co_list) {
1979 BOOST_FOREACH(
auto const& desc, prange) {
1980 if (!desc.option_) {
1984 uint16_t code = desc.option_->getType();
1985 static_cast<void>(requested_opts[vendor_id].insert(code));
1990 BOOST_FOREACH(
auto const& desc, crange) {
1991 if (!desc.option_) {
1995 uint16_t code = desc.option_->getType();
1996 static_cast<void>(cancelled_opts[vendor_id].insert(code));
2005 if (requested_opts[vendor_id].empty()) {
2012 if (vendor_rsps.count(vendor_id) > 0) {
2013 vendor_rsp = vendor_rsps[vendor_id];
2021 for (uint16_t opt : requested_opts[vendor_id]) {
2022 if (cancelled_opts[vendor_id].count(opt) > 0) {
2025 if (!vendor_rsp->getOption(opt)) {
2026 for (
auto const& copts : co_list) {
2031 vendor_rsp->addOption(desc.
option_);
2041 if (added && (vendor_rsps.count(vendor_id) == 0)) {
2042 answer->addOption(vendor_rsp);
2050 switch (pkt->getType()) {
2073 .arg(pkt->getLabel())
2074 .arg(
static_cast<int>(pkt->getType()))
2075 .arg(pkt->getIface());
2080 .arg(pkt->getLabel())
2081 .arg(pkt->getName())
2082 .arg(pkt->getRemoteAddr().toText())
2085 static_cast<int64_t
>(1));
2099 if (client_ids.size() != 1) {
2101 << pkt->getName() <<
", but " << client_ids.size()
2108 if (client_ids.size() > 1) {
2110 <<
") client-id options received in " << pkt->getName());
2112 if (!client_ids.empty()) {
2125 if (!server_ids.empty()) {
2127 << server_ids.size() <<
" received in " << pkt->getName());
2132 if (server_ids.size() != 1) {
2134 << server_ids.size() <<
"), exactly 1 expected in message "
2141 if (server_ids.size() > 1) {
2143 <<
") server-id options received in " << pkt->getName());
2145 if (!server_ids.empty()) {
2158 uint16_t len = opt->len() - opt->getHeaderLen();
2171 getCfgSubnets6()->selectSubnet(selector);
2181 shared_ptr<ScopedCalloutHandleState> callout_handle_state(
2182 std::make_shared<ScopedCalloutHandleState>(callout_handle));
2188 callout_handle->setArgument(
"query6", question);
2189 callout_handle->setArgument(
"subnet6", subnet);
2194 callout_handle->setArgument(
"subnet6collection",
2196 getCfgSubnets6()->getAll());
2198 auto const tpl(parkingLimitExceeded(
"subnet6_select"));
2199 bool const exceeded(
get<0>(tpl));
2201 uint32_t
const limit(
get<1>(tpl));
2206 .arg(question->getLabel());
2208 static_cast<int64_t
>(1));
2210 static_cast<int64_t
>(1));
2217 HooksManager::park(
"subnet6_select", question, [
this, question, callout_handle_state]() {
2219 boost::shared_ptr<function<void()>> callback(
2220 boost::make_shared<function<
void()>>([
this, question]()
mutable {
2223 callout_handle_state->on_completion_ = [callback]() {
2245 .arg(question->getLabel());
2258 .arg(question->getLabel());
2266 .arg(question->getLabel());
2272 callout_handle->getArgument(
"subnet6", subnet);
2278 .arg(question->getLabel())
2279 .arg(subnet->getID());
2283 .arg(question->getLabel())
2284 .arg(subnet->toText());
2288 .arg(question->getLabel());
2313 for (
auto const& opt : question->options_) {
2314 switch (opt.second->getType()) {
2317 boost::dynamic_pointer_cast<
2320 answer->addOption(answer_opt);
2326 boost::dynamic_pointer_cast<
2329 answer->addOption(answer_opt);
2355 if (ddns_params->getEnableUpdates() &&
2365 .arg(question->getLabel());
2378 .arg(question->getLabel())
2379 .arg(fqdn->toText());
2398 *ddns_params,
true),
2407 .arg(question->getLabel())
2408 .arg(scrubbed.
what());
2415 ctx.
hostname_ = fqdn_resp->getDomainName();
2422 .arg(question->getLabel())
2423 .arg(fqdn_resp->toText());
2424 answer->addOption(fqdn_resp);
2439 callout_handle->setArgument(
"query6", question);
2440 callout_handle->setArgument(
"response6", answer);
2441 callout_handle->setArgument(
"subnet6", subnet);
2442 callout_handle->setArgument(
"hostname", ctx.
hostname_);
2445 callout_handle->setArgument(
"ddns-params", ddns_params);
2451 string hook_hostname;
2452 bool hook_fwd_dns_update;
2453 bool hook_rev_dns_update;
2454 callout_handle->getArgument(
"hostname", hook_hostname);
2455 callout_handle->getArgument(
"fwd-update", hook_fwd_dns_update);
2456 callout_handle->getArgument(
"rev-update", hook_rev_dns_update);
2467 fqdn_resp = boost::dynamic_pointer_cast<Option6ClientFqdn>(answer->getOption(
D6O_CLIENT_FQDN));
2470 if (!(hook_fwd_dns_update || hook_rev_dns_update)) {
2497 <<
" encapsulating server's message must not be"
2498 <<
" NULL when creating DNS NameChangeRequest");
2511 bool do_fwd =
false;
2512 bool do_rev =
false;
2522 "client identifier is required when creating a new"
2523 " DNS NameChangeRequest");
2530 opt_fqdn->packDomainName(name_buf);
2531 const std::vector<uint8_t>& buf_vec = name_buf.
getVector();
2555 bool extended_only =
false;
2557 IOAddress ia_address = iaaddr->getAddress();
2558 for (
auto const& l : ia_ctx.reused_leases_) {
2559 if (l->addr_ == ia_address) {
2560 extended_only =
true;
2565 if (extended_only) {
2572 for (
auto const& l : ia_ctx.changed_leases_) {
2574 if (l->addr_ == ia_address) {
2578 if ((l->reuseable_valid_lft_ > 0) ||
2580 (l->hostname_ == opt_fqdn->getDomainName() &&
2581 l->fqdn_fwd_ == do_fwd && l->fqdn_rev_ == do_rev))) {
2582 extended_only =
true;
2594 if (!(do_fwd || do_rev) || (extended_only)) {
2610 opt_fqdn->getDomainName(),
2611 iaaddr->getAddress().toText(),
2620 .arg(answer->getLabel())
2621 .arg(ncr->toText());
2637 getMACSources().get();
2639 for (
auto const& it : mac_sources) {
2640 hwaddr = pkt->getMAC(it);
2656 BOOST_FOREACH(
auto const& resv, resvs) {
2657 if ((resv.second.getPrefix() == lease->addr_) &&
2658 (resv.second.getPrefixLen() == lease->prefixlen_)) {
2659 return (resv.second.getPDExclude());
2666 Pool6Ptr pool = boost::dynamic_pointer_cast<Pool6>(
2669 return (pool->getPrefixExcludeOption());
2677 boost::shared_ptr<Option6IA> ia) {
2683 boost::dynamic_pointer_cast<Option6IAAddr>(ia->getOption(
D6O_IAADDR));
2686 hint = hint_opt->getAddress();
2691 .arg(query->getLabel())
2693 .arg(hint_opt ? hint.
toText() :
"(no hint)");
2696 .arg(query->getLabel())
2698 .arg(hint_opt ? hint.
toText() :
"(no hint)");
2718 "Server could not select subnet for"
2741 if (!leases.empty()) {
2742 lease = *leases.begin();
2756 .arg(query->getLabel())
2757 .arg(lease->addr_.toText())
2758 .arg(ia->getIAID());
2759 }
else if (lease->reuseable_valid_lft_ == 0) {
2761 .arg(query->getLabel())
2762 .arg(lease->addr_.toText())
2766 lease->valid_lft_ = lease->reuseable_valid_lft_;
2767 lease->preferred_lft_ = lease->reuseable_preferred_lft_;
2770 .arg(query->getLabel())
2771 .arg(lease->addr_.toText())
2778 "v6-ia-na-lease-reuses"),
2782 .arg(query->getLabel())
2784 .arg(lease->toText());
2787 setTeeTimes(lease->preferred_lft_, subnet, ia_rsp);
2790 lease->preferred_lft_,
2791 lease->valid_lft_));
2792 ia_rsp->addOption(addr);
2805 .arg(query->getLabel())
2806 .arg(ia->getIAID());
2808 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
2810 "Sorry, no address could be"
2819 boost::shared_ptr<Option6IA> ia) {
2826 boost::dynamic_pointer_cast<Option6IAPrefix>(ia->getOption(
D6O_IAPREFIX));
2829 hint = hint_opt->getAddress();
2834 .arg(query->getLabel())
2836 .arg(hint_opt ? hint.
toText() :
"(no hint)");
2839 .arg(query->getLabel())
2841 .arg(hint_opt ? hint.
toText() :
"(no hint)");
2859 "Sorry, no subnet available."));
2880 if (!leases.empty()) {
2884 uint32_t min_preferred_lft = (*leases.begin())->preferred_lft_;
2886 const bool pd_exclude_requested = requestedInORO(query,
D6O_PD_EXCLUDE);
2887 for (
auto const& l : leases) {
2893 .arg(query->getLabel())
2894 .arg(l->addr_.toText())
2895 .arg(
static_cast<int>(l->prefixlen_))
2896 .arg(ia->getIAID());
2897 }
else if (l->reuseable_valid_lft_ == 0) {
2899 .arg(query->getLabel())
2900 .arg(l->addr_.toText())
2901 .arg(
static_cast<int>(l->prefixlen_))
2905 l->valid_lft_ = l->reuseable_valid_lft_;
2906 l->preferred_lft_ = l->reuseable_preferred_lft_;
2908 .arg(query->getLabel())
2909 .arg(l->addr_.toText())
2910 .arg(
static_cast<int>(l->prefixlen_))
2917 "v6-ia-pd-lease-reuses"),
2922 if ((l->preferred_lft_ > 0) && (min_preferred_lft > l->preferred_lft_)) {
2923 min_preferred_lft = l->preferred_lft_;
2926 boost::shared_ptr<Option6IAPrefix>
2928 l->prefixlen_, l->preferred_lft_,
2930 ia_rsp->addOption(addr);
2932 if (pd_exclude_requested) {
2934 if (pd_exclude_option) {
2935 addr->addOption(pd_exclude_option);
2954 .arg(query->getLabel())
2955 .arg(ia->getIAID());
2957 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
2959 "Sorry, no prefixes could"
2968 boost::shared_ptr<Option6IA> ia) {
2971 .arg(query->getLabel())
2972 .arg(ia->getIAID());
2991 "Sorry, no known leases for this duid/iaid."));
3003 for (
auto const& it : addrs) {
3007 Option6IAAddrPtr iaaddr = boost::dynamic_pointer_cast<Option6IAAddr>(it.second);
3034 uint32_t min_preferred_lft = std::numeric_limits<uint32_t>::max();
3037 for (
auto const& l : leases) {
3038 if (l->reuseable_valid_lft_ == 0) {
3040 .arg(query->getLabel())
3041 .arg(l->addr_.toText())
3042 .arg(ia->getIAID());
3044 l->valid_lft_ = l->reuseable_valid_lft_;
3045 l->preferred_lft_ = l->reuseable_preferred_lft_;
3047 .arg(query->getLabel())
3048 .arg(l->addr_.toText())
3055 "v6-ia-na-lease-reuses"),
3060 l->addr_, l->preferred_lft_, l->valid_lft_));
3061 ia_rsp->addOption(iaaddr);
3064 if ((l->preferred_lft_ > 0) && (min_preferred_lft > l->preferred_lft_)) {
3065 min_preferred_lft = l->preferred_lft_;
3070 hints.erase(std::remove(hints.begin(), hints.end(), hint_type),
3080 if (
equalValues(query->getClientId(), l->duid_)) {
3083 ia_rsp->addOption(iaaddr);
3088 hints.erase(std::remove(hints.begin(), hints.end(), hint_type), hints.end());
3096 .arg(query->getLabel())
3108 for (
auto const& hint : hints) {
3110 hint.getAddress(), 0, 0));
3111 ia_rsp->addOption(iaaddr);
3114 if (!leases.empty()) {
3120 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
3122 "Sorry, no addresses could be"
3123 " assigned at this time."));
3132 boost::shared_ptr<Option6IA> ia) {
3135 .arg(query->getLabel())
3136 .arg(ia->getIAID());
3153 "Sorry, no known PD leases"
3154 " for this duid/iaid."));
3174 " client sending Rebind to extend lifetime of the"
3175 " prefix (DUID=" << duid->toText() <<
", IAID="
3176 << ia->getIAID() <<
")");
3188 for (
auto const& it : addrs) {
3222 const bool pd_exclude_requested = requestedInORO(query,
D6O_PD_EXCLUDE);
3226 uint32_t min_preferred_lft = std::numeric_limits<uint32_t>::max();
3228 for (
auto const& l : leases) {
3229 if (l->reuseable_valid_lft_ == 0) {
3231 .arg(query->getLabel())
3232 .arg(l->addr_.toText())
3233 .arg(
static_cast<int>(l->prefixlen_))
3234 .arg(ia->getIAID());
3236 l->valid_lft_ = l->reuseable_valid_lft_;
3237 l->preferred_lft_ = l->reuseable_preferred_lft_;
3239 .arg(query->getLabel())
3240 .arg(l->addr_.toText())
3241 .arg(
static_cast<int>(l->prefixlen_))
3248 "v6-ia-pd-lease-reuses"),
3253 l->addr_, l->prefixlen_,
3254 l->preferred_lft_, l->valid_lft_));
3255 ia_rsp->addOption(prf);
3257 if (pd_exclude_requested) {
3259 if (pd_exclude_option) {
3260 prf->addOption(pd_exclude_option);
3265 if ((l->preferred_lft_ > 0) && (l->preferred_lft_ < min_preferred_lft)) {
3266 min_preferred_lft = l->preferred_lft_;
3271 hints.erase(std::remove(hints.begin(), hints.end(), hint_type),
3281 if (
equalValues(query->getClientId(), l->duid_)) {
3283 l->prefixlen_, 0, 0));
3284 ia_rsp->addOption(prefix);
3289 hints.erase(std::remove(hints.begin(), hints.end(), hint_type), hints.end());
3294 for (
auto const& prefix : hints) {
3299 if (!prefix.getAddress().isV6Zero()) {
3301 prefix.getAddress(),
3302 prefix.getPrefixLength(),
3304 ia_rsp->addOption(prefix_opt);
3308 if (!leases.empty()) {
3315 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
3317 "Sorry, no prefixes could be"
3318 " assigned at this time."));
3339 for (
auto const& opt : query->options_) {
3340 switch (opt.second->getType()) {
3343 boost::dynamic_pointer_cast<
3346 reply->addOption(answer_opt);
3353 boost::dynamic_pointer_cast<
3356 reply->addOption(answer_opt);
3392 for (
auto const& opt : release->options_) {
3394 switch (opt.second->getType()) {
3397 boost::dynamic_pointer_cast<Option6IA>(opt.second),
3400 reply->addOption(answer_opt);
3406 boost::dynamic_pointer_cast<Option6IA>(opt.second),
3409 reply->addOption(answer_opt);
3426 reply->addOption(createStatusCode(*release, general_status,
3427 "Summary status for all processed IA_NAs"));
3432 int& general_status, boost::shared_ptr<Option6IA> ia,
3436 .arg(query->getLabel())
3437 .arg(ia->getIAID());
3453 if (!release_addr) {
3455 "You did not include an address in your RELEASE"));
3461 release_addr->getAddress());
3468 "Sorry, no known leases for this duid/iaid, can't release."));
3474 if (!lease->duid_) {
3480 .arg(query->getLabel())
3481 .arg(release_addr->getAddress().toText());
3485 "Database consistency check failed when trying to RELEASE"));
3489 if (*duid != *(lease->duid_)) {
3493 .arg(query->getLabel())
3494 .arg(release_addr->getAddress().toText())
3495 .arg(lease->duid_->toText());
3499 "This address does not belong to you, you can't release it"));
3503 if (ia->getIAID() != lease->iaid_) {
3506 .arg(query->getLabel())
3507 .arg(release_addr->getAddress().toText())
3509 .arg(ia->getIAID());
3511 "This is your address, but you used wrong IAID"));
3534 callout_handle->deleteAllArguments();
3537 callout_handle->setArgument(
"query6", query);
3540 callout_handle->setArgument(
"lease6", lease);
3552 .arg(query->getLabel());
3557 bool success =
false;
3558 bool expired =
false;
3565 if (expiration_cfg->getFlushReclaimedTimerWaitTime() &&
3566 expiration_cfg->getHoldReclaimedTime() &&
3569 lease->valid_lft_ = 0;
3570 lease->preferred_lft_ = 0;
3590 "Server failed to release a lease"));
3593 .arg(query->getLabel())
3594 .arg(lease->addr_.toText())
3603 .arg(query->getLabel())
3604 .arg(lease->addr_.toText())
3607 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
STATUS_Success,
3608 "Lease released. Thank you, please come again."));
3612 .arg(query->getLabel())
3613 .arg(lease->addr_.toText())
3617 .arg(query->getLabel())
3618 .arg(lease->addr_.toText())
3632 static_cast<int64_t
>(-1));
3636 auto const& pool = subnet->getPool(
Lease::TYPE_NA, lease->addr_,
false);
3641 static_cast<int64_t
>(-1));
3651 int& general_status, boost::shared_ptr<Option6IA> ia,
3666 boost::shared_ptr<Option6IAPrefix> release_prefix =
3667 boost::dynamic_pointer_cast<Option6IAPrefix>(ia->getOption(
D6O_IAPREFIX));
3668 if (!release_prefix) {
3670 "You did not include a prefix in your RELEASE"));
3676 release_prefix->getAddress());
3683 "Sorry, no known leases for this duid/iaid, can't release."));
3689 if (!lease->duid_) {
3694 .arg(query->getLabel())
3695 .arg(release_prefix->getAddress().toText())
3696 .arg(
static_cast<int>(release_prefix->getLength()));
3700 "Database consistency check failed when trying to RELEASE"));
3704 if (*duid != *(lease->duid_)) {
3707 .arg(query->getLabel())
3708 .arg(release_prefix->getAddress().toText())
3709 .arg(
static_cast<int>(release_prefix->getLength()))
3710 .arg(lease->duid_->toText());
3714 "This address does not belong to you, you can't release it"));
3718 if (ia->getIAID() != lease->iaid_) {
3721 .arg(query->getLabel())
3722 .arg(release_prefix->getAddress().toText())
3723 .arg(
static_cast<int>(release_prefix->getLength()))
3725 .arg(ia->getIAID());
3727 "This is your address, but you used wrong IAID"));
3750 callout_handle->setArgument(
"query6", query);
3753 callout_handle->setArgument(
"lease6", lease);
3765 .arg(query->getLabel());
3770 bool success =
false;
3771 bool expired =
false;
3778 if (expiration_cfg->getFlushReclaimedTimerWaitTime() &&
3779 expiration_cfg->getHoldReclaimedTime() &&
3782 lease->valid_lft_ = 0;
3783 lease->preferred_lft_ = 0;
3803 "Server failed to release a lease"));
3806 .arg(query->getLabel())
3807 .arg(lease->addr_.toText())
3808 .arg(
static_cast<int>(lease->prefixlen_))
3816 .arg(query->getLabel())
3817 .arg(lease->addr_.toText())
3818 .arg(
static_cast<int>(lease->prefixlen_))
3821 ia_rsp->addOption(createStatusCode(*query, *ia_rsp,
STATUS_Success,
3822 "Lease released. Thank you, please come again."));
3826 .arg(query->getLabel())
3827 .arg(lease->addr_.toText())
3828 .arg(
static_cast<int>(lease->prefixlen_))
3832 .arg(query->getLabel())
3833 .arg(lease->addr_.toText())
3834 .arg(
static_cast<int>(lease->prefixlen_))
3843 static_cast<int64_t
>(-1));
3847 auto const& pool = subnet->getPool(
Lease::TYPE_PD, lease->addr_,
false);
3852 static_cast<int64_t
>(-1));
3869 if (opt_rapid_commit) {
3872 .arg(solicit->getLabel());
3877 response->addOption(opt_rapid_commit);
3910 .arg(solicit->getLabel())
3911 .arg(solicit->getName())
3912 .arg(solicit->getClasses().toText());
3921 updateReservedFqdn(ctx, response);
3954 .arg(request->getLabel())
3955 .arg(request->getName())
3956 .arg(request->getClasses().toText());
3965 updateReservedFqdn(ctx, reply);
3966 generateFqdn(reply, ctx);
3994 .arg(renew->getLabel())
3995 .arg(renew->getName())
3996 .arg(renew->getClasses().toText());
4005 updateReservedFqdn(ctx, reply);
4006 generateFqdn(reply, ctx);
4034 .arg(rebind->getLabel())
4035 .arg(rebind->getName())
4036 .arg(rebind->getClasses().toText());
4045 updateReservedFqdn(ctx, reply);
4046 generateFqdn(reply, ctx);
4061 .arg(confirm->getLabel())
4062 .arg(confirm->getName())
4063 .arg(confirm->getClasses().toText());
4084 bool verified =
false;
4093 for (
auto const& ia : ias) {
4095 for (
auto const& opt : opts) {
4107 if (subnet && !subnet->inRange(iaaddr->getAddress())) {
4108 std::ostringstream status_msg;
4109 status_msg <<
"Address " << iaaddr->getAddress()
4110 <<
" is not on link.";
4111 reply->addOption(createStatusCode(*confirm,
4119 " to the Option6IAAddrPtr. This is programming"
4120 " error and should be reported");
4137 "All addresses are on-link"));
4140 "No subnet selected"));
4155 .arg(release->getLabel())
4156 .arg(release->getName())
4157 .arg(release->getClasses().toText());
4187 .arg(decline->getLabel())
4188 .arg(decline->getName())
4189 .arg(decline->getClasses().toText());
4228 for (
auto const& opt : decline->options_) {
4229 switch (opt.second->getType()) {
4232 boost::dynamic_pointer_cast<Option6IA>(opt.second),
4237 reply->addOption(answer_opt);
4258 int& general_status, boost::shared_ptr<Option6IA> ia,
4262 .arg(decline->getLabel())
4263 .arg(ia->getIAID());
4278 int total_addrs = 0;
4279 for (
auto const& opt : opts) {
4288 if (!decline_addr) {
4295 decline_addr->getAddress());
4300 .arg(decline->getLabel()).arg(decline_addr->getAddress().toText());
4308 "Server does not know about such an address."));
4316 if (!lease->duid_) {
4322 .arg(decline->getLabel())
4323 .arg(decline_addr->getAddress().toText());
4326 "Database consistency check failed when attempting Decline."));
4332 if (*duid != *(lease->duid_)) {
4336 .arg(decline->getLabel())
4337 .arg(decline_addr->getAddress().toText())
4338 .arg(lease->duid_->toText());
4341 "This address does not belong to you, you can't decline it"));
4347 if (ia->getIAID() != lease->iaid_) {
4350 .arg(decline->getLabel())
4351 .arg(lease->addr_.toText())
4355 "This is your address, but you used wrong IAID"));
4367 new_leases.push_back(lease);
4371 if (total_addrs == 0) {
4373 "No addresses sent in IA_NA"));
4386 container->addOption(status);
4391 boost::shared_ptr<Option6IA> ia_rsp) {
4415 callout_handle->setArgument(
"query6", decline);
4418 callout_handle->setArgument(
"lease6", lease);
4429 .arg(decline->getLabel())
4430 .arg(decline->getIface())
4431 .arg(lease->addr_.toText());
4439 .arg(decline->getLabel())
4440 .arg(decline->getIface())
4441 .arg(lease->addr_.toText());
4446 Lease6Ptr old_values = boost::make_shared<Lease6>(*lease);
4460 .arg(decline->getLabel())
4461 .arg(lease->addr_.toText())
4474 static_cast<int64_t
>(1));
4478 auto const& pool = subnet->getPool(
Lease::TYPE_NA, lease->addr_,
false);
4483 static_cast<int64_t
>(1));
4491 .arg(lease->addr_.toText()).arg(lease->valid_lft_);
4493 ia_rsp->addOption(createStatusCode(*decline, *ia_rsp,
STATUS_Success,
4494 "Lease declined. Hopefully the next one will be better."));
4508 .arg(inf_request->getLabel())
4509 .arg(inf_request->getName())
4510 .arg(inf_request->getClasses().toText());
4566 if (allow_address_registration && !allow_address_registration->boolValue()) {
4568 .arg(ctx.
query_->getLabel());
4570 static_cast<int64_t
>(1));
4572 static_cast<int64_t
>(1));
4585 IOAddress addr = addr_reg_inf->getRemoteAddr();
4588 size_t relay_level = addr_reg_inf->relay_info_.size();
4589 if (relay_level > 0) {
4590 addr = addr_reg_inf->getRelay6PeerAddress(relay_level - 1);
4595 const uint32_t no_iaid = 0;
4598 bool invalid =
false;
4601 if (addr_reg_inf->getOption(
D6O_IA_NA)) {
4604 static_cast<int64_t
>(1));
4609 if (addr_reg_inf->getOption(
D6O_IA_TA)) {
4612 static_cast<int64_t
>(1));
4617 if (addr_reg_inf->getOption(
D6O_IA_PD)) {
4620 static_cast<int64_t
>(1));
4627 if (addrs.size() != 1) {
4630 static_cast<int64_t
>(1));
4632 << addrs.size() <<
" received");
4634 iaaddr = boost::dynamic_pointer_cast<Option6IAAddr>(addrs.begin()->second);
4638 static_cast<int64_t
>(1));
4643 if (addr != iaaddr->getAddress()) {
4646 static_cast<int64_t
>(1));
4648 <<
" wants to register " << iaaddr->getAddress());
4652 if (!subnet->inRange(addr)) {
4654 static_cast<int64_t
>(1));
4656 << subnet->
toText() <<
" (id " << subnet->getID() <<
")");
4667 static_cast<int64_t
>(1));
4674 if (!hosts.empty()) {
4677 static_cast<int64_t
>(1));
4680 }
catch (
const std::exception &ex) {
4687 static_cast<int64_t
>(1));
4690 static_cast<int64_t
>(1));
4696 if (old_lease->duid_ && (*ctx.
duid_ != *(old_lease->duid_))) {
4699 .arg(ctx.
duid_->toText())
4700 .arg(old_lease->duid_->toText());
4706 addr_reg_inf->getTransid()));
4707 addr_reg_rep->addOption(iaaddr);
4715 ia->addOption(iaaddr);
4722 no_iaid, iaaddr->getPreferred(),
4723 iaaddr->getValid(), subnet->getID(),
4735 .arg(addr_reg_inf->getLabel())
4736 .arg(addr_reg_inf->getName())
4737 .arg(addr_reg_inf->getClasses().toText());
4755 callout_handle->setArgument(
"query6", addr_reg_inf);
4759 callout_handle->setArgument(
"response6", addr_reg_rep);
4762 callout_handle->setArgument(
"address6", addr);
4765 callout_handle->setArgument(
"old_lease6", old_lease);
4768 callout_handle->setArgument(
"new_lease6", lease);
4778 .arg(addr_reg_inf->getLabel())
4779 .arg(old_lease ?
"update" :
"add")
4788 .arg(addr_reg_inf->getLabel())
4799 }
catch (
const std::exception& ex) {
4809 if (old_lease->subnet_id_ != lease->subnet_id_) {
4813 static_cast<int64_t
>(-1));
4817 static_cast<int64_t
>(1));
4820 "cumulative-registered-nas"),
4821 static_cast<int64_t
>(1));
4834 static_cast<int64_t
>(1));
4837 "cumulative-registered-nas"),
4838 static_cast<int64_t
>(1));
4840 static_cast<int64_t
>(1));
4847 updateReservedFqdn(ctx, addr_reg_rep);
4848 generateFqdn(addr_reg_rep, ctx);
4851 return (addr_reg_rep);
4854void Dhcpv6Srv::classifyByVendor(
const Pkt6Ptr& pkt) {
4857 vclass = boost::dynamic_pointer_cast<OptionVendorClass>(opt.second);
4858 if (!vclass || vclass->getTuplesNum() == 0) {
4876 pkt->addClass(
"ALL");
4879 classifyByVendor(pkt);
4890 for (
auto const& it : *defs_ptr) {
4898 if (it->getAdditional()) {
4902 if (it->getDependOnKnown() != depend_on_known) {
4905 it->test(pkt, expr_ptr);
4914 for (
auto const& def : *defs_ptr) {
4918 if (def->getMatchExpr()) {
4919 pkt->classes_.erase(def->getName());
4929 for (
auto const& cclass : classes) {
4930 pkt->addClass(cclass);
4940 ctx.
subnet_->getSharedNetwork(shared_network);
4941 if (shared_network) {
4943 if (host && (host->getIPv6SubnetID() != SUBNET_ID_GLOBAL)) {
4962 ctx.
subnet_->getPool(resource.getPrefixLength() == 128 ?
4964 resource.getAddress(),
4967 const ClientClasses& pool_to_add = pool->getAdditionalClasses();
4968 for (
auto const& cclass : pool_to_add) {
4975 const ClientClasses& to_add = subnet->getAdditionalClasses();
4976 for (
auto const& cclass : to_add) {
4982 subnet->getSharedNetwork(network);
4984 const ClientClasses& net_to_add = network->getAdditionalClasses();
4985 for (
auto const& cclass : net_to_add) {
4995 for (
auto const& cclass : classes) {
5010 pkt->addClass(cclass);
5018 .arg(pkt->getLabel())
5020 .arg(status ?
"true" :
"false");
5023 pkt->addClass(cclass);
5027 .arg(pkt->getLabel())
5039 " a message must not be NULL when updating reserved FQDN");
5050 std::string name = fqdn->getDomainName();
5062 if (new_name != name) {
5067 answer->addOption(fqdn);
5073Dhcpv6Srv::generateFqdn(
const Pkt6Ptr& answer,
5074 AllocEngine::ClientContext6& ctx) {
5076 isc_throw(isc::Unexpected,
"an instance of the object encapsulating"
5077 " a message must not be NULL when generating FQDN");
5088 if (!fqdn || !fqdn->getDomainName().empty()) {
5102 if (!iaaddr || iaaddr->getValid() == 0) {
5107 IOAddress addr = iaaddr->getAddress();
5108 std::string generated_name =
5112 .arg(answer->getLabel())
5113 .arg(generated_name);
5130 lease->hostname_ = generated_name;
5131 lease->reuseable_valid_lft_ = 0;
5135 isc_throw(isc::Unexpected,
"there is no lease in the database "
5136 " for address " << addr <<
", so as it is impossible"
5137 " to update FQDN data. This is a programmatic error"
5138 " as the given address is now being handed to the"
5146 answer->addOption(fqdn);
5148 }
catch (
const Exception& ex) {
5150 .arg(answer->getLabel())
5164 this, ph::_1, ph::_2));
5183 .arg((ncr ? ncr->toText() :
" NULL "));
5192 std::stringstream tmp;
5196 tmp <<
" (" << SOURCE_OF_INSTALLATION <<
")" << endl;
5197 tmp <<
"premium: " << PREMIUM_EXTENDED_VERSION << endl;
5198 tmp <<
"linked with:" << endl;
5203 tmp << endl <<
"lease backends:";
5205 tmp << endl <<
"- " <<
version;
5210 tmp << endl <<
"host backends:";
5212 tmp << endl <<
"- " <<
version;
5217 tmp << endl <<
"forensic backends:";
5219 tmp << endl <<
"- " <<
version;
5230 if (query->relay_info_.empty()) {
5241 for (
int i = query->relay_info_.size(); i > 0 ; --i) {
5243 if (rsoo_container) {
5248 for (
auto const& opt : rsoo) {
5252 if (cfg_rsoo->enabled(opt.second->getType()) &&
5253 !rsp->getOption(opt.second->getType())) {
5254 rsp->addOption(opt.second);
5263 if (query->relay_info_.empty()) {
5271 return (query->getRemotePort());
5277void Dhcpv6Srv::processStatsReceived(
const Pkt6Ptr& query) {
5281 string stat_name =
"pkt6-unknown-received";
5282 switch (query->getType()) {
5284 stat_name =
"pkt6-solicit-received";
5288 stat_name =
"pkt6-advertise-received";
5291 stat_name =
"pkt6-request-received";
5294 stat_name =
"pkt6-confirm-received";
5297 stat_name =
"pkt6-renew-received";
5300 stat_name =
"pkt6-rebind-received";
5304 stat_name =
"pkt6-reply-received";
5307 stat_name =
"pkt6-release-received";
5310 stat_name =
"pkt6-decline-received";
5313 stat_name =
"pkt6-reconfigure-received";
5316 stat_name =
"pkt6-infrequest-received";
5319 stat_name =
"pkt6-dhcpv4-query-received";
5323 stat_name =
"pkt6-dhcpv4-response-received";
5326 stat_name =
"pkt6-addr-reg-inform-received";
5330 stat_name =
"pkt6-addr-reg-reply-received";
5345 switch (response->getType()) {
5347 stat_name =
"pkt6-advertise-sent";
5350 stat_name =
"pkt6-reply-sent";
5353 stat_name =
"pkt6-dhcpv4-response-sent";
5356 stat_name =
"pkt6-addr-reg-reply-sent";
5367 return (
Hooks.hook_index_buffer6_send_);
5371Dhcpv6Srv::requestedInORO(
const Pkt6Ptr& query,
const uint16_t code)
const {
5373 boost::dynamic_pointer_cast<OptionUint16Array>(query->getOption(
D6O_ORO));
5376 const std::vector<uint16_t>& codes = oro->getValues();
5377 return (std::find(codes.begin(), codes.end(), code) != codes.end());
5383tuple<bool, uint32_t>
5384Dhcpv6Srv::parkingLimitExceeded(
string const& hook_label) {
5386 uint32_t parked_packet_limit(0);
5390 parked_packet_limit = ppl->intValue();
5393 if (parked_packet_limit) {
5397 if (parking_lot && parked_packet_limit <= parking_lot->size()) {
5398 return make_tuple(
true, parked_packet_limit);
5401 return make_tuple(
false, parked_packet_limit);
5412 char const*
const rotate(getenv(
"KEA_DHCP6_FUZZING_ROTATE_PORT"));
5416 while (!locker.
lock()) {
5417 this_thread::sleep_for(1s);
5420 port_file.open(
"/tmp/port6.txt", ios::in);
5423 getline(port_file, line);
5435 port_file.open(
"/tmp/port6.txt", ios::out | ios::trunc);
5436 port_file << to_string(port) << endl;
5451 uint32_t t2_time = 0;
5454 if (!subnet->getT2().unspecified()) {
5455 t2_time = subnet->getT2();
5456 }
else if (subnet->getCalculateTeeTimes()) {
5458 t2_time =
static_cast<uint32_t
>(round(subnet->getT2Percent() * preferred_lft));
5462 resp->setT2(t2_time);
5465 uint32_t t1_time = 0;
5468 if (!subnet->getT1().unspecified()) {
5469 t1_time = subnet->getT1();
5470 }
else if (subnet->getCalculateTeeTimes()) {
5472 t1_time =
static_cast<uint32_t
>(round(subnet->getT1Percent() * preferred_lft));
5476 if (t1_time < t2_time) {
5477 resp->setT1(t1_time);
5488 bool reprocess_client_name =
false;
5495 if (iaaddr && (iaaddr->getValid() > 0)) {
5497 auto pool = ddns_params->setPoolFromAddress(iaaddr->getAddress());
5500 reprocess_client_name = pool->hasDdnsParameters();
5506 if (ctx.
subnet_ && orig_subnet && (orig_subnet->getID() != ctx.
subnet_->getID())) {
5511 orig_subnet->getSharedNetwork(network);
5513 .arg(question->getLabel())
5514 .arg(orig_subnet->toText())
5516 .arg(network ? network->getName() :
"<no network?>");
5519 reprocess_client_name =
true;
5524 if (reprocess_client_name) {
5526 std::string prev_hostname = ctx.
hostname_;
5547 l->reuseable_valid_lft_ = 0;
5555 static std::list<std::list<std::string>>
const list({
5556 {
"config-control",
"config-databases",
"[]"},
5557 {
"hooks-libraries",
"[]",
"parameters",
"*"},
5559 {
"hosts-databases",
"[]"},
Defines elements for storing the names of client classes.
This is a base class for exceptions thrown from the DNS library module.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
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.
static const IOAddress & IPV6_ZERO_ADDRESS()
Returns an IPv6 zero address.
void clearIOServices()
Clear the list of IOService objects.
static IOServiceMgr & instance()
Access the IOServiceMgr singleton instance.
size_t pollIOServices()
Poll IOService objects.
The IOService class is a wrapper for the ASIO io_context class.
static std::string getVersion()
Get version string.
DHCPv4 and DHCPv6 allocation engine.
std::vector< Resource > HintContainer
Container for client's hints.
Implementation of the mechanisms to control the use of the Configuration Backends by the DHCPv6 serve...
@ ALLOW_ADDRESS_REGISTRATION
@ EARLY_GLOBAL_RESERVATIONS_LOOKUP
D2ClientMgr & getD2ClientMgr()
Fetches the DHCP-DDNS manager.
static CfgMgr & instance()
returns a single instance of Configuration Manager
SrvConfigPtr getCurrentCfg()
Returns a pointer to the current configuration.
static SubnetSelector initSelector(const Pkt6Ptr &query)
Build selector from a client's message.
Container for storing client class names.
void insert(const ClientClass &class_name)
Insert an element.
std::string toText(const std::string &separator=", ") const
Returns all class names as text.
Client race avoidance RAII handler.
bool tryLock(Pkt4Ptr query, ContinuationPtr cont=ContinuationPtr())
Tries to acquires a client.
D2ClientMgr isolates Kea from the details of being a D2 client.
std::string generateFqdn(const asiolink::IOAddress &address, const DdnsParams &ddns_params, const bool trailing_dot=true) const
Builds a FQDN based on the configuration and given IP address.
bool ddnsEnabled()
Convenience method for checking if DHCP-DDNS is enabled.
void getUpdateDirections(const T &fqdn_resp, bool &forward, bool &reverse)
Get directional update flags based on server FQDN flags.
void stop()
Stop the sender.
void suspendUpdates()
Suspends sending requests.
void adjustDomainName(const T &fqdn, T &fqdn_resp, const DdnsParams &ddns_params)
Set server FQDN name based on configuration and a given FQDN.
void sendRequest(dhcp_ddns::NameChangeRequestPtr &ncr)
Send the given NameChangeRequests to kea-dhcp-ddns.
void stopSender()
Disables sending NameChangeRequests to kea-dhcp-ddns.
void adjustFqdnFlags(const T &fqdn, T &fqdn_resp, const DdnsParams &ddns_params)
Set server FQDN flags based on configuration and a given FQDN.
std::string qualifyName(const std::string &partial_name, const DdnsParams &ddns_params, const bool trailing_dot) const
Adds a qualifying suffix to a given domain name.
void startSender(D2ClientErrorHandler error_handler, const isc::asiolink::IOServicePtr &io_service)
Enables sending NameChangeRequests to kea-dhcp-ddns.
This exception is thrown when DHCP server hits the error which should result in discarding the messag...
Factory for generating DUIDs (DHCP Unique Identifiers).
DuidPtr get()
Returns current DUID.
Holds DUID (DHCPv6 Unique Identifier)
static constexpr size_t MIN_DUID_LEN
minimum duid size
static constexpr size_t MAX_DUID_LEN
maximum duid size
void send(const Pkt6Ptr &pkt)
Send message over IPC.
void close()
Close communication socket.
static Dhcp6to4Ipc & instance()
Returns pointer to the sole instance of Dhcp6to4Ipc.
static uint16_t client_port
std::queue< isc::dhcp_ddns::NameChangeRequest > name_change_reqs_
Holds a list of isc::dhcp_ddns::NameChangeRequest objects, which are waiting for sending to kea-dhcp-...
void shutdown() override
Instructs the server to shut down.
RequirementLevel
defines if certain option may, must or must not appear
OptionPtr getServerID()
Returns server-identifier option.
Pkt6Ptr processPacket(Pkt6Ptr query)
Process a single incoming DHCPv6 packet.
Pkt6Ptr processLocalizedQuery6(AllocEngine::ClientContext6 &ctx)
Process a localized incoming DHCPv6 query.
void processPacketAndSendResponseNoThrow(Pkt6Ptr query)
Process a single incoming DHCPv6 packet and sends the response.
OptionPtr extendIA_PD(const Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx, Option6IAPtr ia)
Extends lifetime of the prefix.
void setReservedClientClasses(const Pkt6Ptr &pkt, const AllocEngine::ClientContext6 &ctx)
Assigns classes retrieved from host reservation database.
Pkt6Ptr processDecline(AllocEngine::ClientContext6 &ctx)
Process incoming Decline message.
void evaluateClasses(const Pkt6Ptr &pkt, bool depend_on_known)
Evaluate classes.
Pkt6Ptr processRenew(AllocEngine::ClientContext6 &ctx)
Processes incoming Renew message.
static void processStatsSent(const Pkt6Ptr &response)
Updates statistics for transmitted packets.
void evaluateAdditionalClasses(const Pkt6Ptr &pkt, AllocEngine::ClientContext6 &ctx)
Evaluates classes in the additional classes lists.
void processLocalizedQuery6AndSendResponse(Pkt6Ptr query, AllocEngine::ClientContext6 &ctx)
Process a localized incoming DHCPv6 query.
int run()
Main server processing loop.
void setPacketStatisticsDefaults()
This function sets statistics related to DHCPv6 packets processing to their initial values.
bool sanityCheck(const Pkt6Ptr &pkt)
Verifies if specified packet meets RFC requirements.
static uint16_t checkRelaySourcePort(const Pkt6Ptr &query)
Used for DHCPv4-over-DHCPv6 too.
void assignLeases(const Pkt6Ptr &question, Pkt6Ptr &answer, AllocEngine::ClientContext6 &ctx)
Assigns leases.
void stopD2()
Stops DHCP_DDNS client IO if DDNS updates are enabled.
void copyClientOptions(const Pkt6Ptr &question, Pkt6Ptr &answer)
Copies required options from client message to server answer.
boost::shared_ptr< AllocEngine > alloc_engine_
Allocation Engine.
virtual void sendPacket(const Pkt6Ptr &pkt)
dummy wrapper around IfaceMgr::send()
bool testServerID(const Pkt6Ptr &pkt)
Compare received server id with our server id.
virtual void d2ClientErrorHandler(const dhcp_ddns::NameChangeSender::Result result, dhcp_ddns::NameChangeRequestPtr &ncr)
Implements the error handler for DHCP_DDNS IO errors.
OptionPtr declineIA(const Pkt6Ptr &decline, const DuidPtr &duid, int &general_status, boost::shared_ptr< Option6IA > ia, Lease6Collection &new_leases)
Declines leases in a single IA_NA option.
uint16_t getServerPort() const
Get UDP port on which server should listen.
void runOne()
Main server processing step.
virtual Pkt6Ptr receivePacket(int timeout)
dummy wrapper around IfaceMgr::receive6
void processPacketBufferSend(hooks::CalloutHandlePtr &callout_handle, Pkt6Ptr &rsp)
Executes buffer6_send callout and sends the response.
OptionPtr releaseIA_NA(const DuidPtr &duid, const Pkt6Ptr &query, int &general_status, boost::shared_ptr< Option6IA > ia, Lease6Ptr &old_lease)
Releases specific IA_NA option.
void buildCfgOptionList(const Pkt6Ptr &question, AllocEngine::ClientContext6 &ctx, CfgOptionList &co_list)
Build the configured option list.
void appendDefaultOptions(const Pkt6Ptr &question, Pkt6Ptr &answer, const CfgOptionList &co_list)
Appends default options to server's answer.
OptionPtr assignIA_NA(const isc::dhcp::Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx, Option6IAPtr ia)
Processes IA_NA option (and assigns addresses if necessary).
static const std::string VENDOR_CLASS_PREFIX
this is a prefix added to the content of vendor-class option
OptionPtr serverid_
Server DUID (to be sent in server-identifier option)
void setTeeTimes(uint32_t preferred_lft, const ConstSubnet6Ptr &subnet, Option6IAPtr &resp)
Sets the T1 and T2 timers in the outbound IA.
void conditionallySetReservedClientClasses(const Pkt6Ptr &pkt, const AllocEngine::ClientContext6 &ctx)
Assigns classes retrieved from host reservation database if they haven't been yet set.
void processPacketAndSendResponse(Pkt6Ptr query)
Process a single incoming DHCPv6 packet and sends the response.
OptionPtr releaseIA_PD(const DuidPtr &duid, const Pkt6Ptr &query, int &general_status, boost::shared_ptr< Option6IA > ia, Lease6Ptr &old_lease)
Releases specific IA_PD option.
void processDhcp4Query(const Pkt6Ptr &dhcp4_query)
Processes incoming DHCPv4-query message.
Pkt6Ptr processRebind(AllocEngine::ClientContext6 &ctx)
Processes incoming Rebind message.
bool earlyGHRLookup(const Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx)
Initialize client context and perform early global reservations lookup.
void initContext0(const Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx)
Initialize client context (first part).
virtual ~Dhcpv6Srv()
Destructor. Used during DHCPv6 service shutdown.
void initContext(AllocEngine::ClientContext6 &ctx, bool &drop)
Initializes client context for specified packet.
Pkt6Ptr processRequest(AllocEngine::ClientContext6 &ctx)
Processes incoming Request and returns Reply response.
void sendResponseNoThrow(hooks::CalloutHandlePtr &callout_handle, Pkt6Ptr query, Pkt6Ptr &rsp, ConstSubnet6Ptr &subnet)
Process an unparked DHCPv6 packet and sends the response.
NetworkStatePtr network_state_
Holds information about disabled DHCP service and/or disabled subnet/network scopes.
std::list< std::list< std::string > > jsonPathsToRedact() const final override
Return a list of all paths that contain passwords or secrets for kea-dhcp6.
OptionPtr assignIA_PD(const Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx, boost::shared_ptr< Option6IA > ia)
Processes IA_PD option (and assigns prefixes if necessary).
bool testUnicast(const Pkt6Ptr &pkt) const
Check if the message can be sent to unicast.
Pkt6Ptr processRelease(AllocEngine::ClientContext6 &ctx)
Process incoming Release message.
void processClientFqdn(const Pkt6Ptr &question, const Pkt6Ptr &answer, AllocEngine::ClientContext6 &ctx)
Processes Client FQDN Option.
void setStatusCode(boost::shared_ptr< Option6IA > &container, const OptionPtr &status)
A simple utility method that sets the status code.
static int getHookIndexBuffer6Send()
Returns the index of the buffer6_send hook.
void classifyPacket(const Pkt6Ptr &pkt)
Assigns incoming packet to zero or more classes.
static HWAddrPtr getMAC(const Pkt6Ptr &pkt)
Attempts to get a MAC/hardware address using configured sources.
Dhcpv6Srv(uint16_t server_port=DHCP6_SERVER_PORT, uint16_t client_port=0)
Default constructor.
bool declineLeases(const Pkt6Ptr &decline, Pkt6Ptr &reply, AllocEngine::ClientContext6 &ctx)
Attempts to decline all leases in specified Decline message.
void releaseLeases(const Pkt6Ptr &release, Pkt6Ptr &reply, AllocEngine::ClientContext6 &ctx)
Attempts to release received addresses.
void extendLeases(const Pkt6Ptr &query, Pkt6Ptr &reply, AllocEngine::ClientContext6 &ctx)
Attempts to extend the lifetime of IAs.
void processRSOO(const Pkt6Ptr &query, const Pkt6Ptr &rsp)
Processes Relay-supplied options, if present.
static std::string getVersion(bool extended)
returns Kea version on stdout and exit.
Pkt6Ptr processAddrRegInform(AllocEngine::ClientContext6 &ctx)
Processes incoming Addr-reg-inform message.
OptionPtr extendIA_NA(const Pkt6Ptr &query, AllocEngine::ClientContext6 &ctx, Option6IAPtr ia)
Extends lifetime of the specific IA_NA option.
Pkt6Ptr processConfirm(AllocEngine::ClientContext6 &ctx)
Processes incoming Confirm message and returns Reply.
void sanityCheckDUID(const OptionPtr &opt, const std::string &opt_name)
verifies if received DUID option (client-id or server-id) is sane
static void setHostIdentifiers(AllocEngine::ClientContext6 &ctx)
Set host identifiers within a context.
void processPacketPktSend(hooks::CalloutHandlePtr &callout_handle, Pkt6Ptr &query, Pkt6Ptr &rsp, ConstSubnet6Ptr &subnet)
Executes pkt6_send callout.
Pkt6Ptr processDhcp6Query(Pkt6Ptr query)
Process a single incoming DHCPv6 query.
void processDhcp6QueryAndSendResponse(Pkt6Ptr query)
Process a single incoming DHCPv6 query.
asiolink::IOServicePtr & getIOService()
Returns pointer to the IO service used by the server.
void appendRequestedOptions(const Pkt6Ptr &question, Pkt6Ptr &answer, const CfgOptionList &co_list)
Appends requested options to server's answer.
uint16_t client_port_
UDP port number to which server sends all responses.
CBControlDHCPv6Ptr cb_control_
Controls access to the configuration backends.
isc::dhcp::ConstSubnet6Ptr selectSubnet(const Pkt6Ptr &question, bool &drop)
Selects a subnet for a given client's packet.
volatile bool shutdown_
Indicates if shutdown is in progress.
void checkPostAssignmentChanges(const Pkt6Ptr &question, Pkt6Ptr &answer, AllocEngine::ClientContext6 &ctx, const ConstSubnet6Ptr orig_subnet)
Iterates over new leases, update stale DNS entries.
Pkt6Ptr processSolicit(AllocEngine::ClientContext6 &ctx)
Processes incoming Solicit and returns response.
void startD2()
Starts DHCP_DDNS client IO if DDNS updates are enabled.
static std::string duidToString(const OptionPtr &opt)
converts DUID to text Converts content of DUID option to a text representation, e....
OptionPtr getPDExclude(const AllocEngine::ClientContext6 &ctx, const Lease6Ptr &lease)
Return the PD exclude option to include.
static void removeDependentEvaluatedClasses(const Pkt6Ptr &pkt)
Removed evaluated client classes.
void createNameChangeRequests(const Pkt6Ptr &answer, AllocEngine::ClientContext6 &ctx)
Creates a number of isc::dhcp_ddns::NameChangeRequest objects based on the DHCPv6 Client FQDN Option.
Pkt6Ptr processInfRequest(AllocEngine::ClientContext6 &ctx)
Processes incoming Information-request message.
uint16_t server_port_
UDP port number on which server listens.
void appendRequestedVendorOptions(const Pkt6Ptr &question, Pkt6Ptr &answer, AllocEngine::ClientContext6 &ctx, const CfgOptionList &co_list)
Appends requested vendor options to server's answer.
bool declineLease(const Pkt6Ptr &decline, const Lease6Ptr lease, boost::shared_ptr< Option6IA > ia_rsp)
Declines specific IPv6 lease.
void discardPackets()
Discards parked packets Clears the packet parking lots of all packets.
Exception thrown when host name sanitizing reduces the domain name to an empty string.
static std::list< std::string > getDBVersions()
Return extended version info for registered backends.
ConstHostCollection getAll6(const SubnetID &subnet_id, const HostMgrOperationTarget target) const
Return all hosts in a DHCPv6 subnet.
static void create()
Creates new instance of the HostMgr.
static HostMgr & instance()
Returns a sole instance of the HostMgr.
std::string getIdentifierAsText() const
Returns host identifier in a textual form.
IdentifierType
Type of the host identifier.
@ IDENT_FLEX
Flexible host identifier.
static IfaceMgr & instance()
IfaceMgr is a singleton class.
bool send(const Pkt6Ptr &pkt)
Sends an IPv6 packet.
void closeSockets()
Closes all open sockets.
static TrackingLeaseMgr & instance()
Return current lease manager.
static std::list< std::string > getDBVersions()
Return extended version info for registered backends.
static void destroy()
Destroy lease manager.
virtual bool deleteLease(const Lease4Ptr &lease)=0
Deletes an IPv4 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.
static std::list< std::string > getDBVersions()
Return extended version info for registered backends.
static void splitNtpServerOptions6(isc::dhcp::OptionCollection &options)
Split NTP server option to one suboption per instance.
Controls the DHCP service enabling status.
Represents DHCPv6 Client FQDN Option (code 39).
static const uint8_t FLAG_S
S bit.
static const uint8_t FLAG_N
N bit.
Class that represents IAPREFIX option in DHCPv6.
uint32_t getIAID() const
Returns IA identifier.
OptionPtr option_
Option instance.
bool allowedForClientClasses(const ClientClasses &cclasses) const
Validates an OptionDescriptor's client-classes against a list of classes.
This class represents vendor-specific information option.
const OptionCollection & getOptions() const
Returns all encapsulated options.
OptionPtr getOption(uint16_t type) const
Returns shared_ptr to suboption of specific type.
Represents a DHCPv6 packet.
virtual std::string getLabel() const
Returns text representation of the primary packet identifiers.
An exception that is thrown if a DHCPv6 protocol violation occurs while processing a message (e....
RAII object enabling copying options retrieved from the packet.
Exception thrown when a call to select is interrupted by a signal.
Exception thrown during option unpacking This exception is thrown when an error has occurred,...
Container class for handling the DHCID value within a NameChangeRequest.
Represents a DHCP-DDNS client request.
static std::string const & resultToText(Result const &result)
Convert enum to string.
Result
Defines the outcome of an asynchronous NCR send.
@ NEXT_STEP_PARK
park the packet
@ NEXT_STEP_CONTINUE
continue normally
@ NEXT_STEP_DROP
drop the packet
@ NEXT_STEP_SKIP
skip the next processing step
static int registerHook(const std::string &name)
Register Hook.
static bool calloutsPresent(int index)
Are callouts present?
static std::vector< std::string > getLibraryNames()
Return list of loaded libraries.
static bool unloadLibraries()
Unload libraries.
static void park(const std::string &hook_name, T parked_object, std::function< void()> unpark_callback)
Park an object (packet).
static void callCallouts(int index, CalloutHandle &handle)
Calls the callouts for a given hook.
static void prepareUnloadLibraries()
Prepare the unloading of libraries.
static bool drop(const std::string &hook_name, T parked_object)
Removes parked object without calling a callback.
static void clearParkingLots()
Clears any parking packets.
Wrapper class around callout handle which automatically resets handle's state.
static ServerHooks & getServerHooks()
Return ServerHooks object.
static std::string getVersion()
Version.
File-based Interprocess Sync Class.
Interprocess Sync Locker Class.
bool unlock()
Release the lock.
bool lock()
Acquire the lock (blocks if something else has acquired a lock on the same task name)
int getExitValue()
Fetches the exit value.
Statistics Manager class.
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.
ThreadPool< std::function< void()> > & getThreadPool()
Get the dhcp thread pool.
void apply(bool enabled, uint32_t thread_count, uint32_t queue_size)
Apply the multi-threading related settings.
The OutputBuffer class is a buffer abstraction for manipulating mutable data.
const std::vector< uint8_t > & getVector() const
Return the buffer.
Defines classes for storing client class definitions.
int version()
returns Kea hooks version.
Defines the D2ClientConfig class.
Defines the D2ClientMgr class.
@ DHCPV6_INFORMATION_REQUEST
Defines the Dhcp6to4Ipc class.
#define VENDOR_ID_CABLE_LABS
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
boost::shared_ptr< OptionUint16Array > OptionUint16ArrayPtr
OptionIntArray< uint16_t > OptionUint16Array
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.
int get(CalloutHandle &handle)
The gss-tsig-get command.
When a message is logged with DEBUG severity, the debug level associated with the message is also spe...
#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.
boost::shared_ptr< const Element > ConstElementPtr
ConflictResolutionMode StringToConflictResolutionMode(const std::string &mode_str)
Function which converts string to ConflictResolutionMode enum values.
boost::shared_ptr< NameChangeRequest > NameChangeRequestPtr
Defines a pointer to a NameChangeRequest.
const isc::log::MessageID DHCP6_DDNS_REQUEST_SEND_FAILED
boost::shared_ptr< OptionVendor > OptionVendorPtr
Pointer to a vendor option.
const isc::log::MessageID DHCP6_PD_LEASE_ADVERT
const isc::log::MessageID DHCP6_BUFFER_RECEIVED
const isc::log::MessageID DHCP6_RELEASE_NA_DELETED
isc::log::Logger bad_packet6_logger(DHCP6_BAD_PACKET_LOGGER_NAME)
Logger for rejected packets.
const isc::log::MessageID DHCP6_PACKET_DROP_PARSE_FAIL
const isc::log::MessageID DHCP6_ADDITIONAL_CLASS_NO_TEST
const isc::log::MessageID DHCP6_ADDITIONAL_CLASS_EVAL_RESULT
const isc::log::MessageID DHCP6_RELEASE_PD_DELETED
const isc::log::MessageID DHCP6_LEASE_ALLOC
const isc::log::MessageID DHCP6_FLEX_ID
const isc::log::MessageID DHCP6_REGISTERED_LEASE_ADD_FAIL
uint32_t calculateDdnsTtl(uint32_t lease_lft, const util::Optional< double > &ddns_ttl_percent, const util::Optional< uint32_t > &ddns_ttl, const util::Optional< uint32_t > &ddns_ttl_min, const util::Optional< uint32_t > &ddns_ttl_max)
Calculates TTL for a DNS resource record based on lease life time.
const isc::log::MessageID DHCP6_PACKET_PROCESS_EXCEPTION_MAIN
const isc::log::MessageID DHCP6_HOOK_PACKET_SEND_SKIP
const isc::log::MessageID DHCP6_ADDR_REG_INFORM_CLIENT_CHANGE
const isc::log::MessageID DHCP6_SUBNET_SELECTION_FAILED
const isc::log::MessageID DHCP6_PACKET_DROP_SERVERID_MISMATCH
const isc::log::MessageID DHCP6_HOOK_DECLINE_SKIP
const isc::log::MessageID DHCP6_PD_LEASE_REUSE
const isc::log::MessageID DHCP6_PACKET_DROP_UNICAST
const isc::log::MessageID DHCP6_LEASE_PD_WITHOUT_DUID
const isc::log::MessageID DHCP6_LEASE_ALLOC_FAIL
const isc::log::MessageID DHCP6_ADDITIONAL_CLASS_UNDEFINED
const isc::log::MessageID DHCP6_PACKET_SEND_FAIL
const isc::log::MessageID DHCP6_PACKET_PROCESS_EXCEPTION
void queueNCR(const NameChangeType &chg_type, const Lease4Ptr &lease)
Creates name change request from the DHCPv4 lease.
const isc::log::MessageID DHCP6_CLIENT_FQDN_SCRUBBED_EMPTY
const isc::log::MessageID DHCP6_QUERY_LABEL
const isc::log::MessageID DHCP6_BUFFER_UNPACK
boost::shared_ptr< const Subnet6 > ConstSubnet6Ptr
A const pointer to a Subnet6 object.
std::vector< uint32_t > CfgMACSources
Container for defined MAC/hardware address sources.
const isc::log::MessageID DHCP6_SRV_D2STOP_ERROR
const isc::log::MessageID DHCP6_REGISTERED_LEASE_UPDATE_FAIL
const isc::log::MessageID DHCP6_PACKET_SEND
const isc::log::MessageID DHCP6_DECLINE_FAIL_LEASE_WITHOUT_DUID
const int DBG_DHCP6_BASIC_DATA
Debug level used to log the traces with some basic data.
const isc::log::MessageID DHCP6_HOOK_PACKET_RCVD_SKIP
const isc::log::MessageID DHCP6_ADDR6_REGISTER_DISABLED_DROP
const isc::log::MessageID DHCP6_ADDITIONAL_CLASS_EVAL_ERROR
boost::shared_ptr< DUID > DuidPtr
const isc::log::MessageID DHCP6_OPEN_SOCKET
const isc::log::MessageID DHCP6_PACK_FAIL
const isc::log::MessageID DHCP6_RELEASE_PD_FAIL_WRONG_IAID
const isc::log::MessageID DHCP6_HOOK_DDNS_UPDATE
boost::shared_ptr< Lease6 > Lease6Ptr
Pointer to a Lease6 structure.
std::vector< Lease6Ptr > Lease6Collection
A collection of IPv6 leases.
const int DBG_DHCP6_HOOKS
Debug level used to trace hook related operations.
const isc::log::MessageID DHCP6_HOOK_LEASE6_RELEASE_NA_SKIP
ContinuationPtr makeContinuation(Continuation &&cont)
Continuation factory.
const int DBG_DHCP6_START
Debug level used to log information during server startup.
const isc::log::MessageID DHCP6_PD_LEASE_ALLOC
const isc::log::MessageID DHCP6_DDNS_GENERATE_FQDN
const isc::log::MessageID DHCP6_RELEASE_PD_EXPIRED
boost::shared_ptr< Option6IA > Option6IAPtr
A pointer to the Option6IA object.
const isc::log::MessageID DHCP6_DDNS_REMOVE_OLD_LEASE_FQDN
boost::shared_ptr< const CfgRSOO > ConstCfgRSOOPtr
Pointer to the const object.
boost::shared_ptr< const CfgHostOperations > ConstCfgHostOperationsPtr
Pointer to the const object.
std::multimap< unsigned int, OptionPtr > OptionCollection
A collection of DHCP (v4 or v6) options.
const isc::log::MessageID DHCP6_SUBNET_DATA
const isc::log::MessageID DHCP6_UNKNOWN_MSG_RECEIVED
boost::shared_ptr< ClientClassDef > ClientClassDefPtr
a pointer to an ClientClassDef
boost::shared_ptr< DdnsParams > DdnsParamsPtr
Defines a pointer for DdnsParams instances.
const isc::log::MessageID DHCP6_HOOK_SUBNET6_SELECT_DROP
const isc::log::MessageID DHCP6_ADD_GLOBAL_STATUS_CODE
boost::shared_ptr< Option6IAPrefix > Option6IAPrefixPtr
Pointer to the Option6IAPrefix object.
const isc::log::MessageID DHCP6_DDNS_RESPONSE_FQDN_DATA
const isc::log::MessageID DHCP6_RELEASE_NA
const isc::log::MessageID DHCP6_CLASSES_ASSIGNED
const isc::log::MessageID DHCP6_REQUIRED_OPTIONS_CHECK_FAIL
const isc::log::MessageID DHCP6_PROCESS_IA_NA_EXTEND
std::pair< IPv6ResrvIterator, IPv6ResrvIterator > IPv6ResrvRange
const isc::log::MessageID DHCP6_RELEASE_PD_FAIL
const isc::log::MessageID DHCP6_SRV_CONSTRUCT_ERROR
const isc::log::MessageID DHCP6_LEASE_RENEW
const char * DOCSIS3_CLASS_EROUTER
The class as specified in vendor-class option by the devices.
const isc::log::MessageID DHCP6_RELEASE_NA_FAIL
boost::shared_ptr< HWAddr > HWAddrPtr
Shared pointer to a hardware address structure.
const isc::log::MessageID DHCP6_PACKET_PROCESS_STD_EXCEPTION
const isc::log::MessageID DHCP6_PACKET_RECEIVE_FAIL
const isc::log::MessageID DHCP6_PROCESS_IA_NA_SOLICIT
const isc::log::MessageID DHCP6_ADDR_REG_INFORM_FAIL
const isc::log::MessageID DHCP6_DECLINE_FAIL_IAID_MISMATCH
const isc::log::MessageID DHCP6_HOOK_SUBNET6_SELECT_PARK
OptionContainer::nth_index< 5 >::type OptionContainerCancelIndex
Type of the index #5 - option cancellation flag.
boost::shared_ptr< Option6StatusCode > Option6StatusCodePtr
Pointer to the isc::dhcp::Option6StatusCode.
std::pair< OptionContainerPersistIndex::const_iterator, OptionContainerPersistIndex::const_iterator > OptionContainerPersistRange
Pair of iterators to represent the range of options having the same persistency flag.
boost::shared_ptr< SharedNetwork6 > SharedNetwork6Ptr
Pointer to SharedNetwork6 object.
const isc::log::MessageID DHCP4_HOOK_SUBNET6_SELECT_PARKING_LOT_FULL
isc::log::Logger packet6_logger(DHCP6_PACKET_LOGGER_NAME)
Logger for processed packets.
const isc::log::MessageID DHCP6_DECLINE_LEASE
boost::shared_ptr< Expression > ExpressionPtr
const isc::log::MessageID DHCP6_LEASE_ADVERT_FAIL
const isc::log::MessageID DHCP6_HOOK_LEASES6_PARKING_LOT_FULL
const isc::log::MessageID DHCP6_PD_LEASE_ADVERT_FAIL
boost::shared_ptr< Pool > PoolPtr
a pointer to either IPv4 or IPv6 Pool
isc::hooks::CalloutHandlePtr getCalloutHandle(const T &pktptr)
CalloutHandle Store.
const isc::log::MessageID DHCP6_PACKET_PROCESS_FAIL
const isc::log::MessageID DHCP6_RELEASE_NA_EXPIRED
boost::shared_ptr< ClientClassDictionary > ClientClassDictionaryPtr
Defines a pointer to a ClientClassDictionary.
const isc::log::MessageID DHCP6_PACKET_RECEIVED
const isc::log::MessageID DHCP6_RESPONSE_DATA
const isc::log::MessageID DHCP6_DDNS_RECEIVE_FQDN
const isc::log::MessageID DHCP6_PACKET_OPTIONS_SKIPPED
const isc::log::MessageID DHCP6_NO_INTERFACES
const isc::log::MessageID DHCP6_RELEASE_PD_FAIL_WRONG_DUID
const isc::log::MessageID DHCP6_LEASE_REUSE
isc::log::Logger ddns6_logger(DHCP6_DDNS_LOGGER_NAME)
Logger for Hostname or FQDN processing.
const isc::log::MessageID DHCP6_HOOK_ADDR6_REGISTER_SKIP
boost::shared_ptr< Continuation > ContinuationPtr
Define the type of shared pointers to continuations.
boost::shared_ptr< OptionContainer > OptionContainerPtr
Pointer to the OptionContainer object.
boost::shared_ptr< ClientClassDefList > ClientClassDefListPtr
Defines a pointer to a ClientClassDefList.
const isc::log::MessageID DHCP6_HOOK_LEASES6_COMMITTED_DROP
const isc::log::MessageID DHCP6_HOOK_PACKET_SEND_DROP
const isc::log::MessageID DHCP6_DDNS_GENERATED_FQDN_UPDATE_FAIL
const isc::log::MessageID DHCP6_PACKET_DROP_DROP_CLASS2
boost::shared_ptr< Option6IAAddr > Option6IAAddrPtr
A pointer to the isc::dhcp::Option6IAAddr object.
const char * DOCSIS3_CLASS_MODEM
DOCSIS3.0 compatible cable modem.
const isc::log::MessageID DHCP6_SHUTDOWN_REQUEST
const isc::log::MessageID DHCP6_HOOK_BUFFER_RCVD_SKIP
const isc::log::MessageID DHCP6_DECLINE_FAIL
bool evaluateBool(const Expression &expr, Pkt &pkt)
Evaluate a RPN expression for a v4 or v6 packet and return a true or false decision.
const isc::log::MessageID DHCP6_QUERY_DATA
const int DBG_DHCP6_DETAIL_DATA
This level is used to log the contents of packets received and sent.
boost::shared_ptr< const Host > ConstHostPtr
Const pointer to the Host object.
const isc::log::MessageID DHCP6_PROCESS_IA_PD_SOLICIT
const isc::log::MessageID DHCP6_PACKET_DROP_DROP_CLASS
boost::shared_ptr< Lease6Collection > Lease6CollectionPtr
A shared pointer to the collection of IPv6 leases.
const isc::log::MessageID DHCP6_DECLINE_PROCESS_IA
const isc::log::MessageID DHCP6_PROCESS_IA_NA_REQUEST
OptionContainer::nth_index< 2 >::type OptionContainerPersistIndex
Type of the index #2 - option persistency flag.
isc::log::Logger lease6_logger(DHCP6_LEASE_LOGGER_NAME)
Logger for lease allocation logic.
const isc::log::MessageID DHCP6_CLASS_UNCONFIGURED
boost::shared_ptr< OptionVendorClass > OptionVendorClassPtr
Defines a pointer to the OptionVendorClass.
const isc::log::MessageID DHCP6_LEASE_NA_WITHOUT_DUID
const isc::log::MessageID DHCP6_HOOK_DECLINE_DROP
const isc::log::MessageID DHCP6_PROCESS_IA_PD_REQUEST
const isc::log::MessageID DHCP6_HOOK_SUBNET6_SELECT_SKIP
const isc::log::MessageID DHCP6_PD_LEASE_RENEW
const isc::log::MessageID DHCP6_CLASS_ASSIGNED
boost::shared_ptr< const Subnet > ConstSubnetPtr
A generic pointer to either const Subnet4 or const Subnet6 object.
boost::shared_ptr< Pkt6 > Pkt6Ptr
A pointer to Pkt6 packet.
const isc::log::MessageID DHCP6_PROCESS_IA_NA_RELEASE
const isc::log::MessageID DHCP6_PACKET_DROP_DROP_CLASS_EARLY
const isc::log::MessageID DHCP6_LEASE_ADVERT
std::vector< uint8_t > OptionBuffer
buffer types used in DHCP code.
const isc::log::MessageID DHCP6_DECLINE_FAIL_DUID_MISMATCH
const isc::log::MessageID DHCP6_SRV_UNLOAD_LIBRARIES_ERROR
const isc::log::MessageID DHCP6_HOOK_LEASES6_COMMITTED_PARK
const isc::log::MessageID DHCP6_DECLINE_FAIL_NO_LEASE
const isc::log::MessageID DHCP6_RAPID_COMMIT
const isc::log::MessageID DHCP6_BUFFER_WAIT_SIGNAL
bool isClientClassBuiltIn(const ClientClass &client_class)
Check if a client class name is builtin.
boost::shared_ptr< Option6ClientFqdn > Option6ClientFqdnPtr
A pointer to the Option6ClientFqdn object.
const isc::log::MessageID DHCP6_PROCESS_IA_PD_EXTEND
std::pair< OptionContainerCancelIndex::const_iterator, OptionContainerCancelIndex::const_iterator > OptionContainerCancelRange
Pair of iterators to represent the range of options having the same cancellation flag.
const isc::log::MessageID DHCP6_CLASSES_ASSIGNED_AFTER_SUBNET_SELECTION
const isc::log::MessageID DHCP6_PACKET_PROCESS_STD_EXCEPTION_MAIN
const int DBG_DHCP6_BASIC
Debug level used to trace basic operations within the code.
const isc::log::MessageID DHCP6_HOOK_ADDR6_REGISTER_DROP
isc::log::Logger dhcp6_logger(DHCP6_APP_LOGGER_NAME)
Base logger for DHCPv6 server.
const isc::log::MessageID DHCP6_SUBNET_SELECTED
const isc::log::MessageID DHCP6_RELEASE_NA_FAIL_WRONG_IAID
const isc::log::MessageID DHCP6_HOOK_BUFFER_RCVD_DROP
boost::shared_ptr< Option > OptionPtr
const isc::log::MessageID DHCP6_DDNS_CREATE_ADD_NAME_CHANGE_REQUEST
const isc::log::MessageID DHCP6_RELEASE_NA_FAIL_WRONG_DUID
const isc::log::MessageID DHCP6_ADD_STATUS_CODE_FOR_IA
isc::log::Logger options6_logger(DHCP6_OPTIONS_LOGGER_NAME)
Logger for options parser.
const isc::log::MessageID DHCP6_LEASE_DATA
const isc::log::MessageID DHCP6_HOOK_BUFFER_SEND_SKIP
const int DBG_DHCP6_DETAIL
Debug level used to trace detailed errors.
const isc::log::MessageID DHCP6_SUBNET_DYNAMICALLY_CHANGED
const isc::log::MessageID DHCP6_PACKET_QUEUE_FULL
const isc::log::MessageID DHCP6_PD_LEASE_ALLOC_FAIL
const isc::log::MessageID DHCP6_HOOK_LEASE6_RELEASE_PD_SKIP
const isc::log::MessageID DHCP6_RELEASE_PD
std::list< ConstCfgOptionPtr > CfgOptionList
Const pointer list.
const isc::log::MessageID DHCP6_DDNS_FQDN_GENERATED
const isc::log::MessageID DHCP6_PACKET_DROP_DHCP_DISABLED
boost::shared_ptr< Pool6 > Pool6Ptr
a pointer an IPv6 Pool
isc::log::Logger hooks_logger("hooks")
Hooks Logger.
boost::shared_ptr< CalloutHandle > CalloutHandlePtr
A shared pointer to a CalloutHandle object.
boost::shared_ptr< ParkingLot > ParkingLotPtr
Type of the pointer to the parking lot.
const int DBGLVL_TRACE_BASIC
Trace basic operations.
const int DBGLVL_PKT_HANDLING
This debug level is reserved for logging the details of packet handling, such as dropping the packet ...
bool equalValues(const T &ptr1, const T &ptr2)
This function checks if two pointers are non-null and values are equal.
Defines the logger used by the top-level component of kea-lfc.
This file defines abstract classes for exchanging NameChangeRequests.
This file provides the classes needed to embody, compose, and decompose DNS update requests that are ...
Standard implementation of read-write mutexes with writer preference using C++11 mutex and condition ...
#define DHCP6_OPTION_SPACE
Lease6Collection old_leases_
A pointer to any old leases that the client had before update but are no longer valid after the updat...
Option6IAPtr ia_rsp_
A pointer to the IA_NA/IA_PD option to be sent in response.
Lease::Type type_
Lease type (IA or PD)
Lease6Collection changed_leases_
A pointer to any leases that have changed FQDN information.
void addHint(const asiolink::IOAddress &prefix, const uint8_t prefix_len=128, const uint32_t preferred=0, const uint32_t valid=0)
Convenience method adding new hint.
Lease6Collection reused_leases_
Set of leases marked for reuse by lease caching.
HintContainer hints_
Client's hints.
uint32_t iaid_
The IAID field from IA_NA or IA_PD that is being processed.
Context information for the DHCPv6 leases allocation.
IAContext & currentIA()
Returns IA specific context for the currently processed IA.
std::vector< IAContext > ias_
Container holding IA specific contexts.
void addHostIdentifier(const Host::IdentifierType &id_type, const std::vector< uint8_t > &identifier)
Convenience function adding host identifier into host_identifiers_ list.
bool fake_allocation_
Indicates if this is a real or fake allocation.
ConstHostPtr currentHost() const
Returns host from the most preferred subnet.
DuidPtr duid_
Client identifier.
Lease6Collection new_leases_
A collection of newly allocated leases.
std::vector< IAContext > & getIAContexts()
HWAddrPtr hwaddr_
Hardware/MAC address (if available, may be NULL)
hooks::CalloutHandlePtr callout_handle_
Callout handle associated with the client's message.
ResourceContainer allocated_resources_
Holds addresses and prefixes allocated for all IAs.
bool rev_dns_update_
A boolean value which indicates that server takes responsibility for the reverse DNS Update for this ...
DdnsParamsPtr getDdnsParams()
Returns the set of DDNS behavioral parameters based on the selected subnet.
ConstHostPtr globalHost() const
Returns global host reservation if there is one.
Pkt6Ptr query_
A pointer to the client's message.
bool early_global_reservations_lookup_
Indicates if early global reservation is enabled.
std::string hostname_
Hostname.
void createIAContext()
Creates new IA context.
ConstSubnet6Ptr subnet_
Subnet selected for the client by the server.
std::map< SubnetID, ConstHostPtr > hosts_
Holds a map of hosts belonging to the client within different subnets.
bool fwd_dns_update_
A boolean value which indicates that server takes responsibility for the forward DNS Update for this ...
Structure that holds a lease for IPv6 address and/or prefix.
static const uint32_t INFINITY_LFT
Infinity (means static, i.e. never expire)
static std::string lifetimeToText(uint32_t lifetime)
Print lifetime.
static const uint32_t STATE_DEFAULT
A lease in the default state.
static const uint32_t STATE_RELEASED
Released lease held in the database for lease affinity.
@ TYPE_PD
the lease contains IPv6 prefix (for prefix delegation)
@ TYPE_NA
the lease contains non-temporary IPv6 address
static const uint32_t STATE_REGISTERED
Registered self-generated lease.
Subnet selector used to specify parameters used to select a subnet.
bool add(const WorkItemPtr &item)
add a work item to the thread pool