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