Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <netbase.h>
7 : :
8 : : #include <compat/compat.h>
9 : : #include <logging.h>
10 : : #include <sync.h>
11 : : #include <tinyformat.h>
12 : : #include <util/sock.h>
13 : : #include <util/strencodings.h>
14 : : #include <util/string.h>
15 : : #include <util/time.h>
16 : :
17 : : #include <atomic>
18 : : #include <chrono>
19 : : #include <cstdint>
20 : : #include <functional>
21 : : #include <limits>
22 : : #include <memory>
23 : :
24 : : // Settings
25 : : static GlobalMutex g_proxyinfo_mutex;
26 [ + - + + ]: 1211 : static Proxy proxyInfo[NET_MAX] GUARDED_BY(g_proxyinfo_mutex);
27 : 173 : static Proxy nameProxy GUARDED_BY(g_proxyinfo_mutex);
28 : : int nConnectTimeout = DEFAULT_CONNECT_TIMEOUT;
29 : : bool fNameLookup = DEFAULT_NAME_LOOKUP;
30 : :
31 : : // Need ample time for negotiation for very slow proxies such as Tor
32 : : std::chrono::milliseconds g_socks5_recv_timeout = 20s;
33 : : static std::atomic<bool> interruptSocks5Recv(false);
34 : :
35 : 10972 : std::vector<CNetAddr> WrappedGetAddrInfo(const std::string& name, bool allow_lookup)
36 : : {
37 : 10972 : addrinfo ai_hint{};
38 : : // We want a TCP port, which is a streaming socket type
39 : 10972 : ai_hint.ai_socktype = SOCK_STREAM;
40 : 10972 : ai_hint.ai_protocol = IPPROTO_TCP;
41 : : // We don't care which address family (IPv4 or IPv6) is returned
42 : 10972 : ai_hint.ai_family = AF_UNSPEC;
43 : : // If we allow lookups of hostnames, use the AI_ADDRCONFIG flag to only
44 : : // return addresses whose family we have an address configured for.
45 : : //
46 : : // If we don't allow lookups, then use the AI_NUMERICHOST flag for
47 : : // getaddrinfo to only decode numerical network addresses and suppress
48 : : // hostname lookups.
49 : 10972 : ai_hint.ai_flags = allow_lookup ? AI_ADDRCONFIG : AI_NUMERICHOST;
50 : :
51 : 10972 : addrinfo* ai_res{nullptr};
52 : 10972 : const int n_err{getaddrinfo(name.c_str(), nullptr, &ai_hint, &ai_res)};
53 [ + + ]: 10972 : if (n_err != 0) {
54 : 3155 : return {};
55 : : }
56 : :
57 : : // Traverse the linked list starting with ai_trav.
58 : 7817 : addrinfo* ai_trav{ai_res};
59 : 7817 : std::vector<CNetAddr> resolved_addresses;
60 [ + + ]: 15634 : while (ai_trav != nullptr) {
61 [ + + ]: 7817 : if (ai_trav->ai_family == AF_INET) {
62 [ + - ]: 1064 : assert(ai_trav->ai_addrlen >= sizeof(sockaddr_in));
63 [ + - ]: 1064 : resolved_addresses.emplace_back(reinterpret_cast<sockaddr_in*>(ai_trav->ai_addr)->sin_addr);
64 : 1064 : }
65 [ + + ]: 7817 : if (ai_trav->ai_family == AF_INET6) {
66 [ + - ]: 6753 : assert(ai_trav->ai_addrlen >= sizeof(sockaddr_in6));
67 : 6753 : const sockaddr_in6* s6{reinterpret_cast<sockaddr_in6*>(ai_trav->ai_addr)};
68 [ + - ]: 6753 : resolved_addresses.emplace_back(s6->sin6_addr, s6->sin6_scope_id);
69 : 6753 : }
70 : 7817 : ai_trav = ai_trav->ai_next;
71 : : }
72 : 7817 : freeaddrinfo(ai_res);
73 : :
74 : 7990 : return resolved_addresses;
75 [ + - ]: 18789 : }
76 : :
77 : 173 : DNSLookupFn g_dns_lookup{WrappedGetAddrInfo};
78 : :
79 : 349 : enum Network ParseNetwork(const std::string& net_in) {
80 : 349 : std::string net = ToLower(net_in);
81 [ + - + - ]: 349 : if (net == "ipv4") return NET_IPV4;
82 [ + - + - ]: 349 : if (net == "ipv6") return NET_IPV6;
83 [ + - + - ]: 349 : if (net == "onion") return NET_ONION;
84 [ + - + + ]: 349 : if (net == "tor") {
85 [ + - + - : 1 : LogPrintf("Warning: net name 'tor' is deprecated and will be removed in the future. You should use 'onion' instead.\n");
- + ]
86 : 1 : return NET_ONION;
87 : : }
88 [ + - + + ]: 348 : if (net == "i2p") {
89 : 1 : return NET_I2P;
90 : : }
91 [ + - - + ]: 347 : if (net == "cjdns") {
92 : 0 : return NET_CJDNS;
93 : : }
94 : 347 : return NET_UNROUTABLE;
95 : 349 : }
96 : :
97 : 6017 : std::string GetNetworkName(enum Network net)
98 : : {
99 [ + + + + : 6017 : switch (net) {
+ - + -
- ]
100 [ + - ]: 47 : case NET_UNROUTABLE: return "not_publicly_routable";
101 [ + - ]: 1194 : case NET_IPV4: return "ipv4";
102 [ + - ]: 1194 : case NET_IPV6: return "ipv6";
103 [ + - ]: 1194 : case NET_ONION: return "onion";
104 [ + - ]: 1194 : case NET_I2P: return "i2p";
105 [ + - ]: 1194 : case NET_CJDNS: return "cjdns";
106 [ # # ]: 0 : case NET_INTERNAL: return "internal";
107 : 0 : case NET_MAX: assert(false);
108 : : } // no default case, so the compiler can warn about missing cases
109 : :
110 : 0 : assert(false);
111 : 6017 : }
112 : :
113 : 1193 : std::vector<std::string> GetNetworkNames(bool append_unroutable)
114 : : {
115 : 1193 : std::vector<std::string> names;
116 [ + + ]: 9544 : for (int n = 0; n < NET_MAX; ++n) {
117 : 8351 : const enum Network network{static_cast<Network>(n)};
118 [ + + + + ]: 8351 : if (network == NET_UNROUTABLE || network == NET_INTERNAL) continue;
119 [ + - + - ]: 5965 : names.emplace_back(GetNetworkName(network));
120 : 5965 : }
121 [ + + ]: 1193 : if (append_unroutable) {
122 [ + - - + ]: 47 : names.emplace_back(GetNetworkName(NET_UNROUTABLE));
123 : 47 : }
124 : 1193 : return names;
125 [ + - ]: 1193 : }
126 : :
127 : 13805 : static std::vector<CNetAddr> LookupIntern(const std::string& name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
128 : : {
129 [ + - ]: 13805 : if (!ContainsNoNUL(name)) return {};
130 : : {
131 : 13805 : CNetAddr addr;
132 : : // From our perspective, onion addresses are not hostnames but rather
133 : : // direct encodings of CNetAddr much like IPv4 dotted-decimal notation
134 : : // or IPv6 colon-separated hextet notation. Since we can't use
135 : : // getaddrinfo to decode them and it wouldn't make sense to resolve
136 : : // them, we return a network address representing it instead. See
137 : : // CNetAddr::SetSpecial(const std::string&) for more details.
138 [ + - + + : 13805 : if (addr.SetSpecial(name)) return {addr};
+ - + - ]
139 [ - + + ]: 13805 : }
140 : :
141 : 11773 : std::vector<CNetAddr> addresses;
142 : :
143 [ + - + + ]: 111295 : for (const CNetAddr& resolved : dns_lookup_function(name, fAllowLookup)) {
144 [ + + + + ]: 99522 : if (nMaxSolutions > 0 && addresses.size() >= nMaxSolutions) {
145 : 75 : break;
146 : : }
147 : : /* Never allow resolving to an internal address. Consider any such result invalid */
148 [ + - + + ]: 99447 : if (!resolved.IsInternal()) {
149 [ + - ]: 99183 : addresses.push_back(resolved);
150 : 99183 : }
151 : : }
152 : :
153 : 11773 : return addresses;
154 [ + - ]: 25578 : }
155 : :
156 : 10574 : std::vector<CNetAddr> LookupHost(const std::string& name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
157 : : {
158 [ - + ]: 10574 : if (!ContainsNoNUL(name)) return {};
159 : 10574 : std::string strHost = name;
160 [ + + ]: 10574 : if (strHost.empty()) return {};
161 [ + + + + ]: 10425 : if (strHost.front() == '[' && strHost.back() == ']') {
162 [ + - ]: 1 : strHost = strHost.substr(1, strHost.size() - 2);
163 : 1 : }
164 : :
165 [ + - - + ]: 10425 : return LookupIntern(strHost, nMaxSolutions, fAllowLookup, dns_lookup_function);
166 : 10574 : }
167 : :
168 : 10406 : std::optional<CNetAddr> LookupHost(const std::string& name, bool fAllowLookup, DNSLookupFn dns_lookup_function)
169 : : {
170 [ + - ]: 10406 : const std::vector<CNetAddr> addresses{LookupHost(name, 1, fAllowLookup, dns_lookup_function)};
171 [ + + - + ]: 10406 : return addresses.empty() ? std::nullopt : std::make_optional(addresses.front());
172 : 10406 : }
173 : :
174 : 3423 : std::vector<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function)
175 : : {
176 [ + + - + ]: 3423 : if (name.empty() || !ContainsNoNUL(name)) {
177 : 43 : return {};
178 : : }
179 : 3380 : uint16_t port{portDefault};
180 : 3380 : std::string hostname;
181 [ + - ]: 3380 : SplitHostPort(name, port, hostname);
182 : :
183 [ + - - + ]: 3380 : const std::vector<CNetAddr> addresses{LookupIntern(hostname, nMaxSolutions, fAllowLookup, dns_lookup_function)};
184 [ + + ]: 3380 : if (addresses.empty()) return {};
185 : 145 : std::vector<CService> services;
186 [ + - ]: 145 : services.reserve(addresses.size());
187 [ + + ]: 64812 : for (const auto& addr : addresses)
188 [ + - ]: 64667 : services.emplace_back(addr, port);
189 : 145 : return services;
190 [ + - ]: 3568 : }
191 : :
192 : 3248 : std::optional<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, DNSLookupFn dns_lookup_function)
193 : : {
194 [ + - ]: 3248 : const std::vector<CService> services{Lookup(name, portDefault, fAllowLookup, 1, dns_lookup_function)};
195 : :
196 [ + + - + ]: 3248 : return services.empty() ? std::nullopt : std::make_optional(services.front());
197 : 3248 : }
198 : :
199 : 3153 : CService LookupNumeric(const std::string& name, uint16_t portDefault, DNSLookupFn dns_lookup_function)
200 : : {
201 [ + + ]: 3153 : if (!ContainsNoNUL(name)) {
202 : 157 : return {};
203 : : }
204 : : // "1.2:345" will fail to resolve the ip, but will still set the port.
205 : : // If the ip fails to resolve, re-init the result.
206 [ + - + - : 2996 : return Lookup(name, portDefault, /*fAllowLookup=*/false, dns_lookup_function).value_or(CService{});
- + ]
207 : 3153 : }
208 : :
209 : : /** SOCKS version */
210 : : enum SOCKSVersion: uint8_t {
211 : : SOCKS4 = 0x04,
212 : : SOCKS5 = 0x05
213 : : };
214 : :
215 : : /** Values defined for METHOD in RFC1928 */
216 : : enum SOCKS5Method: uint8_t {
217 : : NOAUTH = 0x00, //!< No authentication required
218 : : GSSAPI = 0x01, //!< GSSAPI
219 : : USER_PASS = 0x02, //!< Username/password
220 : : NO_ACCEPTABLE = 0xff, //!< No acceptable methods
221 : : };
222 : :
223 : : /** Values defined for CMD in RFC1928 */
224 : : enum SOCKS5Command: uint8_t {
225 : : CONNECT = 0x01,
226 : : BIND = 0x02,
227 : : UDP_ASSOCIATE = 0x03
228 : : };
229 : :
230 : : /** Values defined for REP in RFC1928 */
231 : : enum SOCKS5Reply: uint8_t {
232 : : SUCCEEDED = 0x00, //!< Succeeded
233 : : GENFAILURE = 0x01, //!< General failure
234 : : NOTALLOWED = 0x02, //!< Connection not allowed by ruleset
235 : : NETUNREACHABLE = 0x03, //!< Network unreachable
236 : : HOSTUNREACHABLE = 0x04, //!< Network unreachable
237 : : CONNREFUSED = 0x05, //!< Connection refused
238 : : TTLEXPIRED = 0x06, //!< TTL expired
239 : : CMDUNSUPPORTED = 0x07, //!< Command not supported
240 : : ATYPEUNSUPPORTED = 0x08, //!< Address type not supported
241 : : };
242 : :
243 : : /** Values defined for ATYPE in RFC1928 */
244 : : enum SOCKS5Atyp: uint8_t {
245 : : IPV4 = 0x01,
246 : : DOMAINNAME = 0x03,
247 : : IPV6 = 0x04,
248 : : };
249 : :
250 : : /** Status codes that can be returned by InterruptibleRecv */
251 : : enum class IntrRecvError {
252 : : OK,
253 : : Timeout,
254 : : Disconnected,
255 : : NetworkError,
256 : : Interrupted
257 : : };
258 : :
259 : : /**
260 : : * Try to read a specified number of bytes from a socket. Please read the "see
261 : : * also" section for more detail.
262 : : *
263 : : * @param data The buffer where the read bytes should be stored.
264 : : * @param len The number of bytes to read into the specified buffer.
265 : : * @param timeout The total timeout for this read.
266 : : * @param sock The socket (has to be in non-blocking mode) from which to read bytes.
267 : : *
268 : : * @returns An IntrRecvError indicating the resulting status of this read.
269 : : * IntrRecvError::OK only if all of the specified number of bytes were
270 : : * read.
271 : : *
272 : : * @see This function can be interrupted by calling InterruptSocks5(bool).
273 : : * Sockets can be made non-blocking with Sock::SetNonBlocking().
274 : : */
275 : 123 : static IntrRecvError InterruptibleRecv(uint8_t* data, size_t len, std::chrono::milliseconds timeout, const Sock& sock)
276 : : {
277 : 123 : auto curTime{Now<SteadyMilliseconds>()};
278 : 123 : const auto endTime{curTime + timeout};
279 [ + + + + ]: 21651 : while (len > 0 && curTime < endTime) {
280 : 21566 : ssize_t ret = sock.Recv(data, len, 0); // Optimistically try the recv first
281 [ + + ]: 21566 : if (ret > 0) {
282 : 606 : len -= ret;
283 : 606 : data += ret;
284 [ + + ]: 21566 : } else if (ret == 0) { // Unexpected disconnection
285 : 3 : return IntrRecvError::Disconnected;
286 : : } else { // Other error or blocking
287 : 20957 : int nErr = WSAGetLastError();
288 [ + - + + : 20957 : if (nErr == WSAEINPROGRESS || nErr == WSAEWOULDBLOCK || nErr == WSAEINVAL) {
+ + ]
289 : : // Only wait at most MAX_WAIT_FOR_IO at a time, unless
290 : : // we're approaching the end of the specified total timeout
291 : 20925 : const auto remaining = std::chrono::milliseconds{endTime - curTime};
292 : 20925 : const auto timeout = std::min(remaining, std::chrono::milliseconds{MAX_WAIT_FOR_IO});
293 [ + + ]: 20925 : if (!sock.Wait(timeout, Sock::RECV)) {
294 : 2 : return IntrRecvError::NetworkError;
295 : : }
296 : 20923 : } else {
297 : 32 : return IntrRecvError::NetworkError;
298 : : }
299 : : }
300 [ + + ]: 21529 : if (interruptSocks5Recv)
301 : 1 : return IntrRecvError::Interrupted;
302 : 21528 : curTime = Now<SteadyMilliseconds>();
303 : : }
304 : 85 : return len == 0 ? IntrRecvError::OK : IntrRecvError::Timeout;
305 : 123 : }
306 : :
307 : : /** Convert SOCKS5 reply to an error message */
308 : 9 : static std::string Socks5ErrorString(uint8_t err)
309 : : {
310 [ + + + + : 9 : switch(err) {
+ + + +
+ ]
311 : : case SOCKS5Reply::GENFAILURE:
312 [ + - ]: 1 : return "general failure";
313 : : case SOCKS5Reply::NOTALLOWED:
314 [ + - ]: 1 : return "connection not allowed";
315 : : case SOCKS5Reply::NETUNREACHABLE:
316 [ + - ]: 1 : return "network unreachable";
317 : : case SOCKS5Reply::HOSTUNREACHABLE:
318 [ + - ]: 1 : return "host unreachable";
319 : : case SOCKS5Reply::CONNREFUSED:
320 [ + - ]: 1 : return "connection refused";
321 : : case SOCKS5Reply::TTLEXPIRED:
322 [ + - ]: 1 : return "TTL expired";
323 : : case SOCKS5Reply::CMDUNSUPPORTED:
324 [ + - ]: 1 : return "protocol error";
325 : : case SOCKS5Reply::ATYPEUNSUPPORTED:
326 [ + - ]: 1 : return "address type not supported";
327 : : default:
328 [ + - ]: 1 : return "unknown";
329 : : }
330 : 9 : }
331 : :
332 : 73 : bool Socks5(const std::string& strDest, uint16_t port, const ProxyCredentials* auth, const Sock& sock)
333 : : {
334 : : IntrRecvError recvr;
335 [ + - # # : 73 : LogPrint(BCLog::NET, "SOCKS5 connecting %s\n", strDest);
# # # # ]
336 [ + + ]: 73 : if (strDest.size() > 255) {
337 : 1 : return error("Hostname too long");
338 : : }
339 : : // Construct the version identifier/method selection message
340 : 72 : std::vector<uint8_t> vSocks5Init;
341 [ + - ]: 72 : vSocks5Init.push_back(SOCKSVersion::SOCKS5); // We want the SOCK5 protocol
342 [ + + ]: 72 : if (auth) {
343 [ + - ]: 22 : vSocks5Init.push_back(0x02); // 2 method identifiers follow...
344 [ + - ]: 22 : vSocks5Init.push_back(SOCKS5Method::NOAUTH);
345 [ + - ]: 22 : vSocks5Init.push_back(SOCKS5Method::USER_PASS);
346 : 22 : } else {
347 [ + - ]: 50 : vSocks5Init.push_back(0x01); // 1 method identifier follows...
348 [ + - ]: 50 : vSocks5Init.push_back(SOCKS5Method::NOAUTH);
349 : : }
350 [ + - ]: 72 : ssize_t ret = sock.Send(vSocks5Init.data(), vSocks5Init.size(), MSG_NOSIGNAL);
351 [ + + ]: 72 : if (ret != (ssize_t)vSocks5Init.size()) {
352 [ + - ]: 15 : return error("Error sending to proxy");
353 : : }
354 : : uint8_t pchRet1[2];
355 [ + - + + ]: 57 : if (InterruptibleRecv(pchRet1, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
356 [ + - + - : 21 : LogPrintf("Socks5() connect to %s:%d failed: InterruptibleRecv() timeout or other failure\n", strDest, port);
+ - ]
357 : 21 : return false;
358 : : }
359 [ - + ]: 36 : if (pchRet1[0] != SOCKSVersion::SOCKS5) {
360 [ # # ]: 0 : return error("Proxy failed to initialize");
361 : : }
362 [ + + - + ]: 36 : if (pchRet1[1] == SOCKS5Method::USER_PASS && auth) {
363 : : // Perform username/password authentication (as described in RFC1929)
364 : 9 : std::vector<uint8_t> vAuth;
365 [ + - ]: 9 : vAuth.push_back(0x01); // Current (and only) version of user/pass subnegotiation
366 [ + - + - ]: 9 : if (auth->username.size() > 255 || auth->password.size() > 255)
367 [ # # ]: 0 : return error("Proxy username or password too long");
368 [ + - ]: 9 : vAuth.push_back(auth->username.size());
369 [ + - ]: 9 : vAuth.insert(vAuth.end(), auth->username.begin(), auth->username.end());
370 [ + - ]: 9 : vAuth.push_back(auth->password.size());
371 [ + - ]: 9 : vAuth.insert(vAuth.end(), auth->password.begin(), auth->password.end());
372 [ + - ]: 9 : ret = sock.Send(vAuth.data(), vAuth.size(), MSG_NOSIGNAL);
373 [ + + ]: 9 : if (ret != (ssize_t)vAuth.size()) {
374 [ + - ]: 2 : return error("Error sending authentication to proxy");
375 : : }
376 [ + - + - : 7 : LogPrint(BCLog::PROXY, "SOCKS5 sending proxy authentication %s:%s\n", auth->username, auth->password);
# # # # #
# ]
377 : : uint8_t pchRetA[2];
378 [ + - + + ]: 7 : if (InterruptibleRecv(pchRetA, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
379 [ + - ]: 3 : return error("Error reading proxy authentication response");
380 : : }
381 [ + - - + ]: 4 : if (pchRetA[0] != 0x01 || pchRetA[1] != 0x00) {
382 [ # # ]: 0 : return error("Proxy authentication unsuccessful");
383 : : }
384 [ + + + + ]: 36 : } else if (pchRet1[1] == SOCKS5Method::NOAUTH) {
385 : : // Perform no authentication
386 : 26 : } else {
387 [ + - ]: 1 : return error("Proxy requested wrong authentication method %02x", pchRet1[1]);
388 : : }
389 : 30 : std::vector<uint8_t> vSocks5;
390 [ + - ]: 30 : vSocks5.push_back(SOCKSVersion::SOCKS5); // VER protocol version
391 [ + - ]: 30 : vSocks5.push_back(SOCKS5Command::CONNECT); // CMD CONNECT
392 [ + - ]: 30 : vSocks5.push_back(0x00); // RSV Reserved must be 0
393 [ + - ]: 30 : vSocks5.push_back(SOCKS5Atyp::DOMAINNAME); // ATYP DOMAINNAME
394 [ + - ]: 30 : vSocks5.push_back(strDest.size()); // Length<=255 is checked at beginning of function
395 [ + - ]: 30 : vSocks5.insert(vSocks5.end(), strDest.begin(), strDest.end());
396 [ + - ]: 30 : vSocks5.push_back((port >> 8) & 0xFF);
397 [ + - ]: 30 : vSocks5.push_back((port >> 0) & 0xFF);
398 [ + - ]: 30 : ret = sock.Send(vSocks5.data(), vSocks5.size(), MSG_NOSIGNAL);
399 [ + + ]: 30 : if (ret != (ssize_t)vSocks5.size()) {
400 [ + - ]: 3 : return error("Error sending to proxy");
401 : : }
402 : : uint8_t pchRet2[4];
403 [ + - + + ]: 27 : if ((recvr = InterruptibleRecv(pchRet2, 4, g_socks5_recv_timeout, sock)) != IntrRecvError::OK) {
404 [ + - ]: 1 : if (recvr == IntrRecvError::Timeout) {
405 : : /* If a timeout happens here, this effectively means we timed out while connecting
406 : : * to the remote node. This is very common for Tor, so do not print an
407 : : * error message. */
408 : 0 : return false;
409 : : } else {
410 [ + - ]: 1 : return error("Error while reading proxy response");
411 : : }
412 : : }
413 [ + + ]: 26 : if (pchRet2[0] != SOCKSVersion::SOCKS5) {
414 [ + - ]: 1 : return error("Proxy failed to accept request");
415 : : }
416 [ + + ]: 25 : if (pchRet2[1] != SOCKS5Reply::SUCCEEDED) {
417 : : // Failures to connect to a peer that are not proxy errors
418 [ + - + - : 9 : LogPrintf("Socks5() connect to %s:%d failed: %s\n", strDest, port, Socks5ErrorString(pchRet2[1]));
+ - + - ]
419 : 9 : return false;
420 : : }
421 [ + + ]: 16 : if (pchRet2[2] != 0x00) { // Reserved field must be 0
422 [ + - ]: 1 : return error("Error: malformed proxy response");
423 : : }
424 : : uint8_t pchRet3[256];
425 [ + - + - ]: 15 : switch (pchRet2[3])
426 : : {
427 [ + - ]: 2 : case SOCKS5Atyp::IPV4: recvr = InterruptibleRecv(pchRet3, 4, g_socks5_recv_timeout, sock); break;
428 [ # # ]: 0 : case SOCKS5Atyp::IPV6: recvr = InterruptibleRecv(pchRet3, 16, g_socks5_recv_timeout, sock); break;
429 : : case SOCKS5Atyp::DOMAINNAME:
430 : : {
431 [ + - ]: 13 : recvr = InterruptibleRecv(pchRet3, 1, g_socks5_recv_timeout, sock);
432 [ - + ]: 13 : if (recvr != IntrRecvError::OK) {
433 [ # # ]: 0 : return error("Error reading from proxy");
434 : : }
435 : 13 : int nRecv = pchRet3[0];
436 [ + - ]: 13 : recvr = InterruptibleRecv(pchRet3, nRecv, g_socks5_recv_timeout, sock);
437 : 13 : break;
438 : : }
439 [ # # ]: 0 : default: return error("Error: malformed proxy response");
440 : : }
441 [ + + ]: 15 : if (recvr != IntrRecvError::OK) {
442 [ + - ]: 11 : return error("Error reading from proxy");
443 : : }
444 [ + - + + ]: 4 : if (InterruptibleRecv(pchRet3, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
445 [ + - ]: 2 : return error("Error reading from proxy");
446 : : }
447 [ + - + - : 2 : LogPrint(BCLog::NET, "SOCKS5 connected %s\n", strDest);
# # # # #
# ]
448 : 2 : return true;
449 : 73 : }
450 : :
451 : 0 : std::unique_ptr<Sock> CreateSockTCP(const CService& address_family)
452 : : {
453 : : // Create a sockaddr from the specified service.
454 : : struct sockaddr_storage sockaddr;
455 : 0 : socklen_t len = sizeof(sockaddr);
456 [ # # ]: 0 : if (!address_family.GetSockAddr((struct sockaddr*)&sockaddr, &len)) {
457 [ # # # # : 0 : LogPrintf("Cannot create socket for %s: unsupported network\n", address_family.ToStringAddrPort());
# # # # ]
458 : 0 : return nullptr;
459 : : }
460 : :
461 : : // Create a TCP socket in the address family of the specified service.
462 : 0 : SOCKET hSocket = socket(((struct sockaddr*)&sockaddr)->sa_family, SOCK_STREAM, IPPROTO_TCP);
463 [ # # ]: 0 : if (hSocket == INVALID_SOCKET) {
464 : 0 : return nullptr;
465 : : }
466 : :
467 : 0 : auto sock = std::make_unique<Sock>(hSocket);
468 : :
469 : : // Ensure that waiting for I/O on this socket won't result in undefined
470 : : // behavior.
471 [ # # # # ]: 0 : if (!sock->IsSelectable()) {
472 [ # # # # : 0 : LogPrintf("Cannot create connection: non-selectable socket created (fd >= FD_SETSIZE ?)\n");
# # ]
473 : 0 : return nullptr;
474 : : }
475 : :
476 : : #ifdef SO_NOSIGPIPE
477 : : int set = 1;
478 : : // Set the no-sigpipe option on the socket for BSD systems, other UNIXes
479 : : // should use the MSG_NOSIGNAL flag for every send.
480 : : if (sock->SetSockOpt(SOL_SOCKET, SO_NOSIGPIPE, (void*)&set, sizeof(int)) == SOCKET_ERROR) {
481 : : LogPrintf("Error setting SO_NOSIGPIPE on socket: %s, continuing anyway\n",
482 : : NetworkErrorString(WSAGetLastError()));
483 : : }
484 : : #endif
485 : :
486 : : // Set the no-delay option (disable Nagle's algorithm) on the TCP socket.
487 : 0 : const int on{1};
488 [ # # # # ]: 0 : if (sock->SetSockOpt(IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) == SOCKET_ERROR) {
489 [ # # # # : 0 : LogPrint(BCLog::NET, "Unable to set TCP_NODELAY on a newly created socket, continuing anyway\n");
# # # # #
# ]
490 : 0 : }
491 : :
492 : : // Set the non-blocking option on the socket.
493 [ # # # # ]: 0 : if (!sock->SetNonBlocking()) {
494 [ # # # # : 0 : LogPrintf("Error setting socket to non-blocking: %s\n", NetworkErrorString(WSAGetLastError()));
# # # # ]
495 : 0 : return nullptr;
496 : : }
497 : 0 : return sock;
498 : 0 : }
499 : :
500 : 173 : std::function<std::unique_ptr<Sock>(const CService&)> CreateSock = CreateSockTCP;
501 : :
502 : : template<typename... Args>
503 : 26 : static void LogConnectFailure(bool manual_connection, const char* fmt, const Args&... args) {
504 : 26 : std::string error_message = tfm::format(fmt, args...);
505 [ + + ]: 26 : if (manual_connection) {
506 [ + - + - : 11 : LogPrintf("%s\n", error_message);
+ - ]
507 : 11 : } else {
508 [ + - + - : 15 : LogPrint(BCLog::NET, "%s\n", error_message);
# # # # #
# ]
509 : : }
510 : 26 : }
511 : :
512 : 213 : bool ConnectSocketDirectly(const CService &addrConnect, const Sock& sock, int nTimeout, bool manual_connection)
513 : : {
514 : : // Create a sockaddr from the specified service.
515 : : struct sockaddr_storage sockaddr;
516 : 213 : socklen_t len = sizeof(sockaddr);
517 [ + + ]: 213 : if (!addrConnect.GetSockAddr((struct sockaddr*)&sockaddr, &len)) {
518 [ + - + - : 7 : LogPrintf("Cannot connect to %s: unsupported network\n", addrConnect.ToStringAddrPort());
+ - + - ]
519 : 7 : return false;
520 : : }
521 : :
522 : : // Connect to the addrConnect service on the hSocket socket.
523 [ + + ]: 206 : if (sock.Connect(reinterpret_cast<struct sockaddr*>(&sockaddr), len) == SOCKET_ERROR) {
524 : 47 : int nErr = WSAGetLastError();
525 : : // WSAEINVAL is here because some legacy version of winsock uses it
526 [ + + + + : 47 : if (nErr == WSAEINPROGRESS || nErr == WSAEWOULDBLOCK || nErr == WSAEINVAL)
- + ]
527 : : {
528 : : // Connection didn't actually fail, but is being established
529 : : // asynchronously. Thus, use async I/O api (select/poll)
530 : : // synchronously to check for successful connection with a timeout.
531 : 25 : const Sock::Event requested = Sock::RECV | Sock::SEND;
532 : : Sock::Event occurred;
533 [ + + ]: 25 : if (!sock.Wait(std::chrono::milliseconds{nTimeout}, requested, &occurred)) {
534 [ + - + - : 7 : LogPrintf("wait for connect to %s failed: %s\n",
+ - + - +
- ]
535 : : addrConnect.ToStringAddrPort(),
536 : : NetworkErrorString(WSAGetLastError()));
537 : 7 : return false;
538 [ + + ]: 18 : } else if (occurred == 0) {
539 [ + - # # : 7 : LogPrint(BCLog::NET, "connection attempt to %s timed out\n", addrConnect.ToStringAddrPort());
# # # # #
# ]
540 : 7 : return false;
541 : : }
542 : :
543 : : // Even if the wait was successful, the connect might not
544 : : // have been successful. The reason for this failure is hidden away
545 : : // in the SO_ERROR for the socket in modern systems. We read it into
546 : : // sockerr here.
547 : : int sockerr;
548 : 11 : socklen_t sockerr_len = sizeof(sockerr);
549 [ + + ]: 11 : if (sock.GetSockOpt(SOL_SOCKET, SO_ERROR, (sockopt_arg_type)&sockerr, &sockerr_len) ==
550 : : SOCKET_ERROR) {
551 [ + - + - : 4 : LogPrintf("getsockopt() for %s failed: %s\n", addrConnect.ToStringAddrPort(), NetworkErrorString(WSAGetLastError()));
+ - + - +
- ]
552 : 4 : return false;
553 : : }
554 [ + + ]: 7 : if (sockerr != 0) {
555 [ + - ]: 4 : LogConnectFailure(manual_connection,
556 : : "connect() to %s failed after wait: %s",
557 : 4 : addrConnect.ToStringAddrPort(),
558 [ + - ]: 4 : NetworkErrorString(sockerr));
559 : 4 : return false;
560 : : }
561 : 3 : }
562 : : #ifdef WIN32
563 : : else if (WSAGetLastError() != WSAEISCONN)
564 : : #else
565 : : else
566 : : #endif
567 : : {
568 [ + - + - ]: 22 : LogConnectFailure(manual_connection, "connect() to %s failed: %s", addrConnect.ToStringAddrPort(), NetworkErrorString(WSAGetLastError()));
569 : 22 : return false;
570 : : }
571 : 3 : }
572 : 162 : return true;
573 : 213 : }
574 : :
575 : 0 : bool SetProxy(enum Network net, const Proxy &addrProxy) {
576 [ # # # # ]: 0 : assert(net >= 0 && net < NET_MAX);
577 [ # # ]: 0 : if (!addrProxy.IsValid())
578 : 0 : return false;
579 : 0 : LOCK(g_proxyinfo_mutex);
580 [ # # ]: 0 : proxyInfo[net] = addrProxy;
581 : 0 : return true;
582 : 0 : }
583 : :
584 : 34 : bool GetProxy(enum Network net, Proxy &proxyInfoOut) {
585 [ - + + - ]: 34 : assert(net >= 0 && net < NET_MAX);
586 : 34 : LOCK(g_proxyinfo_mutex);
587 [ + - - + ]: 34 : if (!proxyInfo[net].IsValid())
588 : 34 : return false;
589 [ # # ]: 0 : proxyInfoOut = proxyInfo[net];
590 : 0 : return true;
591 : 34 : }
592 : :
593 : 0 : bool SetNameProxy(const Proxy &addrProxy) {
594 [ # # ]: 0 : if (!addrProxy.IsValid())
595 : 0 : return false;
596 : 0 : LOCK(g_proxyinfo_mutex);
597 [ # # ]: 0 : nameProxy = addrProxy;
598 : 0 : return true;
599 : 0 : }
600 : :
601 : 6 : bool GetNameProxy(Proxy &nameProxyOut) {
602 : 6 : LOCK(g_proxyinfo_mutex);
603 [ + - - + ]: 6 : if(!nameProxy.IsValid())
604 : 6 : return false;
605 [ # # ]: 0 : nameProxyOut = nameProxy;
606 : 0 : return true;
607 : 6 : }
608 : :
609 : 7 : bool HaveNameProxy() {
610 : 7 : LOCK(g_proxyinfo_mutex);
611 [ + - ]: 7 : return nameProxy.IsValid();
612 : 7 : }
613 : :
614 : 3209 : bool IsProxy(const CNetAddr &addr) {
615 : 3209 : LOCK(g_proxyinfo_mutex);
616 [ + + ]: 25672 : for (int i = 0; i < NET_MAX; i++) {
617 [ + - + - : 22463 : if (addr == static_cast<CNetAddr>(proxyInfo[i].proxy))
+ - ]
618 : 0 : return true;
619 : 22463 : }
620 : 3209 : return false;
621 : 3209 : }
622 : :
623 : 0 : bool ConnectThroughProxy(const Proxy& proxy, const std::string& strDest, uint16_t port, const Sock& sock, int nTimeout, bool& outProxyConnectionFailed)
624 : : {
625 : : // first connect to proxy server
626 [ # # ]: 0 : if (!ConnectSocketDirectly(proxy.proxy, sock, nTimeout, true)) {
627 : 0 : outProxyConnectionFailed = true;
628 : 0 : return false;
629 : : }
630 : : // do socks negotiation
631 [ # # ]: 0 : if (proxy.randomize_credentials) {
632 : 0 : ProxyCredentials random_auth;
633 : : static std::atomic_int counter(0);
634 [ # # # # ]: 0 : random_auth.username = random_auth.password = strprintf("%i", counter++);
635 [ # # # # ]: 0 : if (!Socks5(strDest, port, &random_auth, sock)) {
636 : 0 : return false;
637 : : }
638 [ # # # ]: 0 : } else {
639 [ # # ]: 0 : if (!Socks5(strDest, port, nullptr, sock)) {
640 : 0 : return false;
641 : : }
642 : : }
643 : 0 : return true;
644 : 0 : }
645 : :
646 : 10060 : bool LookupSubNet(const std::string& subnet_str, CSubNet& subnet_out)
647 : : {
648 [ - + ]: 10060 : if (!ContainsNoNUL(subnet_str)) {
649 : 0 : return false;
650 : : }
651 : :
652 : 10060 : const size_t slash_pos{subnet_str.find_last_of('/')};
653 : 10060 : const std::string str_addr{subnet_str.substr(0, slash_pos)};
654 [ + - + - ]: 10060 : const std::optional<CNetAddr> addr{LookupHost(str_addr, /*fAllowLookup=*/false)};
655 : :
656 [ + + ]: 10060 : if (addr.has_value()) {
657 [ + + ]: 9721 : if (slash_pos != subnet_str.npos) {
658 [ + - ]: 7231 : const std::string netmask_str{subnet_str.substr(slash_pos + 1)};
659 : : uint8_t netmask;
660 [ + - + + ]: 7231 : if (ParseUInt8(netmask_str, &netmask)) {
661 : : // Valid number; assume CIDR variable-length subnet masking.
662 [ + - + - ]: 7053 : subnet_out = CSubNet{addr.value(), netmask};
663 [ + - ]: 7053 : return subnet_out.IsValid();
664 : : } else {
665 : : // Invalid number; try full netmask syntax. Never allow lookup for netmask.
666 [ + - + - ]: 178 : const std::optional<CNetAddr> full_netmask{LookupHost(netmask_str, /*fAllowLookup=*/false)};
667 [ + + ]: 178 : if (full_netmask.has_value()) {
668 [ + - + - : 90 : subnet_out = CSubNet{addr.value(), full_netmask.value()};
+ - ]
669 [ + - ]: 90 : return subnet_out.IsValid();
670 : : }
671 [ + + ]: 178 : }
672 [ + + ]: 7231 : } else {
673 : : // Single IP subnet (<ipv4>/32 or <ipv6>/128).
674 [ + - + - ]: 2490 : subnet_out = CSubNet{addr.value()};
675 [ + - ]: 2490 : return subnet_out.IsValid();
676 : : }
677 : 88 : }
678 : 427 : return false;
679 : 10060 : }
680 : :
681 : 757 : void InterruptSocks5(bool interrupt)
682 : : {
683 : 757 : interruptSocks5Recv = interrupt;
684 : 757 : }
685 : :
686 : 0 : bool IsBadPort(uint16_t port)
687 : : {
688 : : /* Don't forget to update doc/p2p-bad-ports.md if you change this list. */
689 : :
690 [ # # ]: 0 : switch (port) {
691 : : case 1: // tcpmux
692 : : case 7: // echo
693 : : case 9: // discard
694 : : case 11: // systat
695 : : case 13: // daytime
696 : : case 15: // netstat
697 : : case 17: // qotd
698 : : case 19: // chargen
699 : : case 20: // ftp data
700 : : case 21: // ftp access
701 : : case 22: // ssh
702 : : case 23: // telnet
703 : : case 25: // smtp
704 : : case 37: // time
705 : : case 42: // name
706 : : case 43: // nicname
707 : : case 53: // domain
708 : : case 69: // tftp
709 : : case 77: // priv-rjs
710 : : case 79: // finger
711 : : case 87: // ttylink
712 : : case 95: // supdup
713 : : case 101: // hostname
714 : : case 102: // iso-tsap
715 : : case 103: // gppitnp
716 : : case 104: // acr-nema
717 : : case 109: // pop2
718 : : case 110: // pop3
719 : : case 111: // sunrpc
720 : : case 113: // auth
721 : : case 115: // sftp
722 : : case 117: // uucp-path
723 : : case 119: // nntp
724 : : case 123: // NTP
725 : : case 135: // loc-srv /epmap
726 : : case 137: // netbios
727 : : case 139: // netbios
728 : : case 143: // imap2
729 : : case 161: // snmp
730 : : case 179: // BGP
731 : : case 389: // ldap
732 : : case 427: // SLP (Also used by Apple Filing Protocol)
733 : : case 465: // smtp+ssl
734 : : case 512: // print / exec
735 : : case 513: // login
736 : : case 514: // shell
737 : : case 515: // printer
738 : : case 526: // tempo
739 : : case 530: // courier
740 : : case 531: // chat
741 : : case 532: // netnews
742 : : case 540: // uucp
743 : : case 548: // AFP (Apple Filing Protocol)
744 : : case 554: // rtsp
745 : : case 556: // remotefs
746 : : case 563: // nntp+ssl
747 : : case 587: // smtp (rfc6409)
748 : : case 601: // syslog-conn (rfc3195)
749 : : case 636: // ldap+ssl
750 : : case 989: // ftps-data
751 : : case 990: // ftps
752 : : case 993: // ldap+ssl
753 : : case 995: // pop3+ssl
754 : : case 1719: // h323gatestat
755 : : case 1720: // h323hostcall
756 : : case 1723: // pptp
757 : : case 2049: // nfs
758 : : case 3659: // apple-sasl / PasswordServer
759 : : case 4045: // lockd
760 : : case 5060: // sip
761 : : case 5061: // sips
762 : : case 6000: // X11
763 : : case 6566: // sane-port
764 : : case 6665: // Alternate IRC
765 : : case 6666: // Alternate IRC
766 : : case 6667: // Standard IRC
767 : : case 6668: // Alternate IRC
768 : : case 6669: // Alternate IRC
769 : : case 6697: // IRC + TLS
770 : : case 10080: // Amanda
771 : 0 : return true;
772 : : }
773 : 0 : return false;
774 : 0 : }
|