Coverage Report

Created: 2026-09-14 20:36

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/tmp/bitcoin/src/node/txdownloadman.h
Line
Count
Source
1
// Copyright (c) 2024-present The Bitcoin Core developers
2
// Distributed under the MIT software license, see the accompanying
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#ifndef BITCOIN_NODE_TXDOWNLOADMAN_H
6
#define BITCOIN_NODE_TXDOWNLOADMAN_H
7
8
#include <net.h>
9
#include <node/txorphanage.h>
10
#include <policy/packages.h>
11
12
#include <cstdint>
13
#include <memory>
14
15
class CBlock;
16
class CRollingBloomFilter;
17
class CTxMemPool;
18
class GenTxid;
19
class TxRequestTracker;
20
namespace node {
21
class TxDownloadManagerImpl;
22
23
/** Maximum number of in-flight transaction requests from a peer. It is not a hard limit, but the threshold at which
24
 *  point the OVERLOADED_PEER_TX_DELAY kicks in. */
25
inline constexpr int32_t MAX_PEER_TX_REQUEST_IN_FLIGHT = 100;
26
/** Maximum number of transactions to consider for requesting, per peer. It provides a reasonable DoS limit to
27
 *  per-peer memory usage spent on announcements, while covering peers continuously sending INVs at the maximum
28
 *  rate (by our own policy, see DEFAULT_TX_SEND_RATE) for several minutes, while not receiving
29
 *  the actual transaction (from any peer) in response to requests for them. */
30
inline constexpr int32_t MAX_PEER_TX_ANNOUNCEMENTS = 5000;
31
/** How long to delay requesting transactions via txids, if we have wtxid-relaying peers */
32
inline constexpr auto TXID_RELAY_DELAY{2s};
33
/** How long to delay requesting transactions from non-preferred peers */
34
inline constexpr auto NONPREF_PEER_TX_DELAY{2s};
35
/** How long to delay requesting transactions from overloaded peers (see MAX_PEER_TX_REQUEST_IN_FLIGHT). */
36
inline constexpr auto OVERLOADED_PEER_TX_DELAY{2s};
37
/** How long to wait before downloading a transaction from an additional peer */
38
inline constexpr auto GETDATA_TX_INTERVAL{60s};
39
struct TxDownloadOptions {
40
    /** Read-only reference to mempool. */
41
    const CTxMemPool& m_mempool;
42
    /** Instantiate TxRequestTracker as deterministic (used for tests). */
43
    bool m_deterministic_txrequest{false};
44
};
45
struct TxDownloadConnectionInfo {
46
    /** Whether this peer is preferred for transaction download. */
47
    const bool m_preferred;
48
    /** Whether this peer has Relay permissions. */
49
    const bool m_relay_permissions;
50
    /** Whether this peer supports wtxid relay. */
51
    const bool m_wtxid_relay;
52
};
53
struct PackageToValidate {
54
    Package m_txns;
55
    std::vector<NodeId> m_senders;
56
    /** Construct a 1-parent-1-child package. */
57
    explicit PackageToValidate(const CTransactionRef& parent,
58
                               const CTransactionRef& child,
59
                               NodeId parent_sender,
60
                               NodeId child_sender) :
61
30
        m_txns{parent, child},
62
30
        m_senders{parent_sender, child_sender}
63
30
    {}
64
65
    // Move ctor
66
79
    PackageToValidate(PackageToValidate&& other) : m_txns{std::move(other.m_txns)}, m_senders{std::move(other.m_senders)} {}
67
    // Copy ctor
68
19
    PackageToValidate(const PackageToValidate& other) = default;
69
70
    // Move assignment
71
0
    PackageToValidate& operator=(PackageToValidate&& other) {
72
0
        this->m_txns = std::move(other.m_txns);
73
0
        this->m_senders = std::move(other.m_senders);
74
0
        return *this;
75
0
    }
76
77
30
    std::string ToString() const {
78
30
        Assume(m_txns.size() == 2);
79
30
        return strprintf("parent %s (wtxid=%s, sender=%d) + child %s (wtxid=%s, sender=%d)",
80
30
                         m_txns.front()->GetHash().ToString(),
81
30
                         m_txns.front()->GetWitnessHash().ToString(),
82
30
                         m_senders.front(),
83
30
                         m_txns.back()->GetHash().ToString(),
84
30
                         m_txns.back()->GetWitnessHash().ToString(),
85
30
                         m_senders.back());
86
30
    }
87
};
88
struct RejectedTxTodo
89
{
90
    bool m_should_add_extra_compact_tx;
91
    std::vector<Txid> m_unique_parents;
92
    std::optional<PackageToValidate> m_package_to_validate;
93
};
94
95
96
/**
97
 * Class responsible for deciding what transactions to request and, once
98
 * downloaded, whether and how to validate them. It is also responsible for
99
 * deciding what transaction packages to validate and how to resolve orphan
100
 * transactions. Its data structures include TxRequestTracker for scheduling
101
 * requests, rolling bloom filters for remembering transactions that have
102
 * already been {accepted, rejected, confirmed}, an orphanage, and a registry of
103
 * each peer's transaction relay-related information.
104
 *
105
 * Caller needs to interact with TxDownloadManager:
106
 * - ValidationInterface callbacks.
107
 * - When a potential transaction relay peer connects or disconnects.
108
 * - When a transaction or package is accepted or rejected from mempool
109
 * - When a inv, notfound, or tx message is received
110
 * - To get instructions for which getdata messages to send
111
 *
112
 * This class is not thread-safe. Access must be synchronized using an
113
 * external mutex.
114
 */
115
class TxDownloadManager {
116
    const std::unique_ptr<TxDownloadManagerImpl> m_impl;
117
118
public:
119
    explicit TxDownloadManager(const TxDownloadOptions& options);
120
    ~TxDownloadManager();
121
122
    // Responses to chain events. TxDownloadManager is not an actual client of ValidationInterface, these are called through PeerManager.
123
    void ActiveTipChange();
124
    void BlockConnected(const std::shared_ptr<const CBlock>& pblock);
125
    void BlockDisconnected();
126
127
    /** Creates a new PeerInfo. Saves the connection info to calculate tx announcement delays later. */
128
    void ConnectedPeer(NodeId nodeid, const TxDownloadConnectionInfo& info);
129
130
    /** Deletes all txrequest announcements and orphans for a given peer. */
131
    void DisconnectedPeer(NodeId nodeid);
132
133
    /** Consider adding this tx hash to txrequest. Should be called whenever a new inv has been received.
134
     * Also called internally when a transaction is missing parents so that we can request them.
135
     * Returns true if this was a dropped inv (p2p_inv=true and we already have the tx), false otherwise. */
136
    bool AddTxAnnouncement(NodeId peer, const GenTxid& gtxid, std::chrono::microseconds now);
137
138
    /** Get getdata requests to send. */
139
    std::vector<GenTxid> GetRequestsToSend(NodeId nodeid, std::chrono::microseconds current_time);
140
141
    /** Should be called when a notfound for a tx has been received. */
142
    void ReceivedNotFound(NodeId nodeid, const std::vector<GenTxid>& gtxids);
143
144
    /** Respond to successful transaction submission to mempool */
145
    void MempoolAcceptedTx(const CTransactionRef& tx);
146
147
    /** Respond to transaction rejected from mempool */
148
    RejectedTxTodo MempoolRejectedTx(const CTransactionRef& ptx, const TxValidationState& state, NodeId nodeid, bool first_time_failure);
149
150
    /** Respond to package rejected from mempool */
151
    void MempoolRejectedPackage(const Package& package);
152
153
    /** Marks a tx as ReceivedResponse in txrequest and checks whether AlreadyHaveTx.
154
     * Return a bool indicating whether this tx should be validated. If false, optionally, a
155
     * PackageToValidate. */
156
    std::pair<bool, std::optional<PackageToValidate>> ReceivedTx(NodeId nodeid, const CTransactionRef& ptx);
157
158
    /** Whether there are any orphans to reconsider for this peer. */
159
    bool HaveMoreWork(NodeId nodeid) const;
160
161
    /** Returns next orphan tx to consider, or nullptr if none exist. */
162
    CTransactionRef GetTxToReconsider(NodeId nodeid);
163
164
    /** Check that all data structures are empty. */
165
    void CheckIsEmpty() const;
166
167
    /** Check that all data structures that track per-peer information have nothing for this peer. */
168
    void CheckIsEmpty(NodeId nodeid) const;
169
170
    /** Wrapper for TxOrphanage::GetOrphanTransactions */
171
    std::vector<TxOrphanage::OrphanInfo> GetOrphanTransactions() const;
172
};
173
} // namespace node
174
#endif // BITCOIN_NODE_TXDOWNLOADMAN_H