Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-present 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 <bitcoin-build-config.h> // IWYU pragma: keep
7 : :
8 : : #include <net.h>
9 : :
10 : : #include <addrdb.h>
11 : : #include <addrman.h>
12 : : #include <banman.h>
13 : : #include <clientversion.h>
14 : : #include <common/args.h>
15 : : #include <common/netif.h>
16 : : #include <compat/compat.h>
17 : : #include <consensus/consensus.h>
18 : : #include <crypto/sha256.h>
19 : : #include <i2p.h>
20 : : #include <key.h>
21 : : #include <logging.h>
22 : : #include <memusage.h>
23 : : #include <net_permissions.h>
24 : : #include <netaddress.h>
25 : : #include <netbase.h>
26 : : #include <node/eviction.h>
27 : : #include <node/interface_ui.h>
28 : : #include <protocol.h>
29 : : #include <random.h>
30 : : #include <scheduler.h>
31 : : #include <util/fs.h>
32 : : #include <util/overflow.h>
33 : : #include <util/sock.h>
34 : : #include <util/strencodings.h>
35 : : #include <util/thread.h>
36 : : #include <util/threadinterrupt.h>
37 : : #include <util/trace.h>
38 : : #include <util/translation.h>
39 : : #include <util/vector.h>
40 : :
41 : : #include <algorithm>
42 : : #include <array>
43 : : #include <cmath>
44 : : #include <cstdint>
45 : : #include <cstring>
46 : : #include <functional>
47 : : #include <optional>
48 : : #include <string_view>
49 : : #include <unordered_map>
50 : :
51 : : TRACEPOINT_SEMAPHORE(net, closed_connection);
52 : : TRACEPOINT_SEMAPHORE(net, evicted_inbound_connection);
53 : : TRACEPOINT_SEMAPHORE(net, inbound_connection);
54 : : TRACEPOINT_SEMAPHORE(net, outbound_connection);
55 : : TRACEPOINT_SEMAPHORE(net, outbound_message);
56 : :
57 : : /** Maximum number of block-relay-only anchor connections */
58 : : static constexpr size_t MAX_BLOCK_RELAY_ONLY_ANCHORS = 2;
59 : : static_assert (MAX_BLOCK_RELAY_ONLY_ANCHORS <= static_cast<size_t>(MAX_BLOCK_RELAY_ONLY_CONNECTIONS), "MAX_BLOCK_RELAY_ONLY_ANCHORS must not exceed MAX_BLOCK_RELAY_ONLY_CONNECTIONS.");
60 : : /** Anchor IP address database file name */
61 : : const char* const ANCHORS_DATABASE_FILENAME = "anchors.dat";
62 : :
63 : : // How often to dump addresses to peers.dat
64 : : static constexpr std::chrono::minutes DUMP_PEERS_INTERVAL{15};
65 : :
66 : : /** Number of DNS seeds to query when the number of connections is low. */
67 : : static constexpr int DNSSEEDS_TO_QUERY_AT_ONCE = 3;
68 : :
69 : : /** Minimum number of outbound connections under which we will keep fetching our address seeds. */
70 : : static constexpr int SEED_OUTBOUND_CONNECTION_THRESHOLD = 2;
71 : :
72 : : /** How long to delay before querying DNS seeds
73 : : *
74 : : * If we have more than THRESHOLD entries in addrman, then it's likely
75 : : * that we got those addresses from having previously connected to the P2P
76 : : * network, and that we'll be able to successfully reconnect to the P2P
77 : : * network via contacting one of them. So if that's the case, spend a
78 : : * little longer trying to connect to known peers before querying the
79 : : * DNS seeds.
80 : : */
81 : : static constexpr std::chrono::seconds DNSSEEDS_DELAY_FEW_PEERS{11};
82 : : static constexpr std::chrono::minutes DNSSEEDS_DELAY_MANY_PEERS{5};
83 : : static constexpr int DNSSEEDS_DELAY_PEER_THRESHOLD = 1000; // "many" vs "few" peers
84 : :
85 : : /** The default timeframe for -maxuploadtarget. 1 day. */
86 : : static constexpr std::chrono::seconds MAX_UPLOAD_TIMEFRAME{60 * 60 * 24};
87 : :
88 : : // A random time period (0 to 1 seconds) is added to feeler connections to prevent synchronization.
89 : : static constexpr auto FEELER_SLEEP_WINDOW{1s};
90 : :
91 : : /** Frequency to attempt extra connections to reachable networks we're not connected to yet **/
92 : : static constexpr auto EXTRA_NETWORK_PEER_INTERVAL{5min};
93 : :
94 : : /** Used to pass flags to the Bind() function */
95 : : enum BindFlags {
96 : : BF_NONE = 0,
97 : : BF_REPORT_ERROR = (1U << 0),
98 : : /**
99 : : * Do not call AddLocal() for our special addresses, e.g., for incoming
100 : : * Tor connections, to prevent gossiping them over the network.
101 : : */
102 : : BF_DONT_ADVERTISE = (1U << 1),
103 : : };
104 : :
105 : : // The set of sockets cannot be modified while waiting
106 : : // The sleep time needs to be small to avoid new sockets stalling
107 : : static const uint64_t SELECT_TIMEOUT_MILLISECONDS = 50;
108 : :
109 : : const std::string NET_MESSAGE_TYPE_OTHER = "*other*";
110 : :
111 : : static const uint64_t RANDOMIZER_ID_NETGROUP = 0x6c0edd8036ef4036ULL; // SHA256("netgroup")[0:8]
112 : : static const uint64_t RANDOMIZER_ID_LOCALHOSTNONCE = 0xd93e69e2bbfa5735ULL; // SHA256("localhostnonce")[0:8]
113 : : static const uint64_t RANDOMIZER_ID_NETWORKKEY = 0x0e8a2b136c592a7dULL; // SHA256("networkkey")[0:8]
114 : : //
115 : : // Global state variables
116 : : //
117 : : bool fDiscover = true;
118 : : bool fListen = true;
119 : : GlobalMutex g_maplocalhost_mutex;
120 : : std::map<CNetAddr, LocalServiceInfo> mapLocalHost GUARDED_BY(g_maplocalhost_mutex);
121 : : std::string strSubVersion;
122 : :
123 : 570462 : size_t CSerializedNetMsg::GetMemoryUsage() const noexcept
124 : : {
125 [ - + ]: 570462 : return sizeof(*this) + memusage::DynamicUsage(m_type) + memusage::DynamicUsage(data);
126 : : }
127 : :
128 : 286609 : size_t CNetMessage::GetMemoryUsage() const noexcept
129 : : {
130 : 286609 : return sizeof(*this) + memusage::DynamicUsage(m_type) + m_recv.GetMemoryUsage();
131 : : }
132 : :
133 : 11 : void CConnman::AddAddrFetch(const std::string& strDest)
134 : : {
135 : 11 : LOCK(m_addr_fetches_mutex);
136 [ + - ]: 11 : m_addr_fetches.push_back(strDest);
137 : 11 : }
138 : :
139 : 1842 : uint16_t GetListenPort()
140 : : {
141 : : // If -bind= is provided with ":port" part, use that (first one if multiple are provided).
142 [ + - + + ]: 3701 : for (const std::string& bind_arg : gArgs.GetArgs("-bind")) {
143 : 1870 : constexpr uint16_t dummy_port = 0;
144 : :
145 [ + - + - ]: 1870 : const std::optional<CService> bind_addr{Lookup(bind_arg, dummy_port, /*fAllowLookup=*/false)};
146 [ + + + - : 1870 : if (bind_addr.has_value() && bind_addr->GetPort() != dummy_port) return bind_addr->GetPort();
+ + + - ]
147 : 3701 : }
148 : :
149 : : // Otherwise, if -whitebind= without NetPermissionFlags::NoBan is provided, use that
150 : : // (-whitebind= is required to have ":port").
151 [ + - + + ]: 1831 : for (const std::string& whitebind_arg : gArgs.GetArgs("-whitebind")) {
152 [ + - ]: 3 : NetWhitebindPermissions whitebind;
153 [ + - ]: 3 : bilingual_str error;
154 [ + - + - ]: 3 : if (NetWhitebindPermissions::TryParse(whitebind_arg, whitebind, error)) {
155 [ + - ]: 3 : if (!NetPermissions::HasFlag(whitebind.m_flags, NetPermissionFlags::NoBan)) {
156 [ + - ]: 3 : return whitebind.m_service.GetPort();
157 : : }
158 : : }
159 : 3 : }
160 : :
161 : : // Otherwise, if -port= is provided, use that. Otherwise use the default port.
162 : 3656 : return static_cast<uint16_t>(gArgs.GetIntArg("-port", Params().GetDefaultPort()));
163 : : }
164 : :
165 : : // Determine the "best" local address for a particular peer.
166 : 1812 : [[nodiscard]] static std::optional<CService> GetLocal(const CNode& peer)
167 : : {
168 [ - + ]: 1812 : if (!fListen) return std::nullopt;
169 : :
170 : 1812 : std::optional<CService> addr;
171 : 1812 : int nBestScore = -1;
172 : 1812 : int nBestReachability = -1;
173 : 1812 : {
174 [ + - ]: 1812 : LOCK(g_maplocalhost_mutex);
175 [ + - + + ]: 1907 : for (const auto& [local_addr, local_service_info] : mapLocalHost) {
176 : : // For privacy reasons, don't advertise our privacy-network address
177 : : // to other networks and don't advertise our other-network address
178 : : // to privacy networks.
179 [ + - + - ]: 95 : if (local_addr.GetNetwork() != peer.ConnectedThroughNetwork()
180 [ + + + - : 152 : && (local_addr.IsPrivacyNet() || peer.IsConnectedThroughPrivacyNet())) {
+ + ]
181 : 36 : continue;
182 : : }
183 : 59 : const int nScore{local_service_info.nScore};
184 [ + - ]: 59 : const int nReachability{local_addr.GetReachabilityFrom(peer.addr)};
185 [ + + - + ]: 59 : if (nReachability > nBestReachability || (nReachability == nBestReachability && nScore > nBestScore)) {
186 [ + - ]: 42 : addr.emplace(CService{local_addr, local_service_info.nPort});
187 : 42 : nBestReachability = nReachability;
188 : 42 : nBestScore = nScore;
189 : : }
190 : : }
191 : 0 : }
192 [ + + ]: 1851 : return addr;
193 : 1812 : }
194 : :
195 : : //! Convert the serialized seeds into usable address objects.
196 : 3 : static std::vector<CAddress> ConvertSeeds(const std::vector<uint8_t> &vSeedsIn)
197 : : {
198 : : // It'll only connect to one or two seed nodes because once it connects,
199 : : // it'll get a pile of addresses with newer timestamps.
200 : : // Seed nodes are given a random 'last seen time' of between one and two
201 : : // weeks ago.
202 : 3 : const auto one_week{7 * 24h};
203 : 3 : std::vector<CAddress> vSeedsOut;
204 : 3 : FastRandomContext rng;
205 [ - + ]: 3 : ParamsStream s{SpanReader{vSeedsIn}, CAddress::V2_NETWORK};
206 [ - + ]: 3 : while (!s.empty()) {
207 [ # # ]: 0 : CService endpoint;
208 [ # # ]: 0 : s >> endpoint;
209 : 0 : CAddress addr{endpoint, SeedsAssumedServiceFlags()};
210 : 0 : addr.nTime = rng.rand_uniform_delay(Now<NodeSeconds>() - one_week, -one_week);
211 [ # # # # : 0 : LogDebug(BCLog::NET, "Added hardcoded seed: %s\n", addr.ToStringAddrPort());
# # # # ]
212 [ # # ]: 0 : vSeedsOut.push_back(addr);
213 : 0 : }
214 : 3 : return vSeedsOut;
215 : 3 : }
216 : :
217 : : // Determine the "best" local address for a particular peer.
218 : : // If none, return the unroutable 0.0.0.0 but filled in with
219 : : // the normal parameters, since the IP may be changed to a useful
220 : : // one by discovery.
221 : 1812 : CService GetLocalAddress(const CNode& peer)
222 : : {
223 [ + - + - : 1812 : return GetLocal(peer).value_or(CService{CNetAddr(), GetListenPort()});
+ - ]
224 : : }
225 : :
226 : 0 : static int GetnScore(const CService& addr)
227 : : {
228 : 0 : LOCK(g_maplocalhost_mutex);
229 [ # # ]: 0 : const auto it = mapLocalHost.find(addr);
230 [ # # ]: 0 : return (it != mapLocalHost.end()) ? it->second.nScore : 0;
231 : 0 : }
232 : :
233 : : // Is our peer's addrLocal potentially useful as an external IP source?
234 : 1791 : [[nodiscard]] static bool IsPeerAddrLocalGood(CNode *pnode)
235 : : {
236 : 1791 : CService addrLocal = pnode->GetAddrLocal();
237 [ + + + - : 1795 : return fDiscover && pnode->addr.IsRoutable() && addrLocal.IsRoutable() &&
+ - + - +
- - + ]
238 [ + - ]: 1795 : g_reachable_nets.Contains(addrLocal);
239 : 1791 : }
240 : :
241 : 1791 : std::optional<CService> GetLocalAddrForPeer(CNode& node)
242 : : {
243 : 1791 : CService addrLocal{GetLocalAddress(node)};
244 : : // If discovery is enabled, sometimes give our peer the address it
245 : : // tells us that it sees us as in case it has a better idea of our
246 : : // address than we do.
247 : 1791 : FastRandomContext rng;
248 [ + - + + : 1791 : if (IsPeerAddrLocalGood(&node) && (!addrLocal.IsRoutable() ||
+ - - + -
- ]
249 [ # # # # ]: 0 : rng.randbits((GetnScore(addrLocal) > LOCAL_MANUAL) ? 3 : 1) == 0))
250 : : {
251 [ + + ]: 4 : if (node.IsInboundConn()) {
252 : : // For inbound connections, assume both the address and the port
253 : : // as seen from the peer.
254 [ + - ]: 2 : addrLocal = CService{node.GetAddrLocal()};
255 : : } else {
256 : : // For outbound connections, assume just the address as seen from
257 : : // the peer and leave the port in `addrLocal` as returned by
258 : : // `GetLocalAddress()` above. The peer has no way to observe our
259 : : // listening port when we have initiated the connection.
260 [ + - + - ]: 6 : addrLocal.SetIP(node.GetAddrLocal());
261 : : }
262 : : }
263 [ + - + + ]: 1791 : if (addrLocal.IsRoutable()) {
264 [ + - + - : 28 : LogDebug(BCLog::NET, "Advertising address %s to peer=%d\n", addrLocal.ToStringAddrPort(), node.GetId());
+ - + - ]
265 : 28 : return addrLocal;
266 : : }
267 : : // Address is unroutable. Don't advertise.
268 : 1763 : return std::nullopt;
269 : 1791 : }
270 : :
271 : 748 : void ClearLocal()
272 : : {
273 : 748 : LOCK(g_maplocalhost_mutex);
274 [ + - ]: 748 : return mapLocalHost.clear();
275 : 748 : }
276 : :
277 : : // learn a new local address
278 : 39 : bool AddLocal(const CService& addr_, int nScore, bool add_even_if_unreachable)
279 : : {
280 : 39 : CService addr{MaybeFlipIPv6toCJDNS(addr_)};
281 : :
282 [ + - + + ]: 39 : if (!addr.IsRoutable())
283 : : return false;
284 : :
285 [ + + + + ]: 31 : if (!fDiscover && nScore < LOCAL_MANUAL)
286 : : return false;
287 : :
288 [ + - + + : 30 : if (!g_reachable_nets.Contains(addr) && !add_even_if_unreachable)
+ + ]
289 : : return false;
290 : :
291 [ - + ]: 29 : if (fLogIPs) {
292 [ # # # # ]: 0 : LogInfo("AddLocal(%s,%i)\n", addr.ToStringAddrPort(), nScore);
293 : : }
294 : :
295 : 29 : {
296 [ + - ]: 29 : LOCK(g_maplocalhost_mutex);
297 [ + - + + ]: 29 : const auto [it, is_newly_added] = mapLocalHost.emplace(addr, LocalServiceInfo());
298 [ + + ]: 29 : LocalServiceInfo &info = it->second;
299 [ + + + - ]: 29 : if (is_newly_added || nScore >= info.nScore) {
300 [ + + ]: 29 : info.nScore = SaturatingAdd(nScore, is_newly_added ? 0 : 1);
301 [ + - ]: 29 : info.nPort = addr.GetPort();
302 : : }
303 : 0 : }
304 : :
305 : 29 : return true;
306 : 39 : }
307 : :
308 : 7 : bool AddLocal(const CNetAddr& addr, int nScore, bool add_even_if_unreachable)
309 : : {
310 [ + - ]: 7 : return AddLocal(CService(addr, GetListenPort()), nScore, add_even_if_unreachable);
311 : : }
312 : :
313 : 14 : void RemoveLocal(const CService& addr)
314 : : {
315 : 14 : LOCK(g_maplocalhost_mutex);
316 [ - + ]: 14 : if (fLogIPs) {
317 [ # # # # ]: 0 : LogInfo("RemoveLocal(%s)\n", addr.ToStringAddrPort());
318 : : }
319 : :
320 [ + - + - ]: 14 : mapLocalHost.erase(addr);
321 : 14 : }
322 : :
323 : : /** vote for a local address */
324 : 2 : bool SeenLocal(const CService& addr)
325 : : {
326 : 2 : LOCK(g_maplocalhost_mutex);
327 [ + - ]: 2 : const auto it = mapLocalHost.find(addr);
328 [ + - ]: 2 : if (it == mapLocalHost.end()) return false;
329 : 2 : it->second.nScore = SaturatingAdd(it->second.nScore, 1);
330 : 2 : return true;
331 : 2 : }
332 : :
333 : :
334 : : /** check whether a given address is potentially local */
335 : 169 : bool IsLocal(const CService& addr)
336 : : {
337 : 169 : LOCK(g_maplocalhost_mutex);
338 [ + - + - ]: 169 : return mapLocalHost.contains(addr);
339 : 169 : }
340 : :
341 : 673 : bool CConnman::AlreadyConnectedToHost(std::string_view host) const
342 : : {
343 : 673 : LOCK(m_nodes_mutex);
344 [ + - - + ]: 1466 : return std::ranges::any_of(m_nodes, [&host](CNode* node) { return node->m_addr_name == host; });
345 : 673 : }
346 : :
347 : 717 : bool CConnman::AlreadyConnectedToAddressPort(const CService& addr_port) const
348 : : {
349 : 717 : LOCK(m_nodes_mutex);
350 [ + - + - ]: 1795 : return std::ranges::any_of(m_nodes, [&addr_port](CNode* node) { return node->addr == addr_port; });
351 : 717 : }
352 : :
353 : 62 : bool CConnman::AlreadyConnectedToAddress(const CNetAddr& addr) const
354 : : {
355 : 62 : LOCK(m_nodes_mutex);
356 [ + - + - ]: 412 : return std::ranges::any_of(m_nodes, [&addr](CNode* node) { return node->addr == addr; });
357 : 62 : }
358 : :
359 : 1127 : bool CConnman::CheckIncomingNonce(uint64_t nonce)
360 : : {
361 : 1127 : LOCK(m_nodes_mutex);
362 [ + + ]: 6415 : for (const CNode* pnode : m_nodes) {
363 : : // Omit private broadcast connections from this check to prevent this privacy attack:
364 : : // - We connect to a peer in an attempt to privately broadcast a transaction. From our
365 : : // VERSION message the peer deducts that this is a short-lived connection for
366 : : // broadcasting a transaction, takes our nonce and delays their VERACK.
367 : : // - The peer starts connecting to (clearnet) nodes and sends them a VERSION message
368 : : // which contains our nonce. If the peer manages to connect to us we would disconnect.
369 : : // - Upon a disconnect, the peer knows our clearnet address. They go back to the short
370 : : // lived privacy broadcast connection and continue with VERACK.
371 [ + + + + : 5290 : if (!pnode->fSuccessfullyConnected && !pnode->IsInboundConn() && !pnode->IsPrivateBroadcastConn() &&
+ - ]
372 [ - + ]: 2 : pnode->GetLocalNonce() == nonce)
373 : : return false;
374 : : }
375 : : return true;
376 : 1127 : }
377 : :
378 : 734 : CNode* CConnman::ConnectNode(CAddress addrConnect,
379 : : const char* pszDest,
380 : : bool fCountFailure,
381 : : ConnectionType conn_type,
382 : : bool use_v2transport,
383 : : const std::optional<Proxy>& proxy_override)
384 : : {
385 : 734 : AssertLockNotHeld(m_nodes_mutex);
386 : 734 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
387 [ - + ]: 734 : assert(conn_type != ConnectionType::INBOUND);
388 : :
389 [ + + ]: 734 : if (pszDest == nullptr) {
390 [ + - ]: 51 : if (IsLocal(addrConnect))
391 : : return nullptr;
392 : :
393 : : // Look for an existing connection
394 [ - + ]: 51 : if (AlreadyConnectedToAddressPort(addrConnect)) {
395 [ # # ]: 0 : LogInfo("Failed to open new connection to %s, already connected", addrConnect.ToStringAddrPort());
396 : 0 : return nullptr;
397 : : }
398 : : }
399 : :
400 [ + - + + : 1360 : LogDebug(BCLog::NET, "trying %s connection (%s) to %s, lastseen=%.1fhrs\n",
+ + + - +
+ + - ]
401 : : use_v2transport ? "v2" : "v1",
402 : : ConnectionTypeAsString(conn_type),
403 : : pszDest ? pszDest : addrConnect.ToStringAddrPort(),
404 : : Ticks<HoursDouble>(pszDest ? 0h : Now<NodeSeconds>() - addrConnect.nTime));
405 : :
406 : : // Resolve
407 [ + + + - ]: 1417 : const uint16_t default_port{pszDest != nullptr ? GetDefaultPort(pszDest) :
408 : 51 : m_params.GetDefaultPort()};
409 : :
410 : : // Collection of addresses to try to connect to: either all dns resolved addresses if a domain name (pszDest) is provided, or addrConnect otherwise.
411 : 734 : std::vector<CAddress> connect_to{};
412 [ + + ]: 734 : if (pszDest) {
413 [ + - + - : 1444 : std::vector<CService> resolved{Lookup(pszDest, default_port, fNameLookup && !HaveNameProxy(), 256)};
+ - + + +
- + - ]
414 [ + + ]: 683 : if (!resolved.empty()) {
415 : 668 : std::shuffle(resolved.begin(), resolved.end(), FastRandomContext());
416 : : // If the connection is made by name, it can be the case that the name resolves to more than one address.
417 : : // We don't want to connect any more of them if we are already connected to one
418 [ + + ]: 1324 : for (const auto& r : resolved) {
419 [ + - ]: 1336 : addrConnect = CAddress{MaybeFlipIPv6toCJDNS(r), NODE_NONE};
420 [ + - + + ]: 668 : if (!addrConnect.IsValid()) {
421 [ + - + - : 2 : LogDebug(BCLog::NET, "Resolver returned invalid address %s for %s\n", addrConnect.ToStringAddrPort(), pszDest);
+ - + - ]
422 : 2 : return nullptr;
423 : : }
424 : : // It is possible that we already have a connection to the IP/port pszDest resolved to.
425 : : // In that case, drop the connection that was just created.
426 [ + - + + ]: 666 : if (AlreadyConnectedToAddressPort(addrConnect)) {
427 [ + - + - ]: 10 : LogInfo("Not opening a connection to %s, already connected to %s\n", pszDest, addrConnect.ToStringAddrPort());
428 : 10 : return nullptr;
429 : : }
430 : : // Add the address to the resolved addresses vector so we can try to connect to it later on
431 [ + - ]: 656 : connect_to.push_back(addrConnect);
432 : : }
433 : : } else {
434 : : // For resolution via proxy
435 [ + - ]: 15 : connect_to.push_back(addrConnect);
436 : : }
437 : 683 : } else {
438 : : // Connect via addrConnect directly
439 [ + - ]: 51 : connect_to.push_back(addrConnect);
440 : : }
441 : :
442 : : // Connect
443 : 722 : std::unique_ptr<Sock> sock;
444 [ + - ]: 722 : CService addr_bind;
445 [ + - - + ]: 722 : assert(!addr_bind.IsValid());
446 : 722 : std::unique_ptr<i2p::sam::Session> i2p_transient_session;
447 : :
448 [ + + ]: 753 : for (auto& target_addr : connect_to) {
449 [ + - + + ]: 722 : if (target_addr.IsValid()) {
450 [ + + ]: 707 : const std::optional<Proxy> use_proxy{
451 [ + + ]: 707 : proxy_override.has_value() ? proxy_override : GetProxy(target_addr.GetNetwork()),
452 [ + - + - ]: 692 : };
453 : 707 : bool proxyConnectionFailed = false;
454 : :
455 [ + + - + ]: 707 : if (target_addr.IsI2P() && use_proxy) {
456 [ + - ]: 15 : i2p::Connection conn;
457 : 15 : bool connected{false};
458 : :
459 : : // If an I2P SAM session already exists, normally we would re-use it. But in the case of
460 : : // private broadcast we force a new transient session. A Connect() using m_i2p_sam_session
461 : : // would use our permanent I2P address as a source address.
462 [ + + + + ]: 15 : if (m_i2p_sam_session && conn_type != ConnectionType::PRIVATE_BROADCAST) {
463 [ + - ]: 5 : connected = m_i2p_sam_session->Connect(target_addr, conn, proxyConnectionFailed);
464 : : } else {
465 : 10 : {
466 [ + - ]: 10 : LOCK(m_unused_i2p_sessions_mutex);
467 [ + + ]: 10 : if (m_unused_i2p_sessions.empty()) {
468 : 2 : i2p_transient_session =
469 [ + - ]: 4 : std::make_unique<i2p::sam::Session>(*use_proxy, m_interrupt_net);
470 : : } else {
471 : 8 : i2p_transient_session.swap(m_unused_i2p_sessions.front());
472 : 8 : m_unused_i2p_sessions.pop();
473 : : }
474 : 0 : }
475 [ + - ]: 10 : connected = i2p_transient_session->Connect(target_addr, conn, proxyConnectionFailed);
476 [ + - ]: 10 : if (!connected) {
477 [ + - ]: 10 : LOCK(m_unused_i2p_sessions_mutex);
478 [ - + + - ]: 10 : if (m_unused_i2p_sessions.size() < MAX_UNUSED_I2P_SESSIONS_SIZE) {
479 [ + - + - ]: 10 : m_unused_i2p_sessions.emplace(i2p_transient_session.release());
480 : : }
481 : 10 : }
482 : : }
483 : :
484 [ - + ]: 15 : if (connected) {
485 : 0 : sock = std::move(conn.sock);
486 : 0 : addr_bind = conn.me;
487 : : }
488 [ + + ]: 707 : } else if (use_proxy) {
489 [ + - + - : 84 : LogDebug(BCLog::PROXY, "Using proxy: %s to connect to %s\n", use_proxy->ToString(), target_addr.ToStringAddrPort());
+ - + - +
- ]
490 [ + - + - : 168 : sock = ConnectThroughProxy(*use_proxy, target_addr.ToStringAddr(), target_addr.GetPort(), proxyConnectionFailed);
+ - ]
491 : : } else {
492 : : // No proxy needed (none set for target network). Private broadcast connections
493 : : // must always use a proxy, otherwise they would leak the originator's IP address.
494 [ + - ]: 608 : if (Assume(conn_type != ConnectionType::PRIVATE_BROADCAST)) {
495 [ + - ]: 1216 : sock = ConnectDirectly(target_addr, conn_type == ConnectionType::MANUAL);
496 : : }
497 : : }
498 [ + + ]: 707 : if (!proxyConnectionFailed) {
499 : : // If a connection to the node was attempted, and failure (if any) is not caused by a problem connecting to
500 : : // the proxy, mark this as an attempt.
501 [ + - ]: 687 : addrman.get().Attempt(target_addr, fCountFailure);
502 : : }
503 [ + - ]: 722 : } else if (pszDest) {
504 [ + - + + ]: 15 : if (const auto name_proxy = GetNameProxy()) {
505 [ + - ]: 14 : std::string host;
506 : 14 : uint16_t port{default_port};
507 [ + - ]: 14 : SplitHostPort(pszDest, port, host);
508 : 14 : bool proxyConnectionFailed;
509 [ + - ]: 28 : sock = ConnectThroughProxy(*name_proxy, host, port, proxyConnectionFailed);
510 : 29 : }
511 : : }
512 : : // Check any other resolved address (if any) if we fail to connect
513 [ + + ]: 722 : if (!sock) {
514 : 31 : continue;
515 : : }
516 : :
517 : 691 : NetPermissionFlags permission_flags = NetPermissionFlags::None;
518 [ + + + - ]: 691 : std::vector<NetWhitelistPermissions> whitelist_permissions = conn_type == ConnectionType::MANUAL ? vWhitelistedRangeOutgoing : std::vector<NetWhitelistPermissions>{};
519 [ + - ]: 691 : AddWhitelistPermissionFlags(permission_flags, target_addr, whitelist_permissions);
520 : :
521 : : // Add node
522 [ + - ]: 691 : NodeId id = GetNewNodeId();
523 [ + - + - : 691 : uint64_t nonce = GetDeterministicRandomizer(RANDOMIZER_ID_LOCALHOSTNONCE).Write(id).Finalize();
+ - ]
524 [ + - + - ]: 691 : if (!addr_bind.IsValid()) {
525 [ + - ]: 1382 : addr_bind = GetBindAddress(*sock);
526 : : }
527 [ + - ]: 691 : uint64_t network_id = GetDeterministicRandomizer(RANDOMIZER_ID_NETWORKKEY)
528 [ + - + - ]: 691 : .Write(target_addr.GetNetClass())
529 [ + - + - ]: 1382 : .Write(addr_bind.GetAddrBytes())
530 : : // For outbound connections, the port of the bound address is randomly
531 : : // assigned by the OS and would therefore not be useful for seeding.
532 [ + - ]: 691 : .Write(0)
533 [ + - ]: 691 : .Finalize();
534 : 691 : CNode* pnode = new CNode(id,
535 : 691 : std::move(sock),
536 : : target_addr,
537 : : CalculateKeyedNetGroup(target_addr),
538 : : nonce,
539 : : addr_bind,
540 [ + - ]: 691 : pszDest ? pszDest : "",
541 : : conn_type,
542 : : /*inbound_onion=*/false,
543 : : network_id,
544 [ + - + + ]: 1382 : CNodeOptions{
545 : : .permission_flags = permission_flags,
546 : : .proxy_override = proxy_override,
547 : : .i2p_sam_session = std::move(i2p_transient_session),
548 [ + + ]: 691 : .recv_flood_size = nReceiveFloodSize,
549 : : .use_v2transport = use_v2transport,
550 [ + - + - : 1382 : });
+ - + - +
- ]
551 : 691 : pnode->AddRef();
552 : :
553 : : // We're making a new connection, harvest entropy from the time (and our peer count)
554 : 691 : RandAddEvent((uint32_t)id);
555 : :
556 : 691 : return pnode;
557 : 691 : }
558 : :
559 : : return nullptr;
560 : 734 : }
561 : :
562 : 2521 : void CNode::CloseSocketDisconnect()
563 : : {
564 : 2521 : fDisconnect = true;
565 : 2521 : LOCK(m_sock_mutex);
566 [ + + ]: 2521 : if (m_sock) {
567 [ + - + - : 1837 : LogDebug(BCLog::NET, "Resetting socket for %s", LogPeer());
+ - + - ]
568 : 1837 : m_sock.reset();
569 : :
570 : : TRACEPOINT(net, closed_connection,
571 : : GetId(),
572 : : m_addr_name.c_str(),
573 : : ConnectionTypeAsString().c_str(),
574 : : ConnectedThroughNetwork(),
575 : 1837 : TicksSinceEpoch<std::chrono::seconds>(m_connected));
576 : : }
577 [ - + + - ]: 2521 : m_i2p_sam_session.reset();
578 : 2521 : }
579 : :
580 : 1841 : void CConnman::AddWhitelistPermissionFlags(NetPermissionFlags& flags, std::optional<CNetAddr> addr, const std::vector<NetWhitelistPermissions>& ranges) const {
581 [ + + ]: 2161 : for (const auto& subnet : ranges) {
582 [ + - + - ]: 320 : if (addr.has_value() && subnet.m_subnet.Match(addr.value())) {
583 : 320 : NetPermissions::AddFlag(flags, subnet.m_flags);
584 : : }
585 : : }
586 [ + + ]: 1841 : if (NetPermissions::HasFlag(flags, NetPermissionFlags::Implicit)) {
587 [ + + ]: 5 : NetPermissions::ClearFlag(flags, NetPermissionFlags::Implicit);
588 [ + + ]: 5 : if (whitelist_forcerelay) NetPermissions::AddFlag(flags, NetPermissionFlags::ForceRelay);
589 [ + + ]: 5 : if (whitelist_relay) NetPermissions::AddFlag(flags, NetPermissionFlags::Relay);
590 : 5 : NetPermissions::AddFlag(flags, NetPermissionFlags::Mempool);
591 : 5 : NetPermissions::AddFlag(flags, NetPermissionFlags::NoBan);
592 : : }
593 : 1841 : }
594 : :
595 : 15563 : CService CNode::GetAddrLocal() const
596 : : {
597 : 15563 : AssertLockNotHeld(m_addr_local_mutex);
598 : 15563 : LOCK(m_addr_local_mutex);
599 [ + - ]: 15563 : return m_addr_local;
600 : 15563 : }
601 : :
602 : 1756 : void CNode::SetAddrLocal(const CService& addrLocalIn) {
603 : 1756 : AssertLockNotHeld(m_addr_local_mutex);
604 : 1756 : LOCK(m_addr_local_mutex);
605 [ + - + - ]: 1756 : if (Assume(!m_addr_local.IsValid())) { // Addr local can only be set once during version msg processing
606 : 1756 : m_addr_local = addrLocalIn;
607 : : }
608 : 1756 : }
609 : :
610 : 13894 : Network CNode::ConnectedThroughNetwork() const
611 : : {
612 [ + + ]: 13894 : return m_inbound_onion ? NET_ONION : addr.GetNetClass();
613 : : }
614 : :
615 : 57 : bool CNode::IsConnectedThroughPrivacyNet() const
616 : : {
617 [ + - + + ]: 57 : return m_inbound_onion || addr.IsPrivacyNet();
618 : : }
619 : :
620 : : #undef X
621 : : #define X(name) stats.name = name
622 : 13768 : void CNode::CopyStats(CNodeStats& stats)
623 : : {
624 : 13768 : stats.nodeid = this->GetId();
625 : 13768 : X(addr);
626 : 13768 : X(addrBind);
627 : 13768 : stats.m_network = ConnectedThroughNetwork();
628 : 13768 : X(m_last_send);
629 : 13768 : X(m_last_recv);
630 : 13768 : X(m_last_tx_time);
631 : 13768 : X(m_last_block_time);
632 : 13768 : X(m_connected);
633 : 13768 : X(m_addr_name);
634 : 13768 : X(nVersion);
635 : 13768 : {
636 : 13768 : LOCK(m_subver_mutex);
637 [ + - + - ]: 27536 : X(cleanSubVer);
638 : 0 : }
639 : 13768 : stats.fInbound = IsInboundConn();
640 : 13768 : X(m_bip152_highbandwidth_to);
641 : 13768 : X(m_bip152_highbandwidth_from);
642 : 13768 : {
643 : 13768 : LOCK(cs_vSend);
644 [ + - ]: 13768 : X(mapSendBytesPerMsgType);
645 [ + - ]: 13768 : X(nSendBytes);
646 : 0 : }
647 : 13768 : {
648 : 13768 : LOCK(cs_vRecv);
649 [ + - ]: 13768 : X(mapRecvBytesPerMsgType);
650 : 13768 : X(nRecvBytes);
651 : 13768 : Transport::Info info = m_transport->GetInfo();
652 : 13768 : stats.m_transport_type = info.transport_type;
653 [ + + + - ]: 13768 : if (info.session_id) stats.m_session_id = HexStr(*info.session_id);
654 : 0 : }
655 : 13768 : X(m_permission_flags);
656 : :
657 : 13768 : X(m_last_ping_time);
658 : 13768 : X(m_min_ping_time);
659 : :
660 : : // Leave string empty if addrLocal invalid (not filled in yet)
661 : 13768 : CService addrLocalUnlocked = GetAddrLocal();
662 [ + - + + : 13768 : stats.addrLocal = addrLocalUnlocked.IsValid() ? addrLocalUnlocked.ToStringAddrPort() : "";
+ - + - ]
663 : :
664 : 13768 : X(m_conn_type);
665 : 13768 : }
666 : : #undef X
667 : :
668 : 220210 : bool CNode::ReceiveMsgBytes(std::span<const uint8_t> msg_bytes, bool& complete)
669 : : {
670 : 220210 : complete = false;
671 : 220210 : const auto time{NodeClock::now()};
672 : 220210 : LOCK(cs_vRecv);
673 : 220210 : m_last_recv = time;
674 : 220210 : nRecvBytes += msg_bytes.size();
675 [ + + ]: 822253 : while (msg_bytes.size() > 0) {
676 : : // absorb network data
677 [ + - + + ]: 381843 : if (!m_transport->ReceivedBytes(msg_bytes)) {
678 : : // Serious transport problem, disconnect from the peer.
679 : : return false;
680 : : }
681 : :
682 [ + - + + ]: 381833 : if (m_transport->ReceivedMessageComplete()) {
683 : : // decompose a transport agnostic CNetMessage from the deserializer
684 : 143450 : bool reject_message{false};
685 [ + - ]: 143450 : CNetMessage msg = m_transport->GetReceivedMessage(time, reject_message);
686 [ + + ]: 143450 : if (reject_message) {
687 : : // Message deserialization failed. Drop the message but don't disconnect the peer.
688 : : // store the size of the corrupt message
689 [ + - ]: 82 : mapRecvBytesPerMsgType.at(NET_MESSAGE_TYPE_OTHER) += msg.m_raw_message_size;
690 : 82 : continue;
691 : : }
692 : :
693 : : // Store received bytes per message type.
694 : : // To prevent a memory DOS, only allow known message types.
695 : 143368 : auto i = mapRecvBytesPerMsgType.find(msg.m_type);
696 [ + + ]: 143368 : if (i == mapRecvBytesPerMsgType.end()) {
697 : 6 : i = mapRecvBytesPerMsgType.find(NET_MESSAGE_TYPE_OTHER);
698 : : }
699 [ - + ]: 143368 : assert(i != mapRecvBytesPerMsgType.end());
700 [ + - ]: 143368 : i->second += msg.m_raw_message_size;
701 : :
702 : : // push the message to the process queue,
703 [ + - ]: 143368 : vRecvMsg.push_back(std::move(msg));
704 : :
705 : 143368 : complete = true;
706 : 143450 : }
707 : : }
708 : :
709 : : return true;
710 : 220210 : }
711 : :
712 : 33841 : std::string CNode::LogPeer() const
713 : : {
714 : 33841 : auto peer_info{strprintf("peer=%d", GetId())};
715 [ + + ]: 33841 : if (fLogIPs) {
716 [ + - + - ]: 36 : return strprintf("%s, peeraddr=%s", peer_info, addr.ToStringAddrPort());
717 : : } else {
718 : 33823 : return peer_info;
719 : : }
720 : 33841 : }
721 : :
722 : 1728 : std::string CNode::DisconnectMsg() const
723 : : {
724 [ + - ]: 3456 : return strprintf("disconnecting %s", LogPeer());
725 : : }
726 : :
727 : 1953 : V1Transport::V1Transport(const NodeId node_id) noexcept
728 : 1953 : : m_magic_bytes{Params().MessageStart()}, m_node_id{node_id}
729 : : {
730 : 1953 : LOCK(m_recv_mutex);
731 [ + - ]: 1953 : Reset();
732 : 1953 : }
733 : :
734 : 13634 : Transport::Info V1Transport::GetInfo() const noexcept
735 : : {
736 : 13634 : return {.transport_type = TransportProtocolType::V1, .session_id = {}};
737 : : }
738 : :
739 : 135227 : int V1Transport::readHeader(std::span<const uint8_t> msg_bytes)
740 : : {
741 : 135227 : AssertLockHeld(m_recv_mutex);
742 : : // copy data to temporary parsing buffer
743 : 135227 : unsigned int nRemaining = CMessageHeader::HEADER_SIZE - nHdrPos;
744 [ + + ]: 135227 : unsigned int nCopy = std::min<unsigned int>(nRemaining, msg_bytes.size());
745 : :
746 [ + + ]: 135227 : memcpy(&hdrbuf[nHdrPos], msg_bytes.data(), nCopy);
747 : 135227 : nHdrPos += nCopy;
748 : :
749 : : // if header incomplete, exit
750 [ + + ]: 135227 : if (nHdrPos < CMessageHeader::HEADER_SIZE)
751 : 10 : return nCopy;
752 : :
753 : : // deserialize to CMessageHeader
754 : 135217 : try {
755 [ + - ]: 135217 : hdrbuf >> hdr;
756 : : }
757 [ - - ]: 0 : catch (const std::exception&) {
758 [ - - - - : 0 : LogDebug(BCLog::NET, "Header error: Unable to deserialize, peer=%d\n", m_node_id);
- - ]
759 : 0 : return -1;
760 : 0 : }
761 : :
762 : : // Check start string, network magic
763 [ + + ]: 135217 : if (hdr.pchMessageStart != m_magic_bytes) {
764 [ + - + - ]: 2 : LogDebug(BCLog::NET, "Header error: Wrong MessageStart %s received, peer=%d\n", HexStr(hdr.pchMessageStart), m_node_id);
765 : 2 : return -1;
766 : : }
767 : :
768 : : // reject messages larger than MAX_SIZE or MAX_PROTOCOL_MESSAGE_LENGTH
769 : : // NOTE: failing to perform this check previously allowed a malicious peer to make us allocate 32MiB of memory per
770 : : // connection. See https://bitcoincore.org/en/2024/07/03/disclose_receive_buffer_oom.
771 [ + + ]: 135215 : if (hdr.nMessageSize > MAX_SIZE || hdr.nMessageSize > MAX_PROTOCOL_MESSAGE_LENGTH) {
772 [ + - - + : 3 : LogDebug(BCLog::NET, "Header error: Size too large (%s, %u bytes), peer=%d\n", SanitizeString(hdr.GetMessageType()), hdr.nMessageSize, m_node_id);
+ - + - ]
773 : 3 : return -1;
774 : : }
775 : :
776 : : // switch state to reading message data
777 : 135212 : in_data = true;
778 : :
779 : 135212 : return nCopy;
780 : : }
781 : :
782 : 237752 : int V1Transport::readData(std::span<const uint8_t> msg_bytes)
783 : : {
784 : 237752 : AssertLockHeld(m_recv_mutex);
785 : 237752 : unsigned int nRemaining = hdr.nMessageSize - nDataPos;
786 [ + + ]: 237752 : unsigned int nCopy = std::min<unsigned int>(nRemaining, msg_bytes.size());
787 : :
788 [ - + + + ]: 237752 : if (vRecv.size() < nDataPos + nCopy) {
789 : : // Allocate up to 256 KiB ahead, but never more than the total message size.
790 [ + + ]: 276608 : vRecv.resize(std::min(hdr.nMessageSize, nDataPos + nCopy + 256 * 1024));
791 : : }
792 : :
793 : 237752 : hasher.Write(msg_bytes.first(nCopy));
794 : 237752 : memcpy(&vRecv[nDataPos], msg_bytes.data(), nCopy);
795 : 237752 : nDataPos += nCopy;
796 : :
797 : 237752 : return nCopy;
798 : : }
799 : :
800 : 135211 : const uint256& V1Transport::GetMessageHash() const
801 : : {
802 : 135211 : AssertLockHeld(m_recv_mutex);
803 [ + - - + ]: 135211 : assert(CompleteInternal());
804 [ + - ]: 270422 : if (data_hash.IsNull())
805 : 135211 : hasher.Finalize(data_hash);
806 : 135211 : return data_hash;
807 : : }
808 : :
809 : 135211 : CNetMessage V1Transport::GetReceivedMessage(NodeClock::time_point time, bool& reject_message)
810 : : {
811 : 135211 : AssertLockNotHeld(m_recv_mutex);
812 : : // Initialize out parameter
813 : 135211 : reject_message = false;
814 : : // decompose a single CNetMessage from the TransportDeserializer
815 : 135211 : LOCK(m_recv_mutex);
816 [ + - ]: 135211 : CNetMessage msg(std::move(vRecv));
817 : :
818 : : // store message type string, time, and sizes
819 [ + - ]: 135211 : msg.m_type = hdr.GetMessageType();
820 : 135211 : msg.m_time = time;
821 : 135211 : msg.m_message_size = hdr.nMessageSize;
822 : 135211 : msg.m_raw_message_size = hdr.nMessageSize + CMessageHeader::HEADER_SIZE;
823 : :
824 [ + - ]: 135211 : uint256 hash = GetMessageHash();
825 : :
826 : : // We just received a message off the wire, harvest entropy from the time (and the message checksum)
827 : 135211 : RandAddEvent(ReadLE32(hash.begin()));
828 : :
829 : : // Check checksum and header message type string
830 [ + + ]: 135211 : if (memcmp(hash.begin(), hdr.pchChecksum, CMessageHeader::CHECKSUM_SIZE) != 0) {
831 [ + - + - : 1 : LogDebug(BCLog::NET, "Header error: Wrong checksum (%s, %u bytes), expected %s was %s, peer=%d\n",
+ - + - -
+ + - +
- ]
832 : : SanitizeString(msg.m_type), msg.m_message_size,
833 : : HexStr(std::span{hash}.first(CMessageHeader::CHECKSUM_SIZE)),
834 : : HexStr(hdr.pchChecksum),
835 : : m_node_id);
836 : 1 : reject_message = true;
837 [ + - + + ]: 135210 : } else if (!hdr.IsMessageTypeValid()) {
838 [ + - + - : 162 : LogDebug(BCLog::NET, "Header error: Invalid message type (%s, %u bytes), peer=%d\n",
+ - + - +
- ]
839 : : SanitizeString(hdr.GetMessageType()), msg.m_message_size, m_node_id);
840 : 81 : reject_message = true;
841 : : }
842 : :
843 : : // Always reset the network deserializer (prepare for the next message)
844 [ + - ]: 135211 : Reset();
845 [ + - ]: 135211 : return msg;
846 : 135211 : }
847 : :
848 : 138543 : bool V1Transport::SetMessageToSend(CSerializedNetMsg& msg) noexcept
849 : : {
850 : 138543 : AssertLockNotHeld(m_send_mutex);
851 : : // Determine whether a new message can be set.
852 : 138543 : LOCK(m_send_mutex);
853 [ + - - + : 138543 : if (m_sending_header || m_bytes_sent < m_message_to_send.data.size()) return false;
+ + ]
854 : :
855 : : // create dbl-sha256 checksum
856 : 137963 : uint256 hash = Hash(msg.data);
857 : :
858 : : // create header
859 [ - + ]: 137963 : CMessageHeader hdr(m_magic_bytes, msg.m_type.c_str(), msg.data.size());
860 [ + + ]: 137963 : memcpy(hdr.pchChecksum, hash.begin(), CMessageHeader::CHECKSUM_SIZE);
861 : :
862 : : // serialize header
863 [ + + ]: 137963 : m_header_to_send.clear();
864 : 137963 : VectorWriter{m_header_to_send, 0, hdr};
865 : :
866 : : // update state
867 : 137963 : m_message_to_send = std::move(msg);
868 : 137963 : m_sending_header = true;
869 : 137963 : m_bytes_sent = 0;
870 : 137963 : return true;
871 : 138543 : }
872 : :
873 : 1169728 : Transport::BytesToSend V1Transport::GetBytesToSend(bool have_next_message) const noexcept
874 : : {
875 : 1169728 : AssertLockNotHeld(m_send_mutex);
876 : 1169728 : LOCK(m_send_mutex);
877 [ + + ]: 1169728 : if (m_sending_header) {
878 [ - + + + ]: 137985 : return {std::span{m_header_to_send}.subspan(m_bytes_sent),
879 : : // We have more to send after the header if the message has payload, or if there
880 : : // is a next message after that.
881 [ + + + + ]: 137985 : have_next_message || !m_message_to_send.data.empty(),
882 : 137985 : m_message_to_send.m_type
883 : 137985 : };
884 : : } else {
885 [ - + ]: 1031743 : return {std::span{m_message_to_send.data}.subspan(m_bytes_sent),
886 : : // We only have more to send after this message's payload if there is another
887 : : // message.
888 : : have_next_message,
889 : 1031743 : m_message_to_send.m_type
890 : 1031743 : };
891 : : }
892 : 1169728 : }
893 : :
894 : 270553 : void V1Transport::MarkBytesSent(size_t bytes_sent) noexcept
895 : : {
896 : 270553 : AssertLockNotHeld(m_send_mutex);
897 : 270553 : LOCK(m_send_mutex);
898 : 270553 : m_bytes_sent += bytes_sent;
899 [ + + - + : 270553 : if (m_sending_header && m_bytes_sent == m_header_to_send.size()) {
+ - ]
900 : : // We're done sending a message's header. Switch to sending its data bytes.
901 : 137958 : m_sending_header = false;
902 : 137958 : m_bytes_sent = 0;
903 [ + - - + : 132595 : } else if (!m_sending_header && m_bytes_sent == m_message_to_send.data.size()) {
+ + ]
904 : : // We're done sending a message's data. Wipe the data vector to reduce memory consumption.
905 : 131969 : ClearShrink(m_message_to_send.data);
906 : 131969 : m_bytes_sent = 0;
907 : : }
908 : 270553 : }
909 : :
910 : 275974 : size_t V1Transport::GetSendMemoryUsage() const noexcept
911 : : {
912 : 275974 : AssertLockNotHeld(m_send_mutex);
913 : 275974 : LOCK(m_send_mutex);
914 : : // Don't count sending-side fields besides m_message_to_send, as they're all small and bounded.
915 [ + - ]: 275974 : return m_message_to_send.GetMemoryUsage();
916 : 275974 : }
917 : :
918 : : namespace {
919 : :
920 : : /** List of short messages as defined in BIP324, in order.
921 : : *
922 : : * Only message types that are actually implemented in this codebase need to be listed, as other
923 : : * messages get ignored anyway - whether we know how to decode them or not.
924 : : */
925 : : const std::array<std::string, BIP324_SHORTIDS_IMPLEMENTED> V2_MESSAGE_IDS = {
926 : : "", // 12 bytes follow encoding the message type like in V1
927 : : NetMsgType::ADDR,
928 : : NetMsgType::BLOCK,
929 : : NetMsgType::BLOCKTXN,
930 : : NetMsgType::CMPCTBLOCK,
931 : : NetMsgType::FEEFILTER,
932 : : NetMsgType::FILTERADD,
933 : : NetMsgType::FILTERCLEAR,
934 : : NetMsgType::FILTERLOAD,
935 : : NetMsgType::GETBLOCKS,
936 : : NetMsgType::GETBLOCKTXN,
937 : : NetMsgType::GETDATA,
938 : : NetMsgType::GETHEADERS,
939 : : NetMsgType::HEADERS,
940 : : NetMsgType::INV,
941 : : NetMsgType::MEMPOOL,
942 : : NetMsgType::MERKLEBLOCK,
943 : : NetMsgType::NOTFOUND,
944 : : NetMsgType::PING,
945 : : NetMsgType::PONG,
946 : : NetMsgType::SENDCMPCT,
947 : : NetMsgType::TX,
948 : : NetMsgType::GETCFILTERS,
949 : : NetMsgType::CFILTER,
950 : : NetMsgType::GETCFHEADERS,
951 : : NetMsgType::CFHEADERS,
952 : : NetMsgType::GETCFCHECKPT,
953 : : NetMsgType::CFCHECKPT,
954 : : NetMsgType::ADDRV2,
955 : : "", "", "", // Unimplemented message types 29-31
956 : : "", "", "", "", // Unimplemented message types 32-35
957 : : "", // Unimplemented message type 36
958 : : NetMsgType::FEATURE,
959 : : };
960 : :
961 : : class V2MessageMap
962 : : {
963 : : std::unordered_map<std::string, uint8_t> m_map;
964 : :
965 : : public:
966 : 1446 : V2MessageMap() noexcept
967 : 1446 : {
968 [ + + ]: 54948 : for (size_t i = 1; i < std::size(V2_MESSAGE_IDS); ++i) {
969 : 53502 : m_map.emplace(V2_MESSAGE_IDS[i], i);
970 : : }
971 : 1446 : }
972 : :
973 : 8996 : std::optional<uint8_t> operator()(const std::string& message_name) const noexcept
974 : : {
975 : 8996 : auto it = m_map.find(message_name);
976 [ + + ]: 8996 : if (it == m_map.end()) return std::nullopt;
977 : 8084 : return it->second;
978 : : }
979 : : };
980 : :
981 : : const V2MessageMap V2_MESSAGE_MAP;
982 : :
983 : 284 : std::vector<uint8_t> GenerateRandomGarbage() noexcept
984 : : {
985 : 284 : std::vector<uint8_t> ret;
986 : 284 : FastRandomContext rng;
987 : 284 : ret.resize(rng.randrange(V2Transport::MAX_GARBAGE_LEN + 1));
988 : 284 : rng.fillrand(MakeWritableByteSpan(ret));
989 : 284 : return ret;
990 : 284 : }
991 : :
992 : : } // namespace
993 : :
994 : 278 : void V2Transport::StartSendingHandshake() noexcept
995 : : {
996 : 278 : AssertLockHeld(m_send_mutex);
997 [ - + ]: 278 : Assume(m_send_state == SendState::AWAITING_KEY);
998 : 278 : Assume(m_send_buffer.empty());
999 : : // Initialize the send buffer with ellswift pubkey + provided garbage.
1000 [ - + ]: 278 : m_send_buffer.resize(EllSwiftPubKey::size() + m_send_garbage.size());
1001 : 278 : std::copy(std::begin(m_cipher.GetOurPubKey()), std::end(m_cipher.GetOurPubKey()), MakeWritableByteSpan(m_send_buffer).begin());
1002 : 278 : std::copy(m_send_garbage.begin(), m_send_garbage.end(), m_send_buffer.begin() + EllSwiftPubKey::size());
1003 : : // We cannot wipe m_send_garbage as it will still be used as AAD later in the handshake.
1004 : 278 : }
1005 : :
1006 : 284 : V2Transport::V2Transport(NodeId nodeid, bool initiating, const CKey& key, std::span<const std::byte> ent32, std::vector<uint8_t> garbage) noexcept
1007 : 284 : : m_cipher{key, ent32},
1008 : 284 : m_initiating{initiating},
1009 : 284 : m_nodeid{nodeid},
1010 : 284 : m_v1_fallback{nodeid},
1011 [ + + ]: 284 : m_recv_state{initiating ? RecvState::KEY : RecvState::KEY_MAYBE_V1},
1012 [ - + ]: 284 : m_send_garbage{std::move(garbage)},
1013 [ + + - + ]: 715 : m_send_state{initiating ? SendState::AWAITING_KEY : SendState::MAYBE_V1}
1014 : : {
1015 [ - + + + ]: 284 : Assume(m_send_garbage.size() <= MAX_GARBAGE_LEN);
1016 : : // Start sending immediately if we're the initiator of the connection.
1017 [ + + ]: 284 : if (initiating) {
1018 : 137 : LOCK(m_send_mutex);
1019 [ + - ]: 137 : StartSendingHandshake();
1020 : 137 : }
1021 : 284 : }
1022 : :
1023 : 284 : V2Transport::V2Transport(NodeId nodeid, bool initiating) noexcept
1024 : 568 : : V2Transport{nodeid, initiating, GenerateRandomKey(),
1025 : 568 : MakeByteSpan(GetRandHash()), GenerateRandomGarbage()} {}
1026 : :
1027 : 17959 : void V2Transport::SetReceiveState(RecvState recv_state) noexcept
1028 : : {
1029 : 17959 : AssertLockHeld(m_recv_mutex);
1030 : : // Enforce allowed state transitions.
1031 [ + + + + : 17959 : switch (m_recv_state) {
+ + - - ]
1032 : 147 : case RecvState::KEY_MAYBE_V1:
1033 : 147 : Assume(recv_state == RecvState::KEY || recv_state == RecvState::V1);
1034 : 147 : break;
1035 : 268 : case RecvState::KEY:
1036 : 268 : Assume(recv_state == RecvState::GARB_GARBTERM);
1037 : 268 : break;
1038 : 262 : case RecvState::GARB_GARBTERM:
1039 : 262 : Assume(recv_state == RecvState::VERSION);
1040 : 262 : break;
1041 : 260 : case RecvState::VERSION:
1042 : 260 : Assume(recv_state == RecvState::APP);
1043 : 260 : break;
1044 : 8511 : case RecvState::APP:
1045 : 8511 : Assume(recv_state == RecvState::APP_READY);
1046 : 8511 : break;
1047 : 8511 : case RecvState::APP_READY:
1048 : 8511 : Assume(recv_state == RecvState::APP);
1049 : 8511 : break;
1050 : 0 : case RecvState::V1:
1051 : 0 : Assume(false); // V1 state cannot be left
1052 : 0 : break;
1053 : : }
1054 : : // Change state.
1055 : 17959 : m_recv_state = recv_state;
1056 : 17959 : }
1057 : :
1058 : 415 : void V2Transport::SetSendState(SendState send_state) noexcept
1059 : : {
1060 : 415 : AssertLockHeld(m_send_mutex);
1061 : : // Enforce allowed state transitions.
1062 [ + + - - ]: 415 : switch (m_send_state) {
1063 : 147 : case SendState::MAYBE_V1:
1064 : 147 : Assume(send_state == SendState::V1 || send_state == SendState::AWAITING_KEY);
1065 : 147 : break;
1066 : 268 : case SendState::AWAITING_KEY:
1067 : 268 : Assume(send_state == SendState::READY);
1068 : 268 : break;
1069 : 0 : case SendState::READY:
1070 : 0 : case SendState::V1:
1071 : 0 : Assume(false); // Final states
1072 : 0 : break;
1073 : : }
1074 : : // Change state.
1075 : 415 : m_send_state = send_state;
1076 : 415 : }
1077 : :
1078 : 12181 : bool V2Transport::ReceivedMessageComplete() const noexcept
1079 : : {
1080 : 12181 : AssertLockNotHeld(m_recv_mutex);
1081 : 12181 : LOCK(m_recv_mutex);
1082 [ + + ]: 12181 : if (m_recv_state == RecvState::V1) return m_v1_fallback.ReceivedMessageComplete();
1083 : :
1084 : 11753 : return m_recv_state == RecvState::APP_READY;
1085 : 12181 : }
1086 : :
1087 : 149 : void V2Transport::ProcessReceivedMaybeV1Bytes() noexcept
1088 : : {
1089 : 149 : AssertLockHeld(m_recv_mutex);
1090 : 149 : AssertLockNotHeld(m_send_mutex);
1091 : 149 : Assume(m_recv_state == RecvState::KEY_MAYBE_V1);
1092 : : // We still have to determine if this is a v1 or v2 connection. The bytes being received could
1093 : : // be the beginning of either a v1 packet (network magic + "version\x00\x00\x00\x00\x00"), or
1094 : : // of a v2 public key. BIP324 specifies that a mismatch with this 16-byte string should trigger
1095 : : // sending of the key.
1096 : 149 : std::array<uint8_t, V1_PREFIX_LEN> v1_prefix = {0, 0, 0, 0, 'v', 'e', 'r', 's', 'i', 'o', 'n', 0, 0, 0, 0, 0};
1097 : 149 : std::copy(std::begin(Params().MessageStart()), std::end(Params().MessageStart()), v1_prefix.begin());
1098 [ - + + + ]: 149 : Assume(m_recv_buffer.size() <= v1_prefix.size());
1099 [ + + ]: 149 : if (!std::equal(m_recv_buffer.begin(), m_recv_buffer.end(), v1_prefix.begin())) {
1100 : : // Mismatch with v1 prefix, so we can assume a v2 connection.
1101 : 141 : SetReceiveState(RecvState::KEY); // Convert to KEY state, leaving received bytes around.
1102 : : // Transition the sender to AWAITING_KEY state and start sending.
1103 : 141 : LOCK(m_send_mutex);
1104 : 141 : SetSendState(SendState::AWAITING_KEY);
1105 [ + - ]: 141 : StartSendingHandshake();
1106 [ + + ]: 149 : } else if (m_recv_buffer.size() == v1_prefix.size()) {
1107 : : // Full match with the v1 prefix, so fall back to v1 behavior.
1108 : 6 : LOCK(m_send_mutex);
1109 [ - + ]: 6 : std::span<const uint8_t> feedback{m_recv_buffer};
1110 : : // Feed already received bytes to v1 transport. It should always accept these, because it's
1111 : : // less than the size of a v1 header, and these are the first bytes fed to m_v1_fallback.
1112 : 6 : bool ret = m_v1_fallback.ReceivedBytes(feedback);
1113 : 6 : Assume(feedback.empty());
1114 : 6 : Assume(ret);
1115 : 6 : SetReceiveState(RecvState::V1);
1116 : 6 : SetSendState(SendState::V1);
1117 : : // Reset v2 transport buffers to save memory.
1118 : 6 : ClearShrink(m_recv_buffer);
1119 [ + - ]: 6 : ClearShrink(m_send_buffer);
1120 : 6 : } else {
1121 : : // We have not received enough to distinguish v1 from v2 yet. Wait until more bytes come.
1122 : : }
1123 : 149 : }
1124 : :
1125 : 366 : bool V2Transport::ProcessReceivedKeyBytes() noexcept
1126 : : {
1127 : 366 : AssertLockHeld(m_recv_mutex);
1128 : 366 : AssertLockNotHeld(m_send_mutex);
1129 [ - + ]: 366 : Assume(m_recv_state == RecvState::KEY);
1130 [ - + + + ]: 366 : Assume(m_recv_buffer.size() <= EllSwiftPubKey::size());
1131 : :
1132 : : // As a special exception, if bytes 4-16 of the key on a responder connection match the
1133 : : // corresponding bytes of a V1 version message, but bytes 0-4 don't match the network magic
1134 : : // (if they did, we'd have switched to V1 state already), assume this is a peer from
1135 : : // another network, and disconnect them. They will almost certainly disconnect us too when
1136 : : // they receive our uniformly random key and garbage, but detecting this case specially
1137 : : // means we can log it.
1138 : 366 : static constexpr std::array<uint8_t, 12> MATCH = {'v', 'e', 'r', 's', 'i', 'o', 'n', 0, 0, 0, 0, 0};
1139 : 366 : static constexpr size_t OFFSET = std::tuple_size_v<MessageStartChars>;
1140 [ + + + + ]: 366 : if (!m_initiating && m_recv_buffer.size() >= OFFSET + MATCH.size()) {
1141 [ + + ]: 197 : if (std::equal(MATCH.begin(), MATCH.end(), m_recv_buffer.begin() + OFFSET)) {
1142 [ + - - + ]: 2 : LogDebug(BCLog::NET, "V2 transport error: V1 peer with wrong MessageStart %s\n",
1143 : : HexStr(std::span(m_recv_buffer).first(OFFSET)));
1144 : 2 : return false;
1145 : : }
1146 : : }
1147 : :
1148 [ + + ]: 364 : if (m_recv_buffer.size() == EllSwiftPubKey::size()) {
1149 : : // Other side's key has been fully received, and can now be Diffie-Hellman combined with
1150 : : // our key to initialize the encryption ciphers.
1151 : :
1152 : : // Initialize the ciphers.
1153 : 268 : EllSwiftPubKey ellswift(MakeByteSpan(m_recv_buffer));
1154 : 268 : LOCK(m_send_mutex);
1155 : 268 : m_cipher.Initialize(ellswift, m_initiating);
1156 : :
1157 : : // Switch receiver state to GARB_GARBTERM.
1158 : 268 : SetReceiveState(RecvState::GARB_GARBTERM);
1159 [ + - ]: 268 : m_recv_buffer.clear();
1160 : :
1161 : : // Switch sender state to READY.
1162 : 268 : SetSendState(SendState::READY);
1163 : :
1164 : : // Append the garbage terminator to the send buffer.
1165 [ - + ]: 268 : m_send_buffer.resize(m_send_buffer.size() + BIP324Cipher::GARBAGE_TERMINATOR_LEN);
1166 : 268 : std::copy(m_cipher.GetSendGarbageTerminator().begin(),
1167 : 268 : m_cipher.GetSendGarbageTerminator().end(),
1168 : 268 : MakeWritableByteSpan(m_send_buffer).last(BIP324Cipher::GARBAGE_TERMINATOR_LEN).begin());
1169 : :
1170 : : // Construct version packet in the send buffer, with the sent garbage data as AAD.
1171 [ - + ]: 268 : m_send_buffer.resize(m_send_buffer.size() + BIP324Cipher::EXPANSION + VERSION_CONTENTS.size());
1172 : 268 : m_cipher.Encrypt(
1173 : : /*contents=*/VERSION_CONTENTS,
1174 : 268 : /*aad=*/MakeByteSpan(m_send_garbage),
1175 : : /*ignore=*/false,
1176 : 268 : /*output=*/MakeWritableByteSpan(m_send_buffer).last(BIP324Cipher::EXPANSION + VERSION_CONTENTS.size()));
1177 : : // We no longer need the garbage.
1178 [ + - ]: 268 : ClearShrink(m_send_garbage);
1179 : 268 : } else {
1180 : : // We still have to receive more key bytes.
1181 : : }
1182 : : return true;
1183 : : }
1184 : :
1185 : 547673 : bool V2Transport::ProcessReceivedGarbageBytes() noexcept
1186 : : {
1187 : 547673 : AssertLockHeld(m_recv_mutex);
1188 [ - + ]: 547673 : Assume(m_recv_state == RecvState::GARB_GARBTERM);
1189 [ - + + + ]: 547673 : Assume(m_recv_buffer.size() <= MAX_GARBAGE_LEN + BIP324Cipher::GARBAGE_TERMINATOR_LEN);
1190 [ + + ]: 547673 : if (m_recv_buffer.size() >= BIP324Cipher::GARBAGE_TERMINATOR_LEN) {
1191 [ + + ]: 543653 : if (std::ranges::equal(MakeByteSpan(m_recv_buffer).last(BIP324Cipher::GARBAGE_TERMINATOR_LEN), m_cipher.GetReceiveGarbageTerminator())) {
1192 : : // Garbage terminator received. Store garbage to authenticate it as AAD later.
1193 : 262 : m_recv_aad = std::move(m_recv_buffer);
1194 [ - + ]: 262 : m_recv_aad.resize(m_recv_aad.size() - BIP324Cipher::GARBAGE_TERMINATOR_LEN);
1195 [ - + ]: 262 : m_recv_buffer.clear();
1196 : 262 : SetReceiveState(RecvState::VERSION);
1197 [ + + ]: 543391 : } else if (m_recv_buffer.size() == MAX_GARBAGE_LEN + BIP324Cipher::GARBAGE_TERMINATOR_LEN) {
1198 : : // We've reached the maximum length for garbage + garbage terminator, and the
1199 : : // terminator still does not match. Abort.
1200 [ + - ]: 4 : LogDebug(BCLog::NET, "V2 transport error: missing garbage terminator, peer=%d\n", m_nodeid);
1201 : 4 : return false;
1202 : : } else {
1203 : : // We still need to receive more garbage and/or garbage terminator bytes.
1204 : : }
1205 : : } else {
1206 : : // We have less than GARBAGE_TERMINATOR_LEN (16) bytes, so we certainly need to receive
1207 : : // more first.
1208 : : }
1209 : : return true;
1210 : : }
1211 : :
1212 : 124373 : bool V2Transport::ProcessReceivedPacketBytes() noexcept
1213 : : {
1214 : 124373 : AssertLockHeld(m_recv_mutex);
1215 [ - + ]: 124373 : Assume(m_recv_state == RecvState::VERSION || m_recv_state == RecvState::APP);
1216 : :
1217 : : // The maximum permitted contents length for a packet, consisting of:
1218 : : // - 0x00 byte: indicating long message type encoding
1219 : : // - 12 bytes of message type
1220 : : // - payload
1221 : 124373 : static constexpr size_t MAX_CONTENTS_LEN =
1222 : : 1 + CMessageHeader::MESSAGE_TYPE_SIZE +
1223 : : std::min<size_t>(MAX_SIZE, MAX_PROTOCOL_MESSAGE_LENGTH);
1224 : :
1225 [ - + + + ]: 124373 : if (m_recv_buffer.size() == BIP324Cipher::LENGTH_LEN) {
1226 : : // Length descriptor received.
1227 : 61432 : m_recv_len = m_cipher.DecryptLength(MakeByteSpan(m_recv_buffer));
1228 [ + + ]: 61432 : if (m_recv_len > MAX_CONTENTS_LEN) {
1229 [ + - ]: 10 : LogDebug(BCLog::NET, "V2 transport error: packet too large (%u bytes), peer=%d\n", m_recv_len, m_nodeid);
1230 : 10 : return false;
1231 : : }
1232 [ + + + + ]: 62941 : } else if (m_recv_buffer.size() > BIP324Cipher::LENGTH_LEN && m_recv_buffer.size() == m_recv_len + BIP324Cipher::EXPANSION) {
1233 : : // Ciphertext received, decrypt it into m_recv_decode_buffer.
1234 : : // Note that it is impossible to reach this branch without hitting the branch above first,
1235 : : // as GetMaxBytesToProcess only allows up to LENGTH_LEN into the buffer before that point.
1236 : 61422 : m_recv_decode_buffer.resize(m_recv_len);
1237 : 61422 : bool ignore{false};
1238 : 122844 : bool ret = m_cipher.Decrypt(
1239 : 61422 : /*input=*/MakeByteSpan(m_recv_buffer).subspan(BIP324Cipher::LENGTH_LEN),
1240 : 61422 : /*aad=*/MakeByteSpan(m_recv_aad),
1241 : : /*ignore=*/ignore,
1242 : : /*contents=*/MakeWritableByteSpan(m_recv_decode_buffer));
1243 [ + + ]: 61422 : if (!ret) {
1244 [ + - ]: 12 : LogDebug(BCLog::NET, "V2 transport error: packet decryption failure (%u bytes), peer=%d\n", m_recv_len, m_nodeid);
1245 : 12 : return false;
1246 : : }
1247 : : // We have decrypted a valid packet with the AAD we expected, so clear the expected AAD.
1248 : 61410 : ClearShrink(m_recv_aad);
1249 : : // Feed the last 4 bytes of the Poly1305 authentication tag (and its timing) into our RNG.
1250 [ - + ]: 61410 : RandAddEvent(ReadLE32(m_recv_buffer.data() + m_recv_buffer.size() - 4));
1251 : :
1252 : : // At this point we have a valid packet decrypted into m_recv_decode_buffer. If it's not a
1253 : : // decoy, which we simply ignore, use the current state to decide what to do with it.
1254 [ + + ]: 61410 : if (!ignore) {
1255 [ + + - ]: 8771 : switch (m_recv_state) {
1256 : 260 : case RecvState::VERSION:
1257 : : // Version message received; transition to application phase. The contents is
1258 : : // ignored, but can be used for future extensions.
1259 : 260 : SetReceiveState(RecvState::APP);
1260 : 260 : break;
1261 : 8511 : case RecvState::APP:
1262 : : // Application message decrypted correctly. It can be extracted using GetMessage().
1263 : 8511 : SetReceiveState(RecvState::APP_READY);
1264 : 8511 : break;
1265 : 0 : default:
1266 : : // Any other state is invalid (this function should not have been called).
1267 : 0 : Assume(false);
1268 : : }
1269 : : }
1270 : : // Wipe the receive buffer where the next packet will be received into.
1271 : 61410 : ClearShrink(m_recv_buffer);
1272 : : // In all but APP_READY state, we can wipe the decoded contents.
1273 [ + + ]: 61410 : if (m_recv_state != RecvState::APP_READY) ClearShrink(m_recv_decode_buffer);
1274 : : } else {
1275 : : // We either have less than 3 bytes, so we don't know the packet's length yet, or more
1276 : : // than 3 bytes but less than the packet's full ciphertext. Wait until those arrive.
1277 : : }
1278 : : return true;
1279 : : }
1280 : :
1281 : 675109 : size_t V2Transport::GetMaxBytesToProcess() noexcept
1282 : : {
1283 : 675109 : AssertLockHeld(m_recv_mutex);
1284 [ + + + + : 675109 : switch (m_recv_state) {
- - + ]
1285 : 149 : case RecvState::KEY_MAYBE_V1:
1286 : : // During the KEY_MAYBE_V1 state we do not allow more than the length of v1 prefix into the
1287 : : // receive buffer.
1288 [ - + ]: 149 : Assume(m_recv_buffer.size() <= V1_PREFIX_LEN);
1289 : : // As long as we're not sure if this is a v1 or v2 connection, don't receive more than what
1290 : : // is strictly necessary to distinguish the two (16 bytes). If we permitted more than
1291 : : // the v1 header size (24 bytes), we may not be able to feed the already-received bytes
1292 : : // back into the m_v1_fallback V1 transport.
1293 : 149 : return V1_PREFIX_LEN - m_recv_buffer.size();
1294 : 366 : case RecvState::KEY:
1295 : : // During the KEY state, we only allow the 64-byte key into the receive buffer.
1296 [ - + ]: 366 : Assume(m_recv_buffer.size() <= EllSwiftPubKey::size());
1297 : : // As long as we have not received the other side's public key, don't receive more than
1298 : : // that (64 bytes), as garbage follows, and locating the garbage terminator requires the
1299 : : // key exchange first.
1300 : 366 : return EllSwiftPubKey::size() - m_recv_buffer.size();
1301 : : case RecvState::GARB_GARBTERM:
1302 : : // Process garbage bytes one by one (because terminator may appear anywhere).
1303 : : return 1;
1304 : 124373 : case RecvState::VERSION:
1305 : 124373 : case RecvState::APP:
1306 : : // These three states all involve decoding a packet. Process the length descriptor first,
1307 : : // so that we know where the current packet ends (and we don't process bytes from the next
1308 : : // packet or decoy yet). Then, process the ciphertext bytes of the current packet.
1309 [ - + + + ]: 124373 : if (m_recv_buffer.size() < BIP324Cipher::LENGTH_LEN) {
1310 : 61443 : return BIP324Cipher::LENGTH_LEN - m_recv_buffer.size();
1311 : : } else {
1312 : : // Note that BIP324Cipher::EXPANSION is the total difference between contents size
1313 : : // and encoded packet size, which includes the 3 bytes due to the packet length.
1314 : : // When transitioning from receiving the packet length to receiving its ciphertext,
1315 : : // the encrypted packet length is left in the receive buffer.
1316 : 62930 : return BIP324Cipher::EXPANSION + m_recv_len - m_recv_buffer.size();
1317 : : }
1318 : 2548 : case RecvState::APP_READY:
1319 : : // No bytes can be processed until GetMessage() is called.
1320 : 2548 : return 0;
1321 : 0 : case RecvState::V1:
1322 : : // Not allowed (must be dealt with by the caller).
1323 : 0 : Assume(false);
1324 : 0 : return 0;
1325 : : }
1326 : 0 : Assume(false); // unreachable
1327 : 0 : return 0;
1328 : : }
1329 : :
1330 : 11550 : bool V2Transport::ReceivedBytes(std::span<const uint8_t>& msg_bytes) noexcept
1331 : : {
1332 : 11550 : AssertLockNotHeld(m_recv_mutex);
1333 : : /** How many bytes to allocate in the receive buffer at most above what is received so far. */
1334 : 11550 : static constexpr size_t MAX_RESERVE_AHEAD = 256 * 1024;
1335 : :
1336 : 11550 : LOCK(m_recv_mutex);
1337 [ + + ]: 11550 : if (m_recv_state == RecvState::V1) return m_v1_fallback.ReceivedBytes(msg_bytes);
1338 : :
1339 : : // Process the provided bytes in msg_bytes in a loop. In each iteration a nonzero number of
1340 : : // bytes (decided by GetMaxBytesToProcess) are taken from the beginning om msg_bytes, and
1341 : : // appended to m_recv_buffer. Then, depending on the receiver state, one of the
1342 : : // ProcessReceived*Bytes functions is called to process the bytes in that buffer.
1343 [ + + ]: 683655 : while (!msg_bytes.empty()) {
1344 : : // Decide how many bytes to copy from msg_bytes to m_recv_buffer.
1345 : 675109 : size_t max_read = GetMaxBytesToProcess();
1346 : :
1347 : : // Reserve space in the buffer if there is not enough.
1348 [ - + + + : 683669 : if (m_recv_buffer.size() + std::min(msg_bytes.size(), max_read) > m_recv_buffer.capacity()) {
- + + + ]
1349 [ + + - - : 123215 : switch (m_recv_state) {
- ]
1350 : 276 : case RecvState::KEY_MAYBE_V1:
1351 : 276 : case RecvState::KEY:
1352 : 276 : case RecvState::GARB_GARBTERM:
1353 : : // During the initial states (key/garbage), allocate once to fit the maximum (4111
1354 : : // bytes).
1355 : 276 : m_recv_buffer.reserve(MAX_GARBAGE_LEN + BIP324Cipher::GARBAGE_TERMINATOR_LEN);
1356 : 276 : break;
1357 : 122939 : case RecvState::VERSION:
1358 : 122939 : case RecvState::APP: {
1359 : : // During states where a packet is being received, as much as is expected but never
1360 : : // more than MAX_RESERVE_AHEAD bytes in addition to what is received so far.
1361 : : // This means attackers that want to cause us to waste allocated memory are limited
1362 : : // to MAX_RESERVE_AHEAD above the largest allowed message contents size, and to
1363 : : // MAX_RESERVE_AHEAD more than they've actually sent us.
1364 [ + + ]: 122939 : size_t alloc_add = std::min(max_read, msg_bytes.size() + MAX_RESERVE_AHEAD);
1365 : 122939 : m_recv_buffer.reserve(m_recv_buffer.size() + alloc_add);
1366 : 122939 : break;
1367 : : }
1368 : 0 : case RecvState::APP_READY:
1369 : : // The buffer is empty in this state.
1370 : 0 : Assume(m_recv_buffer.empty());
1371 : 0 : break;
1372 : 0 : case RecvState::V1:
1373 : : // Should have bailed out above.
1374 : 0 : Assume(false);
1375 : 0 : break;
1376 : : }
1377 : : }
1378 : :
1379 : : // Can't read more than provided input.
1380 [ + + ]: 675109 : max_read = std::min(msg_bytes.size(), max_read);
1381 : : // Copy data to buffer.
1382 : 675109 : m_recv_buffer.insert(m_recv_buffer.end(), UCharCast(msg_bytes.data()), UCharCast(msg_bytes.data() + max_read));
1383 [ + + + + : 675109 : msg_bytes = msg_bytes.subspan(max_read);
- - + ]
1384 : :
1385 : : // Process data in the buffer.
1386 [ + + + + : 675109 : switch (m_recv_state) {
- - + ]
1387 : 149 : case RecvState::KEY_MAYBE_V1:
1388 : 149 : ProcessReceivedMaybeV1Bytes();
1389 [ + + ]: 149 : if (m_recv_state == RecvState::V1) return true;
1390 : : break;
1391 : :
1392 : 366 : case RecvState::KEY:
1393 [ + + ]: 366 : if (!ProcessReceivedKeyBytes()) return false;
1394 : : break;
1395 : :
1396 : 547673 : case RecvState::GARB_GARBTERM:
1397 [ + + ]: 547673 : if (!ProcessReceivedGarbageBytes()) return false;
1398 : : break;
1399 : :
1400 : 124373 : case RecvState::VERSION:
1401 : 124373 : case RecvState::APP:
1402 [ + + ]: 124373 : if (!ProcessReceivedPacketBytes()) return false;
1403 : : break;
1404 : :
1405 : : case RecvState::APP_READY:
1406 : : return true;
1407 : :
1408 : 0 : case RecvState::V1:
1409 : : // We should have bailed out before.
1410 : 0 : Assume(false);
1411 : 0 : break;
1412 : : }
1413 : : // Make sure we have made progress before continuing.
1414 : 672527 : Assume(max_read > 0);
1415 : : }
1416 : :
1417 : : return true;
1418 : 11550 : }
1419 : :
1420 : 8511 : std::optional<std::string> V2Transport::GetMessageType(std::span<const uint8_t>& contents) noexcept
1421 : : {
1422 [ - + ]: 8511 : if (contents.size() == 0) return std::nullopt; // Empty contents
1423 [ + + ]: 8511 : uint8_t first_byte = contents[0];
1424 [ + + ]: 8511 : contents = contents.subspan(1); // Strip first byte.
1425 : :
1426 [ + + ]: 8511 : if (first_byte != 0) {
1427 : : // Short (1 byte) encoding.
1428 [ + + ]: 7577 : if (first_byte < std::size(V2_MESSAGE_IDS)) {
1429 : : // Valid short message id.
1430 [ - + ]: 15152 : return V2_MESSAGE_IDS[first_byte];
1431 : : } else {
1432 : : // Unknown short message id.
1433 : 1 : return std::nullopt;
1434 : : }
1435 : : }
1436 : :
1437 [ + + ]: 934 : if (contents.size() < CMessageHeader::MESSAGE_TYPE_SIZE) {
1438 : 10 : return std::nullopt; // Long encoding needs 12 message type bytes.
1439 : : }
1440 : :
1441 : : size_t msg_type_len{0};
1442 [ + - + + ]: 8241 : while (msg_type_len < CMessageHeader::MESSAGE_TYPE_SIZE && contents[msg_type_len] != 0) {
1443 : : // Verify that message type bytes before the first 0x00 are in range. BIP324 specifies the
1444 : : // long message type encoding as "an ASCII message type (as in the v1 P2P protocol)".
1445 [ + + + - ]: 7327 : if (contents[msg_type_len] < ' ' || contents[msg_type_len] > 0x7E) {
1446 : 10 : return {};
1447 : : }
1448 : 7317 : ++msg_type_len;
1449 : : }
1450 : 914 : std::string ret{reinterpret_cast<const char*>(contents.data()), msg_type_len};
1451 [ + + ]: 4475 : while (msg_type_len < CMessageHeader::MESSAGE_TYPE_SIZE) {
1452 : : // Verify that message type bytes after the first 0x00 are also 0x00.
1453 [ + + ]: 3611 : if (contents[msg_type_len] != 0) return {};
1454 : 3561 : ++msg_type_len;
1455 : : }
1456 : : // Strip message type bytes of contents.
1457 : 864 : contents = contents.subspan(CMessageHeader::MESSAGE_TYPE_SIZE);
1458 : 864 : return ret;
1459 : 914 : }
1460 : :
1461 : 8729 : CNetMessage V2Transport::GetReceivedMessage(NodeClock::time_point time, bool& reject_message) noexcept
1462 : : {
1463 : 8729 : AssertLockNotHeld(m_recv_mutex);
1464 : 8729 : LOCK(m_recv_mutex);
1465 [ + + ]: 8729 : if (m_recv_state == RecvState::V1) return m_v1_fallback.GetReceivedMessage(time, reject_message);
1466 : :
1467 [ - + ]: 8511 : Assume(m_recv_state == RecvState::APP_READY);
1468 [ - + ]: 8511 : std::span<const uint8_t> contents{m_recv_decode_buffer};
1469 : 8511 : auto msg_type = GetMessageType(contents);
1470 : 8511 : CNetMessage msg{DataStream{}};
1471 : : // Note that BIP324Cipher::EXPANSION also includes the length descriptor size.
1472 [ - + ]: 8511 : msg.m_raw_message_size = m_recv_decode_buffer.size() + BIP324Cipher::EXPANSION;
1473 [ + + ]: 8511 : if (msg_type) {
1474 : 8440 : reject_message = false;
1475 : 8440 : msg.m_type = std::move(*msg_type);
1476 : 8440 : msg.m_time = time;
1477 : 8440 : msg.m_message_size = contents.size();
1478 : 8440 : msg.m_recv.resize(contents.size());
1479 : 8440 : std::copy(contents.begin(), contents.end(), UCharCast(msg.m_recv.data()));
1480 : : } else {
1481 [ + - - + ]: 71 : LogDebug(BCLog::NET, "V2 transport error: invalid message type (%u bytes contents), peer=%d\n", m_recv_decode_buffer.size(), m_nodeid);
1482 : 71 : reject_message = true;
1483 : : }
1484 : 8511 : ClearShrink(m_recv_decode_buffer);
1485 : 8511 : SetReceiveState(RecvState::APP);
1486 : :
1487 : 8511 : return msg;
1488 : 8511 : }
1489 : :
1490 : 9453 : bool V2Transport::SetMessageToSend(CSerializedNetMsg& msg) noexcept
1491 : : {
1492 : 9453 : AssertLockNotHeld(m_send_mutex);
1493 : 9453 : LOCK(m_send_mutex);
1494 [ + + ]: 9453 : if (m_send_state == SendState::V1) return m_v1_fallback.SetMessageToSend(msg);
1495 : : // We only allow adding a new message to be sent when in the READY state (so the packet cipher
1496 : : // is available) and the send buffer is empty. This limits the number of messages in the send
1497 : : // buffer to just one, and leaves the responsibility for queueing them up to the caller.
1498 [ + + + + ]: 9081 : if (!(m_send_state == SendState::READY && m_send_buffer.empty())) return false;
1499 : : // Construct contents (encoding message type + payload).
1500 : 8996 : std::vector<uint8_t> contents;
1501 : 8996 : auto short_message_id = V2_MESSAGE_MAP(msg.m_type);
1502 [ + + ]: 8996 : if (short_message_id) {
1503 [ - + ]: 8084 : contents.resize(1 + msg.data.size());
1504 : 8084 : contents[0] = *short_message_id;
1505 : 8084 : std::copy(msg.data.begin(), msg.data.end(), contents.begin() + 1);
1506 : : } else {
1507 : : // Initialize with zeroes, and then write the message type string starting at offset 1.
1508 : : // This means contents[0] and the unused positions in contents[1..13] remain 0x00.
1509 [ - + ]: 912 : contents.resize(1 + CMessageHeader::MESSAGE_TYPE_SIZE + msg.data.size(), 0);
1510 [ - + ]: 912 : std::copy(msg.m_type.begin(), msg.m_type.end(), contents.data() + 1);
1511 : 912 : std::copy(msg.data.begin(), msg.data.end(), contents.begin() + 1 + CMessageHeader::MESSAGE_TYPE_SIZE);
1512 : : }
1513 : : // Construct ciphertext in send buffer.
1514 [ - + ]: 8996 : m_send_buffer.resize(contents.size() + BIP324Cipher::EXPANSION);
1515 : 8996 : m_cipher.Encrypt(MakeByteSpan(contents), {}, false, MakeWritableByteSpan(m_send_buffer));
1516 : 8996 : m_send_type = msg.m_type;
1517 : : // Release memory
1518 : 8996 : ClearShrink(msg.data);
1519 : 8996 : return true;
1520 : 8996 : }
1521 : :
1522 : 62222 : Transport::BytesToSend V2Transport::GetBytesToSend(bool have_next_message) const noexcept
1523 : : {
1524 : 62222 : AssertLockNotHeld(m_send_mutex);
1525 : 62222 : LOCK(m_send_mutex);
1526 [ + + ]: 62222 : if (m_send_state == SendState::V1) return m_v1_fallback.GetBytesToSend(have_next_message);
1527 : :
1528 [ + + ]: 59608 : if (m_send_state == SendState::MAYBE_V1) Assume(m_send_buffer.empty());
1529 [ - + + + ]: 59608 : Assume(m_send_pos <= m_send_buffer.size());
1530 : 59608 : return {
1531 [ + + ]: 59608 : std::span{m_send_buffer}.subspan(m_send_pos),
1532 : : // We only have more to send after the current m_send_buffer if there is a (next)
1533 : : // message to be sent, and we're capable of sending packets. */
1534 [ + + + + ]: 59608 : have_next_message && m_send_state == SendState::READY,
1535 : 59608 : m_send_type
1536 : 59608 : };
1537 : 62222 : }
1538 : :
1539 : 10830 : void V2Transport::MarkBytesSent(size_t bytes_sent) noexcept
1540 : : {
1541 : 10830 : AssertLockNotHeld(m_send_mutex);
1542 : 10830 : LOCK(m_send_mutex);
1543 [ + + + - ]: 10830 : if (m_send_state == SendState::V1) return m_v1_fallback.MarkBytesSent(bytes_sent);
1544 : :
1545 [ + + + + : 10100 : if (m_send_state == SendState::AWAITING_KEY && m_send_pos == 0 && bytes_sent > 0) {
+ - ]
1546 [ + - ]: 138 : LogDebug(BCLog::NET, "start sending v2 handshake to peer=%d\n", m_nodeid);
1547 : : }
1548 : :
1549 : 10100 : m_send_pos += bytes_sent;
1550 [ - + + + ]: 10100 : Assume(m_send_pos <= m_send_buffer.size());
1551 [ + + ]: 10100 : if (m_send_pos >= CMessageHeader::HEADER_SIZE) {
1552 : 9981 : m_sent_v1_header_worth = true;
1553 : : }
1554 : : // Wipe the buffer when everything is sent.
1555 [ + + ]: 10100 : if (m_send_pos == m_send_buffer.size()) {
1556 : 9382 : m_send_pos = 0;
1557 : 9382 : ClearShrink(m_send_buffer);
1558 : : }
1559 : 10830 : }
1560 : :
1561 : 152 : bool V2Transport::ShouldReconnectV1() const noexcept
1562 : : {
1563 : 152 : AssertLockNotHeld(m_send_mutex);
1564 : 152 : AssertLockNotHeld(m_recv_mutex);
1565 : : // Only outgoing connections need reconnection.
1566 [ + + ]: 152 : if (!m_initiating) return false;
1567 : :
1568 : 75 : LOCK(m_recv_mutex);
1569 : : // We only reconnect in the very first state and when the receive buffer is empty. Together
1570 : : // these conditions imply nothing has been received so far.
1571 [ + + ]: 75 : if (m_recv_state != RecvState::KEY) return false;
1572 [ + - ]: 7 : if (!m_recv_buffer.empty()) return false;
1573 : : // Check if we've sent enough for the other side to disconnect us (if it was V1).
1574 : 7 : LOCK(m_send_mutex);
1575 [ + - ]: 7 : return m_sent_v1_header_worth;
1576 : 82 : }
1577 : :
1578 : 18892 : size_t V2Transport::GetSendMemoryUsage() const noexcept
1579 : : {
1580 : 18892 : AssertLockNotHeld(m_send_mutex);
1581 : 18892 : LOCK(m_send_mutex);
1582 [ + + ]: 18892 : if (m_send_state == SendState::V1) return m_v1_fallback.GetSendMemoryUsage();
1583 : :
1584 [ - + ]: 36296 : return sizeof(m_send_buffer) + memusage::DynamicUsage(m_send_buffer);
1585 : 18892 : }
1586 : :
1587 : 1962 : Transport::Info V2Transport::GetInfo() const noexcept
1588 : : {
1589 : 1962 : AssertLockNotHeld(m_recv_mutex);
1590 : 1962 : LOCK(m_recv_mutex);
1591 [ + + ]: 1962 : if (m_recv_state == RecvState::V1) return m_v1_fallback.GetInfo();
1592 : :
1593 [ + + ]: 1918 : Transport::Info info;
1594 : :
1595 : : // Do not report v2 and session ID until the version packet has been received
1596 : : // and verified (confirming that the other side very likely has the same keys as us).
1597 [ + + ]: 1918 : if (m_recv_state != RecvState::KEY_MAYBE_V1 && m_recv_state != RecvState::KEY &&
1598 : : m_recv_state != RecvState::GARB_GARBTERM && m_recv_state != RecvState::VERSION) {
1599 : 1852 : info.transport_type = TransportProtocolType::V2;
1600 : 1852 : info.session_id = uint256(MakeUCharSpan(m_cipher.GetSessionID()));
1601 : : } else {
1602 : 66 : info.transport_type = TransportProtocolType::DETECTING;
1603 : : }
1604 : :
1605 : 1918 : return info;
1606 : 1962 : }
1607 : :
1608 : 147202 : std::pair<size_t, bool> CConnman::SocketSendData(CNode& node) const
1609 : : {
1610 : 147202 : auto it = node.vSendMsg.begin();
1611 : 147202 : size_t nSentSize = 0;
1612 : 147202 : bool data_left{false}; //!< second return value (whether unsent data remains)
1613 : 147202 : std::optional<bool> expected_more;
1614 : :
1615 : 426346 : while (true) {
1616 [ + + ]: 426346 : if (it != node.vSendMsg.end()) {
1617 : : // If possible, move one message from the send queue to the transport. This fails when
1618 : : // there is an existing message still being sent, or (for v2 transports) when the
1619 : : // handshake has not yet completed.
1620 : 147568 : size_t memusage = it->GetMemoryUsage();
1621 [ + + ]: 147568 : if (node.m_transport->SetMessageToSend(*it)) {
1622 : : // Update memory usage of send buffer (as *it will be deleted).
1623 : 146903 : node.m_send_memusage -= memusage;
1624 : 146903 : ++it;
1625 : : }
1626 : : }
1627 [ + + ]: 426346 : const auto& [data, more, msg_type] = node.m_transport->GetBytesToSend(it != node.vSendMsg.end());
1628 : : // We rely on the 'more' value returned by GetBytesToSend to correctly predict whether more
1629 : : // bytes are still to be sent, to correctly set the MSG_MORE flag. As a sanity check,
1630 : : // verify that the previously returned 'more' was correct.
1631 [ + + ]: 426346 : if (expected_more.has_value()) Assume(!data.empty() == *expected_more);
1632 [ + + ]: 426346 : expected_more = more;
1633 [ + + ]: 426346 : data_left = !data.empty(); // will be overwritten on next loop if all of data gets sent
1634 : 426346 : int nBytes = 0;
1635 [ + + ]: 426346 : if (!data.empty()) {
1636 : 279783 : LOCK(node.m_sock_mutex);
1637 : : // There is no socket in case we've already disconnected, or in test cases without
1638 : : // real connections. In these cases, we bail out immediately and just leave things
1639 : : // in the send queue and transport.
1640 [ + + ]: 279783 : if (!node.m_sock) {
1641 : : break;
1642 : : }
1643 : 279772 : int flags = MSG_NOSIGNAL | MSG_DONTWAIT;
1644 : : #ifdef MSG_MORE
1645 [ + + ]: 279772 : if (more) {
1646 : 132581 : flags |= MSG_MORE;
1647 : : }
1648 : : #endif
1649 [ + - + - ]: 279772 : nBytes = node.m_sock->Send(data.data(), data.size(), flags);
1650 : 11 : }
1651 [ + - ]: 279772 : if (nBytes > 0) {
1652 : 279772 : node.m_last_send = NodeClock::now();
1653 : 279772 : node.nSendBytes += nBytes;
1654 : : // Notify transport that bytes have been processed.
1655 : 279772 : node.m_transport->MarkBytesSent(nBytes);
1656 : : // Update statistics per message type.
1657 [ + + ]: 279772 : if (!msg_type.empty()) { // don't report v2 handshake bytes for now
1658 : 279482 : node.AccountForSentBytes(msg_type, nBytes);
1659 : : }
1660 : 279772 : nSentSize += nBytes;
1661 [ + + ]: 279772 : if ((size_t)nBytes != data.size()) {
1662 : : // could not send full message; stop sending more
1663 : : break;
1664 : : }
1665 : : } else {
1666 [ - + ]: 146563 : if (nBytes < 0) {
1667 : : // error
1668 : 0 : int nErr = WSAGetLastError();
1669 [ # # # # ]: 0 : if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) {
1670 [ # # # # : 0 : LogDebug(BCLog::NET, "socket send error, %s: %s", node.DisconnectMsg(), NetworkErrorString(nErr));
# # ]
1671 : 0 : node.CloseSocketDisconnect();
1672 : : }
1673 : : }
1674 : : break;
1675 : : }
1676 : : }
1677 : :
1678 [ + + ]: 147202 : node.fPauseSend = node.m_send_memusage + node.m_transport->GetSendMemoryUsage() > nSendBufferMaxSize;
1679 : :
1680 [ + + ]: 147202 : if (it == node.vSendMsg.end()) {
1681 [ - + ]: 147178 : assert(node.m_send_memusage == 0);
1682 : : }
1683 : 147202 : node.vSendMsg.erase(node.vSendMsg.begin(), it);
1684 : 147202 : return {nSentSize, data_left};
1685 : : }
1686 : :
1687 : : /** Try to find an inbound connection to evict.
1688 : : * Extreme care must be taken to avoid opening the node to attacker
1689 : : * triggered network partitioning.
1690 : : * The strategy used here is to protect a small number of peers
1691 : : * for each of several distinct characteristics which are difficult
1692 : : * to forge. In order to partition a node the attacker must be
1693 : : * simultaneously better at all of them than honest peers.
1694 : : */
1695 : 6 : bool CConnman::AttemptToEvictConnection(bool evict_tx_relay_peer_only, std::optional<NodeId> protect_peer)
1696 : : {
1697 : 6 : AssertLockNotHeld(m_nodes_mutex);
1698 : :
1699 : 6 : std::vector<NodeEvictionCandidate> vEvictionCandidates;
1700 : 6 : {
1701 : :
1702 [ + - ]: 6 : LOCK(m_nodes_mutex);
1703 [ + + ]: 57 : for (const CNode* node : m_nodes) {
1704 [ - + ]: 51 : if (node->fDisconnect)
1705 : 0 : continue;
1706 [ + + + + ]: 51 : if (protect_peer.has_value() && node->GetId() == protect_peer) {
1707 : 4 : continue;
1708 : : }
1709 [ + + + + ]: 47 : if (evict_tx_relay_peer_only && !node->m_relays_txs) {
1710 : 21 : continue;
1711 : : }
1712 : 26 : NodeEvictionCandidate candidate{
1713 : 26 : .id = node->GetId(),
1714 : : .m_connected = node->m_connected,
1715 : 26 : .m_min_ping_time = node->m_min_ping_time,
1716 : 26 : .m_last_block_time = node->m_last_block_time,
1717 : 26 : .m_last_tx_time = node->m_last_tx_time,
1718 [ + - ]: 26 : .fRelevantServices = node->m_has_all_wanted_services,
1719 : 26 : .m_relay_txs = node->m_relays_txs.load(),
1720 : 26 : .fBloomFilter = node->m_bloom_filter_loaded.load(),
1721 : 26 : .nKeyedNetGroup = node->nKeyedNetGroup,
1722 : 26 : .prefer_evict = node->m_prefer_evict,
1723 [ + - ]: 26 : .m_is_local = node->addr.IsLocal(),
1724 : 26 : .m_network = node->ConnectedThroughNetwork(),
1725 : 26 : .m_noban = node->HasPermission(NetPermissionFlags::NoBan),
1726 : 26 : .m_conn_type = node->m_conn_type,
1727 [ + - + - : 52 : };
+ - ]
1728 [ + - ]: 26 : vEvictionCandidates.push_back(candidate);
1729 : : }
1730 : 0 : }
1731 [ + - ]: 6 : const std::optional<NodeId> node_id_to_evict = SelectNodeToEvict(std::move(vEvictionCandidates));
1732 [ + + ]: 6 : if (!node_id_to_evict) {
1733 : : return false;
1734 : : }
1735 [ + - ]: 1 : LOCK(m_nodes_mutex);
1736 [ + - ]: 9 : for (CNode* pnode : m_nodes) {
1737 [ + + ]: 9 : if (pnode->GetId() == *node_id_to_evict) {
1738 [ + - + - : 2 : LogDebug(BCLog::NET, "selected %s connection for eviction, %s", pnode->ConnectionTypeAsString(), pnode->DisconnectMsg());
+ - + - ]
1739 : : TRACEPOINT(net, evicted_inbound_connection,
1740 : : pnode->GetId(),
1741 : : pnode->m_addr_name.c_str(),
1742 : : pnode->ConnectionTypeAsString().c_str(),
1743 : : pnode->ConnectedThroughNetwork(),
1744 : 1 : TicksSinceEpoch<std::chrono::seconds>(pnode->m_connected));
1745 : 1 : pnode->fDisconnect = true;
1746 : 1 : return true;
1747 : : }
1748 : : }
1749 : : return false;
1750 : 7 : }
1751 : :
1752 : 1150 : void CConnman::AcceptConnection(const ListenSocket& hListenSocket) {
1753 : 1150 : AssertLockNotHeld(m_nodes_mutex);
1754 : :
1755 : 1150 : struct sockaddr_storage sockaddr;
1756 : 1150 : socklen_t len = sizeof(sockaddr);
1757 : 2300 : auto sock = hListenSocket.sock->Accept((struct sockaddr*)&sockaddr, &len);
1758 : :
1759 [ - + ]: 1150 : if (!sock) {
1760 : 0 : const int nErr = WSAGetLastError();
1761 [ # # ]: 0 : if (nErr != WSAEWOULDBLOCK) {
1762 [ # # # # ]: 0 : LogInfo("socket error accept failed: %s\n", NetworkErrorString(nErr));
1763 : : }
1764 : 0 : return;
1765 : : }
1766 : :
1767 [ + - ]: 1150 : CService addr;
1768 [ + - - + ]: 1150 : if (!addr.SetSockAddr((const struct sockaddr*)&sockaddr, len)) {
1769 [ # # ]: 0 : LogWarning("Unknown socket family\n");
1770 : : } else {
1771 [ + - ]: 2300 : addr = MaybeFlipIPv6toCJDNS(addr);
1772 : : }
1773 : :
1774 [ + - + - ]: 1150 : const CService addr_bind{MaybeFlipIPv6toCJDNS(GetBindAddress(*sock))};
1775 : :
1776 : 1150 : NetPermissionFlags permission_flags = NetPermissionFlags::None;
1777 [ + - ]: 1150 : hListenSocket.AddSocketPermissionFlags(permission_flags);
1778 : :
1779 [ + - ]: 1150 : CreateNodeFromAcceptedSocket(std::move(sock), permission_flags, addr_bind, addr);
1780 : 1150 : }
1781 : :
1782 : 1150 : void CConnman::CreateNodeFromAcceptedSocket(std::unique_ptr<Sock>&& sock,
1783 : : NetPermissionFlags permission_flags,
1784 : : const CService& addr_bind,
1785 : : const CService& addr)
1786 : : {
1787 : 1150 : AssertLockNotHeld(m_nodes_mutex);
1788 : :
1789 : 1150 : int nInbound = 0;
1790 : :
1791 [ + + ]: 1150 : const bool inbound_onion = std::find(m_onion_binds.begin(), m_onion_binds.end(), addr_bind) != m_onion_binds.end();
1792 : :
1793 : : // Tor inbound connections do not reveal the peer's actual network address.
1794 : : // Therefore do not apply address-based whitelist permissions to them.
1795 [ + + + - ]: 2287 : AddWhitelistPermissionFlags(permission_flags, inbound_onion ? std::optional<CNetAddr>{} : addr, vWhitelistedRangeIncoming);
1796 : :
1797 : 1150 : {
1798 : 1150 : LOCK(m_nodes_mutex);
1799 [ + + ]: 5342 : for (const CNode* pnode : m_nodes) {
1800 [ + + ]: 4192 : if (pnode->IsInboundConn()) nInbound++;
1801 : : }
1802 : 1150 : }
1803 : :
1804 [ - + ]: 1150 : if (!fNetworkActive) {
1805 [ # # # # ]: 0 : LogDebug(BCLog::NET, "connection from %s dropped: not accepting new connections\n", addr.ToStringAddrPort());
1806 : 0 : return;
1807 : : }
1808 : :
1809 [ - + ]: 1150 : if (!sock->IsSelectable()) {
1810 [ # # ]: 0 : LogInfo("connection from %s dropped: non-selectable socket\n", addr.ToStringAddrPort());
1811 : 0 : return;
1812 : : }
1813 : :
1814 : : // According to the internet TCP_NODELAY is not carried into accepted sockets
1815 : : // on all platforms. Set it again here just to be sure.
1816 : 1150 : const int on{1};
1817 [ - + ]: 1150 : if (sock->SetSockOpt(IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) == SOCKET_ERROR) {
1818 [ # # # # ]: 0 : LogDebug(BCLog::NET, "connection from %s: unable to set TCP_NODELAY, continuing anyway\n",
1819 : : addr.ToStringAddrPort());
1820 : : }
1821 : :
1822 : : // Don't accept connections from banned peers.
1823 [ + - + + ]: 1150 : bool banned = m_banman && m_banman->IsBanned(addr);
1824 [ + + + + ]: 1150 : if (!NetPermissions::HasFlag(permission_flags, NetPermissionFlags::NoBan) && banned)
1825 : : {
1826 [ + - + - ]: 3 : LogDebug(BCLog::NET, "connection from %s dropped (banned)\n", addr.ToStringAddrPort());
1827 : 3 : return;
1828 : : }
1829 : :
1830 : : // Only accept connections from discouraged peers if our inbound slots aren't (almost) full.
1831 [ + - + - ]: 1147 : bool discouraged = m_banman && m_banman->IsDiscouraged(addr);
1832 [ + + + + : 1147 : if (!NetPermissions::HasFlag(permission_flags, NetPermissionFlags::NoBan) && nInbound + 1 >= m_max_inbound && discouraged)
+ - ]
1833 : : {
1834 [ # # # # ]: 0 : LogDebug(BCLog::NET, "connection from %s dropped (discouraged)\n", addr.ToStringAddrPort());
1835 : 0 : return;
1836 : : }
1837 : :
1838 [ + + ]: 1147 : if (nInbound >= m_max_inbound)
1839 : : {
1840 [ + - ]: 1 : if (!AttemptToEvictConnection(/*evict_tx_relay_peer_only=*/false)) {
1841 : : // No connection to evict, disconnect the new connection
1842 [ + - ]: 1 : LogDebug(BCLog::NET, "failed to find an eviction candidate - connection dropped (full)\n");
1843 : 1 : return;
1844 : : }
1845 : : }
1846 : :
1847 : 1146 : NodeId id = GetNewNodeId();
1848 : 1146 : uint64_t nonce = GetDeterministicRandomizer(RANDOMIZER_ID_LOCALHOSTNONCE).Write(id).Finalize();
1849 : :
1850 : : // The V2Transport transparently falls back to V1 behavior when an incoming V1 connection is
1851 : : // detected, so use it whenever we signal NODE_P2P_V2.
1852 : 1146 : ServiceFlags local_services = GetLocalServices();
1853 : 1146 : const bool use_v2transport(local_services & NODE_P2P_V2);
1854 : :
1855 : 1146 : uint64_t network_id = GetDeterministicRandomizer(RANDOMIZER_ID_NETWORKKEY)
1856 [ + + ]: 1146 : .Write(inbound_onion ? NET_ONION : addr.GetNetClass())
1857 [ - + + - ]: 1146 : .Write(addr_bind.GetAddrBytes())
1858 [ + - + - ]: 1146 : .Write(addr_bind.GetPort()) // inbound connections use bind port
1859 [ + - ]: 1146 : .Finalize();
1860 : 1146 : CNode* pnode = new CNode(id,
1861 : 1146 : std::move(sock),
1862 [ + - ]: 2292 : CAddress{addr, NODE_NONE},
1863 : : CalculateKeyedNetGroup(addr),
1864 : : nonce,
1865 : : addr_bind,
1866 : 0 : /*addrNameIn=*/"",
1867 : : ConnectionType::INBOUND,
1868 : : inbound_onion,
1869 : : network_id,
1870 : 1146 : CNodeOptions{
1871 : : .permission_flags = permission_flags,
1872 : : .prefer_evict = discouraged,
1873 : 1146 : .recv_flood_size = nReceiveFloodSize,
1874 : : .use_v2transport = use_v2transport,
1875 [ + - + - : 2292 : });
+ - + - ]
1876 : 1146 : pnode->AddRef();
1877 : 1146 : m_msgproc->InitializeNode(*pnode, local_services);
1878 : 1146 : {
1879 : 1146 : LOCK(m_nodes_mutex);
1880 [ + - ]: 1146 : m_nodes.push_back(pnode);
1881 : 0 : }
1882 [ + - + - ]: 1146 : LogDebug(BCLog::NET, "connection from %s accepted\n", addr.ToStringAddrPort());
1883 : : TRACEPOINT(net, inbound_connection,
1884 : : pnode->GetId(),
1885 : : pnode->m_addr_name.c_str(),
1886 : : pnode->ConnectionTypeAsString().c_str(),
1887 : : pnode->ConnectedThroughNetwork(),
1888 : 1146 : GetNodeCount(ConnectionDirection::In));
1889 : :
1890 : : // We received a new connection, harvest entropy from the time (and our peer count)
1891 : 1146 : RandAddEvent((uint32_t)id);
1892 : : }
1893 : :
1894 : 164 : bool CConnman::AddConnection(const std::string& address, ConnectionType conn_type, bool use_v2transport = false)
1895 : : {
1896 : 164 : AssertLockNotHeld(m_nodes_mutex);
1897 : 164 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
1898 : 164 : std::optional<int> max_connections;
1899 [ + + + - ]: 164 : switch (conn_type) {
1900 : : case ConnectionType::INBOUND:
1901 : : case ConnectionType::PRIVATE_BROADCAST:
1902 : : return false;
1903 : : // no separate per-type limit for MANUAL because semAddnode limits them
1904 : : case ConnectionType::MANUAL:
1905 : : break;
1906 : 105 : case ConnectionType::OUTBOUND_FULL_RELAY:
1907 : 105 : max_connections = m_max_outbound_full_relay;
1908 : 105 : break;
1909 : 36 : case ConnectionType::BLOCK_RELAY:
1910 : 36 : max_connections = m_max_outbound_block_relay;
1911 : 36 : break;
1912 : : // no limit for ADDR_FETCH because -seednode has no limit either
1913 : : case ConnectionType::ADDR_FETCH:
1914 : : break;
1915 : : // no limit for FEELER connections since they're short-lived
1916 : : case ConnectionType::FEELER:
1917 : : break;
1918 : : } // no default case, so the compiler can warn about missing cases
1919 : :
1920 : : // Count existing connections
1921 [ + + + - ]: 641 : int existing_connections = WITH_LOCK(m_nodes_mutex,
1922 : : return std::count_if(m_nodes.begin(), m_nodes.end(), [conn_type](CNode* node) { return node->m_conn_type == conn_type; }););
1923 : :
1924 : : // Max connections of specified type already exist
1925 [ + + ]: 328 : if (max_connections != std::nullopt && existing_connections >= max_connections) return false;
1926 : :
1927 : : // Max total automatic outbound or manual connections already exist
1928 [ + + ]: 328 : CountingSemaphoreGrant<> grant(conn_type == ConnectionType::MANUAL ? *semAddnode : *semOutbound, true);
1929 [ + - ]: 164 : if (!grant) return false;
1930 : :
1931 [ + - - + ]: 328 : OpenNetworkConnection(/*addrConnect=*/CAddress{},
1932 : : /*fCountFailure=*/false,
1933 : : /*grant_outbound=*/std::move(grant),
1934 : : /*pszDest=*/address.c_str(),
1935 : : /*conn_type=*/conn_type,
1936 : : /*use_v2transport=*/use_v2transport,
1937 [ + - ]: 164 : /*proxy_override=*/std::nullopt);
1938 : 164 : return true;
1939 : : }
1940 : :
1941 : 423900 : void CConnman::DisconnectNodes()
1942 : : {
1943 : 423900 : AssertLockNotHeld(m_nodes_mutex);
1944 : 423900 : AssertLockNotHeld(m_reconnections_mutex);
1945 : :
1946 : : // Use a temporary variable to accumulate desired reconnections, so we don't need
1947 : : // m_reconnections_mutex while holding m_nodes_mutex.
1948 [ + - ]: 423900 : decltype(m_reconnections) reconnections_to_add;
1949 : :
1950 : 423900 : {
1951 [ + - ]: 423900 : LOCK(m_nodes_mutex);
1952 : :
1953 [ + + ]: 423900 : const bool network_active{fNetworkActive};
1954 [ + + ]: 423900 : if (!network_active) {
1955 : : // Disconnect any connected nodes
1956 [ + + ]: 156 : for (CNode* pnode : m_nodes) {
1957 [ + - ]: 7 : if (!pnode->fDisconnect) {
1958 [ + - + - : 7 : LogDebug(BCLog::NET, "Network not active, %s", pnode->DisconnectMsg());
+ - + - ]
1959 : 7 : pnode->fDisconnect = true;
1960 : : }
1961 : : }
1962 : : }
1963 : :
1964 : : // Disconnect unused nodes
1965 [ + - ]: 423900 : std::vector<CNode*> nodes_copy = m_nodes;
1966 [ + + ]: 1078093 : for (CNode* pnode : nodes_copy)
1967 : : {
1968 [ + + ]: 654193 : if (pnode->fDisconnect)
1969 : : {
1970 : : // remove from m_nodes
1971 : 1050 : m_nodes.erase(remove(m_nodes.begin(), m_nodes.end(), pnode), m_nodes.end());
1972 : :
1973 : : // Add to reconnection list if appropriate. We don't reconnect right here, because
1974 : : // the creation of a connection is a blocking operation (up to several seconds),
1975 : : // and we don't want to hold up the socket handler thread for that long.
1976 [ + + + + ]: 1050 : if (network_active && pnode->m_transport->ShouldReconnectV1()) {
1977 : 7 : reconnections_to_add.push_back({
1978 : 7 : .proxy_override = pnode->m_proxy_override,
1979 : 7 : .addr_connect = pnode->addr,
1980 [ - + ]: 7 : .grant = std::move(pnode->grantOutbound),
1981 : 7 : .destination = pnode->m_dest,
1982 : 7 : .conn_type = pnode->m_conn_type,
1983 : : .use_v2transport = false});
1984 [ + - + - : 7 : LogDebug(BCLog::NET, "retrying with v1 transport protocol for peer=%d\n", pnode->GetId());
+ - ]
1985 : : }
1986 : :
1987 : : // release outbound grant (if any)
1988 : 1050 : pnode->grantOutbound.Release();
1989 : :
1990 : : // close socket and cleanup
1991 [ + - ]: 1050 : pnode->CloseSocketDisconnect();
1992 : :
1993 : : // update connection count by network
1994 [ + + + - ]: 1050 : if (pnode->IsManualOrFullOutboundConn()) --m_network_conn_counts[pnode->addr.GetNetwork()];
1995 : :
1996 : : // hold in disconnected pool until all refs are released
1997 [ + - ]: 1050 : pnode->Release();
1998 [ + - ]: 1050 : m_nodes_disconnected.push_back(pnode);
1999 : : }
2000 : : }
2001 [ + - ]: 423900 : }
2002 : 423900 : {
2003 : : // Delete disconnected nodes
2004 [ + - ]: 423900 : std::list<CNode*> nodes_disconnected_copy = m_nodes_disconnected;
2005 [ + + ]: 424954 : for (CNode* pnode : nodes_disconnected_copy)
2006 : : {
2007 : : // Destroy the object only after other threads have stopped using it.
2008 [ + + ]: 1054 : if (pnode->GetRefCount() <= 0) {
2009 : 1050 : m_nodes_disconnected.remove(pnode);
2010 [ + - ]: 1050 : DeleteNode(pnode);
2011 : : }
2012 : : }
2013 : 0 : }
2014 : 423900 : {
2015 : : // Move entries from reconnections_to_add to m_reconnections.
2016 [ + - ]: 423900 : LOCK(m_reconnections_mutex);
2017 [ + - ]: 423900 : m_reconnections.splice(m_reconnections.end(), std::move(reconnections_to_add));
2018 : 423900 : }
2019 [ + - - + : 423914 : }
+ - - - -
- ]
2020 : :
2021 : 423900 : void CConnman::NotifyNumConnectionsChanged()
2022 : : {
2023 : 423900 : AssertLockNotHeld(m_nodes_mutex);
2024 : :
2025 : 423900 : size_t nodes_size;
2026 : 423900 : {
2027 : 423900 : LOCK(m_nodes_mutex);
2028 [ - + + - ]: 423900 : nodes_size = m_nodes.size();
2029 : 423900 : }
2030 [ + + ]: 423900 : if(nodes_size != nPrevNodeCount) {
2031 : 2642 : nPrevNodeCount = nodes_size;
2032 [ + - ]: 2642 : if (m_client_interface) {
2033 : 2642 : m_client_interface->NotifyNumConnectionsChanged(nodes_size);
2034 : : }
2035 : : }
2036 : 423900 : }
2037 : :
2038 : 1033727 : bool CConnman::ShouldRunInactivityChecks(const CNode& node, NodeClock::time_point now) const
2039 : : {
2040 : 1033727 : return node.m_connected + m_peer_connect_timeout < now;
2041 : : }
2042 : :
2043 : 652358 : bool CConnman::InactivityCheck(const CNode& node, NodeClock::time_point now) const
2044 : : {
2045 : : // Tests that see disconnects after using mocktime can start nodes with a
2046 : : // large timeout. For example, -peertimeout=999999999.
2047 : 652358 : const auto last_send{node.m_last_send.load()};
2048 : 652358 : const auto last_recv{node.m_last_recv.load()};
2049 : :
2050 [ + + ]: 652358 : if (!ShouldRunInactivityChecks(node, now)) return false;
2051 : :
2052 [ + + ]: 90 : bool has_received{last_recv > NodeClock::epoch};
2053 : 90 : bool has_sent{last_send > NodeClock::epoch};
2054 : :
2055 [ + + ]: 90 : if (!has_received || !has_sent) {
2056 [ + + ]: 3 : std::string has_never;
2057 [ + + + - ]: 3 : if (!has_received) has_never += ", never received from peer";
2058 [ + - + - ]: 3 : if (!has_sent) has_never += ", never sent to peer";
2059 [ + - + - : 3 : LogDebug(BCLog::NET,
+ - + - ]
2060 : : "socket no message in first %i seconds%s, %s",
2061 : : count_seconds(m_peer_connect_timeout),
2062 : : has_never,
2063 : : node.DisconnectMsg()
2064 : : );
2065 : 3 : return true;
2066 : 3 : }
2067 : :
2068 [ - + ]: 87 : if (now > last_send + TIMEOUT_INTERVAL) {
2069 [ # # # # ]: 0 : LogDebug(BCLog::NET,
2070 : : "socket sending timeout: %is, %s", Ticks<std::chrono::seconds>(now - last_send),
2071 : : node.DisconnectMsg()
2072 : : );
2073 : 0 : return true;
2074 : : }
2075 : :
2076 [ - + ]: 87 : if (now > last_recv + TIMEOUT_INTERVAL) {
2077 [ # # # # ]: 0 : LogDebug(BCLog::NET,
2078 : : "socket receive timeout: %is, %s", Ticks<std::chrono::seconds>(now - last_recv),
2079 : : node.DisconnectMsg()
2080 : : );
2081 : 0 : return true;
2082 : : }
2083 : :
2084 [ + + ]: 87 : if (!node.fSuccessfullyConnected) {
2085 [ + + ]: 8 : if (node.m_transport->GetInfo().transport_type == TransportProtocolType::DETECTING) {
2086 [ + - + - ]: 2 : LogDebug(BCLog::NET, "V2 handshake timeout, %s", node.DisconnectMsg());
2087 : : } else {
2088 [ + - + - ]: 6 : LogDebug(BCLog::NET, "version handshake timeout, %s", node.DisconnectMsg());
2089 : : }
2090 : 8 : return true;
2091 : : }
2092 : :
2093 : : return false;
2094 : : }
2095 : :
2096 : 423900 : Sock::EventsPerSock CConnman::GenerateWaitSockets(std::span<CNode* const> nodes)
2097 : : {
2098 : 423900 : Sock::EventsPerSock events_per_sock;
2099 : :
2100 [ + + ]: 849554 : for (const ListenSocket& hListenSocket : vhListenSocket) {
2101 [ + - ]: 425654 : events_per_sock.emplace(hListenSocket.sock, Sock::Events{Sock::RecvEvent});
2102 : : }
2103 : :
2104 [ + + ]: 1077043 : for (CNode* pnode : nodes) {
2105 [ + - ]: 653143 : bool select_recv = !pnode->fPauseRecv;
2106 : 653143 : bool select_send;
2107 : 653143 : {
2108 [ + - ]: 653143 : LOCK(pnode->cs_vSend);
2109 : : // Sending is possible if either there are bytes to send right now, or if there will be
2110 : : // once a potential message from vSendMsg is handed to the transport. GetBytesToSend
2111 : : // determines both of these in a single call.
2112 [ + + ]: 653143 : const auto& [to_send, more, _msg_type] = pnode->m_transport->GetBytesToSend(!pnode->vSendMsg.empty());
2113 [ + + + - : 1304633 : select_send = !to_send.empty() || more;
+ - ]
2114 : 653143 : }
2115 [ + + ]: 653143 : if (!select_recv && !select_send) continue;
2116 : :
2117 [ + - ]: 652059 : LOCK(pnode->m_sock_mutex);
2118 [ + - ]: 652059 : if (pnode->m_sock) {
2119 [ + + - + ]: 1302465 : Sock::Event event = (select_send ? Sock::SendEvent : 0) | (select_recv ? Sock::RecvEvent : 0);
2120 [ + - ]: 652059 : events_per_sock.emplace(pnode->m_sock, Sock::Events{event});
2121 : : }
2122 : 652059 : }
2123 : :
2124 : 423900 : return events_per_sock;
2125 : 0 : }
2126 : :
2127 : 423900 : void CConnman::SocketHandler()
2128 : : {
2129 : 423900 : AssertLockNotHeld(m_nodes_mutex);
2130 : 423900 : AssertLockNotHeld(m_total_bytes_sent_mutex);
2131 : :
2132 [ + - ]: 423900 : Sock::EventsPerSock events_per_sock;
2133 : :
2134 : 423900 : {
2135 [ + - ]: 423900 : const NodesSnapshot snap{*this, /*shuffle=*/false};
2136 : :
2137 : 423900 : const auto timeout = std::chrono::milliseconds(SELECT_TIMEOUT_MILLISECONDS);
2138 : :
2139 : : // Check for the readiness of the already connected sockets and the
2140 : : // listening sockets in one call ("readiness" as in poll(2) or
2141 : : // select(2)). If none are ready, wait for a short while and return
2142 : : // empty sets.
2143 [ - + + - ]: 847800 : events_per_sock = GenerateWaitSockets(snap.Nodes());
2144 [ + + + - : 423900 : if (events_per_sock.empty() || !events_per_sock.begin()->first->WaitMany(timeout, events_per_sock)) {
- + ]
2145 [ + - ]: 179 : m_interrupt_net->sleep_for(timeout);
2146 : : }
2147 : :
2148 : : // Service (send/receive) each of the already connected nodes.
2149 [ + - ]: 423900 : SocketHandlerConnected(snap.Nodes(), events_per_sock);
2150 : 423900 : }
2151 : :
2152 : : // Accept new connections from listening sockets.
2153 [ + - ]: 423900 : SocketHandlerListening(events_per_sock);
2154 : 423900 : }
2155 : :
2156 : 423900 : void CConnman::SocketHandlerConnected(const std::vector<CNode*>& nodes,
2157 : : const Sock::EventsPerSock& events_per_sock)
2158 : : {
2159 : 423900 : AssertLockNotHeld(m_total_bytes_sent_mutex);
2160 : :
2161 : 423900 : const auto now{NodeClock::now()};
2162 : :
2163 [ + + ]: 1076258 : for (CNode* pnode : nodes) {
2164 [ + + ]: 652781 : if (m_interrupt_net->interrupted()) {
2165 : : return;
2166 : : }
2167 : :
2168 : : //
2169 : : // Receive
2170 : : //
2171 : 652358 : bool recvSet = false;
2172 : 652358 : bool sendSet = false;
2173 : 652358 : bool errorSet = false;
2174 : 652358 : {
2175 : 652358 : LOCK(pnode->m_sock_mutex);
2176 [ - + ]: 652358 : if (!pnode->m_sock) {
2177 [ # # ]: 0 : continue;
2178 : : }
2179 [ + - + - ]: 1304716 : const auto it = events_per_sock.find(pnode->m_sock);
2180 [ + + + - ]: 1303632 : if (it != events_per_sock.end()) {
2181 : 651274 : recvSet = it->second.occurred & Sock::RecvEvent;
2182 : 651274 : sendSet = it->second.occurred & Sock::SendEvent;
2183 : 651274 : errorSet = it->second.occurred & Sock::ErrorEvent;
2184 : : }
2185 : 0 : }
2186 : :
2187 [ + + ]: 652358 : if (sendSet) {
2188 : : // Send data
2189 [ + - + - ]: 2748 : auto [bytes_sent, data_left] = WITH_LOCK(pnode->cs_vSend, return SocketSendData(*pnode));
2190 [ + - ]: 916 : if (bytes_sent) {
2191 : 916 : RecordBytesSent(bytes_sent);
2192 : :
2193 : : // If both receiving and (non-optimistic) sending were possible, we first attempt
2194 : : // sending. If that succeeds, but does not fully drain the send queue, do not
2195 : : // attempt to receive. This avoids needlessly queueing data if the remote peer
2196 : : // is slow at receiving data, by means of TCP flow control. We only do this when
2197 : : // sending actually succeeded to make sure progress is always made; otherwise a
2198 : : // deadlock would be possible when both sides have data to send, but neither is
2199 : : // receiving.
2200 [ + + ]: 916 : if (data_left) recvSet = false;
2201 : : }
2202 : : }
2203 : :
2204 [ + + ]: 652358 : if (recvSet || errorSet)
2205 : : {
2206 : : // typical socket buffer is 8K-64K
2207 : 220876 : uint8_t pchBuf[0x10000];
2208 : 220876 : int nBytes = 0;
2209 : 220876 : {
2210 : 220876 : LOCK(pnode->m_sock_mutex);
2211 [ - + ]: 220876 : if (!pnode->m_sock) {
2212 [ # # ]: 0 : continue;
2213 : : }
2214 [ + - + - ]: 220876 : nBytes = pnode->m_sock->Recv(pchBuf, sizeof(pchBuf), MSG_DONTWAIT);
2215 : 0 : }
2216 [ + + ]: 220876 : if (nBytes > 0)
2217 : : {
2218 : 220202 : bool notify = false;
2219 [ + + ]: 220202 : if (!pnode->ReceiveMsgBytes({pchBuf, (size_t)nBytes}, notify)) {
2220 [ + - + - ]: 10 : LogDebug(BCLog::NET,
2221 : : "receiving message bytes failed, %s",
2222 : : pnode->DisconnectMsg()
2223 : : );
2224 : 10 : pnode->CloseSocketDisconnect();
2225 : : }
2226 : 220202 : RecordBytesRecv(nBytes);
2227 [ + + ]: 220202 : if (notify) {
2228 : 114107 : pnode->MarkReceivedMsgsForProcessing();
2229 : 114107 : WakeMessageHandler();
2230 : : }
2231 : : }
2232 [ + + ]: 674 : else if (nBytes == 0)
2233 : : {
2234 : : // socket closed gracefully
2235 [ + - ]: 655 : if (!pnode->fDisconnect) {
2236 [ + - + - ]: 655 : LogDebug(BCLog::NET, "socket closed, %s", pnode->DisconnectMsg());
2237 : : }
2238 : 655 : pnode->CloseSocketDisconnect();
2239 : : }
2240 [ + - ]: 19 : else if (nBytes < 0)
2241 : : {
2242 : : // error
2243 : 19 : int nErr = WSAGetLastError();
2244 [ + - + - ]: 19 : if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS)
2245 : : {
2246 [ + - ]: 19 : if (!pnode->fDisconnect) {
2247 [ + - + - : 19 : LogDebug(BCLog::NET, "socket recv error, %s: %s", pnode->DisconnectMsg(), NetworkErrorString(nErr));
+ - ]
2248 : : }
2249 : 19 : pnode->CloseSocketDisconnect();
2250 : : }
2251 : : }
2252 : : }
2253 : :
2254 [ + + ]: 652358 : if (InactivityCheck(*pnode, now)) pnode->fDisconnect = true;
2255 : : }
2256 : : }
2257 : :
2258 : 423900 : void CConnman::SocketHandlerListening(const Sock::EventsPerSock& events_per_sock)
2259 : : {
2260 : 423900 : AssertLockNotHeld(m_nodes_mutex);
2261 : :
2262 [ + + ]: 848472 : for (const ListenSocket& listen_socket : vhListenSocket) {
2263 [ + + ]: 425635 : if (m_interrupt_net->interrupted()) {
2264 : : return;
2265 : : }
2266 [ + - + - ]: 849144 : const auto it = events_per_sock.find(listen_socket.sock);
2267 [ + - + + ]: 425722 : if (it != events_per_sock.end() && it->second.occurred & Sock::RecvEvent) {
2268 : 1150 : AcceptConnection(listen_socket);
2269 : : }
2270 : : }
2271 : : }
2272 : :
2273 : 1083 : void CConnman::ThreadSocketHandler()
2274 : : {
2275 : 1083 : AssertLockNotHeld(m_total_bytes_sent_mutex);
2276 : :
2277 [ + + ]: 424983 : while (!m_interrupt_net->interrupted()) {
2278 : 423900 : DisconnectNodes();
2279 : 423900 : NotifyNumConnectionsChanged();
2280 : 423900 : SocketHandler();
2281 : : }
2282 : 1083 : }
2283 : :
2284 : 211796 : void CConnman::WakeMessageHandler()
2285 : : {
2286 : 211796 : {
2287 : 211796 : LOCK(mutexMsgProc);
2288 [ + - ]: 211796 : fMsgProcWake = true;
2289 : 211796 : }
2290 : 211796 : condMsgProc.notify_one();
2291 : 211796 : }
2292 : :
2293 : 13 : void CConnman::ThreadDNSAddressSeed()
2294 : : {
2295 : 13 : int outbound_connection_count = 0;
2296 : :
2297 [ + - - + ]: 13 : if (!gArgs.GetArgs("-seednode").empty()) {
2298 : 0 : auto start = NodeClock::now();
2299 : 0 : constexpr std::chrono::seconds SEEDNODE_TIMEOUT = 30s;
2300 : 0 : LogInfo("-seednode enabled. Trying the provided seeds for %d seconds before defaulting to the dnsseeds.\n", SEEDNODE_TIMEOUT.count());
2301 [ # # ]: 0 : while (!m_interrupt_net->interrupted()) {
2302 [ # # ]: 0 : if (!m_interrupt_net->sleep_for(500ms)) {
2303 : : return;
2304 : : }
2305 : :
2306 : : // Abort if we have spent enough time without reaching our target.
2307 : : // Giving seed nodes 30 seconds so this does not become a race against fixedseeds (which triggers after 1 min)
2308 [ # # ]: 0 : if (NodeClock::now() > start + SEEDNODE_TIMEOUT) {
2309 : 0 : LogInfo("Couldn't connect to enough peers via seed nodes. Handing fetch logic to the DNS seeds.\n");
2310 : 0 : break;
2311 : : }
2312 : :
2313 : 0 : outbound_connection_count = GetFullOutboundConnCount();
2314 [ # # ]: 0 : if (outbound_connection_count >= SEED_OUTBOUND_CONNECTION_THRESHOLD) {
2315 : 0 : LogInfo("P2P peers available. Finished fetching data from seed nodes.\n");
2316 : 0 : break;
2317 : : }
2318 : : }
2319 : : }
2320 : :
2321 : 13 : FastRandomContext rng;
2322 [ + - ]: 13 : std::vector<std::string> seeds = m_params.DNSSeeds();
2323 : 13 : std::shuffle(seeds.begin(), seeds.end(), rng);
2324 : 13 : int seeds_right_now = 0; // Number of seeds left before testing if we have enough connections
2325 : :
2326 [ + - + - : 13 : if (gArgs.GetBoolArg("-forcednsseed", DEFAULT_FORCEDNSSEED)) {
+ + ]
2327 : : // When -forcednsseed is provided, query all.
2328 [ - + ]: 1 : seeds_right_now = seeds.size();
2329 [ + - + + ]: 12 : } else if (addrman.get().Size() == 0) {
2330 : : // If we have no known peers, query all.
2331 : : // This will occur on the first run, or if peers.dat has been
2332 : : // deleted.
2333 [ - + ]: 7 : seeds_right_now = seeds.size();
2334 : : }
2335 : :
2336 : : // Proceed with dnsseeds if seednodes hasn't reached the target or if forcednsseed is set
2337 [ + - ]: 13 : if (outbound_connection_count < SEED_OUTBOUND_CONNECTION_THRESHOLD || seeds_right_now) {
2338 : : // goal: only query DNS seed if address need is acute
2339 : : // * If we have a reasonable number of peers in addrman, spend
2340 : : // some time trying them first. This improves user privacy by
2341 : : // creating fewer identifying DNS requests, reduces trust by
2342 : : // giving seeds less influence on the network topology, and
2343 : : // reduces traffic to the seeds.
2344 : : // * When querying DNS seeds query a few at once, this ensures
2345 : : // that we don't give DNS seeds the ability to eclipse nodes
2346 : : // that query them.
2347 : : // * If we continue having problems, eventually query all the
2348 : : // DNS seeds, and if that fails too, also try the fixed seeds.
2349 : : // (done in ThreadOpenConnections)
2350 : 13 : int found = 0;
2351 [ + - + + ]: 13 : const std::chrono::seconds seeds_wait_time = (addrman.get().Size() >= DNSSEEDS_DELAY_PEER_THRESHOLD ? DNSSEEDS_DELAY_MANY_PEERS : DNSSEEDS_DELAY_FEW_PEERS);
2352 : :
2353 [ + + ]: 22 : for (const std::string& seed : seeds) {
2354 [ + + ]: 13 : if (seeds_right_now == 0) {
2355 : 5 : seeds_right_now += DNSSEEDS_TO_QUERY_AT_ONCE;
2356 : :
2357 [ + - + - ]: 5 : if (addrman.get().Size() > 0) {
2358 [ + - ]: 5 : LogInfo("Waiting %d seconds before querying DNS seeds.\n", seeds_wait_time.count());
2359 : 5 : std::chrono::seconds to_wait = seeds_wait_time;
2360 [ + + ]: 6 : while (to_wait.count() > 0) {
2361 : : // if sleeping for the MANY_PEERS interval, wake up
2362 : : // early to see if we have enough peers and can stop
2363 : : // this thread entirely freeing up its resources
2364 : 5 : std::chrono::seconds w = std::min(DNSSEEDS_DELAY_FEW_PEERS, to_wait);
2365 [ + - + + ]: 5 : if (!m_interrupt_net->sleep_for(w)) return;
2366 [ + - ]: 2 : to_wait -= w;
2367 : :
2368 [ + - + + ]: 2 : if (GetFullOutboundConnCount() >= SEED_OUTBOUND_CONNECTION_THRESHOLD) {
2369 [ - + ]: 1 : if (found > 0) {
2370 [ # # ]: 0 : LogInfo("%d addresses found from DNS seeds\n", found);
2371 [ # # ]: 0 : LogInfo("P2P peers available. Finished DNS seeding.\n");
2372 : : } else {
2373 [ + - ]: 1 : LogInfo("P2P peers available. Skipped DNS seeding.\n");
2374 : : }
2375 : 1 : return;
2376 : : }
2377 : : }
2378 : : }
2379 : : }
2380 : :
2381 [ + - + - ]: 9 : if (m_interrupt_net->interrupted()) return;
2382 : :
2383 : : // hold off on querying seeds if P2P network deactivated
2384 [ - + ]: 9 : if (!fNetworkActive) {
2385 [ # # ]: 0 : LogInfo("Waiting for network to be reactivated before querying DNS seeds.\n");
2386 : 0 : do {
2387 [ # # # # ]: 0 : if (!m_interrupt_net->sleep_for(1s)) return;
2388 [ # # ]: 0 : } while (!fNetworkActive);
2389 : : }
2390 : :
2391 [ + - ]: 9 : LogInfo("Loading addresses from DNS seed %s\n", seed);
2392 : : // If -proxy is in use, we make an ADDR_FETCH connection to the DNS resolved peer address
2393 : : // for the base dns seed domain in chainparams
2394 [ + - + - ]: 9 : if (HaveNameProxy()) {
2395 [ + - ]: 9 : AddAddrFetch(seed);
2396 : : } else {
2397 : 0 : std::vector<CAddress> vAdd;
2398 : 0 : constexpr ServiceFlags requiredServiceBits{SeedsServiceFlags()};
2399 [ # # ]: 0 : std::string host = strprintf("x%x.%s", requiredServiceBits, seed);
2400 [ # # ]: 0 : CNetAddr resolveSource;
2401 [ # # # # ]: 0 : if (!resolveSource.SetInternal(host)) {
2402 : 0 : continue;
2403 : : }
2404 : : // Limit number of IPs learned from a single DNS seed. This limit exists to prevent the results from
2405 : : // one DNS seed from dominating AddrMan. Note that the number of results from a UDP DNS query is
2406 : : // bounded to 33 already, but it is possible for it to use TCP where a larger number of results can be
2407 : : // returned.
2408 : 0 : unsigned int nMaxIPs = 32;
2409 [ # # # # ]: 0 : const auto addresses{LookupHost(host, nMaxIPs, true)};
2410 [ # # ]: 0 : if (!addresses.empty()) {
2411 [ # # ]: 0 : for (const CNetAddr& ip : addresses) {
2412 [ # # ]: 0 : CAddress addr = CAddress(CService(ip, m_params.GetDefaultPort()), SeedsAssumedServiceFlags());
2413 : 0 : addr.nTime = rng.rand_uniform_delay(Now<NodeSeconds>() - 3 * 24h, -4 * 24h); // use a random age between 3 and 7 days old
2414 [ # # ]: 0 : vAdd.push_back(addr);
2415 : 0 : found++;
2416 : 0 : }
2417 [ # # ]: 0 : addrman.get().Add(vAdd, resolveSource);
2418 : : } else {
2419 : : // If the seed does not support a subdomain with our desired service bits,
2420 : : // we make an ADDR_FETCH connection to the DNS resolved peer address for the
2421 : : // base dns seed domain in chainparams
2422 [ # # ]: 0 : AddAddrFetch(seed);
2423 : : }
2424 : 0 : }
2425 : 9 : --seeds_right_now;
2426 : : }
2427 [ + - ]: 9 : LogInfo("%d addresses found from DNS seeds\n", found);
2428 : : } else {
2429 [ # # ]: 0 : LogInfo("Skipping DNS seeds. Enough peers have been found\n");
2430 : : }
2431 : 13 : }
2432 : :
2433 : 1094 : void CConnman::DumpAddresses()
2434 : : {
2435 : 1094 : const auto start{SteadyClock::now()};
2436 : :
2437 : 1094 : DumpPeerAddresses(::gArgs, addrman);
2438 : :
2439 [ + - ]: 1094 : LogDebug(BCLog::NET, "Flushed %d addresses to peers.dat %dms",
2440 : : addrman.get().Size(), Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
2441 : 1094 : }
2442 : :
2443 : 164 : void CConnman::ProcessAddrFetch()
2444 : : {
2445 : 164 : AssertLockNotHeld(m_nodes_mutex);
2446 : 164 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
2447 [ + - ]: 164 : std::string strDest;
2448 : 164 : {
2449 [ + - ]: 164 : LOCK(m_addr_fetches_mutex);
2450 [ + + ]: 164 : if (m_addr_fetches.empty())
2451 [ + - ]: 161 : return;
2452 [ + - ]: 3 : strDest = m_addr_fetches.front();
2453 [ + - ]: 3 : m_addr_fetches.pop_front();
2454 : 161 : }
2455 : : // Attempt v2 connection if we support v2 - we'll reconnect with v1 if our
2456 : : // peer doesn't support it or immediately disconnects us for another reason.
2457 [ + - ]: 3 : const bool use_v2transport(GetLocalServices() & NODE_P2P_V2);
2458 [ + - ]: 3 : CAddress addr;
2459 : 3 : CountingSemaphoreGrant<> grant(*semOutbound, /*fTry=*/true);
2460 [ + - ]: 3 : if (grant) {
2461 : 3 : OpenNetworkConnection(/*addrConnect=*/addr,
2462 : : /*fCountFailure=*/false,
2463 : : /*grant_outbound=*/std::move(grant),
2464 : : /*pszDest=*/strDest.c_str(),
2465 : : /*conn_type=*/ConnectionType::ADDR_FETCH,
2466 : : /*use_v2transport=*/use_v2transport,
2467 [ + - ]: 6 : /*proxy_override=*/std::nullopt);
2468 : : }
2469 : 164 : }
2470 : :
2471 : 110 : bool CConnman::GetTryNewOutboundPeer() const
2472 : : {
2473 : 110 : return m_try_another_outbound_peer;
2474 : : }
2475 : :
2476 : 1348 : void CConnman::SetTryNewOutboundPeer(bool flag)
2477 : : {
2478 : 1348 : m_try_another_outbound_peer = flag;
2479 [ + - + + ]: 2695 : LogDebug(BCLog::NET, "setting try another outbound peer=%s\n", flag ? "true" : "false");
2480 : 1348 : }
2481 : :
2482 : 51 : void CConnman::StartExtraBlockRelayPeers()
2483 : : {
2484 [ + - ]: 51 : LogDebug(BCLog::NET, "enabling extra block-relay-only peers\n");
2485 : 51 : m_start_extra_block_relay_peers = true;
2486 : 51 : }
2487 : :
2488 : : // Return the number of outbound connections that are full relay (not blocks only)
2489 : 2 : int CConnman::GetFullOutboundConnCount() const
2490 : : {
2491 : 2 : AssertLockNotHeld(m_nodes_mutex);
2492 : :
2493 : 2 : int nRelevant = 0;
2494 : 2 : {
2495 : 2 : LOCK(m_nodes_mutex);
2496 [ + + ]: 6 : for (const CNode* pnode : m_nodes) {
2497 [ + - + + ]: 4 : if (pnode->fSuccessfullyConnected && pnode->IsFullOutboundConn()) ++nRelevant;
2498 : : }
2499 : 2 : }
2500 : 2 : return nRelevant;
2501 : : }
2502 : :
2503 : : // Return the number of peers we have over our outbound connection limit
2504 : : // Exclude peers that are marked for disconnect, or are going to be
2505 : : // disconnected soon (eg ADDR_FETCH and FEELER)
2506 : : // Also exclude peers that haven't finished initial connection handshake yet
2507 : : // (so that we don't decide we're over our desired connection limit, and then
2508 : : // evict some peer that has finished the handshake)
2509 : 198 : int CConnman::GetExtraFullOutboundCount() const
2510 : : {
2511 : 198 : AssertLockNotHeld(m_nodes_mutex);
2512 : :
2513 : 198 : int full_outbound_peers = 0;
2514 : 198 : {
2515 : 198 : LOCK(m_nodes_mutex);
2516 [ + + ]: 530 : for (const CNode* pnode : m_nodes) {
2517 [ + - + + : 332 : if (pnode->fSuccessfullyConnected && !pnode->fDisconnect && pnode->IsFullOutboundConn()) {
+ + ]
2518 : 62 : ++full_outbound_peers;
2519 : : }
2520 : : }
2521 : 198 : }
2522 [ + + ]: 198 : return std::max(full_outbound_peers - m_max_outbound_full_relay, 0);
2523 : : }
2524 : :
2525 : 198 : int CConnman::GetExtraBlockRelayCount() const
2526 : : {
2527 : 198 : AssertLockNotHeld(m_nodes_mutex);
2528 : :
2529 : 198 : int block_relay_peers = 0;
2530 : 198 : {
2531 : 198 : LOCK(m_nodes_mutex);
2532 [ + + ]: 530 : for (const CNode* pnode : m_nodes) {
2533 [ + - + + : 332 : if (pnode->fSuccessfullyConnected && !pnode->fDisconnect && pnode->IsBlockOnlyConn()) {
+ + ]
2534 : 13 : ++block_relay_peers;
2535 : : }
2536 : : }
2537 : 198 : }
2538 [ + + ]: 198 : return std::max(block_relay_peers - m_max_outbound_block_relay, 0);
2539 : : }
2540 : :
2541 : 1110 : bool CConnman::EvictTxPeerIfFull(std::optional<NodeId> protect_peer)
2542 : : {
2543 : 1110 : int tx_inbound_peers{0};
2544 : 1110 : {
2545 : 1110 : LOCK(m_nodes_mutex);
2546 [ + + ]: 6172 : for (const CNode* pnode : m_nodes) {
2547 [ + - + + : 5062 : if (!pnode->fDisconnect && pnode->IsInboundConn() && pnode->m_relays_txs) {
+ + ]
2548 : 4826 : ++tx_inbound_peers;
2549 : : }
2550 : : }
2551 : 1110 : }
2552 [ + + ]: 1110 : if (tx_inbound_peers > m_max_inbound_full_relay) {
2553 : 5 : return AttemptToEvictConnection(/*evict_tx_relay_peer_only=*/true, protect_peer);
2554 : : }
2555 : : return true;
2556 : : }
2557 : :
2558 : 130 : std::unordered_set<Network> CConnman::GetReachableEmptyNetworks() const
2559 : : {
2560 : 130 : std::unordered_set<Network> networks{};
2561 [ + + ]: 1040 : for (int n = 0; n < NET_MAX; n++) {
2562 : 910 : enum Network net = (enum Network)n;
2563 [ + + ]: 910 : if (net == NET_UNROUTABLE || net == NET_INTERNAL) continue;
2564 [ + - + + : 650 : if (g_reachable_nets.Contains(net) && addrman.get().Size(net, std::nullopt) == 0) {
+ - + + ]
2565 [ + - ]: 339 : networks.insert(net);
2566 : : }
2567 : : }
2568 : 130 : return networks;
2569 : 0 : }
2570 : :
2571 : 38 : bool CConnman::MultipleManualOrFullOutboundConns(Network net) const
2572 : : {
2573 : 38 : AssertLockHeld(m_nodes_mutex);
2574 : 38 : return m_network_conn_counts[net] > 1;
2575 : : }
2576 : :
2577 : 0 : bool CConnman::MaybePickPreferredNetwork(std::optional<Network>& network)
2578 : : {
2579 : 0 : AssertLockNotHeld(m_nodes_mutex);
2580 : :
2581 : 0 : std::array<Network, 5> nets{NET_IPV4, NET_IPV6, NET_ONION, NET_I2P, NET_CJDNS};
2582 : 0 : std::shuffle(nets.begin(), nets.end(), FastRandomContext());
2583 : :
2584 : 0 : LOCK(m_nodes_mutex);
2585 [ # # ]: 0 : for (const auto net : nets) {
2586 [ # # # # : 0 : if (g_reachable_nets.Contains(net) && m_network_conn_counts[net] == 0 && addrman.get().Size(net) != 0) {
# # # # #
# ]
2587 : 0 : network = net;
2588 : 0 : return true;
2589 : : }
2590 : : }
2591 : :
2592 : : return false;
2593 : 0 : }
2594 : :
2595 : 40 : void CConnman::ThreadOpenConnections(const std::vector<std::string> connect, std::span<const std::string> seed_nodes)
2596 : : {
2597 : 40 : AssertLockNotHeld(m_nodes_mutex);
2598 : 40 : AssertLockNotHeld(m_reconnections_mutex);
2599 : 40 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
2600 : :
2601 : 40 : FastRandomContext rng;
2602 : : // Connect to specific addresses
2603 [ + + ]: 40 : if (!connect.empty())
2604 : : {
2605 : : // Attempt v2 connection if we support v2 - we'll reconnect with v1 if our
2606 : : // peer doesn't support it or immediately disconnects us for another reason.
2607 [ + - ]: 5 : const bool use_v2transport(GetLocalServices() & NODE_P2P_V2);
2608 : 5 : for (int64_t nLoop = 0;; nLoop++)
2609 : : {
2610 [ + + ]: 12 : for (const std::string& strAddr : connect)
2611 : : {
2612 [ + - - + ]: 14 : OpenNetworkConnection(/*addrConnect=*/CAddress{CService{}, NODE_NONE},
2613 : : /*fCountFailure=*/false,
2614 : : /*grant_outbound=*/{},
2615 : : /*pszDest=*/strAddr.c_str(),
2616 : : /*conn_type=*/ConnectionType::MANUAL,
2617 : : /*use_v2transport=*/use_v2transport,
2618 [ + - ]: 7 : /*proxy_override=*/std::nullopt);
2619 [ + - - + ]: 7 : for (int i = 0; i < 10 && i < nLoop; i++)
2620 : : {
2621 [ # # # # ]: 0 : if (!m_interrupt_net->sleep_for(500ms)) {
2622 : : return;
2623 : : }
2624 : : }
2625 : : }
2626 [ + - - + ]: 5 : if (!m_interrupt_net->sleep_for(500ms)) {
2627 : : return;
2628 : : }
2629 [ # # ]: 0 : PerformReconnections();
2630 : 0 : }
2631 : : }
2632 : :
2633 : : // Initiate network connections
2634 : 35 : auto start = GetTime<std::chrono::microseconds>();
2635 : :
2636 : : // Minimum time before next feeler connection (in microseconds).
2637 : 35 : auto next_feeler = start + rng.rand_exp_duration(FEELER_INTERVAL);
2638 : 35 : auto next_extra_block_relay = start + rng.rand_exp_duration(EXTRA_BLOCK_RELAY_ONLY_PEER_INTERVAL);
2639 [ + - ]: 35 : auto next_extra_network_peer{start + rng.rand_exp_duration(EXTRA_NETWORK_PEER_INTERVAL)};
2640 [ + - + - ]: 35 : const bool dnsseed = gArgs.GetBoolArg("-dnsseed", DEFAULT_DNSSEED);
2641 [ + - + - ]: 35 : bool add_fixed_seeds = gArgs.GetBoolArg("-fixedseeds", DEFAULT_FIXEDSEEDS);
2642 [ + - + - ]: 35 : const bool use_seednodes{!gArgs.GetArgs("-seednode").empty()};
2643 : :
2644 : 35 : auto seed_node_timer = NodeClock::now();
2645 [ + - + + : 35 : bool add_addr_fetch{addrman.get().Size() == 0 && !seed_nodes.empty()};
+ + ]
2646 : 35 : constexpr std::chrono::seconds ADD_NEXT_SEEDNODE = 10s;
2647 : :
2648 [ + + ]: 35 : if (!add_fixed_seeds) {
2649 [ + - ]: 31 : LogInfo("Fixed seeds are disabled\n");
2650 : : }
2651 : :
2652 [ + - + + ]: 165 : while (!m_interrupt_net->interrupted()) {
2653 [ + + ]: 164 : if (add_addr_fetch) {
2654 : 2 : add_addr_fetch = false;
2655 : 2 : const auto& seed{SpanPopBack(seed_nodes)};
2656 [ + - ]: 2 : AddAddrFetch(seed);
2657 : :
2658 [ + - + + ]: 2 : if (addrman.get().Size() == 0) {
2659 [ + - ]: 1 : LogInfo("Empty addrman, adding seednode (%s) to addrfetch\n", seed);
2660 : : } else {
2661 [ + - ]: 1 : LogInfo("Couldn't connect to peers from addrman after %d seconds. Adding seednode (%s) to addrfetch\n", ADD_NEXT_SEEDNODE.count(), seed);
2662 : : }
2663 : : }
2664 : :
2665 [ + - ]: 164 : ProcessAddrFetch();
2666 : :
2667 [ + - + + ]: 164 : if (!m_interrupt_net->sleep_for(500ms)) {
2668 : : return;
2669 : : }
2670 : :
2671 [ + - ]: 130 : PerformReconnections();
2672 : :
2673 : 130 : CountingSemaphoreGrant<> grant(*semOutbound);
2674 [ + - + - ]: 130 : if (m_interrupt_net->interrupted()) {
2675 : : return;
2676 : : }
2677 : :
2678 [ + - ]: 130 : const std::unordered_set<Network> fixed_seed_networks{GetReachableEmptyNetworks()};
2679 [ + + + - ]: 130 : if (add_fixed_seeds && !fixed_seed_networks.empty()) {
2680 : : // When the node starts with an empty peers.dat, there are a few other sources of peers before
2681 : : // we fallback on to fixed seeds: -dnsseed, -seednode, -addnode
2682 : : // If none of those are available, we fallback on to fixed seeds immediately, else we allow
2683 : : // 60 seconds for any of those sources to populate addrman.
2684 : 3 : bool add_fixed_seeds_now = false;
2685 : : // It is cheapest to check if enough time has passed first.
2686 [ + + ]: 3 : if (GetTime<std::chrono::seconds>() > start + std::chrono::minutes{1}) {
2687 : 2 : add_fixed_seeds_now = true;
2688 [ + - ]: 2 : LogInfo("Adding fixed seeds as 60 seconds have passed and addrman is empty for at least one reachable network\n");
2689 : : }
2690 : :
2691 : : // Perform cheap checks before locking a mutex.
2692 [ + - ]: 1 : else if (!dnsseed && !use_seednodes) {
2693 [ + - ]: 1 : LOCK(m_added_nodes_mutex);
2694 [ + - ]: 1 : if (m_added_node_params.empty()) {
2695 : 1 : add_fixed_seeds_now = true;
2696 [ + - + - ]: 1 : LogInfo("Adding fixed seeds as -dnsseed=0 (or IPv4/IPv6 connections are disabled via -onlynet) and neither -addnode nor -seednode are provided\n");
2697 : : }
2698 : 0 : }
2699 : :
2700 [ + - ]: 1 : if (add_fixed_seeds_now) {
2701 [ + - ]: 3 : std::vector<CAddress> seed_addrs{ConvertSeeds(m_params.FixedSeeds())};
2702 : : // We will not make outgoing connections to peers that are unreachable
2703 : : // (e.g. because of -onlynet configuration).
2704 : : // Therefore, we do not add them to addrman in the first place.
2705 : : // In case previously unreachable networks become reachable
2706 : : // (e.g. in case of -onlynet changes by the user), fixed seeds will
2707 : : // be loaded only for networks for which we have no addresses.
2708 [ + - ]: 3 : seed_addrs.erase(std::remove_if(seed_addrs.begin(), seed_addrs.end(),
2709 : 0 : [&fixed_seed_networks](const CAddress& addr) { return !fixed_seed_networks.contains(addr.GetNetwork()); }),
2710 [ + - ]: 3 : seed_addrs.end());
2711 [ + - ]: 3 : CNetAddr local;
2712 [ + - + - ]: 3 : local.SetInternal("fixedseeds");
2713 [ + - ]: 3 : addrman.get().Add(seed_addrs, local);
2714 : 3 : add_fixed_seeds = false;
2715 [ - + + - ]: 3 : LogInfo("Added %d fixed seeds from reachable networks.\n", seed_addrs.size());
2716 : 3 : }
2717 : : }
2718 : :
2719 : : //
2720 : : // Choose an address to connect to based on most recently seen
2721 : : //
2722 [ + - ]: 130 : CAddress addrConnect;
2723 : :
2724 : : // Only connect out to one peer per ipv4/ipv6 network group (/16 for IPv4).
2725 : 130 : int nOutboundFullRelay = 0;
2726 : 130 : int nOutboundBlockRelay = 0;
2727 : 130 : int outbound_privacy_network_peers = 0;
2728 [ + - ]: 130 : std::set<std::vector<unsigned char>> outbound_ipv46_peer_netgroups;
2729 : :
2730 : 130 : {
2731 [ + - ]: 130 : LOCK(m_nodes_mutex);
2732 [ + + ]: 504 : for (const CNode* pnode : m_nodes) {
2733 [ + + ]: 374 : if (pnode->IsFullOutboundConn()) nOutboundFullRelay++;
2734 [ + + ]: 374 : if (pnode->IsBlockOnlyConn()) nOutboundBlockRelay++;
2735 : :
2736 : : // Make sure our persistent outbound slots to ipv4/ipv6 peers belong to different netgroups.
2737 [ + + ]: 374 : switch (pnode->m_conn_type) {
2738 : : // We currently don't take inbound connections into account. Since they are
2739 : : // free to make, an attacker could make them to prevent us from connecting to
2740 : : // certain peers.
2741 : : case ConnectionType::INBOUND:
2742 : : // Short-lived outbound connections should not affect how we select outbound
2743 : : // peers from addrman.
2744 : : case ConnectionType::ADDR_FETCH:
2745 : : case ConnectionType::FEELER:
2746 : : case ConnectionType::PRIVATE_BROADCAST:
2747 : : break;
2748 : 358 : case ConnectionType::MANUAL:
2749 : 358 : case ConnectionType::OUTBOUND_FULL_RELAY:
2750 : 358 : case ConnectionType::BLOCK_RELAY:
2751 : 716 : const CAddress address{pnode->addr};
2752 [ + + + - : 358 : if (address.IsTor() || address.IsI2P() || address.IsCJDNS()) {
+ + ]
2753 : : // Since our addrman-groups for these networks are
2754 : : // random, without relation to the route we
2755 : : // take to connect to these peers or to the
2756 : : // difficulty in obtaining addresses with diverse
2757 : : // groups, we don't worry about diversity with
2758 : : // respect to our addrman groups when connecting to
2759 : : // these networks.
2760 : 38 : ++outbound_privacy_network_peers;
2761 : : } else {
2762 [ + - + - ]: 640 : outbound_ipv46_peer_netgroups.insert(m_netgroupman.GetGroup(address));
2763 : : }
2764 : : } // no default case, so the compiler can warn about missing cases
2765 : : }
2766 : 0 : }
2767 : :
2768 [ + + + - ]: 130 : if (!seed_nodes.empty() && nOutboundFullRelay < SEED_OUTBOUND_CONNECTION_THRESHOLD) {
2769 [ + + ]: 2 : if (NodeClock::now() > seed_node_timer + ADD_NEXT_SEEDNODE) {
2770 : 1 : seed_node_timer = NodeClock::now();
2771 : 1 : add_addr_fetch = true;
2772 : : }
2773 : : }
2774 : :
2775 : 130 : ConnectionType conn_type = ConnectionType::OUTBOUND_FULL_RELAY;
2776 : 130 : auto now = GetTime<std::chrono::microseconds>();
2777 : 130 : bool anchor = false;
2778 : 130 : bool fFeeler = false;
2779 : 130 : std::optional<Network> preferred_net;
2780 : :
2781 : : // Determine what type of connection to open. Opening
2782 : : // BLOCK_RELAY connections to addresses from anchors.dat gets the highest
2783 : : // priority. Then we open OUTBOUND_FULL_RELAY priority until we
2784 : : // meet our full-relay capacity. Then we open BLOCK_RELAY connection
2785 : : // until we hit our block-relay-only peer limit.
2786 : : // GetTryNewOutboundPeer() gets set when a stale tip is detected, so we
2787 : : // try opening an additional OUTBOUND_FULL_RELAY connection. If none of
2788 : : // these conditions are met, check to see if it's time to try an extra
2789 : : // block-relay-only peer (to confirm our tip is current, see below) or the next_feeler
2790 : : // timer to decide if we should open a FEELER.
2791 : :
2792 [ + + - + ]: 130 : if (!m_anchors.empty() && (nOutboundBlockRelay < m_max_outbound_block_relay)) {
2793 : : conn_type = ConnectionType::BLOCK_RELAY;
2794 : : anchor = true;
2795 [ + + ]: 129 : } else if (nOutboundFullRelay < m_max_outbound_full_relay) {
2796 : : // OUTBOUND_FULL_RELAY
2797 [ + + ]: 32 : } else if (nOutboundBlockRelay < m_max_outbound_block_relay) {
2798 : : conn_type = ConnectionType::BLOCK_RELAY;
2799 [ + - + - ]: 30 : } else if (GetTryNewOutboundPeer()) {
2800 : : // OUTBOUND_FULL_RELAY
2801 [ - + - - ]: 30 : } else if (now > next_extra_block_relay && m_start_extra_block_relay_peers) {
2802 : : // Periodically connect to a peer (using regular outbound selection
2803 : : // methodology from addrman) and stay connected long enough to sync
2804 : : // headers, but not much else.
2805 : : //
2806 : : // Then disconnect the peer, if we haven't learned anything new.
2807 : : //
2808 : : // The idea is to make eclipse attacks very difficult to pull off,
2809 : : // because every few minutes we're finding a new peer to learn headers
2810 : : // from.
2811 : : //
2812 : : // This is similar to the logic for trying extra outbound (full-relay)
2813 : : // peers, except:
2814 : : // - we do this all the time on an exponential timer, rather than just when
2815 : : // our tip is stale
2816 : : // - we potentially disconnect our next-youngest block-relay-only peer, if our
2817 : : // newest block-relay-only peer delivers a block more recently.
2818 : : // See the eviction logic in net_processing.cpp.
2819 : : //
2820 : : // Because we can promote these connections to block-relay-only
2821 : : // connections, they do not get their own ConnectionType enum
2822 : : // (similar to how we deal with extra outbound peers).
2823 : 0 : next_extra_block_relay = now + rng.rand_exp_duration(EXTRA_BLOCK_RELAY_ONLY_PEER_INTERVAL);
2824 : 0 : conn_type = ConnectionType::BLOCK_RELAY;
2825 [ + + ]: 30 : } else if (now > next_feeler) {
2826 : 2 : next_feeler = now + rng.rand_exp_duration(FEELER_INTERVAL);
2827 : 2 : conn_type = ConnectionType::FEELER;
2828 : 2 : fFeeler = true;
2829 [ + - ]: 28 : } else if (nOutboundFullRelay == m_max_outbound_full_relay &&
2830 [ - + ]: 28 : m_max_outbound_full_relay == MAX_OUTBOUND_FULL_RELAY_CONNECTIONS &&
2831 [ + - - + : 56 : now > next_extra_network_peer &&
- - ]
2832 [ # # ]: 0 : MaybePickPreferredNetwork(preferred_net)) {
2833 : : // Full outbound connection management: Attempt to get at least one
2834 : : // outbound peer from each reachable network by making extra connections
2835 : : // and then protecting "only" peers from a network during outbound eviction.
2836 : : // This is not attempted if the user changed -maxconnections to a value
2837 : : // so low that less than MAX_OUTBOUND_FULL_RELAY_CONNECTIONS are made,
2838 : : // to prevent interactions with otherwise protected outbound peers.
2839 : 0 : next_extra_network_peer = now + rng.rand_exp_duration(EXTRA_NETWORK_PEER_INTERVAL);
2840 : : } else {
2841 : : // skip to next iteration of while loop
2842 : 28 : continue;
2843 : : }
2844 : :
2845 [ + - ]: 102 : addrman.get().ResolveCollisions();
2846 : :
2847 : 102 : const auto current_time{NodeClock::now()};
2848 : 102 : int nTries = 0;
2849 [ + - ]: 102 : const auto reachable_nets{g_reachable_nets.All()};
2850 : :
2851 [ + - + - ]: 208 : while (!m_interrupt_net->interrupted()) {
2852 [ + + - + ]: 208 : if (anchor && !m_anchors.empty()) {
2853 : 1 : const CAddress addr = m_anchors.back();
2854 : 1 : m_anchors.pop_back();
2855 [ + - + - : 4 : if (!addr.IsValid() || IsLocal(addr) || !g_reachable_nets.Contains(addr) ||
+ - + - +
- + - -
+ ]
2856 [ + - + - : 3 : !m_msgproc->HasAllDesirableServiceFlags(addr.nServices) ||
+ - ]
2857 [ + - ]: 2 : outbound_ipv46_peer_netgroups.contains(m_netgroupman.GetGroup(addr))) continue;
2858 : 1 : addrConnect = addr;
2859 [ + - + - : 1 : LogDebug(BCLog::NET, "Trying to make an anchor connection to %s\n", addrConnect.ToStringAddrPort());
+ - + - ]
2860 : 1 : break;
2861 : 1 : }
2862 : :
2863 : : // If we didn't find an appropriate destination after trying 100 addresses fetched from addrman,
2864 : : // stop this loop, and let the outer loop run again (which sleeps, adds seed nodes, recalculates
2865 : : // already-connected network ranges, ...) before trying new addrman addresses.
2866 : 207 : nTries++;
2867 [ + + ]: 207 : if (nTries > 100)
2868 : : break;
2869 : :
2870 [ + - ]: 206 : CAddress addr;
2871 : 206 : NodeSeconds addr_last_try{0s};
2872 : :
2873 [ + + ]: 206 : if (fFeeler) {
2874 : : // First, try to get a tried table collision address. This returns
2875 : : // an empty (invalid) address if there are no collisions to try.
2876 [ + - ]: 2 : std::tie(addr, addr_last_try) = addrman.get().SelectTriedCollision();
2877 : :
2878 [ + - + - ]: 2 : if (!addr.IsValid()) {
2879 : : // No tried table collisions. Select a new table address
2880 : : // for our feeler.
2881 [ + - ]: 2 : std::tie(addr, addr_last_try) = addrman.get().Select(true, reachable_nets);
2882 [ # # # # ]: 0 : } else if (AlreadyConnectedToAddress(addr)) {
2883 : : // If test-before-evict logic would have us connect to a
2884 : : // peer that we're already connected to, just mark that
2885 : : // address as Good(). We won't be able to initiate the
2886 : : // connection anyway, so this avoids inadvertently evicting
2887 : : // a currently-connected peer.
2888 [ # # ]: 0 : addrman.get().Good(addr);
2889 : : // Select a new table address for our feeler instead.
2890 [ # # ]: 0 : std::tie(addr, addr_last_try) = addrman.get().Select(true, reachable_nets);
2891 : : }
2892 : : } else {
2893 : : // Not a feeler
2894 : : // If preferred_net has a value set, pick an extra outbound
2895 : : // peer from that network. The eviction logic in net_processing
2896 : : // ensures that a peer from another network will be evicted.
2897 [ - + ]: 408 : std::tie(addr, addr_last_try) = preferred_net.has_value()
2898 [ - + - - : 408 : ? addrman.get().Select(false, {*preferred_net})
- - + - -
+ - - ]
2899 [ + - ]: 408 : : addrman.get().Select(false, reachable_nets);
2900 : : }
2901 : :
2902 : : // Require outbound IPv4/IPv6 connections, other than feelers, to be to distinct network groups
2903 [ + + + - : 410 : if (!fFeeler && outbound_ipv46_peer_netgroups.contains(m_netgroupman.GetGroup(addr))) {
+ + + + ]
2904 : 106 : continue;
2905 : : }
2906 : :
2907 : : // if we selected an invalid or local address, restart
2908 [ + - + + : 100 : if (!addr.IsValid() || IsLocal(addr)) {
+ - + - ]
2909 : : break;
2910 : : }
2911 : :
2912 [ + - - + ]: 18 : if (!g_reachable_nets.Contains(addr)) {
2913 : 0 : continue;
2914 : : }
2915 : :
2916 : : // only consider very recently tried nodes after 30 failed attempts
2917 [ - + - - ]: 18 : if (current_time - addr_last_try < 10min && nTries < 30) {
2918 : 0 : continue;
2919 : : }
2920 : :
2921 : : // for non-feelers, require all the services we'll want,
2922 : : // for feelers, only require they be a full node (only because most
2923 : : // SPV clients don't have a good address DB available)
2924 [ + + + - : 18 : if (!fFeeler && !m_msgproc->HasAllDesirableServiceFlags(addr.nServices)) {
+ - ]
2925 : 0 : continue;
2926 [ + + - + ]: 18 : } else if (fFeeler && !MayHaveUsefulAddressDB(addr.nServices)) {
2927 : 0 : continue;
2928 : : }
2929 : :
2930 : : // Do not connect to bad ports, unless 50 invalid addresses have been selected already.
2931 [ + - + + : 18 : if (nTries < 50 && (addr.IsIPv4() || addr.IsIPv6()) && IsBadPort(addr.GetPort())) {
+ + + - +
- + - ]
2932 : 0 : continue;
2933 : : }
2934 : :
2935 : : // Do not make automatic outbound connections to addnode peers, to
2936 : : // not use our limited outbound slots for them and to ensure
2937 : : // addnode connections benefit from their intended protections.
2938 [ + - - + ]: 18 : if (AddedNodesContain(addr)) {
2939 [ # # # # : 0 : LogDebug(BCLog::NET, "Not making automatic %s%s connection to %s peer selected for manual (addnode) connection%s\n",
# # # # #
# # # # #
# # # # #
# # # # #
# # ]
2940 : : preferred_net.has_value() ? "network-specific " : "",
2941 : : ConnectionTypeAsString(conn_type), GetNetworkName(addr.GetNetwork()),
2942 : : fLogIPs ? strprintf(": %s", addr.ToStringAddrPort()) : "");
2943 : 0 : continue;
2944 : : }
2945 : :
2946 : 18 : addrConnect = addr;
2947 : : break;
2948 : 206 : }
2949 : :
2950 [ + - + + ]: 102 : if (addrConnect.IsValid()) {
2951 [ + + ]: 19 : if (fFeeler) {
2952 : : // Add small amount of random noise before connection to avoid synchronization.
2953 [ + - - + ]: 2 : if (!m_interrupt_net->sleep_for(rng.rand_uniform_duration<CThreadInterrupt::Clock>(FEELER_SLEEP_WINDOW))) {
2954 : 0 : return;
2955 : : }
2956 [ + - + - : 2 : LogDebug(BCLog::NET, "Making feeler connection to %s\n", addrConnect.ToStringAddrPort());
+ - + - ]
2957 : : }
2958 : :
2959 [ - + - - : 19 : if (preferred_net != std::nullopt) LogDebug(BCLog::NET, "Making network specific connection to %s on %s.\n", addrConnect.ToStringAddrPort(), GetNetworkName(preferred_net.value()));
- - - - -
- - - -
- ]
2960 : :
2961 : : // Record addrman failure attempts when node has at least 2 persistent outbound connections to peers with
2962 : : // different netgroups in ipv4/ipv6 networks + all peers in Tor/I2P/CJDNS networks.
2963 : : // Don't record addrman failure attempts when node is offline. This can be identified since all local
2964 : : // network connections (if any) belong in the same netgroup, and the size of `outbound_ipv46_peer_netgroups` would only be 1.
2965 [ - + ]: 19 : const bool count_failures{((int)outbound_ipv46_peer_netgroups.size() + outbound_privacy_network_peers) >= std::min(m_max_automatic_connections - 1, 2)};
2966 : : // Use BIP324 transport when both us and them have NODE_V2_P2P set.
2967 [ + - ]: 19 : const bool use_v2transport(addrConnect.nServices & GetLocalServices() & NODE_P2P_V2);
2968 : 19 : OpenNetworkConnection(/*addrConnect=*/addrConnect,
2969 : : /*fCountFailure=*/count_failures,
2970 : : /*grant_outbound=*/std::move(grant),
2971 : : /*pszDest=*/nullptr,
2972 : : /*conn_type=*/conn_type,
2973 : : /*use_v2transport=*/use_v2transport,
2974 [ + - ]: 38 : /*proxy_override=*/std::nullopt);
2975 : : }
2976 : 130 : }
2977 : 40 : }
2978 : :
2979 : 35 : std::vector<CAddress> CConnman::GetCurrentBlockRelayOnlyConns() const
2980 : : {
2981 : 35 : AssertLockNotHeld(m_nodes_mutex);
2982 : 35 : std::vector<CAddress> ret;
2983 [ + - ]: 35 : LOCK(m_nodes_mutex);
2984 [ + + ]: 65 : for (const CNode* pnode : m_nodes) {
2985 [ + + ]: 30 : if (pnode->IsBlockOnlyConn()) {
2986 [ + - ]: 3 : ret.push_back(pnode->addr);
2987 : : }
2988 : : }
2989 : :
2990 [ + - ]: 35 : return ret;
2991 : 35 : }
2992 : :
2993 : 6342 : std::vector<AddedNodeInfo> CConnman::GetAddedNodeInfo(bool include_connected) const
2994 : : {
2995 : 6342 : AssertLockNotHeld(m_nodes_mutex);
2996 : :
2997 : 6342 : std::vector<AddedNodeInfo> ret;
2998 : :
2999 [ + - ]: 6342 : std::list<AddedNodeParams> lAddresses(0);
3000 : 6342 : {
3001 [ + - ]: 6342 : LOCK(m_added_nodes_mutex);
3002 [ - + + - ]: 6342 : ret.reserve(m_added_node_params.size());
3003 [ + - ]: 6342 : std::copy(m_added_node_params.cbegin(), m_added_node_params.cend(), std::back_inserter(lAddresses));
3004 : 0 : }
3005 : :
3006 : :
3007 : : // Build a map of all already connected addresses (by IP:port and by name) to inbound/outbound and resolved CService
3008 [ + - ]: 6342 : std::map<CService, bool> mapConnected;
3009 : 6342 : std::map<std::string, std::pair<bool, CService>> mapConnectedByName;
3010 : 6342 : {
3011 [ + - ]: 6342 : LOCK(m_nodes_mutex);
3012 [ + + ]: 13055 : for (const CNode* pnode : m_nodes) {
3013 [ + - + - ]: 6713 : if (pnode->addr.IsValid()) {
3014 [ + - ]: 6713 : mapConnected[pnode->addr] = pnode->IsInboundConn();
3015 : : }
3016 [ - + ]: 6713 : std::string addrName{pnode->m_addr_name};
3017 [ + - ]: 6713 : if (!addrName.empty()) {
3018 [ + - ]: 6713 : mapConnectedByName[std::move(addrName)] = std::make_pair(pnode->IsInboundConn(), static_cast<const CService&>(pnode->addr));
3019 : : }
3020 : 6713 : }
3021 : 0 : }
3022 : :
3023 [ + + ]: 6379 : for (const auto& addr : lAddresses) {
3024 [ + - + - : 74 : CService service{MaybeFlipIPv6toCJDNS(LookupNumeric(addr.m_added_node, GetDefaultPort(addr.m_added_node)))};
+ - + - ]
3025 [ + - + - ]: 37 : AddedNodeInfo addedNode{addr, CService(), false, false};
3026 [ + - + + ]: 37 : if (service.IsValid()) {
3027 : : // strAddNode is an IP:port
3028 [ + - ]: 33 : auto it = mapConnected.find(service);
3029 [ + + ]: 33 : if (it != mapConnected.end()) {
3030 [ + + ]: 15 : if (!include_connected) {
3031 : 5 : continue;
3032 : : }
3033 : 10 : addedNode.resolvedAddress = service;
3034 : 10 : addedNode.fConnected = true;
3035 : 10 : addedNode.fInbound = it->second;
3036 : : }
3037 : : } else {
3038 : : // strAddNode is a name
3039 : 4 : auto it = mapConnectedByName.find(addr.m_added_node);
3040 [ - + ]: 4 : if (it != mapConnectedByName.end()) {
3041 [ # # ]: 0 : if (!include_connected) {
3042 : 0 : continue;
3043 : : }
3044 : 0 : addedNode.resolvedAddress = it->second.second;
3045 : 0 : addedNode.fConnected = true;
3046 : 0 : addedNode.fInbound = it->second.first;
3047 : : }
3048 : : }
3049 [ + - ]: 32 : ret.emplace_back(std::move(addedNode));
3050 : 37 : }
3051 : :
3052 : 6342 : return ret;
3053 : 6342 : }
3054 : :
3055 : 1083 : void CConnman::ThreadOpenAddedConnections()
3056 : : {
3057 : 1083 : AssertLockNotHeld(m_nodes_mutex);
3058 : 1083 : AssertLockNotHeld(m_reconnections_mutex);
3059 : 1083 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
3060 : :
3061 : 11565 : while (true)
3062 : : {
3063 : 6324 : CountingSemaphoreGrant<> grant(*semAddnode);
3064 [ + - ]: 6324 : std::vector<AddedNodeInfo> vInfo = GetAddedNodeInfo(/*include_connected=*/false);
3065 : 6324 : bool tried = false;
3066 [ + + ]: 6327 : for (const AddedNodeInfo& info : vInfo) {
3067 [ + - ]: 5 : if (!grant) {
3068 : : // If we've used up our semaphore and need a new one, let's not wait here since while we are waiting
3069 : : // the addednodeinfo state might change.
3070 : : break;
3071 : : }
3072 : 5 : tried = true;
3073 [ + - - + ]: 10 : OpenNetworkConnection(/*addrConnect=*/CAddress{CService{}, NODE_NONE},
3074 : : /*fCountFailure=*/false,
3075 : : /*grant_outbound=*/std::move(grant),
3076 : : /*pszDest=*/info.m_params.m_added_node.c_str(),
3077 : : /*conn_type=*/ConnectionType::MANUAL,
3078 : 5 : /*use_v2transport=*/info.m_params.m_use_v2transport,
3079 [ + - ]: 5 : /*proxy_override=*/std::nullopt);
3080 [ + - + + ]: 5 : if (!m_interrupt_net->sleep_for(500ms)) return;
3081 : 3 : grant = CountingSemaphoreGrant<>(*semAddnode, /*fTry=*/true);
3082 : : }
3083 : : // See if any reconnections are desired.
3084 [ + - ]: 6322 : PerformReconnections();
3085 : : // Retry every 60 seconds if a connection was attempted, otherwise two seconds
3086 [ + + + - : 6322 : if (!m_interrupt_net->sleep_for(tried ? 60s : 2s)) {
+ + ]
3087 : : return;
3088 : : }
3089 : 6324 : }
3090 : : }
3091 : :
3092 : : // if successful, this moves the passed grant to the constructed node
3093 : 729 : bool CConnman::OpenNetworkConnection(const CAddress& addrConnect,
3094 : : bool fCountFailure,
3095 : : CountingSemaphoreGrant<>&& grant_outbound,
3096 : : const char* pszDest,
3097 : : ConnectionType conn_type,
3098 : : bool use_v2transport,
3099 : : const std::optional<Proxy>& proxy_override)
3100 : : {
3101 : 729 : AssertLockNotHeld(m_nodes_mutex);
3102 : 729 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
3103 [ - + ]: 729 : assert(conn_type != ConnectionType::INBOUND);
3104 : :
3105 : : //
3106 : : // Initiate outbound network connection
3107 : : //
3108 [ + - ]: 729 : if (m_interrupt_net->interrupted()) {
3109 : : return false;
3110 : : }
3111 [ + - ]: 729 : if (!fNetworkActive) {
3112 : : return false;
3113 : : }
3114 [ + + ]: 729 : if (!pszDest) {
3115 [ + - + - : 56 : bool banned_or_discouraged = m_banman && (m_banman->IsDiscouraged(addrConnect) || m_banman->IsBanned(addrConnect));
- + ]
3116 [ + - + - : 56 : if (IsLocal(addrConnect) || banned_or_discouraged || AlreadyConnectedToAddress(addrConnect)) {
+ + ]
3117 : 5 : return false;
3118 : : }
3119 [ + - ]: 673 : } else if (AlreadyConnectedToHost(pszDest)) {
3120 : : return false;
3121 : : }
3122 : :
3123 [ + - ]: 724 : CNode* pnode = ConnectNode(addrConnect, pszDest, fCountFailure, conn_type, use_v2transport, proxy_override);
3124 : :
3125 [ + + ]: 724 : if (!pnode)
3126 : : return false;
3127 : 691 : pnode->grantOutbound = std::move(grant_outbound);
3128 : :
3129 : 691 : m_msgproc->InitializeNode(*pnode, m_local_services);
3130 : 691 : {
3131 : 691 : LOCK(m_nodes_mutex);
3132 [ + - ]: 691 : m_nodes.push_back(pnode);
3133 : :
3134 : : // update connection count by network
3135 [ + + + - ]: 691 : if (pnode->IsManualOrFullOutboundConn()) ++m_network_conn_counts[pnode->addr.GetNetwork()];
3136 : 691 : }
3137 : :
3138 : : TRACEPOINT(net, outbound_connection,
3139 : : pnode->GetId(),
3140 : : pnode->m_addr_name.c_str(),
3141 : : pnode->ConnectionTypeAsString().c_str(),
3142 : : pnode->ConnectedThroughNetwork(),
3143 : 691 : GetNodeCount(ConnectionDirection::Out));
3144 : :
3145 : 691 : return true;
3146 : : }
3147 : :
3148 : 312 : std::optional<Network> CConnman::PrivateBroadcast::PickNetwork(std::optional<Proxy>& proxy) const
3149 : : {
3150 : 312 : prevector<4, Network> nets;
3151 : 312 : std::optional<Proxy> clearnet_proxy;
3152 [ - + ]: 312 : proxy.reset();
3153 [ + - + - ]: 312 : if (g_reachable_nets.Contains(NET_ONION)) {
3154 : 312 : nets.push_back(NET_ONION);
3155 : :
3156 [ + - + + ]: 624 : clearnet_proxy = ProxyForIPv4or6();
3157 [ + + ]: 312 : if (clearnet_proxy.has_value()) {
3158 [ + - + - ]: 31 : if (g_reachable_nets.Contains(NET_IPV4)) {
3159 : 31 : nets.push_back(NET_IPV4);
3160 : : }
3161 [ + - + - ]: 31 : if (g_reachable_nets.Contains(NET_IPV6)) {
3162 : 31 : nets.push_back(NET_IPV6);
3163 : : }
3164 : : }
3165 : : }
3166 [ + - + + ]: 312 : if (g_reachable_nets.Contains(NET_I2P)) {
3167 : 204 : nets.push_back(NET_I2P);
3168 : : }
3169 : :
3170 [ - + - + ]: 312 : if (nets.empty()) {
3171 : 0 : return std::nullopt;
3172 : : }
3173 : :
3174 [ - + + - ]: 624 : const Network net{nets[FastRandomContext{}.randrange(nets.size())]};
3175 [ + + ]: 312 : if (net == NET_IPV4 || net == NET_IPV6) {
3176 [ + - ]: 20 : proxy = clearnet_proxy;
3177 : : }
3178 : 312 : return net;
3179 : 312 : }
3180 : :
3181 : 14 : size_t CConnman::PrivateBroadcast::NumToOpen() const
3182 : : {
3183 : 14 : return m_num_to_open;
3184 : : }
3185 : :
3186 : 12520 : void CConnman::PrivateBroadcast::NumToOpenAdd(size_t n)
3187 : : {
3188 : 12520 : m_num_to_open += n;
3189 : 12520 : m_num_to_open.notify_all();
3190 : 12520 : }
3191 : :
3192 : 23 : size_t CConnman::PrivateBroadcast::NumToOpenSub(size_t n)
3193 : : {
3194 : 23 : size_t current_value{m_num_to_open.load()};
3195 : 23 : size_t new_value;
3196 : 23 : do {
3197 [ + + ]: 23 : new_value = current_value > n ? current_value - n : 0;
3198 [ - + ]: 23 : } while (!m_num_to_open.compare_exchange_strong(current_value, new_value));
3199 : 23 : return new_value;
3200 : : }
3201 : :
3202 : 316 : void CConnman::PrivateBroadcast::NumToOpenWait() const
3203 : : {
3204 : 316 : m_num_to_open.wait(0);
3205 : 316 : }
3206 : :
3207 : 312 : std::optional<Proxy> CConnman::PrivateBroadcast::ProxyForIPv4or6() const
3208 : : {
3209 [ + + ]: 312 : if (m_outbound_tor_ok_at_least_once.load()) {
3210 [ - + ]: 31 : if (const auto tor_proxy = GetProxy(NET_ONION)) {
3211 : : return tor_proxy;
3212 : 0 : }
3213 : : }
3214 : 281 : return std::nullopt;
3215 : : }
3216 : :
3217 : : Mutex NetEventsInterface::g_msgproc_mutex;
3218 : :
3219 : 1083 : void CConnman::ThreadMessageHandler()
3220 : : {
3221 : 1083 : AssertLockNotHeld(m_nodes_mutex);
3222 : :
3223 : 1083 : LOCK(NetEventsInterface::g_msgproc_mutex);
3224 : :
3225 [ + + ]: 276769 : while (!flagInterruptMsgProc)
3226 : : {
3227 : 274609 : bool fMoreWork = false;
3228 : :
3229 : 274609 : {
3230 : : // Randomize the order in which we process messages from/to our peers.
3231 : : // This prevents attacks in which an attacker exploits having multiple
3232 : : // consecutive connections in the m_nodes list.
3233 [ + - ]: 274609 : const NodesSnapshot snap{*this, /*shuffle=*/true};
3234 : :
3235 [ + + ]: 662093 : for (CNode* pnode : snap.Nodes()) {
3236 [ + + ]: 387490 : if (pnode->fDisconnect)
3237 : 69 : continue;
3238 : :
3239 : : // Receive messages
3240 [ + - ]: 387421 : bool fMoreNodeWork{m_msgproc->ProcessMessages(*pnode, flagInterruptMsgProc)};
3241 [ + + + + ]: 387421 : fMoreWork |= (fMoreNodeWork && !pnode->fPauseSend);
3242 [ + + ]: 387421 : if (flagInterruptMsgProc)
3243 : : return;
3244 : : // Send messages
3245 [ + - ]: 387415 : m_msgproc->SendMessages(*pnode);
3246 : :
3247 [ + - ]: 387415 : if (flagInterruptMsgProc)
3248 : : return;
3249 : : }
3250 [ + - ]: 274609 : }
3251 : :
3252 [ + - ]: 274603 : WAIT_LOCK(mutexMsgProc, lock);
3253 [ + + ]: 274603 : if (!fMoreWork) {
3254 [ + + + - ]: 578858 : condMsgProc.wait_until(lock, std::chrono::steady_clock::now() + std::chrono::milliseconds(100), [this]() EXCLUSIVE_LOCKS_REQUIRED(mutexMsgProc) { return fMsgProcWake; });
3255 : : }
3256 [ + - ]: 274603 : fMsgProcWake = false;
3257 : 274603 : }
3258 : 1083 : }
3259 : :
3260 : 4 : void CConnman::ThreadI2PAcceptIncoming()
3261 : : {
3262 : 4 : AssertLockNotHeld(m_nodes_mutex);
3263 : :
3264 : 4 : static constexpr auto err_wait_begin = 1s;
3265 : 4 : static constexpr auto err_wait_cap = 5min;
3266 : 4 : auto err_wait = err_wait_begin;
3267 : :
3268 : 4 : bool advertising_listen_addr = false;
3269 : 4 : i2p::Connection conn;
3270 : :
3271 : 22 : auto SleepOnFailure = [&]() {
3272 : 18 : m_interrupt_net->sleep_for(err_wait);
3273 [ + - ]: 18 : if (err_wait < err_wait_cap) {
3274 : 18 : err_wait += 1s;
3275 : : }
3276 : 22 : };
3277 : :
3278 [ + - + + ]: 22 : while (!m_interrupt_net->interrupted()) {
3279 : :
3280 [ + - + - ]: 18 : if (!m_i2p_sam_session->Listen(conn)) {
3281 [ - + - - : 18 : if (advertising_listen_addr && conn.me.IsValid()) {
- - ]
3282 [ # # ]: 0 : RemoveLocal(conn.me);
3283 : : advertising_listen_addr = false;
3284 : : }
3285 [ + - ]: 18 : SleepOnFailure();
3286 : 18 : continue;
3287 : : }
3288 : :
3289 [ # # ]: 0 : if (!advertising_listen_addr) {
3290 [ # # ]: 0 : AddLocal(conn.me, LOCAL_MANUAL);
3291 : : advertising_listen_addr = true;
3292 : : }
3293 : :
3294 [ # # # # ]: 0 : if (!m_i2p_sam_session->Accept(conn)) {
3295 [ # # ]: 0 : SleepOnFailure();
3296 : 0 : continue;
3297 : : }
3298 : :
3299 [ # # ]: 0 : CreateNodeFromAcceptedSocket(std::move(conn.sock), NetPermissionFlags::None, conn.me, conn.peer);
3300 : :
3301 : 0 : err_wait = err_wait_begin;
3302 : : }
3303 : 4 : }
3304 : :
3305 : 6 : void CConnman::ThreadPrivateBroadcast()
3306 : : {
3307 : 6 : AssertLockNotHeld(m_nodes_mutex);
3308 : 6 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
3309 : :
3310 : 6 : size_t addrman_num_bad_addresses{0};
3311 [ + + ]: 318 : while (!m_interrupt_net->interrupted()) {
3312 : :
3313 [ - + ]: 316 : if (!fNetworkActive) {
3314 : 0 : m_interrupt_net->sleep_for(5s);
3315 : 0 : continue;
3316 : : }
3317 : :
3318 : 316 : CountingSemaphoreGrant<> conn_max_grant{m_private_broadcast.m_sem_conn_max}; // Would block if too many are opened.
3319 : :
3320 [ + - ]: 316 : m_private_broadcast.NumToOpenWait();
3321 : :
3322 [ + - + + ]: 316 : if (m_interrupt_net->interrupted()) {
3323 : : break;
3324 : : }
3325 : :
3326 : 312 : std::optional<Proxy> proxy;
3327 [ + - ]: 312 : const std::optional<Network> net{m_private_broadcast.PickNetwork(proxy)};
3328 [ - + ]: 312 : if (!net.has_value()) {
3329 [ # # ]: 0 : LogWarning("Unable to open -privatebroadcast connections: neither Tor nor I2P is reachable");
3330 [ # # ]: 0 : m_interrupt_net->sleep_for(5s);
3331 : 0 : continue;
3332 : : }
3333 : :
3334 [ + - + - : 624 : const auto [addr, _] = addrman.get().Select(/*new_only=*/false, {net.value()});
+ - ]
3335 : :
3336 [ + - + + : 312 : if (!addr.IsValid() || IsLocal(addr)) {
+ - - + ]
3337 : 278 : ++addrman_num_bad_addresses;
3338 [ + + ]: 278 : if (addrman_num_bad_addresses > 100) {
3339 [ + - + - : 77 : LogDebug(BCLog::PRIVBROADCAST, "Connections needed but addrman keeps returning bad addresses, will retry");
+ - ]
3340 [ + - ]: 77 : m_interrupt_net->sleep_for(500ms);
3341 : : }
3342 : 278 : continue;
3343 : : }
3344 : 34 : addrman_num_bad_addresses = 0;
3345 : :
3346 [ + - ]: 34 : auto target_str{addr.ToStringAddrPort()};
3347 [ + + ]: 34 : if (proxy.has_value()) {
3348 [ + - + - ]: 38 : target_str += " through the proxy at " + proxy->ToString();
3349 : : }
3350 : :
3351 [ + - ]: 34 : const bool use_v2transport(addr.nServices & GetLocalServices() & NODE_P2P_V2);
3352 : :
3353 [ + - + + ]: 34 : if (OpenNetworkConnection(addr,
3354 : : /*fCountFailure=*/true,
3355 : : std::move(conn_max_grant),
3356 : : /*pszDest=*/nullptr,
3357 : : ConnectionType::PRIVATE_BROADCAST,
3358 : : use_v2transport,
3359 : : proxy)) {
3360 [ + - ]: 20 : const size_t remaining{m_private_broadcast.NumToOpenSub(1)};
3361 [ + - + - : 20 : LogDebug(BCLog::PRIVBROADCAST, "Socket connected to %s; remaining connections to open: %d", target_str, remaining);
+ - ]
3362 : : } else {
3363 [ + - ]: 14 : const size_t remaining{m_private_broadcast.NumToOpen()};
3364 [ - + ]: 14 : if (remaining == 0) {
3365 [ - - - - : 34 : LogDebug(BCLog::PRIVBROADCAST, "Failed to connect to %s, will not retry, no more connections needed", target_str);
- - ]
3366 : : } else {
3367 [ + - + - : 14 : LogDebug(BCLog::PRIVBROADCAST, "Failed to connect to %s, will retry to a different address; remaining connections to open: %d", target_str, remaining);
+ - ]
3368 [ + - ]: 14 : m_interrupt_net->sleep_for(100ms); // Prevent busy loop if OpenNetworkConnection() fails fast repeatedly.
3369 : : }
3370 : : }
3371 [ + + ]: 628 : }
3372 : 6 : }
3373 : :
3374 : 1097 : bool CConnman::BindListenPort(const CService& addrBind, bilingual_str& strError, NetPermissionFlags permissions)
3375 : : {
3376 : 1097 : int nOne = 1;
3377 : :
3378 : : // Create socket for listening for incoming connections
3379 : 1097 : struct sockaddr_storage sockaddr;
3380 : 1097 : socklen_t len = sizeof(sockaddr);
3381 [ - + ]: 1097 : if (!addrBind.GetSockAddr((struct sockaddr*)&sockaddr, &len))
3382 : : {
3383 [ # # # # ]: 0 : strError = Untranslated(strprintf("Bind address family for %s not supported", addrBind.ToStringAddrPort()));
3384 : 0 : LogError("%s\n", strError.original);
3385 : 0 : return false;
3386 : : }
3387 : :
3388 : 1097 : std::unique_ptr<Sock> sock = CreateSock(addrBind.GetSAFamily(), SOCK_STREAM, IPPROTO_TCP);
3389 [ - + ]: 1097 : if (!sock) {
3390 [ # # # # : 0 : strError = Untranslated(strprintf("Couldn't open socket for incoming connections (socket returned error %s)", NetworkErrorString(WSAGetLastError())));
# # ]
3391 [ # # ]: 0 : LogError("%s\n", strError.original);
3392 : : return false;
3393 : : }
3394 : :
3395 : : // Allow binding if the port is still in TIME_WAIT state after
3396 : : // the program was closed and restarted.
3397 [ + - - + ]: 1097 : if (sock->SetSockOpt(SOL_SOCKET, SO_REUSEADDR, &nOne, sizeof(int)) == SOCKET_ERROR) {
3398 [ # # # # : 0 : strError = Untranslated(strprintf("Error setting SO_REUSEADDR on socket: %s, continuing anyway", NetworkErrorString(WSAGetLastError())));
# # ]
3399 [ # # ]: 0 : LogInfo("%s\n", strError.original);
3400 : : }
3401 : :
3402 : : // some systems don't have IPV6_V6ONLY but are always v6only; others do have the option
3403 : : // and enable it by default or not. Try to enable it, if possible.
3404 [ + + ]: 1097 : if (addrBind.IsIPv6()) {
3405 : : #ifdef IPV6_V6ONLY
3406 [ + - - + ]: 3 : if (sock->SetSockOpt(IPPROTO_IPV6, IPV6_V6ONLY, &nOne, sizeof(int)) == SOCKET_ERROR) {
3407 [ # # # # : 0 : strError = Untranslated(strprintf("Error setting IPV6_V6ONLY on socket: %s, continuing anyway", NetworkErrorString(WSAGetLastError())));
# # ]
3408 [ # # ]: 0 : LogInfo("%s\n", strError.original);
3409 : : }
3410 : : #endif
3411 : : #ifdef WIN32
3412 : : int nProtLevel = PROTECTION_LEVEL_UNRESTRICTED;
3413 : : if (sock->SetSockOpt(IPPROTO_IPV6, IPV6_PROTECTION_LEVEL, &nProtLevel, sizeof(int)) == SOCKET_ERROR) {
3414 : : strError = Untranslated(strprintf("Error setting IPV6_PROTECTION_LEVEL on socket: %s, continuing anyway", NetworkErrorString(WSAGetLastError())));
3415 : : LogInfo("%s\n", strError.original);
3416 : : }
3417 : : #endif
3418 : : }
3419 : :
3420 [ + - + + ]: 1097 : if (sock->Bind(reinterpret_cast<struct sockaddr*>(&sockaddr), len) == SOCKET_ERROR) {
3421 : 11 : int nErr = WSAGetLastError();
3422 [ - + ]: 11 : if (nErr == WSAEADDRINUSE)
3423 [ # # # # ]: 0 : strError = strprintf(_("Unable to bind to %s on this computer. %s is probably already running."), addrBind.ToStringAddrPort(), CLIENT_NAME);
3424 : : else
3425 [ + - + - : 22 : strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToStringAddrPort(), NetworkErrorString(nErr));
+ - ]
3426 [ + - ]: 11 : LogError("%s\n", strError.original);
3427 : : return false;
3428 : : }
3429 [ + - + - ]: 1086 : LogInfo("Bound to %s\n", addrBind.ToStringAddrPort());
3430 : :
3431 : : // Listen for incoming connections
3432 [ + - - + ]: 1086 : if (sock->Listen(SOMAXCONN) == SOCKET_ERROR)
3433 : : {
3434 [ # # # # ]: 0 : strError = strprintf(_("Listening for incoming connections failed (listen returned error %s)"), NetworkErrorString(WSAGetLastError()));
3435 [ # # ]: 0 : LogError("%s\n", strError.original);
3436 : : return false;
3437 : : }
3438 : :
3439 [ + - ]: 1086 : vhListenSocket.emplace_back(std::move(sock), permissions);
3440 : : return true;
3441 : 1097 : }
3442 : :
3443 : 31 : void Discover()
3444 : : {
3445 [ + + ]: 31 : if (!fDiscover)
3446 : : return;
3447 : :
3448 [ + + ]: 12 : for (const CNetAddr &addr: GetLocalAddresses()) {
3449 [ + - - + : 6 : if (AddLocal(addr, LOCAL_IF) && fLogIPs) {
- - ]
3450 [ # # # # ]: 0 : LogInfo("%s: %s\n", __func__, addr.ToStringAddr());
3451 : : }
3452 : : }
3453 : : }
3454 : :
3455 : 1354 : void CConnman::SetNetworkActive(bool active)
3456 : : {
3457 : 1354 : LogInfo("%s: %s\n", __func__, active);
3458 : :
3459 [ + + ]: 1354 : if (fNetworkActive == active) {
3460 : : return;
3461 : : }
3462 : :
3463 [ + + ]: 14 : fNetworkActive = active;
3464 : :
3465 [ + + ]: 14 : if (m_client_interface) {
3466 : 9 : m_client_interface->NotifyNetworkActiveChanged(fNetworkActive);
3467 : : }
3468 : : }
3469 : :
3470 : 1343 : CConnman::CConnman(uint64_t nSeed0In,
3471 : : uint64_t nSeed1In,
3472 : : AddrMan& addrman_in,
3473 : : const NetGroupManager& netgroupman,
3474 : : const CChainParams& params,
3475 : : bool network_active,
3476 : 1343 : std::shared_ptr<CThreadInterrupt> interrupt_net)
3477 [ + - ]: 1343 : : addrman(addrman_in)
3478 [ + - ]: 1343 : , m_netgroupman{netgroupman}
3479 : 1343 : , nSeed0(nSeed0In)
3480 : 1343 : , nSeed1(nSeed1In)
3481 [ + - - - ]: 1343 : , m_interrupt_net{interrupt_net}
3482 [ + - + - : 2686 : , m_params(params)
+ - + - ]
3483 : : {
3484 [ + - ]: 1343 : SetTryNewOutboundPeer(false);
3485 : :
3486 : 1343 : Options connOptions;
3487 [ + - ]: 1343 : Init(connOptions);
3488 [ + - ]: 1343 : SetNetworkActive(network_active);
3489 : 1343 : }
3490 : :
3491 : 1837 : NodeId CConnman::GetNewNodeId()
3492 : : {
3493 : 1837 : return nLastNodeId.fetch_add(1, std::memory_order_relaxed);
3494 : : }
3495 : :
3496 : 2 : uint16_t CConnman::GetDefaultPort(Network net) const
3497 : : {
3498 [ - + ]: 2 : return net == NET_I2P ? I2P_SAM31_PORT : m_params.GetDefaultPort();
3499 : : }
3500 : :
3501 : 751 : uint16_t CConnman::GetDefaultPort(const std::string& addr) const
3502 : : {
3503 : 751 : CNetAddr a;
3504 [ - + + - : 751 : return a.SetSpecial(addr) ? GetDefaultPort(a.GetNetwork()) : m_params.GetDefaultPort();
+ + + - +
- ]
3505 : 751 : }
3506 : :
3507 : 1097 : bool CConnman::Bind(const CService& addr_, unsigned int flags, NetPermissionFlags permissions)
3508 : : {
3509 : 1097 : const CService addr{MaybeFlipIPv6toCJDNS(addr_)};
3510 : :
3511 [ + - ]: 1097 : bilingual_str strError;
3512 [ + - + + ]: 1097 : if (!BindListenPort(addr, strError, permissions)) {
3513 [ + - + - ]: 11 : if ((flags & BF_REPORT_ERROR) && m_client_interface) {
3514 [ + - ]: 11 : m_client_interface->ThreadSafeMessageBox(strError, CClientUIInterface::MSG_ERROR);
3515 : : }
3516 : 11 : return false;
3517 : : }
3518 : :
3519 [ + - - + : 1086 : if (addr.IsRoutable() && fDiscover && !(flags & BF_DONT_ADVERTISE) && !NetPermissions::HasFlag(permissions, NetPermissionFlags::NoBan)) {
- - - - -
- ]
3520 [ # # ]: 0 : AddLocal(addr, LOCAL_BIND);
3521 : : }
3522 : :
3523 : : return true;
3524 : 1097 : }
3525 : :
3526 : 1078 : bool CConnman::InitBinds(const Options& options)
3527 : : {
3528 [ + + ]: 2138 : for (const auto& addrBind : options.vBinds) {
3529 [ + + ]: 1070 : if (!Bind(addrBind, BF_REPORT_ERROR, NetPermissionFlags::None)) {
3530 : : return false;
3531 : : }
3532 : : }
3533 [ + + ]: 1070 : for (const auto& addrBind : options.vWhiteBinds) {
3534 [ + + ]: 3 : if (!Bind(addrBind.m_service, BF_REPORT_ERROR, addrBind.m_flags)) {
3535 : : return false;
3536 : : }
3537 : : }
3538 [ + + ]: 1085 : for (const auto& addr_bind : options.onion_binds) {
3539 [ + - ]: 18 : if (!Bind(addr_bind, BF_REPORT_ERROR | BF_DONT_ADVERTISE, NetPermissionFlags::None)) {
3540 : : return false;
3541 : : }
3542 : : }
3543 [ + + ]: 1067 : if (options.bind_on_any) {
3544 : : // Don't consider errors to bind on IPv6 "::" fatal because the host OS
3545 : : // may not have IPv6 support and the user did not explicitly ask us to
3546 : : // bind on that.
3547 : 3 : const CService ipv6_any{in6_addr(COMPAT_IN6ADDR_ANY_INIT), GetListenPort()}; // ::
3548 [ + - ]: 3 : Bind(ipv6_any, BF_NONE, NetPermissionFlags::None);
3549 : :
3550 : 3 : struct in_addr inaddr_any;
3551 : 3 : inaddr_any.s_addr = htonl(INADDR_ANY);
3552 [ + - + - ]: 3 : const CService ipv4_any{inaddr_any, GetListenPort()}; // 0.0.0.0
3553 [ + - - + ]: 3 : if (!Bind(ipv4_any, BF_REPORT_ERROR, NetPermissionFlags::None)) {
3554 : 0 : return false;
3555 : : }
3556 : 3 : }
3557 : : return true;
3558 : : }
3559 : :
3560 : 1094 : bool CConnman::Start(CScheduler& scheduler, const Options& connOptions)
3561 : : {
3562 : 1094 : AssertLockNotHeld(m_total_bytes_sent_mutex);
3563 : 1094 : Init(connOptions);
3564 : :
3565 [ + + + + ]: 1094 : if (fListen && !InitBinds(connOptions)) {
3566 [ + - ]: 11 : if (m_client_interface) {
3567 : 11 : m_client_interface->ThreadSafeMessageBox(
3568 : 11 : _("Failed to listen on any port. Use -listen=0 if you want this."),
3569 : 11 : CClientUIInterface::MSG_ERROR);
3570 : : }
3571 : 11 : return false;
3572 : : }
3573 : :
3574 [ + + ]: 1083 : if (connOptions.m_i2p_accept_incoming) {
3575 [ + + ]: 1066 : if (const auto i2p_sam = GetProxy(NET_I2P)) {
3576 [ + - ]: 16 : m_i2p_sam_session = std::make_unique<i2p::sam::Session>(gArgs.GetDataDirNet() / "i2p_private_key",
3577 [ + - ]: 8 : *i2p_sam, m_interrupt_net);
3578 : 1066 : }
3579 : : }
3580 : :
3581 : : // Randomize the order in which we may query seednode to potentially prevent connecting to the same one every restart (and signal that we have restarted)
3582 : 1083 : std::vector<std::string> seed_nodes = connOptions.vSeedNodes;
3583 [ + + ]: 1083 : if (!seed_nodes.empty()) {
3584 : 5 : std::shuffle(seed_nodes.begin(), seed_nodes.end(), FastRandomContext{});
3585 : : }
3586 : :
3587 [ + + ]: 1083 : if (m_use_addrman_outgoing) {
3588 : : // Load addresses from anchors.dat
3589 [ + - + - ]: 105 : m_anchors = ReadAnchors(gArgs.GetDataDirNet() / ANCHORS_DATABASE_FILENAME);
3590 [ - + - + ]: 35 : if (m_anchors.size() > MAX_BLOCK_RELAY_ONLY_ANCHORS) {
3591 [ # # ]: 0 : m_anchors.resize(MAX_BLOCK_RELAY_ONLY_ANCHORS);
3592 : : }
3593 [ - + + - ]: 35 : LogInfo("%i block-relay-only anchors will be tried for connections.\n", m_anchors.size());
3594 : : }
3595 : :
3596 [ + - ]: 1083 : if (m_client_interface) {
3597 [ + - ]: 1083 : m_client_interface->InitMessage(_("Starting network threads…"));
3598 : : }
3599 : :
3600 : 1083 : fAddressesInitialized = true;
3601 : :
3602 [ + - ]: 1083 : if (semOutbound == nullptr) {
3603 : : // initialize semaphore
3604 [ + + + - ]: 1085 : semOutbound = std::make_unique<std::counting_semaphore<>>(std::min(m_max_automatic_outbound, m_max_automatic_connections));
3605 : : }
3606 [ + - ]: 1083 : if (semAddnode == nullptr) {
3607 : : // initialize semaphore
3608 [ + - ]: 1083 : semAddnode = std::make_unique<std::counting_semaphore<>>(m_max_addnode);
3609 : : }
3610 : :
3611 : : //
3612 : : // Start threads
3613 : : //
3614 [ - + ]: 1083 : assert(m_msgproc);
3615 [ + - ]: 1083 : m_interrupt_net->reset();
3616 [ + - ]: 1083 : flagInterruptMsgProc = false;
3617 : :
3618 : 1083 : {
3619 [ + - ]: 1083 : LOCK(mutexMsgProc);
3620 [ + - ]: 1083 : fMsgProcWake = false;
3621 : 1083 : }
3622 : :
3623 : : // Send and receive from sockets, accept connections
3624 [ + - ]: 2166 : threadSocketHandler = std::thread(&util::TraceThread, "net", [this] { ThreadSocketHandler(); });
3625 : :
3626 [ + - + - : 1083 : if (!gArgs.GetBoolArg("-dnsseed", DEFAULT_DNSSEED))
+ + ]
3627 [ + - ]: 1070 : LogInfo("DNS seeding disabled\n");
3628 : : else
3629 [ + - ]: 26 : threadDNSAddressSeed = std::thread(&util::TraceThread, "dnsseed", [this] { ThreadDNSAddressSeed(); });
3630 : :
3631 : : // Initiate manual connections
3632 [ + - ]: 2166 : threadOpenAddedConnections = std::thread(&util::TraceThread, "addcon", [this] { ThreadOpenAddedConnections(); });
3633 : :
3634 [ + + + - ]: 1083 : if (connOptions.m_use_addrman_outgoing && !connOptions.m_specified_outgoing.empty()) {
3635 [ # # ]: 0 : if (m_client_interface) {
3636 : 0 : m_client_interface->ThreadSafeMessageBox(
3637 : 0 : _("Cannot provide specific connections and have addrman find outgoing connections at the same time."),
3638 [ # # ]: 0 : CClientUIInterface::MSG_ERROR);
3639 : : }
3640 : 0 : return false;
3641 : : }
3642 [ + + + + ]: 1083 : if (connOptions.m_use_addrman_outgoing || !connOptions.m_specified_outgoing.empty()) {
3643 : 40 : threadOpenConnections = std::thread(
3644 [ + - ]: 40 : &util::TraceThread, "opencon",
3645 [ + - + - : 160 : [this, connect = connOptions.m_specified_outgoing, seed_nodes = std::move(seed_nodes)] { ThreadOpenConnections(connect, seed_nodes); });
- + + - ]
3646 : : }
3647 : :
3648 : : // Process messages
3649 [ + - ]: 2166 : threadMessageHandler = std::thread(&util::TraceThread, "msghand", [this] { ThreadMessageHandler(); });
3650 : :
3651 [ + + ]: 1083 : if (m_i2p_sam_session) {
3652 : 4 : threadI2PAcceptIncoming =
3653 [ + - ]: 8 : std::thread(&util::TraceThread, "i2paccept", [this] { ThreadI2PAcceptIncoming(); });
3654 : : }
3655 : :
3656 [ + - + - : 1083 : if (gArgs.GetBoolArg("-privatebroadcast", DEFAULT_PRIVATE_BROADCAST)) {
+ + ]
3657 : 6 : threadPrivateBroadcast =
3658 [ + - ]: 12 : std::thread(&util::TraceThread, "privbcast", [this] { ThreadPrivateBroadcast(); });
3659 : : }
3660 : :
3661 : : // Dump network addresses
3662 [ + - ]: 1094 : scheduler.scheduleEvery([this] { DumpAddresses(); }, DUMP_PEERS_INTERVAL);
3663 : :
3664 : : // Run the ASMap Health check once and then schedule it to run every 24h.
3665 [ + - + + ]: 1083 : if (m_netgroupman.UsingASMap()) {
3666 [ + - ]: 7 : ASMapHealthCheck();
3667 [ + - ]: 14 : scheduler.scheduleEvery([this] { ASMapHealthCheck(); }, ASMAP_HEALTH_CHECK_INTERVAL);
3668 : : }
3669 : :
3670 : : return true;
3671 : 1083 : }
3672 : :
3673 : : class CNetCleanup
3674 : : {
3675 : : public:
3676 : : CNetCleanup() = default;
3677 : :
3678 : : ~CNetCleanup()
3679 : : {
3680 : : #ifdef WIN32
3681 : : // Shutdown Windows Sockets
3682 : : WSACleanup();
3683 : : #endif
3684 : : }
3685 : : };
3686 : : static CNetCleanup instance_of_cnetcleanup;
3687 : :
3688 : 2504 : void CConnman::Interrupt()
3689 : : {
3690 : 2504 : {
3691 : 2504 : LOCK(mutexMsgProc);
3692 [ + - ]: 2504 : flagInterruptMsgProc = true;
3693 : 2504 : }
3694 : 2504 : condMsgProc.notify_all();
3695 : :
3696 : 2504 : (*m_interrupt_net)();
3697 : 2504 : g_socks5_interrupt();
3698 : :
3699 [ + + ]: 2504 : if (semOutbound) {
3700 [ + + ]: 12977 : for (int i=0; i<m_max_automatic_outbound; i++) {
3701 : 11894 : semOutbound->release();
3702 : : }
3703 : : }
3704 : :
3705 [ + + ]: 2504 : if (semAddnode) {
3706 [ + + ]: 9747 : for (int i=0; i<m_max_addnode; i++) {
3707 : 8664 : semAddnode->release();
3708 : : }
3709 : : }
3710 : :
3711 : 2504 : m_private_broadcast.m_sem_conn_max.release();
3712 : 2504 : m_private_broadcast.NumToOpenAdd(1); // Just unblock NumToOpenWait() to be able to continue with shutdown.
3713 : 2504 : }
3714 : :
3715 : 2504 : void CConnman::StopThreads()
3716 : : {
3717 [ + + ]: 2504 : if (threadPrivateBroadcast.joinable()) {
3718 : 6 : threadPrivateBroadcast.join();
3719 : : }
3720 [ + + ]: 2504 : if (threadI2PAcceptIncoming.joinable()) {
3721 : 4 : threadI2PAcceptIncoming.join();
3722 : : }
3723 [ + + ]: 2504 : if (threadMessageHandler.joinable())
3724 : 1083 : threadMessageHandler.join();
3725 [ + + ]: 2504 : if (threadOpenConnections.joinable())
3726 : 40 : threadOpenConnections.join();
3727 [ + + ]: 2504 : if (threadOpenAddedConnections.joinable())
3728 : 1083 : threadOpenAddedConnections.join();
3729 [ + + ]: 2504 : if (threadDNSAddressSeed.joinable())
3730 : 13 : threadDNSAddressSeed.join();
3731 [ + + ]: 2504 : if (threadSocketHandler.joinable())
3732 : 1083 : threadSocketHandler.join();
3733 : 2504 : }
3734 : :
3735 : 2504 : void CConnman::StopNodes()
3736 : : {
3737 : 2504 : AssertLockNotHeld(m_nodes_mutex);
3738 : 2504 : AssertLockNotHeld(m_reconnections_mutex);
3739 : :
3740 [ + + ]: 2504 : if (fAddressesInitialized) {
3741 : 1083 : DumpAddresses();
3742 : 1083 : fAddressesInitialized = false;
3743 : :
3744 [ + + ]: 1083 : if (m_use_addrman_outgoing) {
3745 : : // Anchor connections are only dumped during clean shutdown.
3746 : 35 : std::vector<CAddress> anchors_to_dump = GetCurrentBlockRelayOnlyConns();
3747 [ - + - + ]: 35 : if (anchors_to_dump.size() > MAX_BLOCK_RELAY_ONLY_ANCHORS) {
3748 [ # # ]: 0 : anchors_to_dump.resize(MAX_BLOCK_RELAY_ONLY_ANCHORS);
3749 : : }
3750 [ + - + - ]: 105 : DumpAnchors(gArgs.GetDataDirNet() / ANCHORS_DATABASE_FILENAME, anchors_to_dump);
3751 : 35 : }
3752 : : }
3753 : :
3754 : : // Delete peer connections.
3755 : 2504 : std::vector<CNode*> nodes;
3756 [ + - + - ]: 5008 : WITH_LOCK(m_nodes_mutex, nodes.swap(m_nodes));
3757 [ + + ]: 3291 : for (CNode* pnode : nodes) {
3758 [ + - + - : 787 : LogDebug(BCLog::NET, "Stopping node, %s", pnode->DisconnectMsg());
+ - + - ]
3759 [ + - ]: 787 : pnode->CloseSocketDisconnect();
3760 [ + - ]: 787 : DeleteNode(pnode);
3761 : : }
3762 : :
3763 [ - + ]: 2504 : for (CNode* pnode : m_nodes_disconnected) {
3764 [ # # ]: 0 : DeleteNode(pnode);
3765 : : }
3766 : 2504 : m_nodes_disconnected.clear();
3767 [ + - + - ]: 5008 : WITH_LOCK(m_reconnections_mutex, m_reconnections.clear());
3768 : 2504 : vhListenSocket.clear();
3769 [ + + ]: 2504 : semOutbound.reset();
3770 [ + + ]: 3587 : semAddnode.reset();
3771 : 2504 : }
3772 : :
3773 : 1837 : void CConnman::DeleteNode(CNode* pnode)
3774 : : {
3775 [ - + ]: 1837 : assert(pnode);
3776 : 1837 : m_msgproc->FinalizeNode(*pnode);
3777 : 1837 : delete pnode;
3778 : 1837 : }
3779 : :
3780 [ + - ]: 1343 : CConnman::~CConnman()
3781 : : {
3782 : 1343 : Interrupt();
3783 : 1343 : Stop();
3784 : 2686 : }
3785 : :
3786 : 488 : std::vector<CAddress> CConnman::GetAddressesUnsafe(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
3787 : : {
3788 : 488 : std::vector<CAddress> addresses = addrman.get().GetAddr(max_addresses, max_pct, network, filtered);
3789 [ + - ]: 488 : if (m_banman) {
3790 [ + - ]: 488 : addresses.erase(std::remove_if(addresses.begin(), addresses.end(),
3791 [ + - - + ]: 34482 : [this](const CAddress& addr){return m_banman->IsDiscouraged(addr) || m_banman->IsBanned(addr);}),
3792 [ + - ]: 488 : addresses.end());
3793 : : }
3794 : 488 : return addresses;
3795 : 0 : }
3796 : :
3797 : 1044 : std::vector<CAddress> CConnman::GetAddresses(CNode& requestor, size_t max_addresses, size_t max_pct)
3798 : : {
3799 : 1044 : uint64_t network_id = requestor.m_network_key;
3800 : 1044 : const auto current_time = GetTime<std::chrono::microseconds>();
3801 [ + - ]: 1044 : auto r = m_addr_response_caches.emplace(network_id, CachedAddrResponse{});
3802 [ + + ]: 1044 : CachedAddrResponse& cache_entry = r.first->second;
3803 [ + + ]: 1044 : if (cache_entry.m_cache_entry_expiration < current_time) { // If emplace() added new one it has expiration 0.
3804 : 401 : cache_entry.m_addrs_response_cache = GetAddressesUnsafe(max_addresses, max_pct, /*network=*/std::nullopt);
3805 : : // Choosing a proper cache lifetime is a trade-off between the privacy leak minimization
3806 : : // and the usefulness of ADDR responses to honest users.
3807 : : //
3808 : : // Longer cache lifetime makes it more difficult for an attacker to scrape
3809 : : // enough AddrMan data to maliciously infer something useful.
3810 : : // By the time an attacker scraped enough AddrMan records, most of
3811 : : // the records should be old enough to not leak topology info by
3812 : : // e.g. analyzing real-time changes in timestamps.
3813 : : //
3814 : : // It takes only several hundred requests to scrape everything from an AddrMan containing 100,000 nodes,
3815 : : // so ~24 hours of cache lifetime indeed makes the data less inferable by the time
3816 : : // most of it could be scraped (considering that timestamps are updated via
3817 : : // ADDR self-announcements and when nodes communicate).
3818 : : // We also should be robust to those attacks which may not require scraping *full* victim's AddrMan
3819 : : // (because even several timestamps of the same handful of nodes may leak privacy).
3820 : : //
3821 : : // On the other hand, longer cache lifetime makes ADDR responses
3822 : : // outdated and less useful for an honest requestor, e.g. if most nodes
3823 : : // in the ADDR response are no longer active.
3824 : : //
3825 : : // However, the churn in the network is known to be rather low. Since we consider
3826 : : // nodes to be "terrible" (see IsTerrible()) if the timestamps are older than 30 days,
3827 : : // max. 24 hours of "penalty" due to cache shouldn't make any meaningful difference
3828 : : // in terms of the freshness of the response.
3829 : 401 : cache_entry.m_cache_entry_expiration = current_time +
3830 : 401 : 21h + FastRandomContext().randrange<std::chrono::microseconds>(6h);
3831 : : }
3832 : 1044 : return cache_entry.m_addrs_response_cache;
3833 : : }
3834 : :
3835 : 15 : bool CConnman::AddNode(const AddedNodeParams& add)
3836 : : {
3837 [ + - + - ]: 15 : const CService resolved(LookupNumeric(add.m_added_node, GetDefaultPort(add.m_added_node)));
3838 [ + - ]: 15 : const bool resolved_is_valid{resolved.IsValid()};
3839 : :
3840 [ + - ]: 15 : LOCK(m_added_nodes_mutex);
3841 [ + + ]: 27 : for (const auto& it : m_added_node_params) {
3842 [ + + + - : 50 : if (add.m_added_node == it.m_added_node || (resolved_is_valid && resolved == LookupNumeric(it.m_added_node, GetDefaultPort(it.m_added_node)))) return false;
+ - + - +
- + - + +
+ + + + -
- - - ]
3843 : : }
3844 : :
3845 [ + - ]: 9 : m_added_node_params.push_back(add);
3846 : : return true;
3847 : 15 : }
3848 : :
3849 : 4 : bool CConnman::RemoveAddedNode(std::string_view node)
3850 : : {
3851 : 4 : LOCK(m_added_nodes_mutex);
3852 [ + + ]: 6 : for (auto it = m_added_node_params.begin(); it != m_added_node_params.end(); ++it) {
3853 [ - + + + ]: 4 : if (node == it->m_added_node) {
3854 : 2 : m_added_node_params.erase(it);
3855 : 2 : return true;
3856 : : }
3857 : : }
3858 : : return false;
3859 : 4 : }
3860 : :
3861 : 24 : bool CConnman::AddedNodesContain(const CAddress& addr) const
3862 : : {
3863 : 24 : AssertLockNotHeld(m_added_nodes_mutex);
3864 : 24 : const std::string addr_str{addr.ToStringAddr()};
3865 [ + - ]: 24 : const std::string addr_port_str{addr.ToStringAddrPort()};
3866 [ + - ]: 24 : LOCK(m_added_nodes_mutex);
3867 [ - + ]: 24 : return (m_added_node_params.size() < 24 // bound the query to a reasonable limit
3868 [ + - + + ]: 24 : && std::any_of(m_added_node_params.cbegin(), m_added_node_params.cend(),
3869 [ + - + + : 44 : [&](const auto& p) { return p.m_added_node == addr_str || p.m_added_node == addr_port_str; }));
+ - ]
3870 : 24 : }
3871 : :
3872 : 3058 : size_t CConnman::GetNodeCount(ConnectionDirection flags) const
3873 : : {
3874 : 3058 : LOCK(m_nodes_mutex);
3875 [ + + ]: 3058 : if (flags == ConnectionDirection::Both) // Shortcut if we want total
3876 [ - + ]: 1024 : return m_nodes.size();
3877 : :
3878 : 2034 : int nNum = 0;
3879 [ + + ]: 3166 : for (const auto& pnode : m_nodes) {
3880 [ + + + + ]: 1788 : if (flags & (pnode->IsInboundConn() ? ConnectionDirection::In : ConnectionDirection::Out)) {
3881 : 566 : nNum++;
3882 : : }
3883 : : }
3884 : :
3885 : 2034 : return nNum;
3886 : 3058 : }
3887 : :
3888 : :
3889 : 0 : std::map<CNetAddr, LocalServiceInfo> CConnman::getNetLocalAddresses() const
3890 : : {
3891 : 0 : LOCK(g_maplocalhost_mutex);
3892 [ # # # # ]: 0 : return mapLocalHost;
3893 : 0 : }
3894 : :
3895 : 17278 : uint32_t CConnman::GetMappedAS(const CNetAddr& addr) const
3896 : : {
3897 : 17278 : return m_netgroupman.GetMappedAS(addr);
3898 : : }
3899 : :
3900 : 7154 : void CConnman::GetNodeStats(std::vector<CNodeStats>& vstats) const
3901 : : {
3902 : 7154 : AssertLockNotHeld(m_nodes_mutex);
3903 : :
3904 : 7154 : vstats.clear();
3905 : 7154 : LOCK(m_nodes_mutex);
3906 [ - + + - ]: 7154 : vstats.reserve(m_nodes.size());
3907 [ + + ]: 20922 : for (CNode* pnode : m_nodes) {
3908 [ + - ]: 13768 : vstats.emplace_back();
3909 [ + - ]: 13768 : pnode->CopyStats(vstats.back());
3910 [ + - ]: 13768 : vstats.back().m_mapped_as = GetMappedAS(pnode->addr);
3911 : : }
3912 : 7154 : }
3913 : :
3914 : 4 : bool CConnman::DisconnectNode(std::string_view strNode)
3915 : : {
3916 : 4 : LOCK(m_nodes_mutex);
3917 [ - + ]: 10 : auto it = std::ranges::find_if(m_nodes, [&strNode](CNode* node) { return node->m_addr_name == strNode; });
3918 [ + + ]: 4 : if (it != m_nodes.end()) {
3919 : 2 : CNode* node{*it};
3920 [ + - + - : 2 : LogDebug(BCLog::NET, "disconnect by address%s match, %s", (fLogIPs ? strprintf("=%s", strNode) : ""), node->DisconnectMsg());
+ - - + -
- + - +
- ]
3921 : 2 : node->fDisconnect = true;
3922 : 2 : return true;
3923 : : }
3924 : : return false;
3925 : 4 : }
3926 : :
3927 : 33 : bool CConnman::DisconnectNode(const CSubNet& subnet)
3928 : : {
3929 : 33 : AssertLockNotHeld(m_nodes_mutex);
3930 : 33 : bool disconnected = false;
3931 : 33 : LOCK(m_nodes_mutex);
3932 [ + + ]: 49 : for (CNode* pnode : m_nodes) {
3933 [ + - + + ]: 16 : if (subnet.Match(pnode->addr)) {
3934 [ + - + - : 22 : LogDebug(BCLog::NET, "disconnect by subnet%s match, %s", (fLogIPs ? strprintf("=%s", subnet.ToString()) : ""), pnode->DisconnectMsg());
+ - - + -
- - - + -
+ - - + -
- ]
3935 : 11 : pnode->fDisconnect = true;
3936 : 11 : disconnected = true;
3937 : : }
3938 : : }
3939 [ + - ]: 33 : return disconnected;
3940 : 33 : }
3941 : :
3942 : 20 : bool CConnman::DisconnectNode(const CNetAddr& addr)
3943 : : {
3944 : 20 : AssertLockNotHeld(m_nodes_mutex);
3945 [ + - ]: 20 : return DisconnectNode(CSubNet(addr));
3946 : : }
3947 : :
3948 : 127 : bool CConnman::DisconnectNode(NodeId id)
3949 : : {
3950 : 127 : LOCK(m_nodes_mutex);
3951 [ + - ]: 188 : for(CNode* pnode : m_nodes) {
3952 [ + + ]: 188 : if (id == pnode->GetId()) {
3953 [ + - + - : 127 : LogDebug(BCLog::NET, "disconnect by id, %s", pnode->DisconnectMsg());
+ - + - ]
3954 : 127 : pnode->fDisconnect = true;
3955 : 127 : return true;
3956 : : }
3957 : : }
3958 : : return false;
3959 : 127 : }
3960 : :
3961 : 220202 : void CConnman::RecordBytesRecv(uint64_t bytes)
3962 : : {
3963 : 220202 : nTotalBytesRecv += bytes;
3964 : 220202 : }
3965 : :
3966 : 147191 : void CConnman::RecordBytesSent(uint64_t bytes)
3967 : : {
3968 : 147191 : AssertLockNotHeld(m_total_bytes_sent_mutex);
3969 : 147191 : LOCK(m_total_bytes_sent_mutex);
3970 : :
3971 : 147191 : nTotalBytesSent += bytes;
3972 : :
3973 : 147191 : const auto now = GetTime<std::chrono::seconds>();
3974 [ + + ]: 147191 : if (nMaxOutboundCycleStartTime + MAX_UPLOAD_TIMEFRAME < now)
3975 : : {
3976 : : // timeframe expired, reset cycle
3977 : 587 : nMaxOutboundCycleStartTime = now;
3978 : 587 : nMaxOutboundTotalBytesSentInCycle = 0;
3979 : : }
3980 : :
3981 [ + - ]: 147191 : nMaxOutboundTotalBytesSentInCycle += bytes;
3982 : 147191 : }
3983 : :
3984 : 19 : uint64_t CConnman::GetMaxOutboundTarget() const
3985 : : {
3986 : 19 : AssertLockNotHeld(m_total_bytes_sent_mutex);
3987 : 19 : LOCK(m_total_bytes_sent_mutex);
3988 [ + - ]: 19 : return nMaxOutboundLimit;
3989 : 19 : }
3990 : :
3991 : 19 : std::chrono::seconds CConnman::GetMaxOutboundTimeframe() const
3992 : : {
3993 : 19 : return MAX_UPLOAD_TIMEFRAME;
3994 : : }
3995 : :
3996 : 19 : std::chrono::seconds CConnman::GetMaxOutboundTimeLeftInCycle() const
3997 : : {
3998 : 19 : AssertLockNotHeld(m_total_bytes_sent_mutex);
3999 : 19 : LOCK(m_total_bytes_sent_mutex);
4000 [ + - ]: 19 : return GetMaxOutboundTimeLeftInCycle_();
4001 : 19 : }
4002 : :
4003 : 1127 : std::chrono::seconds CConnman::GetMaxOutboundTimeLeftInCycle_() const
4004 : : {
4005 : 1127 : AssertLockHeld(m_total_bytes_sent_mutex);
4006 : :
4007 [ + + ]: 1127 : if (nMaxOutboundLimit == 0)
4008 : 13 : return 0s;
4009 : :
4010 [ + + ]: 1114 : if (nMaxOutboundCycleStartTime.count() == 0)
4011 : 4 : return MAX_UPLOAD_TIMEFRAME;
4012 : :
4013 : 1110 : const std::chrono::seconds cycleEndTime = nMaxOutboundCycleStartTime + MAX_UPLOAD_TIMEFRAME;
4014 : 1110 : const auto now = GetTime<std::chrono::seconds>();
4015 [ - + ]: 1110 : return (cycleEndTime < now) ? 0s : cycleEndTime - now;
4016 : : }
4017 : :
4018 : 25522 : bool CConnman::OutboundTargetReached(bool historicalBlockServingLimit) const
4019 : : {
4020 : 25522 : AssertLockNotHeld(m_total_bytes_sent_mutex);
4021 : 25522 : LOCK(m_total_bytes_sent_mutex);
4022 [ + + ]: 25522 : if (nMaxOutboundLimit == 0)
4023 : : return false;
4024 : :
4025 [ + + ]: 1116 : if (historicalBlockServingLimit)
4026 : : {
4027 : : // keep a large enough buffer to at least relay each block once
4028 [ + - ]: 1108 : const std::chrono::seconds timeLeftInCycle = GetMaxOutboundTimeLeftInCycle_();
4029 : 1108 : const uint64_t buffer = timeLeftInCycle / std::chrono::minutes{10} * MAX_BLOCK_SERIALIZED_SIZE;
4030 [ + + + + ]: 1108 : if (buffer >= nMaxOutboundLimit || nMaxOutboundTotalBytesSentInCycle >= nMaxOutboundLimit - buffer)
4031 : 827 : return true;
4032 : : }
4033 [ + + ]: 8 : else if (nMaxOutboundTotalBytesSentInCycle >= nMaxOutboundLimit)
4034 : 3 : return true;
4035 : :
4036 : : return false;
4037 : 25522 : }
4038 : :
4039 : 19 : uint64_t CConnman::GetOutboundTargetBytesLeft() const
4040 : : {
4041 : 19 : AssertLockNotHeld(m_total_bytes_sent_mutex);
4042 : 19 : LOCK(m_total_bytes_sent_mutex);
4043 [ + + ]: 19 : if (nMaxOutboundLimit == 0)
4044 : : return 0;
4045 : :
4046 [ + + ]: 6 : return (nMaxOutboundTotalBytesSentInCycle >= nMaxOutboundLimit) ? 0 : nMaxOutboundLimit - nMaxOutboundTotalBytesSentInCycle;
4047 : 19 : }
4048 : :
4049 : 19 : uint64_t CConnman::GetTotalBytesRecv() const
4050 : : {
4051 : 19 : return nTotalBytesRecv;
4052 : : }
4053 : :
4054 : 19 : uint64_t CConnman::GetTotalBytesSent() const
4055 : : {
4056 : 19 : AssertLockNotHeld(m_total_bytes_sent_mutex);
4057 : 19 : LOCK(m_total_bytes_sent_mutex);
4058 [ + - ]: 19 : return nTotalBytesSent;
4059 : 19 : }
4060 : :
4061 : 5376 : ServiceFlags CConnman::GetLocalServices() const
4062 : : {
4063 : 5376 : return m_local_services;
4064 : : }
4065 : :
4066 : 1878 : static std::unique_ptr<Transport> MakeTransport(NodeId id, bool use_v2transport, bool inbound) noexcept
4067 : : {
4068 [ + + ]: 1878 : if (use_v2transport) {
4069 [ - + ]: 209 : return std::make_unique<V2Transport>(id, /*initiating=*/!inbound);
4070 : : } else {
4071 [ - + ]: 1669 : return std::make_unique<V1Transport>(id);
4072 : : }
4073 : : }
4074 : :
4075 : 1878 : CNode::CNode(NodeId idIn,
4076 : : std::shared_ptr<Sock> sock,
4077 : : const CAddress& addrIn,
4078 : : uint64_t nKeyedNetGroupIn,
4079 : : uint64_t nLocalHostNonceIn,
4080 : : const CService& addrBindIn,
4081 : : const std::string& addrNameIn,
4082 : : ConnectionType conn_type_in,
4083 : : bool inbound_onion,
4084 : : uint64_t network_key,
4085 : 1878 : CNodeOptions&& node_opts)
4086 : 1878 : : m_transport{MakeTransport(idIn, node_opts.use_v2transport, conn_type_in == ConnectionType::INBOUND)},
4087 : 1878 : m_permission_flags{node_opts.permission_flags},
4088 [ + + ]: 1878 : m_sock{sock},
4089 : 1878 : m_connected{NodeClock::now()},
4090 [ - - ]: 1878 : m_proxy_override{std::move(node_opts.proxy_override)},
4091 : 1878 : addr{addrIn},
4092 : 1878 : addrBind{addrBindIn},
4093 [ + + + - ]: 1878 : m_addr_name{addrNameIn.empty() ? addr.ToStringAddrPort() : addrNameIn},
4094 [ - + ]: 1878 : m_dest(addrNameIn),
4095 : 1878 : m_inbound_onion{inbound_onion},
4096 [ + - ]: 1878 : m_prefer_evict{node_opts.prefer_evict},
4097 : 1878 : nKeyedNetGroup{nKeyedNetGroupIn},
4098 : 1878 : m_network_key{network_key},
4099 : 1878 : m_conn_type{conn_type_in},
4100 : 1878 : id{idIn},
4101 : 1878 : nLocalHostNonce{nLocalHostNonceIn},
4102 [ + - ]: 1878 : m_recv_flood_size{node_opts.recv_flood_size},
4103 [ + - + - : 3756 : m_i2p_sam_session{std::move(node_opts.i2p_sam_session)}
+ + ]
4104 : : {
4105 [ + + + - ]: 1878 : if (inbound_onion) assert(conn_type_in == ConnectionType::INBOUND);
4106 : :
4107 [ + + ]: 69486 : for (const auto& msg : ALL_NET_MESSAGE_TYPES) {
4108 [ + - ]: 67608 : mapRecvBytesPerMsgType[msg] = 0;
4109 : : }
4110 [ + - ]: 1878 : mapRecvBytesPerMsgType[NET_MESSAGE_TYPE_OTHER] = 0;
4111 : :
4112 [ + + ]: 1878 : if (fLogIPs) {
4113 [ + - + - : 9 : LogDebug(BCLog::NET, "Added connection to %s peer=%d\n", m_addr_name, id);
+ - ]
4114 : : } else {
4115 [ + - + - : 1869 : LogDebug(BCLog::NET, "Added connection peer=%d\n", id);
+ - ]
4116 : : }
4117 [ - - ]: 1878 : }
4118 : :
4119 : 114112 : void CNode::MarkReceivedMsgsForProcessing()
4120 : : {
4121 : 114112 : AssertLockNotHeld(m_msg_process_queue_mutex);
4122 : :
4123 : 114112 : size_t nSizeAdded = 0;
4124 [ + + ]: 257480 : for (const auto& msg : vRecvMsg) {
4125 : : // vRecvMsg contains only completed CNetMessage
4126 : : // the single possible partially deserialized message are held by TransportDeserializer
4127 : 143368 : nSizeAdded += msg.GetMemoryUsage();
4128 : : }
4129 : :
4130 : 114112 : LOCK(m_msg_process_queue_mutex);
4131 : 114112 : m_msg_process_queue.splice(m_msg_process_queue.end(), vRecvMsg);
4132 : 114112 : m_msg_process_queue_size += nSizeAdded;
4133 [ + - ]: 114112 : fPauseRecv = m_msg_process_queue_size > m_recv_flood_size;
4134 : 114112 : }
4135 : :
4136 : 384598 : std::optional<std::pair<CNetMessage, bool>> CNode::PollMessage()
4137 : : {
4138 : 384598 : LOCK(m_msg_process_queue_mutex);
4139 [ + + ]: 384598 : if (m_msg_process_queue.empty()) return std::nullopt;
4140 : :
4141 : 143241 : std::list<CNetMessage> msgs;
4142 : : // Just take one message
4143 : 143241 : msgs.splice(msgs.begin(), m_msg_process_queue, m_msg_process_queue.begin());
4144 : 143241 : m_msg_process_queue_size -= msgs.front().GetMemoryUsage();
4145 : 143241 : fPauseRecv = m_msg_process_queue_size > m_recv_flood_size;
4146 : :
4147 : 286482 : return std::make_pair(std::move(msgs.front()), !m_msg_process_queue.empty());
4148 : 143241 : }
4149 : :
4150 : 83142 : bool CConnman::NodeFullyConnected(const CNode* pnode)
4151 : : {
4152 [ + - + + : 83142 : return pnode && pnode->fSuccessfullyConnected && !pnode->fDisconnect;
+ + ]
4153 : : }
4154 : :
4155 : : /// Private broadcast connections only need to send certain message types.
4156 : : /// Other messages are not needed and may degrade privacy.
4157 : 83 : static bool IsOutboundMessageAllowedInPrivateBroadcast(std::string_view type) noexcept
4158 : : {
4159 : 145 : return type == NetMsgType::VERSION ||
4160 [ + + ]: 62 : type == NetMsgType::VERACK ||
4161 [ + + ]: 46 : type == NetMsgType::INV ||
4162 [ + + + + ]: 113 : type == NetMsgType::TX ||
4163 [ + - ]: 15 : type == NetMsgType::PING;
4164 : : }
4165 : :
4166 : 146920 : void CConnman::PushMessage(CNode* pnode, CSerializedNetMsg&& msg)
4167 : : {
4168 : 146920 : AssertLockNotHeld(m_total_bytes_sent_mutex);
4169 : :
4170 [ + + - + : 146920 : if (pnode->IsPrivateBroadcastConn() && !IsOutboundMessageAllowedInPrivateBroadcast(msg.m_type)) {
- + ]
4171 [ # # # # ]: 0 : LogDebug(BCLog::PRIVBROADCAST, "Omitting send of message '%s', %s", msg.m_type, pnode->LogPeer());
4172 : 0 : return;
4173 : : }
4174 : :
4175 [ + + + + : 146920 : if (!m_private_broadcast.m_outbound_tor_ok_at_least_once.load() && !pnode->IsInboundConn() &&
+ + ]
4176 [ + + + + : 199106 : pnode->addr.IsTor() && msg.m_type == NetMsgType::VERACK) {
+ + ]
4177 : : // If we are sending the peer VERACK that means we successfully sent
4178 : : // and received another message to/from that peer (VERSION).
4179 : 2 : m_private_broadcast.m_outbound_tor_ok_at_least_once.store(true);
4180 : : }
4181 : :
4182 [ - + ]: 146920 : size_t nMessageSize = msg.data.size();
4183 [ + - ]: 146920 : LogDebug(BCLog::NET, "sending %s (%d bytes) peer=%d\n", msg.m_type, nMessageSize, pnode->GetId());
4184 [ + + ]: 146920 : if (m_capture_messages) {
4185 [ - + ]: 20 : CaptureMessage(pnode->addr, msg.m_type, msg.data, /*is_incoming=*/false);
4186 : : }
4187 : :
4188 : : TRACEPOINT(net, outbound_message,
4189 : : pnode->GetId(),
4190 : : pnode->m_addr_name.c_str(),
4191 : : pnode->ConnectionTypeAsString().c_str(),
4192 : : msg.m_type.c_str(),
4193 : : msg.data.size(),
4194 : : msg.data.data()
4195 : 146920 : );
4196 : :
4197 : 146920 : size_t nBytesSent = 0;
4198 : 146920 : {
4199 : 146920 : LOCK(pnode->cs_vSend);
4200 : : // Check if the transport still has unsent bytes, and indicate to it that we're about to
4201 : : // give it a message to send.
4202 [ + + ]: 146920 : const auto& [to_send, more, _msg_type] =
4203 [ + + ]: 146920 : pnode->m_transport->GetBytesToSend(/*have_next_message=*/true);
4204 [ + + - + ]: 146920 : const bool queue_was_empty{to_send.empty() && pnode->vSendMsg.empty()};
4205 : :
4206 : : // Update memory usage of send buffer.
4207 : 146920 : pnode->m_send_memusage += msg.GetMemoryUsage();
4208 [ + + ]: 146920 : if (pnode->m_send_memusage + pnode->m_transport->GetSendMemoryUsage() > nSendBufferMaxSize) pnode->fPauseSend = true;
4209 : : // Move message to vSendMsg queue.
4210 [ + - ]: 146920 : pnode->vSendMsg.push_back(std::move(msg));
4211 : :
4212 : : // If there was nothing to send before, and there is now (predicted by the "more" value
4213 : : // returned by the GetBytesToSend call above), attempt "optimistic write":
4214 : : // because the poll/select loop may pause for SELECT_TIMEOUT_MILLISECONDS before actually
4215 : : // doing a send, try sending from the calling thread if the queue was empty before.
4216 : : // With a V1Transport, more will always be true here, because adding a message always
4217 : : // results in sendable bytes there, but with V2Transport this is not the case (it may
4218 : : // still be in the handshake).
4219 [ + + + + ]: 146920 : if (queue_was_empty && more) {
4220 [ + - ]: 146286 : std::tie(nBytesSent, std::ignore) = SocketSendData(*pnode);
4221 : : }
4222 : 146920 : }
4223 [ + + ]: 146920 : if (nBytesSent) RecordBytesSent(nBytesSent);
4224 : : }
4225 : :
4226 : 998 : bool CConnman::ForNode(NodeId id, std::function<bool(CNode* pnode)> func)
4227 : : {
4228 : 998 : AssertLockNotHeld(m_nodes_mutex);
4229 : :
4230 : 998 : CNode* found = nullptr;
4231 : 998 : LOCK(m_nodes_mutex);
4232 [ + + ]: 1342 : for (auto&& pnode : m_nodes) {
4233 [ + + ]: 1279 : if(pnode->GetId() == id) {
4234 : : found = pnode;
4235 : : break;
4236 : : }
4237 : : }
4238 [ + + + - : 999 : return found != nullptr && NodeFullyConnected(found) && func(found);
+ - + - +
+ + - ]
4239 : 998 : }
4240 : :
4241 : 5564 : CSipHasher CConnman::GetDeterministicRandomizer(uint64_t id) const
4242 : : {
4243 : 5564 : return CSipHasher(nSeed0, nSeed1).Write(id);
4244 : : }
4245 : :
4246 : 1837 : uint64_t CConnman::CalculateKeyedNetGroup(const CNetAddr& address) const
4247 : : {
4248 : 1837 : std::vector<unsigned char> vchNetGroup(m_netgroupman.GetGroup(address));
4249 : :
4250 [ + - + - : 3674 : return GetDeterministicRandomizer(RANDOMIZER_ID_NETGROUP).Write(vchNetGroup).Finalize();
+ - ]
4251 : 1837 : }
4252 : :
4253 : 6452 : void CConnman::PerformReconnections()
4254 : : {
4255 : 6452 : AssertLockNotHeld(m_nodes_mutex);
4256 : 6452 : AssertLockNotHeld(m_reconnections_mutex);
4257 : 6452 : AssertLockNotHeld(m_unused_i2p_sessions_mutex);
4258 : 6464 : while (true) {
4259 : : // Move first element of m_reconnections to todo (avoiding an allocation inside the lock).
4260 [ + - ]: 6458 : decltype(m_reconnections) todo;
4261 : 6458 : {
4262 [ + - ]: 6458 : LOCK(m_reconnections_mutex);
4263 [ + + ]: 6458 : if (m_reconnections.empty()) break;
4264 [ + - ]: 6 : todo.splice(todo.end(), m_reconnections, m_reconnections.begin());
4265 : 6452 : }
4266 : :
4267 [ + + ]: 6 : auto& item = *todo.begin();
4268 : 12 : OpenNetworkConnection(item.addr_connect,
4269 : : // We only reconnect if the first attempt to connect succeeded at
4270 : : // connection time, but then failed after the CNode object was
4271 : : // created. Since we already know connecting is possible, do not
4272 : : // count failure to reconnect.
4273 : : /*fCountFailure=*/false,
4274 [ + - ]: 6 : std::move(item.grant),
4275 : 3 : item.destination.empty() ? nullptr : item.destination.c_str(),
4276 : : item.conn_type,
4277 : 6 : item.use_v2transport,
4278 [ + + ]: 6 : item.proxy_override);
4279 : 6 : }
4280 : 6452 : }
4281 : :
4282 : 7 : void CConnman::ASMapHealthCheck()
4283 : : {
4284 : 7 : const std::vector<CAddress> v4_addrs{GetAddressesUnsafe(/*max_addresses=*/0, /*max_pct=*/0, Network::NET_IPV4, /*filtered=*/false)};
4285 [ + - ]: 7 : const std::vector<CAddress> v6_addrs{GetAddressesUnsafe(/*max_addresses=*/0, /*max_pct=*/0, Network::NET_IPV6, /*filtered=*/false)};
4286 : 7 : std::vector<CNetAddr> clearnet_addrs;
4287 [ - + - + : 7 : clearnet_addrs.reserve(v4_addrs.size() + v6_addrs.size());
+ - ]
4288 [ + - ]: 7 : std::transform(v4_addrs.begin(), v4_addrs.end(), std::back_inserter(clearnet_addrs),
4289 [ + - ]: 8 : [](const CAddress& addr) { return static_cast<CNetAddr>(addr); });
4290 [ + - ]: 7 : std::transform(v6_addrs.begin(), v6_addrs.end(), std::back_inserter(clearnet_addrs),
4291 [ # # ]: 0 : [](const CAddress& addr) { return static_cast<CNetAddr>(addr); });
4292 [ + - ]: 7 : m_netgroupman.ASMapHealthCheck(clearnet_addrs);
4293 : 7 : }
4294 : :
4295 : : // Dump binary message to file, with timestamp.
4296 : 23 : static void CaptureMessageToFile(const CAddress& addr,
4297 : : const std::string& msg_type,
4298 : : std::span<const unsigned char> data,
4299 : : bool is_incoming)
4300 : : {
4301 : : // Note: This function captures the message at the time of processing,
4302 : : // not at socket receive/send time.
4303 : : // This ensures that the messages are always in order from an application
4304 : : // layer (processing) perspective.
4305 : 23 : auto now = GetTime<std::chrono::microseconds>();
4306 : :
4307 : : // Windows folder names cannot include a colon
4308 : 23 : std::string clean_addr = addr.ToStringAddrPort();
4309 [ - + ]: 23 : std::replace(clean_addr.begin(), clean_addr.end(), ':', '_');
4310 : :
4311 [ - + + - : 115 : fs::path base_path = gArgs.GetDataDirNet() / "message_capture" / fs::u8path(clean_addr);
+ - + - ]
4312 [ + - ]: 23 : fs::create_directories(base_path);
4313 : :
4314 [ + + + - ]: 69 : fs::path path = base_path / (is_incoming ? "msgs_recv.dat" : "msgs_sent.dat");
4315 [ + - + - ]: 46 : AutoFile f{fsbridge::fopen(path, "ab")};
4316 : :
4317 [ + - ]: 23 : ser_writedata64(f, now.count());
4318 [ - + + - ]: 23 : f << std::span{msg_type};
4319 [ - + + + ]: 135 : for (auto i = msg_type.length(); i < CMessageHeader::MESSAGE_TYPE_SIZE; ++i) {
4320 [ + - ]: 224 : f << uint8_t{'\0'};
4321 : : }
4322 [ + - ]: 23 : uint32_t size = data.size();
4323 [ + - ]: 23 : ser_writedata32(f, size);
4324 [ + - ]: 23 : f << data;
4325 : :
4326 [ + - - + ]: 46 : if (f.fclose() != 0) {
4327 : 0 : throw std::ios_base::failure(
4328 [ # # # # : 0 : strprintf("Error closing %s after write, file contents are likely incomplete", fs::PathToString(path)));
# # ]
4329 : : }
4330 : 69 : }
4331 : :
4332 : : std::function<void(const CAddress& addr,
4333 : : const std::string& msg_type,
4334 : : std::span<const unsigned char> data,
4335 : : bool is_incoming)>
4336 : : CaptureMessage = CaptureMessageToFile;
|