Kea 3.1.8
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
286 NameChangeRequest(const NameChangeType change_type,
287 const bool forward_change, const bool reverse_change,
288 const std::string& fqdn, const std::string& ip_address,
289 const D2Dhcid& dhcid,
290 const uint32_t lease_length,
292 conflict_resolution_mode = CHECK_WITH_DHCID);
293
316 isc::util::InputBuffer& buffer);
317
336 void toFormat(const NameChangeFormat format,
337 isc::util::OutputBuffer& buffer) const;
338
423 static NameChangeRequestPtr fromJSON(const std::string& json);
424
429 std::string toJSON() const;
430
449 void validateContent();
450
453 /// @return the change type
455 return (change_type_);
456 }
457
461 void setChangeType(const NameChangeType value);
462
470
473 /// @return a true if the forward change flag is true.
474 bool isForwardChange() const {
475 return (forward_change_);
476 }
477
482 void setForwardChange(const bool value);
483
492
495 /// @return a true if the reverse change flag is true.
496 bool isReverseChange() const {
497 return (reverse_change_);
498 }
499
504 void setReverseChange(const bool value);
505
514
517 /// @return a string containing the FQDN
518 const std::string getFqdn() const {
519 return (fqdn_);
520 }
521
525 void setFqdn(const std::string& value);
526
534
537 /// @return a string containing the IP address
538 std::string getIpAddress() const {
539 return (ip_io_address_.toText());
540 }
541
544 /// @return a asiolink::IOAddress containing the IP address
545 const asiolink::IOAddress& getIpIoAddress() const {
546 return (ip_io_address_);
547 }
548
551 /// @return boolean true if the lease address family is AF_INET.
552 bool isV4 () const {
553 return (ip_io_address_.isV4());
554 }
555
558 /// @return boolean true if the lease address family is AF_INET6.
559 bool isV6 () const {
560 return (ip_io_address_.isV6());
561 }
562
566 void setIpAddress(const std::string& value);
567
575
578 /// @return a reference to the request's D2Dhcid
579 const D2Dhcid& getDhcid() const {
580 return (dhcid_);
581 }
582
591 void setDhcid(const std::string& value);
592
601
611 /// @return a string with the request's request ID (currently DHCID)
612 std::string getRequestId() const {
613 return (dhcid_.toStr());
614 }
615
618 /// @return an integer containing the lease length
619 uint32_t getLeaseLength() const {
620 return (lease_length_);
621 }
622
626 void setLeaseLength(const uint32_t value);
627
635
638 /// @return a true if the conflict resolution is enabled.
640 return (conflict_resolution_mode_);
641 }
642
648
656
669
672 /// @return the request status as a NameChangeStatus
674 return (status_);
675 }
676
680 void setStatus(const NameChangeStatus value);
681
691 isc::data::ConstElementPtr getElement(const std::string& name,
692 const ElementMap& element_map) const;
693
698 std::string toText() const;
699
700 bool operator == (const NameChangeRequest& b) const;
701 bool operator != (const NameChangeRequest& b) const;
702
703private:
705 NameChangeType change_type_;
706
708 bool forward_change_;
709
711 bool reverse_change_;
712
717 std::string fqdn_;
718
725 asiolink::IOAddress ip_io_address_;
726
730 D2Dhcid dhcid_;
731
733 uint32_t lease_length_;
734
736 ConflictResolutionMode conflict_resolution_mode_;
737
739 NameChangeStatus status_;
740};
741
742} // namespace dhcp_ddns
743} // namespace isc
744
745#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:692
bool operator!=(const NameChangeRequest &b) const
Definition ncr_msg.cc:704
void setStatus(const NameChangeStatus value)
Sets the request status to the given value.
Definition ncr_msg.cc:655
bool isV6() const
Returns true if the lease address is a IPv6 lease.
Definition ncr_msg.h:558
void setChangeType(const NameChangeType value)
Sets the change type to the given value.
Definition ncr_msg.cc:482
std::string toText() const
Returns a text rendition of the contents of the request.
Definition ncr_msg.cc:660
uint32_t getLeaseLength() const
Fetches the request lease length.
Definition ncr_msg.h:618
const asiolink::IOAddress & getIpIoAddress() const
Fetches the request IP address as an IOAddress.
Definition ncr_msg.h:544
void setIpAddress(const std::string &value)
Sets the IP address to the given value.
Definition ncr_msg.cc:568
void translateUseConflictResolution(isc::data::ConstElementPtr element)
Sets the conflict resolution mode based on the value of the given boolean Element.
Definition ncr_msg.cc:625
const D2Dhcid & getDhcid() const
Fetches the request DHCID.
Definition ncr_msg.h:578
void setDhcid(const std::string &value)
Sets the DHCID based on the given string value.
Definition ncr_msg.cc:584
std::string toJSON() const
Instance method for marshalling the contents of the request into a string of JSON text.
Definition ncr_msg.cc:423
ConflictResolutionMode getConflictResolutionMode() const
Fetches the conflict resolution mode.
Definition ncr_msg.h:638
std::string getIpAddress() const
Fetches the request IP address string.
Definition ncr_msg.h:537
void setFqdn(const std::string &value)
Sets the FQDN to the given value.
Definition ncr_msg.cc:556
void setReverseChange(const bool value)
Sets the reverse change flag to the given value.
Definition ncr_msg.cc:530
void setLeaseLength(const uint32_t value)
Sets the lease length to the given value.
Definition ncr_msg.cc:594
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:326
NameChangeRequest()
Default Constructor.
Definition ncr_msg.cc:257
NameChangeType getChangeType() const
Fetches the request change type.
Definition ncr_msg.h:453
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:350
void setForwardChange(const bool value)
Sets the forward change flag to the given value.
Definition ncr_msg.cc:509
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:467
void setConflictResolutionMode(const ConflictResolutionMode value)
Sets the conflict resolution mode to the given value.
Definition ncr_msg.cc:637
std::string getRequestId() const
Fetches the request ID.
Definition ncr_msg.h:611
bool isForwardChange() const
Checks forward change flag.
Definition ncr_msg.h:473
NameChangeStatus getStatus() const
Fetches the request status.
Definition ncr_msg.h:672
bool isV4() const
Returns true if the lease address is a IPv4 lease.
Definition ncr_msg.h:551
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:446
const std::string getFqdn() const
Fetches the request FQDN.
Definition ncr_msg.h:517
bool isReverseChange() const
Checks reverse change flag.
Definition ncr_msg.h:495
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.