Kea 3.1.5
dns_client.h
Go to the documentation of this file.
1// Copyright (C) 2013-2025 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 DNS_CLIENT_H
8#define DNS_CLIENT_H
9
10#include <asiolink/io_service.h>
11#include <asiodns/io_fetch.h>
12#include <d2srv/d2_tsig_key.h>
14#include <util/buffer.h>
15
16namespace isc {
17namespace d2 {
18
19class DNSClient;
20typedef boost::shared_ptr<DNSClient> DNSClientPtr;
21
23class DNSClientImpl;
24
47class DNSClient {
48public:
49
52 enum Protocol {
55 };
56
58 enum Status : uint16_t {
59 SUCCESS = 0,
60 TIMEOUT = 1,
63 OTHER = 4,
64 };
65
71 static std::string const& statusToText(Status const& status) {
72 static std::vector<std::string> const text_vector {
73 "SUCCESS",
74 "TIMEOUT",
75 "IO_STOPPED",
76 "INVALID_RESPONSE",
77 "OTHER",
78 };
79 static std::string const unknown("UNKNOWN");
80 return (status < text_vector.size() ? text_vector[status] : unknown);
81 }
82
89 class Callback {
90 public:
92 virtual ~Callback() { }
93
98 virtual void operator()(DNSClient::Status status) = 0;
99 };
100
110 DNSClient(D2UpdateMessagePtr& response_placeholder, Callback* callback,
111 const Protocol proto = UDP);
112
114 ~DNSClient();
115
117 void stop();
118
127
128private:
129 DNSClient(const DNSClient& source);
130 DNSClient& operator=(const DNSClient& source);
132
133public:
134
139 static unsigned int getMaxTimeout();
140
162 void doUpdate(const asiolink::IOServicePtr& io_service,
163 const asiolink::IOAddress& ns_addr,
164 const uint16_t ns_port,
165 D2UpdateMessage& update,
166 const unsigned int wait,
167 const D2TsigKeyPtr& tsig_key = D2TsigKeyPtr());
168
169private:
171 std::unique_ptr<DNSClientImpl> impl_;
172};
173
174} // namespace d2
175} // namespace isc
176
177#endif // DNS_CLIENT_H
The D2UpdateMessage encapsulates a DNS Update message.
Callback for the DNSClient class.
Definition dns_client.h:89
virtual ~Callback()
Virtual destructor.
Definition dns_client.h:92
virtual void operator()(DNSClient::Status status)=0
Function operator implementing a callback.
The DNSClient class handles communication with the DNS server.
Definition dns_client.h:47
void doUpdate(const asiolink::IOServicePtr &io_service, const asiolink::IOAddress &ns_addr, const uint16_t ns_port, D2UpdateMessage &update, const unsigned int wait, const D2TsigKeyPtr &tsig_key=D2TsigKeyPtr())
Start asynchronous DNS Update with TSIG.
~DNSClient()
Virtual destructor, does nothing.
DNSClient(D2UpdateMessagePtr &response_placeholder, Callback *callback, const Protocol proto=UDP)
Constructor.
void stop()
Stop the client.
static std::string const & statusToText(Status const &status)
Convert enum to string.
Definition dns_client.h:71
static unsigned int getMaxTimeout()
Returns maximal allowed timeout value accepted by DNSClient::doUpdate.
Status
A status code of the DNSClient.
Definition dns_client.h:58
@ IO_STOPPED
IO was stopped.
Definition dns_client.h:61
@ 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
Protocol
Transport layer protocol used by a DNS Client to communicate with a server.
Definition dns_client.h:52
boost::shared_ptr< D2UpdateMessage > D2UpdateMessagePtr
Pointer to the DNS Update Message.
boost::shared_ptr< DNSClient > DNSClientPtr
Definition dns_client.h:20
boost::shared_ptr< D2TsigKey > D2TsigKeyPtr
Type of pointer to a D2 TSIG key.
Definition d2_tsig_key.h:71
Defines the logger used by the top-level component of kea-lfc.