mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <span>
|
|
#include <poll.h>
|
|
#include <mutex>
|
|
#include "DNSPTRResolver.h"
|
|
|
|
using ares_channel = struct ares_channeldata *;
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/*
|
|
* Implements reverse DNS resolution using c-ares lib. System reverse DNS resolution via
|
|
* gethostbyaddr or getnameinfo does not work reliably because in some systems
|
|
* it returns all PTR records for a given IP and in others it returns only one.
|
|
* */
|
|
class CaresPTRResolver : public DNSPTRResolver
|
|
{
|
|
friend class DNSPTRResolverProvider;
|
|
|
|
/*
|
|
* Allow only DNSPTRProvider to instantiate this class
|
|
* */
|
|
struct provider_token {};
|
|
|
|
static constexpr auto C_ARES_POLL_EVENTS = POLLRDNORM | POLLIN;
|
|
|
|
public:
|
|
explicit CaresPTRResolver(provider_token);
|
|
~CaresPTRResolver() override;
|
|
|
|
std::unordered_set<std::string> resolve(const std::string & ip) override;
|
|
|
|
std::unordered_set<std::string> resolve_v6(const std::string & ip) override;
|
|
|
|
private:
|
|
bool wait_and_process();
|
|
|
|
void cancel_requests();
|
|
|
|
void resolve(const std::string & ip, std::unordered_set<std::string> & response);
|
|
|
|
void resolve_v6(const std::string & ip, std::unordered_set<std::string> & response);
|
|
|
|
std::span<pollfd> get_readable_sockets(int * sockets, pollfd * pollfd);
|
|
|
|
int64_t calculate_timeout();
|
|
|
|
void process_possible_timeout();
|
|
|
|
void process_readable_sockets(std::span<pollfd> readable_sockets);
|
|
|
|
ares_channel channel;
|
|
|
|
static std::mutex mutex;
|
|
};
|
|
}
|
|
|