-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResolver.cpp
More file actions
304 lines (252 loc) · 6.34 KB
/
Copy pathResolver.cpp
File metadata and controls
304 lines (252 loc) · 6.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/**
*
* @file Resolver.cpp
* @author Gaspard Kirira
*
* @brief DNS resolver implementation for the Vix requests module.
*
* Copyright 2026, Gaspard Kirira.
* All rights reserved.
* https://github.com/vixcpp/requests
*
* Use of this source code is governed by a MIT license
* that can be found in the LICENSE file.
*
* Vix Requests
*
*/
#include "transport/Resolver.hpp"
#include <vix/requests/Error.hpp>
#include <cstring>
#include <memory>
#include <sstream>
#include <utility>
#if defined(_WIN32)
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#endif
namespace vix::requests::transport
{
namespace
{
#if defined(_WIN32)
void ensure_winsock_started()
{
struct WinsockSession
{
WinsockSession()
{
WSADATA data{};
const int rc = ::WSAStartup(MAKEWORD(2, 2), &data);
if (rc != 0)
{
throw TransportException("failed to initialize Winsock");
}
}
~WinsockSession()
{
::WSACleanup();
}
};
static WinsockSession session;
static_cast<void>(session);
}
#endif
struct AddrInfoDeleter
{
void operator()(addrinfo *info) const noexcept
{
if (info != nullptr)
{
::freeaddrinfo(info);
}
}
};
using AddrInfoPtr = std::unique_ptr<addrinfo, AddrInfoDeleter>;
[[nodiscard]] std::string make_resolve_error(
std::string_view host,
std::uint16_t port,
int errorCode)
{
std::ostringstream oss;
oss << "failed to resolve "
<< host
<< ':'
<< port
<< ": "
#if defined(_WIN32)
<< ::gai_strerrorA(errorCode);
#else
<< ::gai_strerror(errorCode);
#endif
return oss.str();
}
[[nodiscard]] std::string port_to_string(std::uint16_t port)
{
return std::to_string(static_cast<unsigned int>(port));
}
[[nodiscard]] ResolvedAddress make_resolved_address(
const addrinfo &info)
{
ResolvedAddress resolved;
resolved.family = info.ai_family;
resolved.socketType = info.ai_socktype;
resolved.protocol = info.ai_protocol;
resolved.addressLength = static_cast<SocketAddressLength>(info.ai_addrlen);
if (info.ai_addr == nullptr ||
info.ai_addrlen > sizeof(resolved.address))
{
throw TransportException("invalid resolved socket address");
}
std::memcpy(
&resolved.address,
info.ai_addr,
info.ai_addrlen);
resolved.ip = socket_address_to_ip(
reinterpret_cast<const sockaddr *>(&resolved.address),
resolved.addressLength);
return resolved;
}
} // namespace
ResolveResult::ResolveResult(Container addresses)
: addresses_(std::move(addresses))
{
}
bool ResolveResult::empty() const noexcept
{
return addresses_.empty();
}
std::size_t ResolveResult::size() const noexcept
{
return addresses_.size();
}
const ResolveResult::Container &ResolveResult::addresses() const noexcept
{
return addresses_;
}
const ResolvedAddress &ResolveResult::front() const
{
if (addresses_.empty())
{
throw TransportException("no resolved addresses available");
}
return addresses_.front();
}
ResolveResult::iterator ResolveResult::begin() noexcept
{
return addresses_.begin();
}
ResolveResult::iterator ResolveResult::end() noexcept
{
return addresses_.end();
}
ResolveResult::const_iterator ResolveResult::begin() const noexcept
{
return addresses_.begin();
}
ResolveResult::const_iterator ResolveResult::end() const noexcept
{
return addresses_.end();
}
ResolveResult::const_iterator ResolveResult::cbegin() const noexcept
{
return addresses_.cbegin();
}
ResolveResult::const_iterator ResolveResult::cend() const noexcept
{
return addresses_.cend();
}
ResolveResult resolve_tcp(
std::string_view host,
std::uint16_t port)
{
#if defined(_WIN32)
ensure_winsock_started();
#endif
if (host.empty())
{
throw TransportException("cannot resolve empty host");
}
addrinfo hints{};
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
hints.ai_flags = AI_ADDRCONFIG;
addrinfo *rawResult = nullptr;
const std::string hostString(host);
const std::string service = port_to_string(port);
const int result = ::getaddrinfo(
hostString.c_str(),
service.c_str(),
&hints,
&rawResult);
AddrInfoPtr resolvedList(rawResult);
if (result != 0)
{
throw ConnectionException(
make_resolve_error(host, port, result));
}
std::vector<ResolvedAddress> addresses;
for (const addrinfo *info = resolvedList.get();
info != nullptr;
info = info->ai_next)
{
if (info->ai_addr == nullptr)
{
continue;
}
if (info->ai_family != AF_INET &&
info->ai_family != AF_INET6)
{
continue;
}
addresses.push_back(make_resolved_address(*info));
}
if (addresses.empty())
{
throw ConnectionException(
make_resolve_error(host, port, EAI_NONAME));
}
return ResolveResult(std::move(addresses));
}
std::string socket_address_to_ip(
const sockaddr *address,
SocketAddressLength addressLength)
{
if (address == nullptr || addressLength == 0)
{
return {};
}
char buffer[INET6_ADDRSTRLEN] = {};
if (address->sa_family == AF_INET)
{
const auto *addr4 =
reinterpret_cast<const sockaddr_in *>(address);
const char *result = ::inet_ntop(
AF_INET,
&addr4->sin_addr,
buffer,
sizeof(buffer));
return result == nullptr ? std::string{} : std::string(result);
}
if (address->sa_family == AF_INET6)
{
const auto *addr6 =
reinterpret_cast<const sockaddr_in6 *>(address);
const char *result = ::inet_ntop(
AF_INET6,
&addr6->sin6_addr,
buffer,
sizeof(buffer));
return result == nullptr ? std::string{} : std::string(result);
}
return {};
}
} // namespace vix::requests::transport