Bitcoin Core  31.0.0
P2P Digital Currency
netbase.h
Go to the documentation of this file.
1 // Copyright (c) 2009-present The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_NETBASE_H
6 #define BITCOIN_NETBASE_H
7 
8 #include <compat/compat.h>
9 #include <netaddress.h>
10 #include <serialize.h>
11 #include <util/sock.h>
12 #include <util/threadinterrupt.h>
13 
14 #include <cstdint>
15 #include <functional>
16 #include <memory>
17 #include <string>
18 #include <type_traits>
19 #include <unordered_set>
20 #include <vector>
21 
22 extern int nConnectTimeout;
23 extern bool fNameLookup;
24 
26 static const int DEFAULT_CONNECT_TIMEOUT = 5000;
28 static const int DEFAULT_NAME_LOOKUP = true;
29 
31 const std::string ADDR_PREFIX_UNIX = "unix:";
32 
33 enum class ConnectionDirection {
34  None = 0,
35  In = (1U << 0),
36  Out = (1U << 1),
37  Both = (In | Out),
38 };
40  using underlying = std::underlying_type_t<ConnectionDirection>;
41  a = ConnectionDirection(underlying(a) | underlying(b));
42  return a;
43 }
45  using underlying = std::underlying_type_t<ConnectionDirection>;
46  return (underlying(a) & underlying(b));
47 }
48 
56 bool IsUnixSocketPath(const std::string& name);
57 
58 class Proxy
59 {
60 public:
62  explicit Proxy(const CService& _proxy, bool tor_stream_isolation = false) : proxy(_proxy), m_is_unix_socket(false), m_tor_stream_isolation(tor_stream_isolation) {}
63  explicit Proxy(std::string path, bool tor_stream_isolation = false)
64  : m_unix_socket_path(std::move(path)), m_is_unix_socket(true), m_tor_stream_isolation(tor_stream_isolation) {}
65 
67  std::string m_unix_socket_path;
70 
71  bool IsValid() const
72  {
74  return proxy.IsValid();
75  }
76 
77  sa_family_t GetFamily() const
78  {
79  if (m_is_unix_socket) return AF_UNIX;
80  return proxy.GetSAFamily();
81  }
82 
83  std::string ToString() const
84  {
86  return proxy.ToStringAddrPort();
87  }
88 
89  std::unique_ptr<Sock> Connect() const;
90 };
91 
94 {
95  std::string username;
96  std::string password;
97 };
98 
103 public:
105  {
107  LOCK(m_mutex);
108  m_reachable.insert(net);
109  }
110 
112  {
114  LOCK(m_mutex);
115  m_reachable.erase(net);
116  }
117 
119  {
121  LOCK(m_mutex);
122  m_reachable.clear();
123  }
124 
126  {
128  LOCK(m_mutex);
129  m_reachable = DefaultNets();
130  }
131 
132  [[nodiscard]] bool Contains(Network net) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
133  {
135  LOCK(m_mutex);
136  return m_reachable.contains(net);
137  }
138 
139  [[nodiscard]] bool Contains(const CNetAddr& addr) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
140  {
142  return Contains(addr.GetNetwork());
143  }
144 
145  [[nodiscard]] std::unordered_set<Network> All() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
146  {
148  LOCK(m_mutex);
149  return m_reachable;
150  }
151 
152 private:
153  static std::unordered_set<Network> DefaultNets()
154  {
155  return {
157  NET_IPV4,
158  NET_IPV6,
159  NET_ONION,
160  NET_I2P,
161  NET_CJDNS,
163  };
164  };
165 
166  mutable Mutex m_mutex;
167  std::unordered_set<Network> m_reachable GUARDED_BY(m_mutex){DefaultNets()};
168 };
169 
171 
175 std::vector<CNetAddr> WrappedGetAddrInfo(const std::string& name, bool allow_lookup);
176 
177 enum Network ParseNetwork(const std::string& net);
178 std::string GetNetworkName(enum Network net);
180 std::vector<std::string> GetNetworkNames(bool append_unroutable = false);
181 bool SetProxy(enum Network net, const Proxy &addrProxy);
182 bool GetProxy(enum Network net, Proxy &proxyInfoOut);
183 bool IsProxy(const CNetAddr &addr);
200 bool SetNameProxy(const Proxy &addrProxy);
201 bool HaveNameProxy();
202 bool GetNameProxy(Proxy &nameProxyOut);
203 
204 using DNSLookupFn = std::function<std::vector<CNetAddr>(const std::string&, bool)>;
206 
220 std::vector<CNetAddr> LookupHost(const std::string& name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function = g_dns_lookup);
221 
231 std::optional<CNetAddr> LookupHost(const std::string& name, bool fAllowLookup, DNSLookupFn dns_lookup_function = g_dns_lookup);
232 
251 std::vector<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function = g_dns_lookup);
252 
259 std::optional<CService> Lookup(const std::string& name, uint16_t portDefault, bool fAllowLookup, DNSLookupFn dns_lookup_function = g_dns_lookup);
260 
270 CService LookupNumeric(const std::string& name, uint16_t portDefault = 0, DNSLookupFn dns_lookup_function = g_dns_lookup);
271 
281 CSubNet LookupSubNet(const std::string& subnet_str);
282 
290 std::unique_ptr<Sock> CreateSockOS(int domain, int type, int protocol);
291 
295 extern std::function<std::unique_ptr<Sock>(int, int, int)> CreateSock;
296 
305 std::unique_ptr<Sock> ConnectDirectly(const CService& dest, bool manual_connection);
306 
318 std::unique_ptr<Sock> ConnectThroughProxy(const Proxy& proxy,
319  const std::string& dest,
320  uint16_t port,
321  bool& proxy_connection_failed);
322 
327 
346 bool Socks5(const std::string& strDest, uint16_t port, const ProxyCredentials* auth, const Sock& socket);
347 
355 bool IsBadPort(uint16_t port);
356 
364 CService MaybeFlipIPv6toCJDNS(const CService& service);
365 
367 CService GetBindAddress(const Sock& sock);
368 
369 #endif // BITCOIN_NETBASE_H
CService GetBindAddress(const Sock &sock)
Get the bind address for a socket as CService.
Definition: netbase.cpp:951
Proxy()
Definition: netbase.h:61
const std::string ADDR_PREFIX_UNIX
Prefix for unix domain socket addresses (which are local filesystem paths)
Definition: netbase.h:31
std::unique_ptr< Sock > Connect() const
Definition: netbase.cpp:668
void Remove(Network net) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:111
A set of addresses that represent the hash of a string or FQDN.
Definition: netaddress.h:54
CThreadInterrupt g_socks5_interrupt
Interrupt SOCKS5 reads or writes.
Definition: netbase.cpp:41
bool HaveNameProxy()
Definition: netbase.cpp:734
IPv4.
Definition: netaddress.h:38
void Add(Network net) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:104
std::unique_ptr< Sock > ConnectDirectly(const CService &dest, bool manual_connection)
Create a socket and try to connect to the specified service.
Definition: netbase.cpp:645
Definition: common.h:29
bool Contains(Network net) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:132
Proxy(const CService &_proxy, bool tor_stream_isolation=false)
Definition: netbase.h:62
std::unique_ptr< Sock > ConnectThroughProxy(const Proxy &proxy, const std::string &dest, uint16_t port, bool &proxy_connection_failed)
Connect to a specified destination service through a SOCKS5 proxy by first connecting to the SOCKS5 p...
Definition: netbase.cpp:785
int nConnectTimeout
Definition: netbase.cpp:36
bool GetNameProxy(Proxy &nameProxyOut)
Definition: netbase.cpp:726
bool m_tor_stream_isolation
Definition: netbase.h:69
List of reachable networks.
Definition: netbase.h:102
bool IsUnixSocketPath(const std::string &name)
Check if a string is a valid UNIX domain socket path.
Definition: netbase.cpp:226
I2P.
Definition: netaddress.h:47
std::string ToStringAddrPort() const
Definition: netaddress.cpp:903
CService MaybeFlipIPv6toCJDNS(const CService &service)
If an IPv6 address belongs to the address range used by the CJDNS network and the CJDNS network is re...
Definition: netbase.cpp:942
std::vector< std::string > GetNetworkNames(bool append_unroutable=false)
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
Definition: netbase.cpp:130
enum Network ParseNetwork(const std::string &net)
Definition: netbase.cpp:100
bool IsProxy(const CNetAddr &addr)
Definition: netbase.cpp:739
static ConnectionDirection & operator|=(ConnectionDirection &a, ConnectionDirection b)
Definition: netbase.h:39
bool IsValid() const
Definition: netaddress.cpp:424
std::vector< CNetAddr > WrappedGetAddrInfo(const std::string &name, bool allow_lookup)
Wrapper for getaddrinfo(3).
Definition: netbase.cpp:45
Proxy(std::string path, bool tor_stream_isolation=false)
Definition: netbase.h:63
std::string ToString() const
Definition: netbase.h:83
CService proxy
Definition: netbase.h:66
bool Socks5(const std::string &strDest, uint16_t port, const ProxyCredentials *auth, const Sock &socket)
Connect to a specified destination service through an already connected SOCKS5 proxy.
Definition: netbase.cpp:392
sa_family_t GetFamily() const
Definition: netbase.h:77
void Reset() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:125
std::string m_unix_socket_path
Definition: netbase.h:67
std::function< std::unique_ptr< Sock >int, int, int)> CreateSock
Socket factory.
Definition: netbase.cpp:577
static bool operator &(ConnectionDirection a, ConnectionDirection b)
Definition: netbase.h:44
#define LOCK(cs)
Definition: sync.h:258
const char * name
Definition: rest.cpp:48
ReachableNets g_reachable_nets
Definition: netbase.cpp:43
A combination of a network address (CNetAddr) and a (TCP) port.
Definition: netaddress.h:529
bool SetProxy(enum Network net, const Proxy &addrProxy)
Definition: netbase.cpp:700
Credentials for proxy authentication.
Definition: netbase.h:93
std::unordered_set< Network > All() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:145
Network
A network type.
Definition: netaddress.h:33
bool IsValid() const
Definition: netbase.h:71
bool fNameLookup
Definition: netbase.cpp:37
static const int DEFAULT_NAME_LOOKUP
-dns default
Definition: netbase.h:28
A helper class for interruptible sleeps.
bool SetNameProxy(const Proxy &addrProxy)
Set the name proxy to use for all connections to nodes specified by a hostname.
Definition: netbase.cpp:718
Definition: netbase.h:58
Network address.
Definition: netaddress.h:112
std::unique_ptr< Sock > CreateSockOS(int domain, int type, int protocol)
Create a real socket from the operating system.
Definition: netbase.cpp:522
#define EXCLUSIVE_LOCKS_REQUIRED(...)
Definition: threadsafety.h:51
std::function< std::vector< CNetAddr >(const std::string &, bool)> DNSLookupFn
Definition: netbase.h:204
bool GetProxy(enum Network net, Proxy &proxyInfoOut)
Definition: netbase.cpp:709
Mutex m_mutex
Definition: netbase.h:164
bool m_is_unix_socket
Definition: netbase.h:68
static std::unordered_set< Network > DefaultNets()
Definition: netbase.h:153
static const int DEFAULT_CONNECT_TIMEOUT
-timeout default
Definition: netbase.h:26
std::vector< CService > Lookup(const std::string &name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function=g_dns_lookup)
Resolve a service string to its corresponding service.
Definition: netbase.cpp:191
IPv6.
Definition: netaddress.h:41
std::string GetNetworkName(enum Network net)
Definition: netbase.cpp:114
void RemoveAll() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:118
TOR (v2 or v3)
Definition: netaddress.h:44
#define AssertLockNotHeld(cs)
Definition: sync.h:141
bool Contains(const CNetAddr &addr) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Definition: netbase.h:139
CSubNet LookupSubNet(const std::string &subnet_str)
Parse and resolve a specified subnet string into the appropriate internal representation.
Definition: netbase.cpp:812
std::string password
Definition: netbase.h:96
bool IsBadPort(uint16_t port)
Determine if a port is "bad" from the perspective of attempting to connect to a node on that port...
Definition: netbase.cpp:847
RAII helper class that manages a socket and closes it automatically when it goes out of scope...
Definition: sock.h:27
CService LookupNumeric(const std::string &name, uint16_t portDefault=0, DNSLookupFn dns_lookup_function=g_dns_lookup)
Resolve a service string with a numeric IP to its first corresponding service.
Definition: netbase.cpp:216
std::unordered_set< Network > m_reachable GUARDED_BY(m_mutex)
Definition: netbase.h:167
std::string username
Definition: netbase.h:95
sa_family_t GetSAFamily() const
Get the address family.
Definition: netaddress.cpp:822
ConnectionDirection
Definition: netbase.h:33
CJDNS.
Definition: netaddress.h:50
DNSLookupFn g_dns_lookup
Definition: netbase.cpp:98
std::vector< CNetAddr > LookupHost(const std::string &name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function=g_dns_lookup)
Resolve a host string to its corresponding network addresses.
Definition: netbase.cpp:173
Addresses from these networks are not publicly routable on the global Internet.
Definition: netaddress.h:35