LCOV - code coverage report
Current view: top level - src - netbase.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 98 380 25.8 %
Date: 2023-11-06 23:13:05 Functions: 10 30 33.3 %
Branches: 72 638 11.3 %

           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 [ +  - ][ +  + ]:         14 : static Proxy proxyInfo[NET_MAX] GUARDED_BY(g_proxyinfo_mutex);
      27                 :          2 : 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                 :        144 : std::vector<CNetAddr> WrappedGetAddrInfo(const std::string& name, bool allow_lookup)
      36                 :            : {
      37                 :        144 :     addrinfo ai_hint{};
      38                 :            :     // We want a TCP port, which is a streaming socket type
      39                 :        144 :     ai_hint.ai_socktype = SOCK_STREAM;
      40                 :        144 :     ai_hint.ai_protocol = IPPROTO_TCP;
      41                 :            :     // We don't care which address family (IPv4 or IPv6) is returned
      42                 :        144 :     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                 :        144 :     ai_hint.ai_flags = allow_lookup ? AI_ADDRCONFIG : AI_NUMERICHOST;
      50                 :            : 
      51                 :        144 :     addrinfo* ai_res{nullptr};
      52                 :        144 :     const int n_err{getaddrinfo(name.c_str(), nullptr, &ai_hint, &ai_res)};
      53         [ -  + ]:        144 :     if (n_err != 0) {
      54                 :          0 :         return {};
      55                 :            :     }
      56                 :            : 
      57                 :            :     // Traverse the linked list starting with ai_trav.
      58                 :        144 :     addrinfo* ai_trav{ai_res};
      59                 :        144 :     std::vector<CNetAddr> resolved_addresses;
      60         [ +  + ]:        288 :     while (ai_trav != nullptr) {
      61         [ -  + ]:        144 :         if (ai_trav->ai_family == AF_INET) {
      62         [ +  - ]:        144 :             assert(ai_trav->ai_addrlen >= sizeof(sockaddr_in));
      63         [ +  - ]:        144 :             resolved_addresses.emplace_back(reinterpret_cast<sockaddr_in*>(ai_trav->ai_addr)->sin_addr);
      64                 :        144 :         }
      65         [ +  - ]:        144 :         if (ai_trav->ai_family == AF_INET6) {
      66         [ #  # ]:          0 :             assert(ai_trav->ai_addrlen >= sizeof(sockaddr_in6));
      67                 :          0 :             const sockaddr_in6* s6{reinterpret_cast<sockaddr_in6*>(ai_trav->ai_addr)};
      68         [ #  # ]:          0 :             resolved_addresses.emplace_back(s6->sin6_addr, s6->sin6_scope_id);
      69                 :          0 :         }
      70                 :        144 :         ai_trav = ai_trav->ai_next;
      71                 :            :     }
      72                 :        144 :     freeaddrinfo(ai_res);
      73                 :            : 
      74                 :        144 :     return resolved_addresses;
      75         [ +  - ]:        288 : }
      76                 :            : 
      77                 :          2 : DNSLookupFn g_dns_lookup{WrappedGetAddrInfo};
      78                 :            : 
      79                 :          0 : enum Network ParseNetwork(const std::string& net_in) {
      80                 :          0 :     std::string net = ToLower(net_in);
      81 [ #  # ][ #  # ]:          0 :     if (net == "ipv4") return NET_IPV4;
      82 [ #  # ][ #  # ]:          0 :     if (net == "ipv6") return NET_IPV6;
      83 [ #  # ][ #  # ]:          0 :     if (net == "onion") return NET_ONION;
      84 [ #  # ][ #  # ]:          0 :     if (net == "tor") {
      85 [ #  # ][ #  # ]:          0 :         LogPrintf("Warning: net name 'tor' is deprecated and will be removed in the future. You should use 'onion' instead.\n");
                 [ #  # ]
      86                 :          0 :         return NET_ONION;
      87                 :            :     }
      88 [ #  # ][ #  # ]:          0 :     if (net == "i2p") {
      89                 :          0 :         return NET_I2P;
      90                 :            :     }
      91 [ #  # ][ #  # ]:          0 :     if (net == "cjdns") {
      92                 :          0 :         return NET_CJDNS;
      93                 :            :     }
      94                 :          0 :     return NET_UNROUTABLE;
      95                 :          0 : }
      96                 :            : 
      97                 :         77 : std::string GetNetworkName(enum Network net)
      98                 :            : {
      99   [ +  +  +  +  :         77 :     switch (net) {
             +  -  +  -  
                      - ]
     100         [ +  - ]:          2 :     case NET_UNROUTABLE: return "not_publicly_routable";
     101         [ +  - ]:         15 :     case NET_IPV4: return "ipv4";
     102         [ +  - ]:         15 :     case NET_IPV6: return "ipv6";
     103         [ +  - ]:         15 :     case NET_ONION: return "onion";
     104         [ +  - ]:         15 :     case NET_I2P: return "i2p";
     105         [ +  - ]:         15 :     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                 :         77 : }
     112                 :            : 
     113                 :         15 : std::vector<std::string> GetNetworkNames(bool append_unroutable)
     114                 :            : {
     115                 :         15 :     std::vector<std::string> names;
     116         [ +  + ]:        120 :     for (int n = 0; n < NET_MAX; ++n) {
     117                 :        105 :         const enum Network network{static_cast<Network>(n)};
     118 [ +  + ][ +  + ]:        105 :         if (network == NET_UNROUTABLE || network == NET_INTERNAL) continue;
     119 [ +  - ][ +  - ]:         75 :         names.emplace_back(GetNetworkName(network));
     120                 :         75 :     }
     121         [ +  + ]:         15 :     if (append_unroutable) {
     122 [ +  - ][ -  + ]:          2 :         names.emplace_back(GetNetworkName(NET_UNROUTABLE));
     123                 :          2 :     }
     124                 :         15 :     return names;
     125         [ +  - ]:         15 : }
     126                 :            : 
     127                 :        144 : static std::vector<CNetAddr> LookupIntern(const std::string& name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
     128                 :            : {
     129         [ +  - ]:        144 :     if (!ContainsNoNUL(name)) return {};
     130                 :            :     {
     131                 :        144 :         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 [ +  - ][ -  + ]:        144 :         if (addr.SetSpecial(name)) return {addr};
         [ #  # ][ #  # ]
     139      [ -  -  + ]:        144 :     }
     140                 :            : 
     141                 :        144 :     std::vector<CNetAddr> addresses;
     142                 :            : 
     143 [ +  - ][ +  + ]:        288 :     for (const CNetAddr& resolved : dns_lookup_function(name, fAllowLookup)) {
     144 [ +  - ][ +  - ]:        144 :         if (nMaxSolutions > 0 && addresses.size() >= nMaxSolutions) {
     145                 :          0 :             break;
     146                 :            :         }
     147                 :            :         /* Never allow resolving to an internal address. Consider any such result invalid */
     148 [ +  - ][ +  - ]:        144 :         if (!resolved.IsInternal()) {
     149         [ +  - ]:        144 :             addresses.push_back(resolved);
     150                 :        144 :         }
     151                 :            :     }
     152                 :            : 
     153                 :        144 :     return addresses;
     154         [ +  - ]:        288 : }
     155                 :            : 
     156                 :          0 : std::vector<CNetAddr> LookupHost(const std::string& name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
     157                 :            : {
     158         [ #  # ]:          0 :     if (!ContainsNoNUL(name)) return {};
     159                 :          0 :     std::string strHost = name;
     160         [ #  # ]:          0 :     if (strHost.empty()) return {};
     161 [ #  # ][ #  # ]:          0 :     if (strHost.front() == '[' && strHost.back() == ']') {
     162         [ #  # ]:          0 :         strHost = strHost.substr(1, strHost.size() - 2);
     163                 :          0 :     }
     164                 :            : 
     165 [ #  # ][ #  # ]:          0 :     return LookupIntern(strHost, nMaxSolutions, fAllowLookup, dns_lookup_function);
     166                 :          0 : }
     167                 :            : 
     168                 :          0 : std::optional<CNetAddr> LookupHost(const std::string& name, bool fAllowLookup, DNSLookupFn dns_lookup_function)
     169                 :            : {
     170         [ #  # ]:          0 :     const std::vector<CNetAddr> addresses{LookupHost(name, 1, fAllowLookup, dns_lookup_function)};
     171 [ #  # ][ #  # ]:          0 :     return addresses.empty() ? std::nullopt : std::make_optional(addresses.front());
     172                 :          0 : }
     173                 :            : 
     174                 :        144 : std::vector<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function)
     175                 :            : {
     176 [ +  - ][ -  + ]:        144 :     if (name.empty() || !ContainsNoNUL(name)) {
     177                 :          0 :         return {};
     178                 :            :     }
     179                 :        144 :     uint16_t port{portDefault};
     180                 :        144 :     std::string hostname;
     181         [ +  - ]:        144 :     SplitHostPort(name, port, hostname);
     182                 :            : 
     183 [ +  - ][ -  + ]:        144 :     const std::vector<CNetAddr> addresses{LookupIntern(hostname, nMaxSolutions, fAllowLookup, dns_lookup_function)};
     184         [ -  + ]:        144 :     if (addresses.empty()) return {};
     185                 :        144 :     std::vector<CService> services;
     186         [ +  - ]:        144 :     services.reserve(addresses.size());
     187         [ +  + ]:        288 :     for (const auto& addr : addresses)
     188         [ +  - ]:        144 :         services.emplace_back(addr, port);
     189                 :        144 :     return services;
     190         [ +  - ]:        288 : }
     191                 :            : 
     192                 :          0 : std::optional<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, DNSLookupFn dns_lookup_function)
     193                 :            : {
     194         [ #  # ]:          0 :     const std::vector<CService> services{Lookup(name, portDefault, fAllowLookup, 1, dns_lookup_function)};
     195                 :            : 
     196 [ #  # ][ #  # ]:          0 :     return services.empty() ? std::nullopt : std::make_optional(services.front());
     197                 :          0 : }
     198                 :            : 
     199                 :          0 : CService LookupNumeric(const std::string& name, uint16_t portDefault, DNSLookupFn dns_lookup_function)
     200                 :            : {
     201         [ #  # ]:          0 :     if (!ContainsNoNUL(name)) {
     202                 :          0 :         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 [ #  # ][ #  # ]:          0 :     return Lookup(name, portDefault, /*fAllowLookup=*/false, dns_lookup_function).value_or(CService{});
                 [ #  # ]
     207                 :          0 : }
     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                 :          0 : static IntrRecvError InterruptibleRecv(uint8_t* data, size_t len, std::chrono::milliseconds timeout, const Sock& sock)
     276                 :            : {
     277                 :          0 :     auto curTime{Now<SteadyMilliseconds>()};
     278                 :          0 :     const auto endTime{curTime + timeout};
     279 [ #  # ][ #  # ]:          0 :     while (len > 0 && curTime < endTime) {
     280                 :          0 :         ssize_t ret = sock.Recv(data, len, 0); // Optimistically try the recv first
     281         [ #  # ]:          0 :         if (ret > 0) {
     282                 :          0 :             len -= ret;
     283                 :          0 :             data += ret;
     284         [ #  # ]:          0 :         } else if (ret == 0) { // Unexpected disconnection
     285                 :          0 :             return IntrRecvError::Disconnected;
     286                 :            :         } else { // Other error or blocking
     287                 :          0 :             int nErr = WSAGetLastError();
     288 [ #  # ][ #  # ]:          0 :             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                 :          0 :                 const auto remaining = std::chrono::milliseconds{endTime - curTime};
     292                 :          0 :                 const auto timeout = std::min(remaining, std::chrono::milliseconds{MAX_WAIT_FOR_IO});
     293         [ #  # ]:          0 :                 if (!sock.Wait(timeout, Sock::RECV)) {
     294                 :          0 :                     return IntrRecvError::NetworkError;
     295                 :            :                 }
     296                 :          0 :             } else {
     297                 :          0 :                 return IntrRecvError::NetworkError;
     298                 :            :             }
     299                 :            :         }
     300         [ #  # ]:          0 :         if (interruptSocks5Recv)
     301                 :          0 :             return IntrRecvError::Interrupted;
     302                 :          0 :         curTime = Now<SteadyMilliseconds>();
     303                 :            :     }
     304                 :          0 :     return len == 0 ? IntrRecvError::OK : IntrRecvError::Timeout;
     305                 :          0 : }
     306                 :            : 
     307                 :            : /** Convert SOCKS5 reply to an error message */
     308                 :          0 : static std::string Socks5ErrorString(uint8_t err)
     309                 :            : {
     310   [ #  #  #  #  :          0 :     switch(err) {
             #  #  #  #  
                      # ]
     311                 :            :         case SOCKS5Reply::GENFAILURE:
     312         [ #  # ]:          0 :             return "general failure";
     313                 :            :         case SOCKS5Reply::NOTALLOWED:
     314         [ #  # ]:          0 :             return "connection not allowed";
     315                 :            :         case SOCKS5Reply::NETUNREACHABLE:
     316         [ #  # ]:          0 :             return "network unreachable";
     317                 :            :         case SOCKS5Reply::HOSTUNREACHABLE:
     318         [ #  # ]:          0 :             return "host unreachable";
     319                 :            :         case SOCKS5Reply::CONNREFUSED:
     320         [ #  # ]:          0 :             return "connection refused";
     321                 :            :         case SOCKS5Reply::TTLEXPIRED:
     322         [ #  # ]:          0 :             return "TTL expired";
     323                 :            :         case SOCKS5Reply::CMDUNSUPPORTED:
     324         [ #  # ]:          0 :             return "protocol error";
     325                 :            :         case SOCKS5Reply::ATYPEUNSUPPORTED:
     326         [ #  # ]:          0 :             return "address type not supported";
     327                 :            :         default:
     328         [ #  # ]:          0 :             return "unknown";
     329                 :            :     }
     330                 :          0 : }
     331                 :            : 
     332                 :          0 : bool Socks5(const std::string& strDest, uint16_t port, const ProxyCredentials* auth, const Sock& sock)
     333                 :            : {
     334                 :            :     IntrRecvError recvr;
     335 [ #  # ][ #  # ]:          0 :     LogPrint(BCLog::NET, "SOCKS5 connecting %s\n", strDest);
         [ #  # ][ #  # ]
     336         [ #  # ]:          0 :     if (strDest.size() > 255) {
     337                 :          0 :         return error("Hostname too long");
     338                 :            :     }
     339                 :            :     // Construct the version identifier/method selection message
     340                 :          0 :     std::vector<uint8_t> vSocks5Init;
     341         [ #  # ]:          0 :     vSocks5Init.push_back(SOCKSVersion::SOCKS5); // We want the SOCK5 protocol
     342         [ #  # ]:          0 :     if (auth) {
     343         [ #  # ]:          0 :         vSocks5Init.push_back(0x02); // 2 method identifiers follow...
     344         [ #  # ]:          0 :         vSocks5Init.push_back(SOCKS5Method::NOAUTH);
     345         [ #  # ]:          0 :         vSocks5Init.push_back(SOCKS5Method::USER_PASS);
     346                 :          0 :     } else {
     347         [ #  # ]:          0 :         vSocks5Init.push_back(0x01); // 1 method identifier follows...
     348         [ #  # ]:          0 :         vSocks5Init.push_back(SOCKS5Method::NOAUTH);
     349                 :            :     }
     350         [ #  # ]:          0 :     ssize_t ret = sock.Send(vSocks5Init.data(), vSocks5Init.size(), MSG_NOSIGNAL);
     351         [ #  # ]:          0 :     if (ret != (ssize_t)vSocks5Init.size()) {
     352         [ #  # ]:          0 :         return error("Error sending to proxy");
     353                 :            :     }
     354                 :            :     uint8_t pchRet1[2];
     355 [ #  # ][ #  # ]:          0 :     if (InterruptibleRecv(pchRet1, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
     356 [ #  # ][ #  # ]:          0 :         LogPrintf("Socks5() connect to %s:%d failed: InterruptibleRecv() timeout or other failure\n", strDest, port);
                 [ #  # ]
     357                 :          0 :         return false;
     358                 :            :     }
     359         [ #  # ]:          0 :     if (pchRet1[0] != SOCKSVersion::SOCKS5) {
     360         [ #  # ]:          0 :         return error("Proxy failed to initialize");
     361                 :            :     }
     362 [ #  # ][ #  # ]:          0 :     if (pchRet1[1] == SOCKS5Method::USER_PASS && auth) {
     363                 :            :         // Perform username/password authentication (as described in RFC1929)
     364                 :          0 :         std::vector<uint8_t> vAuth;
     365         [ #  # ]:          0 :         vAuth.push_back(0x01); // Current (and only) version of user/pass subnegotiation
     366 [ #  # ][ #  # ]:          0 :         if (auth->username.size() > 255 || auth->password.size() > 255)
     367         [ #  # ]:          0 :             return error("Proxy username or password too long");
     368         [ #  # ]:          0 :         vAuth.push_back(auth->username.size());
     369         [ #  # ]:          0 :         vAuth.insert(vAuth.end(), auth->username.begin(), auth->username.end());
     370         [ #  # ]:          0 :         vAuth.push_back(auth->password.size());
     371         [ #  # ]:          0 :         vAuth.insert(vAuth.end(), auth->password.begin(), auth->password.end());
     372         [ #  # ]:          0 :         ret = sock.Send(vAuth.data(), vAuth.size(), MSG_NOSIGNAL);
     373         [ #  # ]:          0 :         if (ret != (ssize_t)vAuth.size()) {
     374         [ #  # ]:          0 :             return error("Error sending authentication to proxy");
     375                 :            :         }
     376 [ #  # ][ #  # ]:          0 :         LogPrint(BCLog::PROXY, "SOCKS5 sending proxy authentication %s:%s\n", auth->username, auth->password);
         [ #  # ][ #  # ]
                 [ #  # ]
     377                 :            :         uint8_t pchRetA[2];
     378 [ #  # ][ #  # ]:          0 :         if (InterruptibleRecv(pchRetA, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
     379         [ #  # ]:          0 :             return error("Error reading proxy authentication response");
     380                 :            :         }
     381 [ #  # ][ #  # ]:          0 :         if (pchRetA[0] != 0x01 || pchRetA[1] != 0x00) {
     382         [ #  # ]:          0 :             return error("Proxy authentication unsuccessful");
     383                 :            :         }
     384 [ #  # ][ #  # ]:          0 :     } else if (pchRet1[1] == SOCKS5Method::NOAUTH) {
     385                 :            :         // Perform no authentication
     386                 :          0 :     } else {
     387         [ #  # ]:          0 :         return error("Proxy requested wrong authentication method %02x", pchRet1[1]);
     388                 :            :     }
     389                 :          0 :     std::vector<uint8_t> vSocks5;
     390         [ #  # ]:          0 :     vSocks5.push_back(SOCKSVersion::SOCKS5); // VER protocol version
     391         [ #  # ]:          0 :     vSocks5.push_back(SOCKS5Command::CONNECT); // CMD CONNECT
     392         [ #  # ]:          0 :     vSocks5.push_back(0x00); // RSV Reserved must be 0
     393         [ #  # ]:          0 :     vSocks5.push_back(SOCKS5Atyp::DOMAINNAME); // ATYP DOMAINNAME
     394         [ #  # ]:          0 :     vSocks5.push_back(strDest.size()); // Length<=255 is checked at beginning of function
     395         [ #  # ]:          0 :     vSocks5.insert(vSocks5.end(), strDest.begin(), strDest.end());
     396         [ #  # ]:          0 :     vSocks5.push_back((port >> 8) & 0xFF);
     397         [ #  # ]:          0 :     vSocks5.push_back((port >> 0) & 0xFF);
     398         [ #  # ]:          0 :     ret = sock.Send(vSocks5.data(), vSocks5.size(), MSG_NOSIGNAL);
     399         [ #  # ]:          0 :     if (ret != (ssize_t)vSocks5.size()) {
     400         [ #  # ]:          0 :         return error("Error sending to proxy");
     401                 :            :     }
     402                 :            :     uint8_t pchRet2[4];
     403 [ #  # ][ #  # ]:          0 :     if ((recvr = InterruptibleRecv(pchRet2, 4, g_socks5_recv_timeout, sock)) != IntrRecvError::OK) {
     404         [ #  # ]:          0 :         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         [ #  # ]:          0 :             return error("Error while reading proxy response");
     411                 :            :         }
     412                 :            :     }
     413         [ #  # ]:          0 :     if (pchRet2[0] != SOCKSVersion::SOCKS5) {
     414         [ #  # ]:          0 :         return error("Proxy failed to accept request");
     415                 :            :     }
     416         [ #  # ]:          0 :     if (pchRet2[1] != SOCKS5Reply::SUCCEEDED) {
     417                 :            :         // Failures to connect to a peer that are not proxy errors
     418 [ #  # ][ #  # ]:          0 :         LogPrintf("Socks5() connect to %s:%d failed: %s\n", strDest, port, Socks5ErrorString(pchRet2[1]));
         [ #  # ][ #  # ]
     419                 :          0 :         return false;
     420                 :            :     }
     421         [ #  # ]:          0 :     if (pchRet2[2] != 0x00) { // Reserved field must be 0
     422         [ #  # ]:          0 :         return error("Error: malformed proxy response");
     423                 :            :     }
     424                 :            :     uint8_t pchRet3[256];
     425   [ #  #  #  # ]:          0 :     switch (pchRet2[3])
     426                 :            :     {
     427         [ #  # ]:          0 :         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         [ #  # ]:          0 :             recvr = InterruptibleRecv(pchRet3, 1, g_socks5_recv_timeout, sock);
     432         [ #  # ]:          0 :             if (recvr != IntrRecvError::OK) {
     433         [ #  # ]:          0 :                 return error("Error reading from proxy");
     434                 :            :             }
     435                 :          0 :             int nRecv = pchRet3[0];
     436         [ #  # ]:          0 :             recvr = InterruptibleRecv(pchRet3, nRecv, g_socks5_recv_timeout, sock);
     437                 :          0 :             break;
     438                 :            :         }
     439         [ #  # ]:          0 :         default: return error("Error: malformed proxy response");
     440                 :            :     }
     441         [ #  # ]:          0 :     if (recvr != IntrRecvError::OK) {
     442         [ #  # ]:          0 :         return error("Error reading from proxy");
     443                 :            :     }
     444 [ #  # ][ #  # ]:          0 :     if (InterruptibleRecv(pchRet3, 2, g_socks5_recv_timeout, sock) != IntrRecvError::OK) {
     445         [ #  # ]:          0 :         return error("Error reading from proxy");
     446                 :            :     }
     447 [ #  # ][ #  # ]:          0 :     LogPrint(BCLog::NET, "SOCKS5 connected %s\n", strDest);
         [ #  # ][ #  # ]
                 [ #  # ]
     448                 :          0 :     return true;
     449                 :          0 : }
     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                 :          2 : std::function<std::unique_ptr<Sock>(const CService&)> CreateSock = CreateSockTCP;
     501                 :            : 
     502                 :            : template<typename... Args>
     503                 :          0 : static void LogConnectFailure(bool manual_connection, const char* fmt, const Args&... args) {
     504                 :          0 :     std::string error_message = tfm::format(fmt, args...);
     505         [ #  # ]:          0 :     if (manual_connection) {
     506 [ #  # ][ #  # ]:          0 :         LogPrintf("%s\n", error_message);
                 [ #  # ]
     507                 :          0 :     } else {
     508 [ #  # ][ #  # ]:          0 :         LogPrint(BCLog::NET, "%s\n", error_message);
         [ #  # ][ #  # ]
                 [ #  # ]
     509                 :            :     }
     510                 :          0 : }
     511                 :            : 
     512                 :        144 : 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                 :        144 :     socklen_t len = sizeof(sockaddr);
     517         [ -  + ]:        144 :     if (!addrConnect.GetSockAddr((struct sockaddr*)&sockaddr, &len)) {
     518 [ #  # ][ #  # ]:          0 :         LogPrintf("Cannot connect to %s: unsupported network\n", addrConnect.ToStringAddrPort());
         [ #  # ][ #  # ]
     519                 :          0 :         return false;
     520                 :            :     }
     521                 :            : 
     522                 :            :     // Connect to the addrConnect service on the hSocket socket.
     523         [ +  - ]:        144 :     if (sock.Connect(reinterpret_cast<struct sockaddr*>(&sockaddr), len) == SOCKET_ERROR) {
     524                 :          0 :         int nErr = WSAGetLastError();
     525                 :            :         // WSAEINVAL is here because some legacy version of winsock uses it
     526 [ #  # ][ #  # ]:          0 :         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                 :          0 :             const Sock::Event requested = Sock::RECV | Sock::SEND;
     532                 :            :             Sock::Event occurred;
     533         [ #  # ]:          0 :             if (!sock.Wait(std::chrono::milliseconds{nTimeout}, requested, &occurred)) {
     534 [ #  # ][ #  # ]:          0 :                 LogPrintf("wait for connect to %s failed: %s\n",
         [ #  # ][ #  # ]
                 [ #  # ]
     535                 :            :                           addrConnect.ToStringAddrPort(),
     536                 :            :                           NetworkErrorString(WSAGetLastError()));
     537                 :          0 :                 return false;
     538         [ #  # ]:          0 :             } else if (occurred == 0) {
     539 [ #  # ][ #  # ]:          0 :                 LogPrint(BCLog::NET, "connection attempt to %s timed out\n", addrConnect.ToStringAddrPort());
         [ #  # ][ #  # ]
                 [ #  # ]
     540                 :          0 :                 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                 :          0 :             socklen_t sockerr_len = sizeof(sockerr);
     549         [ #  # ]:          0 :             if (sock.GetSockOpt(SOL_SOCKET, SO_ERROR, (sockopt_arg_type)&sockerr, &sockerr_len) ==
     550                 :            :                 SOCKET_ERROR) {
     551 [ #  # ][ #  # ]:          0 :                 LogPrintf("getsockopt() for %s failed: %s\n", addrConnect.ToStringAddrPort(), NetworkErrorString(WSAGetLastError()));
         [ #  # ][ #  # ]
                 [ #  # ]
     552                 :          0 :                 return false;
     553                 :            :             }
     554         [ #  # ]:          0 :             if (sockerr != 0) {
     555         [ #  # ]:          0 :                 LogConnectFailure(manual_connection,
     556                 :            :                                   "connect() to %s failed after wait: %s",
     557                 :          0 :                                   addrConnect.ToStringAddrPort(),
     558         [ #  # ]:          0 :                                   NetworkErrorString(sockerr));
     559                 :          0 :                 return false;
     560                 :            :             }
     561                 :          0 :         }
     562                 :            : #ifdef WIN32
     563                 :            :         else if (WSAGetLastError() != WSAEISCONN)
     564                 :            : #else
     565                 :            :         else
     566                 :            : #endif
     567                 :            :         {
     568 [ #  # ][ #  # ]:          0 :             LogConnectFailure(manual_connection, "connect() to %s failed: %s", addrConnect.ToStringAddrPort(), NetworkErrorString(WSAGetLastError()));
     569                 :          0 :             return false;
     570                 :            :         }
     571                 :          0 :     }
     572                 :        144 :     return true;
     573                 :        144 : }
     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                 :        145 : bool GetProxy(enum Network net, Proxy &proxyInfoOut) {
     585 [ -  + ][ +  - ]:        145 :     assert(net >= 0 && net < NET_MAX);
     586                 :        145 :     LOCK(g_proxyinfo_mutex);
     587 [ +  - ][ -  + ]:        145 :     if (!proxyInfo[net].IsValid())
     588                 :        145 :         return false;
     589         [ #  # ]:          0 :     proxyInfoOut = proxyInfo[net];
     590                 :          0 :     return true;
     591                 :        145 : }
     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                 :          0 : bool GetNameProxy(Proxy &nameProxyOut) {
     602                 :          0 :     LOCK(g_proxyinfo_mutex);
     603 [ #  # ][ #  # ]:          0 :     if(!nameProxy.IsValid())
     604                 :          0 :         return false;
     605         [ #  # ]:          0 :     nameProxyOut = nameProxy;
     606                 :          0 :     return true;
     607                 :          0 : }
     608                 :            : 
     609                 :          0 : bool HaveNameProxy() {
     610                 :          0 :     LOCK(g_proxyinfo_mutex);
     611         [ #  # ]:          0 :     return nameProxy.IsValid();
     612                 :          0 : }
     613                 :            : 
     614                 :        144 : bool IsProxy(const CNetAddr &addr) {
     615                 :        144 :     LOCK(g_proxyinfo_mutex);
     616         [ +  + ]:       1152 :     for (int i = 0; i < NET_MAX; i++) {
     617 [ +  - ][ +  - ]:       1008 :         if (addr == static_cast<CNetAddr>(proxyInfo[i].proxy))
                 [ +  - ]
     618                 :          0 :             return true;
     619                 :       1008 :     }
     620                 :        144 :     return false;
     621                 :        144 : }
     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                 :          0 : bool LookupSubNet(const std::string& subnet_str, CSubNet& subnet_out)
     647                 :            : {
     648         [ #  # ]:          0 :     if (!ContainsNoNUL(subnet_str)) {
     649                 :          0 :         return false;
     650                 :            :     }
     651                 :            : 
     652                 :          0 :     const size_t slash_pos{subnet_str.find_last_of('/')};
     653                 :          0 :     const std::string str_addr{subnet_str.substr(0, slash_pos)};
     654 [ #  # ][ #  # ]:          0 :     const std::optional<CNetAddr> addr{LookupHost(str_addr, /*fAllowLookup=*/false)};
     655                 :            : 
     656         [ #  # ]:          0 :     if (addr.has_value()) {
     657         [ #  # ]:          0 :         if (slash_pos != subnet_str.npos) {
     658         [ #  # ]:          0 :             const std::string netmask_str{subnet_str.substr(slash_pos + 1)};
     659                 :            :             uint8_t netmask;
     660 [ #  # ][ #  # ]:          0 :             if (ParseUInt8(netmask_str, &netmask)) {
     661                 :            :                 // Valid number; assume CIDR variable-length subnet masking.
     662 [ #  # ][ #  # ]:          0 :                 subnet_out = CSubNet{addr.value(), netmask};
     663         [ #  # ]:          0 :                 return subnet_out.IsValid();
     664                 :            :             } else {
     665                 :            :                 // Invalid number; try full netmask syntax. Never allow lookup for netmask.
     666 [ #  # ][ #  # ]:          0 :                 const std::optional<CNetAddr> full_netmask{LookupHost(netmask_str, /*fAllowLookup=*/false)};
     667         [ #  # ]:          0 :                 if (full_netmask.has_value()) {
     668 [ #  # ][ #  # ]:          0 :                     subnet_out = CSubNet{addr.value(), full_netmask.value()};
                 [ #  # ]
     669         [ #  # ]:          0 :                     return subnet_out.IsValid();
     670                 :            :                 }
     671         [ #  # ]:          0 :             }
     672         [ #  # ]:          0 :         } else {
     673                 :            :             // Single IP subnet (<ipv4>/32 or <ipv6>/128).
     674 [ #  # ][ #  # ]:          0 :             subnet_out = CSubNet{addr.value()};
     675         [ #  # ]:          0 :             return subnet_out.IsValid();
     676                 :            :         }
     677                 :          0 :     }
     678                 :          0 :     return false;
     679                 :          0 : }
     680                 :            : 
     681                 :          3 : void InterruptSocks5(bool interrupt)
     682                 :            : {
     683                 :          3 :     interruptSocks5Recv = interrupt;
     684                 :          3 : }
     685                 :            : 
     686                 :          1 : bool IsBadPort(uint16_t port)
     687                 :            : {
     688                 :            :     /* Don't forget to update doc/p2p-bad-ports.md if you change this list. */
     689                 :            : 
     690         [ +  - ]:          1 :     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                 :          1 :     return false;
     774                 :          1 : }

Generated by: LCOV version 1.14