Coverage Report

Created: 2026-07-14 18:13

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