Branch data Line data Source code
1 : : // Copyright (c) 2020-2022 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <test/util/net.h>
6 : :
7 : : #include <chainparams.h>
8 : : #include <node/eviction.h>
9 : : #include <net.h>
10 : : #include <net_processing.h>
11 : : #include <netmessagemaker.h>
12 : : #include <span.h>
13 : :
14 : : #include <vector>
15 : :
16 : 5274 : void ConnmanTestMsg::Handshake(CNode& node,
17 [ + - ]: 173 : bool successfully_connected,
18 [ + - ]: 173 : ServiceFlags remote_services,
19 : : ServiceFlags local_services,
20 : : int32_t version,
21 : : bool relay_txs)
22 : : {
23 : 5274 : auto& peerman{static_cast<PeerManager&>(*m_msgproc)};
24 : 5274 : auto& connman{*this};
25 : 5274 : const CNetMsgMaker mm{0};
26 : :
27 : 5274 : peerman.InitializeNode(node, local_services);
28 : 5274 : FlushSendBuffer(node); // Drop the version message added by InitializeNode.
29 : :
30 : 5274 : CSerializedNetMsg msg_version{
31 [ + - + - ]: 10548 : mm.Make(NetMsgType::VERSION,
32 : : version, //
33 [ + - ]: 5274 : Using<CustomUintFormatter<8>>(remote_services), //
34 : 5274 : int64_t{}, // dummy time
35 : 5274 : int64_t{}, // ignored service bits
36 [ + - + - ]: 5274 : CNetAddr::V1(CService{}), // dummy
37 : 5274 : int64_t{}, // ignored service bits
38 [ + - + - ]: 5274 : CNetAddr::V1(CService{}), // ignored
39 : 5274 : uint64_t{1}, // dummy nonce
40 : 5274 : std::string{}, // dummy subver
41 : 5274 : int32_t{}, // dummy starting_height
42 : : relay_txs),
43 : : };
44 : :
45 [ + - ]: 5274 : (void)connman.ReceiveMsgFrom(node, std::move(msg_version));
46 : 5274 : node.fPauseSend = false;
47 [ + - ]: 5274 : connman.ProcessMessagesOnce(node);
48 [ + - ]: 5274 : peerman.SendMessages(&node);
49 [ + - ]: 5274 : FlushSendBuffer(node); // Drop the verack message added by SendMessages.
50 [ + + ]: 5274 : if (node.fDisconnect) return;
51 [ + - ]: 3793 : assert(node.nVersion == version);
52 [ + - + - : 3793 : assert(node.GetCommonVersion() == std::min(version, PROTOCOL_VERSION));
+ - ]
53 : 3793 : CNodeStateStats statestats;
54 [ + - + - : 3793 : assert(peerman.GetNodeStateStats(node.GetId(), statestats));
+ - ]
55 [ + + + - : 3793 : assert(statestats.m_relay_txs == (relay_txs && !node.IsBlockOnlyConn()));
+ - ]
56 [ + - ]: 3793 : assert(statestats.their_services == remote_services);
57 [ + + ]: 3793 : if (successfully_connected) {
58 [ + - + - ]: 1933 : CSerializedNetMsg msg_verack{mm.Make(NetMsgType::VERACK)};
59 [ + - ]: 1933 : (void)connman.ReceiveMsgFrom(node, std::move(msg_verack));
60 : 1933 : node.fPauseSend = false;
61 [ + - ]: 1933 : connman.ProcessMessagesOnce(node);
62 [ + - ]: 1933 : peerman.SendMessages(&node);
63 [ + - ]: 1933 : assert(node.fSuccessfullyConnected == true);
64 : 1933 : }
65 [ - + ]: 5274 : }
66 : :
67 : 2504547 : void ConnmanTestMsg::NodeReceiveMsgBytes(CNode& node, Span<const uint8_t> msg_bytes, bool& complete) const
68 : : {
69 [ + - ]: 2504547 : assert(node.ReceiveMsgBytes(msg_bytes, complete));
70 [ + + ]: 2504547 : if (complete) {
71 : 1116095 : node.MarkReceivedMsgsForProcessing();
72 : 1116095 : }
73 : 2504547 : }
74 : 173 :
75 : 1268040 : void ConnmanTestMsg::FlushSendBuffer(CNode& node) const
76 : : {
77 : 1268040 : LOCK(node.cs_vSend);
78 : 1268040 : node.vSendMsg.clear();
79 : 1268040 : node.m_send_memusage = 0;
80 : 1274509 : while (true) {
81 : 1274509 : const auto& [to_send, _more, _msg_type] = node.m_transport->GetBytesToSend(false);
82 [ + + ]: 1274509 : if (to_send.empty()) break;
83 [ + - ]: 13111 : node.m_transport->MarkBytesSent(to_send.size());
84 : : }
85 : 1268040 : }
86 : :
87 : 1264699 : bool ConnmanTestMsg::ReceiveMsgFrom(CNode& node, CSerializedNetMsg&& ser_msg) const
88 : : {
89 : 1264699 : bool queued = node.m_transport->SetMessageToSend(ser_msg);
90 [ + - ]: 1264699 : assert(queued);
91 : 1264699 : bool complete{false};
92 : 3769246 : while (true) {
93 : 3769246 : const auto& [to_send, _more, _msg_type] = node.m_transport->GetBytesToSend(false);
94 [ + + ]: 3769246 : if (to_send.empty()) break;
95 : 5009094 : NodeReceiveMsgBytes(node, to_send, complete);
96 : 5009094 : node.m_transport->MarkBytesSent(to_send.size());
97 : : }
98 : 1264699 : return complete;
99 : : }
100 : :
101 : 0 : std::vector<NodeEvictionCandidate> GetRandomNodeEvictionCandidates(int n_candidates, FastRandomContext& random_context)
102 : : {
103 : 0 : std::vector<NodeEvictionCandidate> candidates;
104 [ # # ]: 0 : candidates.reserve(n_candidates);
105 [ # # ]: 0 : for (int id = 0; id < n_candidates; ++id) {
106 [ # # # # : 0 : candidates.push_back({
# # # # #
# # # # #
# # ]
107 : 0 : /*id=*/id,
108 [ # # ]: 0 : /*m_connected=*/std::chrono::seconds{random_context.randrange(100)},
109 [ # # ]: 0 : /*m_min_ping_time=*/std::chrono::microseconds{random_context.randrange(100)},
110 [ # # ]: 0 : /*m_last_block_time=*/std::chrono::seconds{random_context.randrange(100)},
111 [ # # ]: 0 : /*m_last_tx_time=*/std::chrono::seconds{random_context.randrange(100)},
112 : 0 : /*fRelevantServices=*/random_context.randbool(),
113 : 0 : /*m_relay_txs=*/random_context.randbool(),
114 : 0 : /*fBloomFilter=*/random_context.randbool(),
115 : 0 : /*nKeyedNetGroup=*/random_context.randrange(100),
116 : 0 : /*prefer_evict=*/random_context.randbool(),
117 : 0 : /*m_is_local=*/random_context.randbool(),
118 : 0 : /*m_network=*/ALL_NETWORKS[random_context.randrange(ALL_NETWORKS.size())],
119 : : /*m_noban=*/false,
120 : : /*m_conn_type=*/ConnectionType::INBOUND,
121 : : });
122 : 0 : }
123 : 0 : return candidates;
124 [ # # ]: 0 : }
|