Kea 3.2.0-git
ncr_msg.h
Go to the documentation of this file.
1// Copyright (C) 2013-2026 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#ifndef NCR_MSG_H
8#define NCR_MSG_H
9
14
15#include <cc/data.h>
16#include <dhcp/duid.h>
17#include <dhcp/hwaddr.h>
18#include <dns/name.h>
19#include <dns/time_utils.h>
21#include <util/buffer.h>
22
23#include <time.h>
24#include <string>
25
26namespace isc {
27namespace dhcp_ddns {
28
31public:
32 NcrMessageError(const char* file, size_t line, const char* what) :
33 isc::Exception(file, line, what) { }
34};
35
39public:
40 DhcidRdataComputeError(const char* file, size_t line, const char* what) :
41 isc::Exception(file, line, what) { }
42};
43
49
57
62
63// DDNS Conflict resolution modes
70
80extern NameChangeFormat stringToNcrFormat(const std::string& fmt_str);
81
88extern std::string ncrFormatToString(NameChangeFormat format);
89
100ConflictResolutionMode StringToConflictResolutionMode(const std::string& mode_str);
101
109
113class D2Dhcid {
114public:
116 D2Dhcid();
117
127 D2Dhcid(const std::string& data);
128
134 D2Dhcid(const isc::dhcp::HWAddrPtr& hwaddr,
135 const std::vector<uint8_t>& wire_fqdn);
136
142 D2Dhcid(const std::vector<uint8_t>& clientid_data,
143 const std::vector<uint8_t>& wire_fqdn);
144
150 D2Dhcid(const isc::dhcp::DUID& duid,
151 const std::vector<uint8_t>& wire_fqdn);
152
156 std::string toStr() const;
157
166 void fromStr(const std::string& data);
167
172 void fromClientId(const std::vector<uint8_t>& clientid_data,
173 const std::vector<uint8_t>& wire_fqdn);
174
183 void fromDUID(const isc::dhcp::DUID& duid,
184 const std::vector<uint8_t>& wire_fqdn);
185
190 void fromHWAddr(const isc::dhcp::HWAddrPtr& hwaddr,
191 const std::vector<uint8_t>& wire_fqdn);
192
196 const std::vector<uint8_t>& getBytes() const {
197 return (bytes_);
198 }
199
201 bool operator==(const D2Dhcid& other) const {
202 return (this->bytes_ == other.bytes_);
203 }
204
206 bool operator!=(const D2Dhcid& other) const {
207 return (this->bytes_ != other.bytes_);
208 }
209
211 bool operator<(const D2Dhcid& other) const {
212 return (this->bytes_ < other.bytes_);
213 }
214
215private:
216
228 void createDigest(const uint8_t identifier_type,
229 const std::vector<uint8_t>& identifier_data,
230 const std::vector<uint8_t>& wire_fqdn);
231
233 std::vector<uint8_t> bytes_;
234};
235
236std::ostream&
237operator<<(std::ostream& os, const D2Dhcid& dhcid);
238
239class NameChangeRequest;
241typedef boost::shared_ptr<NameChangeRequest> NameChangeRequestPtr;
242
244typedef std::map<std::string, isc::data::ConstElementPtr> ElementMap;
245
255public:
266
284 NameChangeRequest(const NameChangeType change_type,
285 const bool forward_change, const bool reverse_change,
286 const std::string& fqdn, const std::string& ip_address,
287 const D2Dhcid& dhcid,
288 const uint32_t lease_length,
290 conflict_resolution_mode = CHECK_WITH_DHCID);
291
314 isc::util::InputBuffer& buffer);
315
334 void toFormat(const NameChangeFormat format,
335 isc::util::OutputBuffer& buffer) const;
336
421 static NameChangeRequestPtr fromJSON(const std::string& json);
422
427 std::string toJSON() const;
428
447 void validateContent();
448
451 /// @return the change type
453 return (change_type_);
454 }
455
459 void setChangeType(const NameChangeType value);
460
468
471 /// @return a true if the forward change flag is true.
472 bool isForwardChange() const {
473 return (forward_change_);
474 }
475
480 void setForwardChange(const bool value);
481
490
493 /// @return a true if the reverse change flag is true.
494 bool isReverseChange() const {
495 return (reverse_change_);
496 }
497
502 void setReverseChange(const bool value);
503
512
515 /// @return a string containing the FQDN
516 const std::string getFqdn() const {
517 return (fqdn_);
518 }
519
523 void setFqdn(const std::string& value);
524
532
535 /// @return a string containing the IP address
536 std::string getIpAddress() const {
537 return (ip_io_address_.toText());
538 }
539
542 /// @return a asiolink::IOAddress containing the IP address
543 const asiolink::IOAddress& getIpIoAddress() const {
544 return (ip_io_address_);
545 }
546
549 /// @return boolean true if the lease address family is AF_INET.
550 bool isV4 () const {
551 return (ip_io_address_.isV4());
552 }
553
556 /// @return boolean true if the lease address family is AF_INET6.
557 bool isV6 () const {
558 return (ip_io_address_.isV6());
559 }
560
564 void setIpAddress(const std::string& value);
565
573
576 /// @return a reference to the request's D2Dhcid
577 const D2Dhcid& getDhcid() const {
578 return (dhcid_);
579 }
580
589 void setDhcid(const std::string& value);
590
599
609 /// @return a string with the request's request ID (currently DHCID)
610 std::string getRequestId() const {
611 return (dhcid_.toStr());
612 }
613
616 /// @return an integer containing the lease length
617 uint32_t getLeaseLength() const {
618 return (lease_length_);
619 }
620
624 void setLeaseLength(const uint32_t value);
625
633
636 /// @return a true if the conflict resolution is enabled.
638 return (conflict_resolution_mode_);
639 }
640
646
654
667
670 /// @return the request status as a NameChangeStatus
672 return (status_);
673 }
674
678 void setStatus(const NameChangeStatus value);
679
689 isc::data::ConstElementPtr getElement(const std::string& name,
690 const ElementMap& element_map) const;
691
696 std::string toText() const;
697
698 bool operator == (const NameChangeRequest& b) const;
699 bool operator != (const NameChangeRequest& b) const;
700
701private:
703 NameChangeType change_type_;
704
706 bool forward_change_;
707
709 bool reverse_change_;
710
715 std::string fqdn_;
716
723 asiolink::IOAddress ip_io_address_;
724
728 D2Dhcid dhcid_;
729
731 uint32_t lease_length_;
732
734 ConflictResolutionMode conflict_resolution_mode_;
735
737 NameChangeStatus status_;
738};
739
740} // namespace dhcp_ddns
741} // namespace isc
742
743#endif
This is a base class for exceptions thrown from the DNS library module.
Exception(const char *file, size_t line, const char *what)
Constructor for a given type for exceptions with file name and file line number.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
Holds DUID (DHCPv6 Unique Identifier).
Definition duid.h:142
Container class for handling the DHCID value within a NameChangeRequest.
Definition ncr_msg.h:113
bool operator<(const D2Dhcid &other) const
Compares two D2Dhcids lexically.
Definition ncr_msg.h:211
void fromHWAddr(const isc::dhcp::HWAddrPtr &hwaddr, const std::vector< uint8_t > &wire_fqdn)
Sets the DHCID value based on the HW address and FQDN.
Definition ncr_msg.cc:167
bool operator==(const D2Dhcid &other) const
Compares two D2Dhcids for equality.
Definition ncr_msg.h:201
bool operator!=(const D2Dhcid &other) const
Compares two D2Dhcids for inequality.
Definition ncr_msg.h:206
void fromDUID(const isc::dhcp::DUID &duid, const std::vector< uint8_t > &wire_fqdn)
Sets the DHCID value based on the DUID and FQDN.
Definition ncr_msg.cc:186
const std::vector< uint8_t > & getBytes() const
Returns a reference to the DHCID byte vector.
Definition ncr_msg.h:196
D2Dhcid()
Default constructor.
Definition ncr_msg.cc:98
void fromClientId(const std::vector< uint8_t > &clientid_data, const std::vector< uint8_t > &wire_fqdn)
Sets the DHCID value based on the Client Identifier.
Definition ncr_msg.cc:136
void fromStr(const std::string &data)
Sets the DHCID value based on the given string.
Definition ncr_msg.cc:121
std::string toStr() const
Returns the DHCID value as a string of hexadecimal digits.
Definition ncr_msg.cc:131
DhcidRdataComputeError(const char *file, size_t line, const char *what)
Definition ncr_msg.h:40
Represents a DHCP-DDNS client request.
Definition ncr_msg.h:254
bool operator==(const NameChangeRequest &b) const
Definition ncr_msg.cc:699
bool operator!=(const NameChangeRequest &b) const
Definition ncr_msg.cc:711
void setStatus(const NameChangeStatus value)
Sets the request status to the given value.
Definition ncr_msg.cc:662
bool isV6() const
Returns true if the lease address is a IPv6 lease.
Definition ncr_msg.h:556
void setChangeType(const NameChangeType value)
Sets the change type to the given value.
Definition ncr_msg.cc:489
std::string toText() const
Returns a text rendition of the contents of the request.
Definition ncr_msg.cc:667
uint32_t getLeaseLength() const
Fetches the request lease length.
Definition ncr_msg.h:616
const asiolink::IOAddress & getIpIoAddress() const
Fetches the request IP address as an IOAddress.
Definition ncr_msg.h:542
void setIpAddress(const std::string &value)
Sets the IP address to the given value.
Definition ncr_msg.cc:575
void translateUseConflictResolution(isc::data::ConstElementPtr element)
Sets the conflict resolution mode based on the value of the given boolean Element.
Definition ncr_msg.cc:632
const D2Dhcid & getDhcid() const
Fetches the request DHCID.
Definition ncr_msg.h:576
void setDhcid(const std::string &value)
Sets the DHCID based on the given string value.
Definition ncr_msg.cc:591
std::string toJSON() const
Instance method for marshalling the contents of the request into a string of JSON text.
Definition ncr_msg.cc:430
ConflictResolutionMode getConflictResolutionMode() const
Fetches the conflict resolution mode.
Definition ncr_msg.h:636
std::string getIpAddress() const
Fetches the request IP address string.
Definition ncr_msg.h:535
void setFqdn(const std::string &value)
Sets the FQDN to the given value.
Definition ncr_msg.cc:563
void setReverseChange(const bool value)
Sets the reverse change flag to the given value.
Definition ncr_msg.cc:537
void setLeaseLength(const uint32_t value)
Sets the lease length to the given value.
Definition ncr_msg.cc:601
void toFormat(const NameChangeFormat format, isc::util::OutputBuffer &buffer) const
Instance method for marshalling the contents of the request into the given buffer in the given format...
Definition ncr_msg.cc:333
NameChangeRequest()
Default Constructor.
Definition ncr_msg.cc:257
NameChangeType getChangeType() const
Fetches the request change type.
Definition ncr_msg.h:451
static NameChangeRequestPtr fromJSON(const std::string &json)
Static method for creating a NameChangeRequest from a string containing a JSON rendition of a request...
Definition ncr_msg.cc:357
void setForwardChange(const bool value)
Sets the forward change flag to the given value.
Definition ncr_msg.cc:516
isc::data::ConstElementPtr getElement(const std::string &name, const ElementMap &element_map) const
Given a name, finds and returns an element from a map of elements.
Definition ncr_msg.cc:474
void setConflictResolutionMode(const ConflictResolutionMode value)
Sets the conflict resolution mode to the given value.
Definition ncr_msg.cc:644
std::string getRequestId() const
Fetches the request ID.
Definition ncr_msg.h:609
bool isForwardChange() const
Checks forward change flag.
Definition ncr_msg.h:471
NameChangeStatus getStatus() const
Fetches the request status.
Definition ncr_msg.h:670
bool isV4() const
Returns true if the lease address is a IPv4 lease.
Definition ncr_msg.h:549
static NameChangeRequestPtr fromFormat(const NameChangeFormat format, isc::util::InputBuffer &buffer)
Static method for creating a NameChangeRequest from a buffer containing a marshalled request in a giv...
Definition ncr_msg.cc:286
void validateContent()
Validates the content of a populated request.
Definition ncr_msg.cc:453
const std::string getFqdn() const
Fetches the request FQDN.
Definition ncr_msg.h:515
bool isReverseChange() const
Checks reverse change flag.
Definition ncr_msg.h:493
NcrMessageError(const char *file, size_t line, const char *what)
Definition ncr_msg.h:32
The InputBuffer class is a buffer abstraction for manipulating read-only data.
Definition buffer.h:81
The OutputBuffer class is a buffer abstraction for manipulating mutable data.
Definition buffer.h:346
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:30
NameChangeFormat
Defines the list of data wire formats supported.
Definition ncr_msg.h:59
NameChangeStatus
Defines the runtime processing status values for requests.
Definition ncr_msg.h:51
@ NO_CHECK_WITHOUT_DHCID
Definition ncr_msg.h:68
@ CHECK_EXISTS_WITH_DHCID
Definition ncr_msg.h:67
@ NO_CHECK_WITH_DHCID
Definition ncr_msg.h:66
std::map< std::string, isc::data::ConstElementPtr > ElementMap
Defines a map of Elements, keyed by their string name.
Definition ncr_msg.h:244
std::ostream & operator<<(std::ostream &os, const D2Dhcid &dhcid)
Definition ncr_msg.cc:251
NameChangeFormat stringToNcrFormat(const std::string &fmt_str)
Function which converts labels to NameChangeFormat enum values.
Definition ncr_msg.cc:24
ConflictResolutionMode StringToConflictResolutionMode(const std::string &mode_str)
Function which converts string to ConflictResolutionMode enum values.
Definition ncr_msg.cc:42
std::string ConflictResolutionModeToString(const ConflictResolutionMode &mode)
Function which converts ConflictResolutionMode enums to text labels.
Definition ncr_msg.cc:63
boost::shared_ptr< NameChangeRequest > NameChangeRequestPtr
Defines a pointer to a NameChangeRequest.
Definition ncr_msg.h:241
std::string ncrFormatToString(NameChangeFormat format)
Function which converts NameChangeFormat enums to text labels.
Definition ncr_msg.cc:32
NameChangeType
Defines the types of DNS updates that can be requested.
Definition ncr_msg.h:45
boost::shared_ptr< HWAddr > HWAddrPtr
Shared pointer to a hardware address structure.
Definition hwaddr.h:154
Defines the logger used by the top-level component of kea-lfc.