Kea 2.0.3
simple_add.cc
Go to the documentation of this file.
1// Copyright (C) 2020-2021 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#include <config.h>
8
9#include <d2/simple_add.h>
10#include <d2srv/d2_cfg_mgr.h>
11#include <d2srv/d2_log.h>
12
13#include <util/buffer.h>
14#include <dns/rdataclass.h>
15
16#include <functional>
17
18namespace isc {
19namespace d2 {
20
21// SimpleAddTransaction states
24
25// SimpleAddTransaction events
28
32 DdnsDomainPtr& forward_domain,
33 DdnsDomainPtr& reverse_domain,
34 D2CfgMgrPtr& cfg_mgr)
35 : NameChangeTransaction(io_service, ncr, forward_domain, reverse_domain,
36 cfg_mgr) {
37 if (ncr->getChangeType() != isc::dhcp_ddns::CHG_ADD) {
39 "SimpleAddTransaction, request type must be CHG_ADD");
40 }
41}
42
44}
45
46void
48 // Call superclass impl first.
50
51 // Define SimpleAddTransaction events.
52 defineEvent(FQDN_IN_USE_EVT, "FQDN_IN_USE_EVT");
53 defineEvent(FQDN_NOT_IN_USE_EVT, "FQDN_NOT_IN_USE_EVT");
54}
55
56void
58 // Call superclass implementation first to verify its events. These are
59 // events common to all transactions, and they must be defined.
60 // SELECT_SERVER_EVT
61 // SERVER_SELECTED_EVT
62 // SERVER_IO_ERROR_EVT
63 // NO_MORE_SERVERS_EVT
64 // IO_COMPLETED_EVT
65 // UPDATE_OK_EVT
66 // UPDATE_FAILED_EVT
68
69 // Verify SimpleAddTransaction events by attempting to fetch them.
72}
73
74void
76 // Call superclass impl first.
78
79 // Define SimpleAddTransaction states.
80 defineState(READY_ST, "READY_ST",
81 std::bind(&SimpleAddTransaction::readyHandler, this));
82
83 defineState(SELECTING_FWD_SERVER_ST, "SELECTING_FWD_SERVER_ST",
85
86 defineState(SELECTING_REV_SERVER_ST, "SELECTING_REV_SERVER_ST",
88
89 defineState(REPLACING_FWD_ADDRS_ST, "REPLACING_FWD_ADDRS_ST",
91
92 defineState(REPLACING_REV_PTRS_ST, "REPLACING_REV_PTRS_ST",
94
95 defineState(PROCESS_TRANS_OK_ST, "PROCESS_TRANS_OK_ST",
97
98 defineState(PROCESS_TRANS_FAILED_ST, "PROCESS_TRANS_FAILED_ST",
100}
101
102void
104 // Call superclass implementation first to verify its states. These are
105 // states common to all transactions, and they must be defined.
106 // READY_ST
107 // SELECTING_FWD_SERVER_ST
108 // SELECTING_REV_SERVER_ST
109 // PROCESS_TRANS_OK_ST
110 // PROCESS_TRANS_FAILED_ST
112
113 // Verify SimpleAddTransaction states by attempting to fetch them.
116}
117
118void
120 switch(getNextEvent()) {
121 case START_EVT:
122 if (getForwardDomain()) {
123 // Request includes a forward change, do that first.
125 } else {
126 // Reverse change only, transition accordingly.
128 }
129
130 break;
131 default:
132 // Event is invalid.
134 "Wrong event for context: " << getContextStr());
135 }
136}
137
138void
140 switch(getNextEvent()) {
142 // First time through for this transaction, so initialize server
143 // selection.
145 break;
147 // We failed to communicate with current server. Attempt to select
148 // another one below.
149 break;
150 default:
151 // Event is invalid.
153 "Wrong event for context: " << getContextStr());
154 }
155
156 // Select the next server from the list of forward servers.
157 if (selectNextServer()) {
158 // We have a server to try.
160 }
161 else {
162 // Server list is exhausted, so fail the transaction.
164 }
165}
166
167void
169 if (doOnEntry()) {
170 // Clear the update attempts count on initial transition.
172 }
173
174 switch(getNextEvent()) {
176 try {
179 } catch (const std::exception& ex) {
180 // While unlikely, the build might fail if we have invalid
181 // data. Should that be the case, we need to fail the
182 // transaction.
184 .arg(getRequestId())
185 .arg(getNcr()->toText())
186 .arg(ex.what());
188 break;
189 }
190
191 // Call sendUpdate() to initiate the async send. Note it also sets
192 // next event to NOP_EVT.
193 sendUpdate("Forward Add");
194 break;
195
196 case IO_COMPLETED_EVT: {
197 switch (getDnsUpdateStatus()) {
198 case DNSClient::SUCCESS: {
199 // We successfully received a response packet from the server.
200 const dns::Rcode& rcode = getDnsUpdateResponse()->getRcode();
201 if (rcode == dns::Rcode::NOERROR()) {
202 // We were able to add it. Mark it as done.
204
205 // If request calls for reverse update then do that next,
206 // otherwise we can process ok.
207 if (getReverseDomain()) {
209 } else {
211 }
212 } else {
213 // Any other value means cease. Really shouldn't happen.
215 .arg(getRequestId())
216 .arg(getCurrentServer()->toText())
217 .arg(getNcr()->getFqdn())
218 .arg(rcode.getCode());
220 }
221
222 break;
223 }
224
226 case DNSClient::OTHER:
227 // We couldn't send to the current server, log it and set up
228 // to select the next server for a retry.
229 // @note For now we treat OTHER as an IO error like TIMEOUT. It
230 // is not entirely clear if this is accurate.
232 .arg(getRequestId())
233 .arg(getNcr()->getFqdn())
234 .arg(getCurrentServer()->toText());
235
237 break;
238
240 // A response was received but was corrupt. Retry it like an IO
241 // error.
243 .arg(getRequestId())
244 .arg(getCurrentServer()->toText())
245 .arg(getNcr()->getFqdn());
246
248 break;
249
250 default:
251 // Any other value and we will fail this transaction, something
252 // bigger is wrong.
254 .arg(getRequestId())
255 .arg(getDnsUpdateStatus())
256 .arg(getNcr()->getFqdn())
257 .arg(getCurrentServer()->toText());
258
260 break;
261 } // end switch on dns_status
262
263 break;
264 } // end case IO_COMPLETE_EVT
265
266 default:
267 // Event is invalid.
269 "Wrong event for context: " << getContextStr());
270 }
271}
272
273void
275 switch(getNextEvent()) {
277 // First time through for this transaction, so initialize server
278 // selection.
280 break;
282 // We failed to communicate with current server. Attempt to select
283 // another one below.
284 break;
285 default:
286 // Event is invalid.
288 "Wrong event for context: " << getContextStr());
289 }
290
291 // Select the next server from the list of forward servers.
292 if (selectNextServer()) {
293 // We have a server to try.
295 }
296 else {
297 // Server list is exhausted, so fail the transaction.
299 }
300}
301
302
303void
305 if (doOnEntry()) {
306 // Clear the update attempts count on initial transition.
308 }
309
310 switch(getNextEvent()) {
312 try {
315 } catch (const std::exception& ex) {
316 // While unlikely, the build might fail if we have invalid
317 // data. Should that be the case, we need to fail the
318 // transaction.
320 .arg(getRequestId())
321 .arg(getNcr()->toText())
322 .arg(ex.what());
324 break;
325 }
326
327 // Call sendUpdate() to initiate the async send. Note it also sets
328 // next event to NOP_EVT.
329 sendUpdate("Reverse Replace");
330 break;
331
332 case IO_COMPLETED_EVT: {
333 switch (getDnsUpdateStatus()) {
334 case DNSClient::SUCCESS: {
335 // We successfully received a response packet from the server.
336 const dns::Rcode& rcode = getDnsUpdateResponse()->getRcode();
337 if (rcode == dns::Rcode::NOERROR()) {
338 // We were able to update the reverse mapping. Mark it as done.
341 } else {
342 // Per RFC4703 any other value means cease.
343 // If we get not authorized should try the next server in
344 // the list? @todo This needs some discussion perhaps.
346 .arg(getRequestId())
347 .arg(getCurrentServer()->toText())
348 .arg(getNcr()->getFqdn())
349 .arg(rcode.getCode());
351 }
352
353 break;
354 }
355
357 case DNSClient::OTHER:
358 // We couldn't send to the current server, log it and set up
359 // to select the next server for a retry.
360 // @note For now we treat OTHER as an IO error like TIMEOUT. It
361 // is not entirely clear if this is accurate.
363 .arg(getRequestId())
364 .arg(getNcr()->getFqdn())
365 .arg(getCurrentServer()->toText());
366
367 // If we are out of retries on this server, we go back and start
368 // all over on a new server.
370 break;
371
373 // A response was received but was corrupt. Retry it like an IO
374 // error.
376 .arg(getRequestId())
377 .arg(getCurrentServer()->toText())
378 .arg(getNcr()->getFqdn());
379
380 // If we are out of retries on this server, we go back and start
381 // all over on a new server.
383 break;
384
385 default:
386 // Any other value and we will fail this transaction, something
387 // bigger is wrong.
390 .arg(getRequestId())
391 .arg(getDnsUpdateStatus())
392 .arg(getNcr()->getFqdn())
393 .arg(getCurrentServer()->toText());
394
396 break;
397 } // end switch on dns_status
398
399 break;
400 } // end case IO_COMPLETE_EVT
401
402 default:
403 // Event is invalid.
405 "Wrong event for context: " << getContextStr());
406 }
407}
408
409void
411 switch(getNextEvent()) {
412 case UPDATE_OK_EVT:
414 .arg(getRequestId())
415 .arg(getNcr()->toText());
417 endModel();
418 break;
419 default:
420 // Event is invalid.
422 "Wrong event for context: " << getContextStr());
423 }
424}
425
426void
428 switch(getNextEvent()) {
433 .arg(getRequestId())
435 endModel();
436 break;
437 default:
438 // Event is invalid.
440 "Wrong event for context: " << getContextStr());
441 }
442}
443
444void
446 // Construct an empty request.
448
449 // Construct dns::Name from NCR fqdn.
450 dns::Name fqdn(dns::Name(getNcr()->getFqdn()));
451
452 // There are no prerequisites.
453
454 // Build the Update Section. First we delete any pre-existing
455 // FQDN/IP and DHCID RRs. Then we add new ones.
456
457 // Create the FQDN/IP 'delete' RR and add it to update section.
458 dns::RRsetPtr update(new dns::RRset(fqdn, dns::RRClass::ANY(),
460
461 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
462
463 // Create the DHCID 'delete' RR and add it to the update section.
464 update.reset(new dns::RRset(fqdn, dns::RRClass::ANY(),
466 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
467
468 // Now make the new RRs.
469 // Create the TTL based on lease length.
470 dns::RRTTL lease_ttl(getNcr()->getLeaseLength());
471
472 // Create the FQDN/IP 'add' RR and add it to the to update section.
473 // Based on RFC 2136, section 2.5.1
474 update.reset(new dns::RRset(fqdn, dns::RRClass::IN(),
475 getAddressRRType(), lease_ttl));
476
477 addLeaseAddressRdata(update);
478 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
479
480 // Now create the FQDN/DHCID 'add' RR and add it to update section.
481 // Based on RFC 2136, section 2.5.1
482 update.reset(new dns::RRset(fqdn, dns::RRClass::IN(),
483 dns::RRType::DHCID(), lease_ttl));
484
485 // We add the DHCID for auditing purposes and in the event
486 // conflict resolution is later enabled.
487 addDhcidRdata(update);
488 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
489
490 // Set the transaction's update request to the new request.
491 setDnsUpdateRequest(request);
492}
493
494void
496 // Construct an empty request.
498
499 // Create the reverse IP address "FQDN".
500 std::string rev_addr = D2CfgMgr::reverseIpAddress(getNcr()->getIpAddress());
501 dns::Name rev_ip(rev_addr);
502
503 // Create the TTL based on lease length.
504 dns::RRTTL lease_ttl(getNcr()->getLeaseLength());
505
506 // There are no prerequisites.
507
508 // Create the FQDN/IP PTR 'delete' RR for this IP and add it to
509 // the update section.
510 dns::RRsetPtr update(new dns::RRset(rev_ip, dns::RRClass::ANY(),
512 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
513
514 // Create the DHCID 'delete' RR and add it to the update section.
515 update.reset(new dns::RRset(rev_ip, dns::RRClass::ANY(),
517 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
518
519 // Create the FQDN/IP PTR 'add' RR, add the FQDN as the PTR Rdata
520 // then add it to update section.
521 update.reset(new dns::RRset(rev_ip, dns::RRClass::IN(),
522 dns::RRType::PTR(), lease_ttl));
523 addPtrRdata(update);
524 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
525
526 // Create the FQDN/IP PTR 'add' RR, add the DHCID Rdata
527 // then add it to update section.
528 update.reset(new dns::RRset(rev_ip, dns::RRClass::IN(),
529 dns::RRType::DHCID(), lease_ttl));
530 addDhcidRdata(update);
531 request->addRRset(D2UpdateMessage::SECTION_UPDATE, update);
532
533 // Set the transaction's update request to the new request.
534 setDnsUpdateRequest(request);
535}
536
537} // namespace isc::d2
538} // namespace isc
static std::string reverseIpAddress(const std::string &address)
Generate a reverse order string for the given IP address.
Definition: d2_cfg_mgr.cc:170
@ TIMEOUT
No response, timeout.
Definition: dns_client.h:60
@ OTHER
Other, unclassified error.
Definition: dns_client.h:63
@ INVALID_RESPONSE
Response received but invalid.
Definition: dns_client.h:62
@ SUCCESS
Response received and is ok.
Definition: dns_client.h:59
Embodies the "life-cycle" required to carry out a DDNS update.
Definition: nc_trans.h:77
static const int SELECTING_FWD_SERVER_ST
State in which forward DNS server selection is done.
Definition: nc_trans.h:91
void retryTransition(const int fail_to_state)
Determines the state and next event based on update attempts.
Definition: nc_trans.cc:286
static const int PROCESS_TRANS_FAILED_ST
State which processes an unsuccessful transaction conclusion.
Definition: nc_trans.h:105
static const int READY_ST
State from which a transaction is started.
Definition: nc_trans.h:83
const D2UpdateMessagePtr & getDnsUpdateResponse() const
Fetches the most recent DNS update response packet.
Definition: nc_trans.cc:553
static const int PROCESS_TRANS_OK_ST
State which processes successful transaction conclusion.
Definition: nc_trans.h:102
static const int UPDATE_OK_EVT
Issued when the attempted update successfully completed.
Definition: nc_trans.h:135
virtual void verifyStates()
Validates the contents of the set of states.
Definition: nc_trans.cc:265
virtual D2UpdateMessagePtr prepNewRequest(DdnsDomainPtr domain)
Creates a new DNS update request based on the given domain.
Definition: nc_trans.cc:343
static const int UPDATE_FAILED_EVT
Issued when the attempted update fails to complete.
Definition: nc_trans.h:141
const dns::RRType & getAddressRRType() const
Returns the DHCP data type for the lease address.
Definition: nc_trans.cc:573
const dhcp_ddns::NameChangeRequestPtr & getNcr() const
Fetches the NameChangeRequest for this transaction.
Definition: nc_trans.cc:425
void initServerSelection(const DdnsDomainPtr &domain)
Initializes server selection from the given DDNS domain.
Definition: nc_trans.cc:455
static const int IO_COMPLETED_EVT
Issued when a DNS update packet exchange has completed.
Definition: nc_trans.h:130
static const int SELECT_SERVER_EVT
Issued when a server needs to be selected.
Definition: nc_trans.h:113
static const int SERVER_IO_ERROR_EVT
Issued when an update fails due to an IO error.
Definition: nc_trans.h:119
std::string getRequestId() const
Fetches the request id that identifies this transaction.
Definition: nc_trans.cc:435
virtual void defineStates()
Adds states defined by NameChangeTransaction to the state set.
Definition: nc_trans.cc:257
void addLeaseAddressRdata(dns::RRsetPtr &rrset)
Adds an RData for the lease address to the given RRset.
Definition: nc_trans.cc:366
virtual void sendUpdate(const std::string &comment="")
Send the update request to the current server.
Definition: nc_trans.cc:192
void setForwardChangeCompleted(const bool value)
Sets the forward change completion flag to the given value.
Definition: nc_trans.cc:328
void addPtrRdata(dns::RRsetPtr &rrset)
Adds an RData for the lease FQDN to the given RRset.
Definition: nc_trans.cc:408
bool selectNextServer()
Selects the next server in the current server list.
Definition: nc_trans.cc:467
void setNcrStatus(const dhcp_ddns::NameChangeStatus &status)
Sets the status of the transaction's NameChangeRequest.
Definition: nc_trans.cc:538
DdnsDomainPtr & getForwardDomain()
Fetches the forward DdnsDomain.
Definition: nc_trans.cc:445
virtual void verifyEvents()
Validates the contents of the set of events.
Definition: nc_trans.cc:242
void addDhcidRdata(dns::RRsetPtr &rrset)
Adds an RData for the lease client's DHCID to the given RRset.
Definition: nc_trans.cc:388
void clearDnsUpdateRequest()
Destroys the current update request packet.
Definition: nc_trans.cc:303
void clearUpdateAttempts()
Resets the update attempts count.
Definition: nc_trans.cc:308
static const int SELECTING_REV_SERVER_ST
State in which reverse DNS server selection is done.
Definition: nc_trans.h:99
DNSClient::Status getDnsUpdateStatus() const
Fetches the most recent DNS update status.
Definition: nc_trans.cc:548
void setDnsUpdateRequest(D2UpdateMessagePtr &request)
Sets the update request packet to the given packet.
Definition: nc_trans.cc:298
static const int NO_MORE_SERVERS_EVT
Issued when there are no more servers from which to select.
Definition: nc_trans.h:125
virtual void defineEvents()
Adds events defined by NameChangeTransaction to the event set.
Definition: nc_trans.cc:227
void setReverseChangeCompleted(const bool value)
Sets the reverse change completion flag to the given value.
Definition: nc_trans.cc:333
const DnsServerInfoPtr & getCurrentServer() const
Fetches the currently selected server.
Definition: nc_trans.cc:533
static const int SERVER_SELECTED_EVT
Issued when a server has been selected.
Definition: nc_trans.h:116
DdnsDomainPtr & getReverseDomain()
Fetches the reverse DdnsDomain.
Definition: nc_trans.cc:450
std::string transactionOutcomeString() const
Returns a string version of transaction outcome.
Definition: nc_trans.cc:170
Thrown if the SimpleAddTransaction encounters a general error.
Definition: simple_add.h:19
void selectingFwdServerHandler()
State handler for SELECTING_FWD_SERVER_ST.
Definition: simple_add.cc:139
virtual void defineEvents()
Adds events defined by SimpleAddTransaction to the event set.
Definition: simple_add.cc:47
static const int FQDN_IN_USE_EVT
Event sent when an add attempt fails with address in use.
Definition: simple_add.h:60
void readyHandler()
State handler for READY_ST.
Definition: simple_add.cc:119
void processAddOkHandler()
State handler for PROCESS_TRANS_OK_ST.
Definition: simple_add.cc:410
static const int REPLACING_REV_PTRS_ST
State that attempts to replace reverse PTR records.
Definition: simple_add.h:55
void selectingRevServerHandler()
State handler for SELECTING_REV_SERVER_ST.
Definition: simple_add.cc:274
SimpleAddTransaction(asiolink::IOServicePtr &io_service, dhcp_ddns::NameChangeRequestPtr &ncr, DdnsDomainPtr &forward_domain, DdnsDomainPtr &reverse_domain, D2CfgMgrPtr &cfg_mgr)
Constructor.
Definition: simple_add.cc:30
void replacingFwdAddrsHandler()
State handler for REPLACING_FWD_ADDRS_ST.
Definition: simple_add.cc:168
void replacingRevPtrsHandler()
State handler for REPLACING_REV_PTRS_ST.
Definition: simple_add.cc:304
virtual void verifyEvents()
Validates the contents of the set of events.
Definition: simple_add.cc:57
void buildReplaceRevPtrsRequest()
Builds a DNS request to replace a reverse DNS entry for an FQDN.
Definition: simple_add.cc:495
static const int FQDN_NOT_IN_USE_EVT
Event sent when replace attempt to fails with address not in use.
Definition: simple_add.h:63
virtual ~SimpleAddTransaction()
Destructor.
Definition: simple_add.cc:43
static const int REPLACING_FWD_ADDRS_ST
State that attempts to add forward address records.
Definition: simple_add.h:52
virtual void verifyStates()
Validates the contents of the set of states.
Definition: simple_add.cc:103
void processAddFailedHandler()
State handler for PROCESS_TRANS_FAILED_ST.
Definition: simple_add.cc:427
virtual void defineStates()
Adds states defined by SimpleAddTransaction to the state set.
Definition: simple_add.cc:75
void buildReplaceFwdAddressRequest()
Builds a DNS request to add/replace a forward DNS entry for an FQDN.
Definition: simple_add.cc:445
The Name class encapsulates DNS names.
Definition: name.h:223
static const RRClass & ANY()
Definition: rrclass.h:301
static const RRClass & IN()
Definition: rrclass.h:319
The RRTTL class encapsulates TTLs used in DNS resource records.
Definition: rrttl.h:55
static const RRType & PTR()
Definition: rrtype.h:443
static const RRType & DHCID()
Definition: rrtype.h:503
The RRset class is a concrete derived class of BasicRRset which contains a pointer to an additional R...
Definition: rrset.h:847
DNS Response Codes (RCODEs) class.
Definition: rcode.h:40
static const Rcode & NOERROR()
A constant object for the NOERROR Rcode (see Rcode::NOERROR_CODE).
Definition: rcode.h:220
uint16_t getCode() const
Returns the Rcode code value.
Definition: rcode.h:106
const EventPtr & getEvent(unsigned int value)
Fetches the event referred to by value.
Definition: state_model.cc:186
void endModel()
Conducts a normal transition to the end of the model.
Definition: state_model.cc:271
void defineState(unsigned int value, const std::string &label, StateHandler handler, const StatePausing &state_pausing=STATE_PAUSE_NEVER)
Adds an state value and associated label to the set of states.
Definition: state_model.cc:196
unsigned int getNextEvent() const
Fetches the model's next event.
Definition: state_model.cc:373
void defineEvent(unsigned int value, const std::string &label)
Adds an event value and associated label to the set of events.
Definition: state_model.cc:170
void transition(unsigned int state, unsigned int event)
Sets up the model to transition into given state with a given event.
Definition: state_model.cc:264
bool doOnEntry()
Checks if on entry flag is true.
Definition: state_model.cc:339
static const int START_EVT
Event issued to start the model execution.
Definition: state_model.h:295
const StatePtr getStateInternal(unsigned int value)
Fetches the state referred to by value.
Definition: state_model.cc:219
std::string getContextStr() const
Convenience method which returns a string rendition of the current state and next event.
Definition: state_model.cc:443
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
#define LOG_ERROR(LOGGER, MESSAGE)
Macro to conveniently test error output and log it.
Definition: macros.h:32
#define LOG_INFO(LOGGER, MESSAGE)
Macro to conveniently test info output and log it.
Definition: macros.h:20
boost::shared_ptr< D2UpdateMessage > D2UpdateMessagePtr
Pointer to the DNS Update Message.
const isc::log::MessageID DHCP_DDNS_FORWARD_ADD_BUILD_FAILURE
Definition: d2_messages.h:23
boost::shared_ptr< DdnsDomain > DdnsDomainPtr
Defines a pointer for DdnsDomain instances.
Definition: d2_config.h:612
const isc::log::MessageID DHCP_DDNS_FORWARD_ADD_REJECTED
Definition: d2_messages.h:25
const isc::log::MessageID DHCP_DDNS_REVERSE_REPLACE_RESP_CORRUPT
Definition: d2_messages.h:76
boost::shared_ptr< D2CfgMgr > D2CfgMgrPtr
Defines a shared pointer to D2CfgMgr.
Definition: d2_cfg_mgr.h:334
const isc::log::MessageID DHCP_DDNS_ADD_SUCCEEDED
Definition: d2_messages.h:12
const isc::log::MessageID DHCP_DDNS_FORWARD_ADD_IO_ERROR
Definition: d2_messages.h:24
const isc::log::MessageID DHCP_DDNS_ADD_FAILED
Definition: d2_messages.h:11
isc::log::Logger d2_to_dns_logger("d2-to-dns")
Definition: d2_log.h:20
const isc::log::MessageID DHCP_DDNS_REVERSE_REPLACE_REJECTED
Definition: d2_messages.h:75
const isc::log::MessageID DHCP_DDNS_REVERSE_REPLACE_BUILD_FAILURE
Definition: d2_messages.h:73
const isc::log::MessageID DHCP_DDNS_FORWARD_ADD_BAD_DNSCLIENT_STATUS
Definition: d2_messages.h:22
const isc::log::MessageID DHCP_DDNS_REVERSE_REPLACE_BAD_DNSCLIENT_STATUS
Definition: d2_messages.h:72
const isc::log::MessageID DHCP_DDNS_REVERSE_REPLACE_IO_ERROR
Definition: d2_messages.h:74
const isc::log::MessageID DHCP_DDNS_FORWARD_ADD_RESP_CORRUPT
Definition: d2_messages.h:26
boost::shared_ptr< NameChangeRequest > NameChangeRequestPtr
Defines a pointer to a NameChangeRequest.
Definition: ncr_msg.h:212
boost::shared_ptr< AbstractRRset > RRsetPtr
A pointer-like type pointing to an RRset object.
Definition: rrset.h:47
Defines the logger used by the top-level component of kea-lfc.