Bitcoin Core 30.99.0
P2P Digital Currency
truc_policy.cpp
Go to the documentation of this file.
1// Copyright (c) 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
6
7#include <coins.h>
8#include <consensus/amount.h>
9#include <logging.h>
10#include <tinyformat.h>
11#include <util/check.h>
12
13#include <algorithm>
14#include <numeric>
15#include <vector>
16
19std::vector<size_t> FindInPackageParents(const Package& package, const CTransactionRef& ptx)
20{
21 std::vector<size_t> in_package_parents;
22
23 std::set<Txid> possible_parents;
24 for (auto &input : ptx->vin) {
25 possible_parents.insert(input.prevout.hash);
26 }
27
28 for (size_t i{0}; i < package.size(); ++i) {
29 const auto& tx = package.at(i);
30 // We assume the package is sorted, so that we don't need to continue
31 // looking past the transaction itself.
32 if (&(*tx) == &(*ptx)) break;
33 if (possible_parents.contains(tx->GetHash())) {
34 in_package_parents.push_back(i);
35 }
36 }
37 return in_package_parents;
38}
39
41struct ParentInfo {
43 const Txid& m_txid;
45 const Wtxid& m_wtxid;
50
51 ParentInfo() = delete;
52 ParentInfo(const Txid& txid, const Wtxid& wtxid, decltype(CTransaction::version) version, bool has_mempool_descendant) :
53 m_txid{txid}, m_wtxid{wtxid}, m_version{version},
54 m_has_mempool_descendant{has_mempool_descendant}
55 {}
56};
57
58std::optional<std::string> PackageTRUCChecks(const CTxMemPool& pool, const CTransactionRef& ptx, int64_t vsize,
59 const Package& package,
60 const std::vector<CTxMemPoolEntry::CTxMemPoolEntryRef>& mempool_parents)
61{
62 AssertLockHeld(pool.cs);
63 // This function is specialized for these limits, and must be reimplemented if they ever change.
64 static_assert(TRUC_ANCESTOR_LIMIT == 2);
65 static_assert(TRUC_DESCENDANT_LIMIT == 2);
66
67 const auto in_package_parents{FindInPackageParents(package, ptx)};
68
69 // Now we have all parents, so we can start checking TRUC rules.
70 if (ptx->version == TRUC_VERSION) {
71 // SingleTRUCChecks should have checked this already.
72 if (!Assume(vsize <= TRUC_MAX_VSIZE)) {
73 return strprintf("version=3 tx %s (wtxid=%s) is too big: %u > %u virtual bytes",
74 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(), vsize, TRUC_MAX_VSIZE);
75 }
76
77 if (mempool_parents.size() + in_package_parents.size() + 1 > TRUC_ANCESTOR_LIMIT) {
78 return strprintf("tx %s (wtxid=%s) would have too many ancestors",
79 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString());
80 }
81
82 if (mempool_parents.size()) {
83 if (pool.GetAncestorCount(mempool_parents[0]) + in_package_parents.size() + 1 > TRUC_ANCESTOR_LIMIT) {
84 return strprintf("tx %s (wtxid=%s) would have too many ancestors",
85 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString());
86 }
87 }
88
89 const bool has_parent{mempool_parents.size() + in_package_parents.size() > 0};
90 if (has_parent) {
91 // A TRUC child cannot be too large.
92 if (vsize > TRUC_CHILD_MAX_VSIZE) {
93 return strprintf("version=3 child tx %s (wtxid=%s) is too big: %u > %u virtual bytes",
94 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(),
96 }
97
98 // Exactly 1 parent exists, either in mempool or package. Find it.
99 const auto parent_info = [&] {
100 if (mempool_parents.size() > 0) {
101 const auto& mempool_parent = &mempool_parents[0].get();
102 return ParentInfo{mempool_parent->GetTx().GetHash(),
103 mempool_parent->GetTx().GetWitnessHash(),
104 mempool_parent->GetTx().version,
105 /*has_mempool_descendant=*/pool.GetDescendantCount(*mempool_parent) > 1};
106 } else {
107 auto& parent_index = in_package_parents.front();
108 auto& package_parent = package.at(parent_index);
109 return ParentInfo{package_parent->GetHash(),
110 package_parent->GetWitnessHash(),
111 package_parent->version,
112 /*has_mempool_descendant=*/false};
113 }
114 }();
115
116 // If there is a parent, it must have the right version.
117 if (parent_info.m_version != TRUC_VERSION) {
118 return strprintf("version=3 tx %s (wtxid=%s) cannot spend from non-version=3 tx %s (wtxid=%s)",
119 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(),
120 parent_info.m_txid.ToString(), parent_info.m_wtxid.ToString());
121 }
122
123 for (const auto& package_tx : package) {
124 // Skip same tx.
125 if (&(*package_tx) == &(*ptx)) continue;
126
127 for (auto& input : package_tx->vin) {
128 // Fail if we find another tx with the same parent. We don't check whether the
129 // sibling is to-be-replaced (done in SingleTRUCChecks) because these transactions
130 // are within the same package.
131 if (input.prevout.hash == parent_info.m_txid) {
132 return strprintf("tx %s (wtxid=%s) would exceed descendant count limit",
133 parent_info.m_txid.ToString(),
134 parent_info.m_wtxid.ToString());
135 }
136
137 // This tx can't have both a parent and an in-package child.
138 if (input.prevout.hash == ptx->GetHash()) {
139 return strprintf("tx %s (wtxid=%s) would have too many ancestors",
140 package_tx->GetHash().ToString(), package_tx->GetWitnessHash().ToString());
141 }
142 }
143 }
144
145 if (parent_info.m_has_mempool_descendant) {
146 return strprintf("tx %s (wtxid=%s) would exceed descendant count limit",
147 parent_info.m_txid.ToString(), parent_info.m_wtxid.ToString());
148 }
149 }
150 } else {
151 // Non-TRUC transactions cannot have TRUC parents.
152 for (auto it : mempool_parents) {
153 if (it.get().GetTx().version == TRUC_VERSION) {
154 return strprintf("non-version=3 tx %s (wtxid=%s) cannot spend from version=3 tx %s (wtxid=%s)",
155 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(),
156 it.get().GetSharedTx()->GetHash().ToString(), it.get().GetSharedTx()->GetWitnessHash().ToString());
157 }
158 }
159 for (const auto& index: in_package_parents) {
160 if (package.at(index)->version == TRUC_VERSION) {
161 return strprintf("non-version=3 tx %s (wtxid=%s) cannot spend from version=3 tx %s (wtxid=%s)",
162 ptx->GetHash().ToString(),
163 ptx->GetWitnessHash().ToString(),
164 package.at(index)->GetHash().ToString(),
165 package.at(index)->GetWitnessHash().ToString());
166 }
167 }
168 }
169 return std::nullopt;
170}
171
172std::optional<std::pair<std::string, CTransactionRef>> SingleTRUCChecks(const CTxMemPool& pool, const CTransactionRef& ptx,
173 const std::vector<CTxMemPoolEntry::CTxMemPoolEntryRef>& mempool_parents,
174 const std::set<Txid>& direct_conflicts,
175 int64_t vsize)
176{
177 AssertLockHeld(pool.cs);
178 // Check TRUC and non-TRUC inheritance.
179 for (const auto& entry_ref : mempool_parents) {
180 const auto& entry = &entry_ref.get();
181 if (ptx->version != TRUC_VERSION && entry->GetTx().version == TRUC_VERSION) {
182 return std::make_pair(strprintf("non-version=3 tx %s (wtxid=%s) cannot spend from version=3 tx %s (wtxid=%s)",
183 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(),
184 entry->GetSharedTx()->GetHash().ToString(), entry->GetSharedTx()->GetWitnessHash().ToString()),
185 nullptr);
186 } else if (ptx->version == TRUC_VERSION && entry->GetTx().version != TRUC_VERSION) {
187 return std::make_pair(strprintf("version=3 tx %s (wtxid=%s) cannot spend from non-version=3 tx %s (wtxid=%s)",
188 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(),
189 entry->GetSharedTx()->GetHash().ToString(), entry->GetSharedTx()->GetWitnessHash().ToString()),
190 nullptr);
191 }
192 }
193
194 // This function is specialized for these limits, and must be reimplemented if they ever change.
195 static_assert(TRUC_ANCESTOR_LIMIT == 2);
196 static_assert(TRUC_DESCENDANT_LIMIT == 2);
197
198 // The rest of the rules only apply to transactions with version=3.
199 if (ptx->version != TRUC_VERSION) return std::nullopt;
200
201 if (vsize > TRUC_MAX_VSIZE) {
202 return std::make_pair(strprintf("version=3 tx %s (wtxid=%s) is too big: %u > %u virtual bytes",
203 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(), vsize, TRUC_MAX_VSIZE),
204 nullptr);
205 }
206
207 // Check that TRUC_ANCESTOR_LIMIT would not be violated.
208 if (mempool_parents.size() + 1 > TRUC_ANCESTOR_LIMIT) {
209 return std::make_pair(strprintf("tx %s (wtxid=%s) would have too many ancestors",
210 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString()),
211 nullptr);
212 }
213
214 // Remaining checks only pertain to transactions with unconfirmed ancestors.
215 if (mempool_parents.size() > 0) {
216 // Ensure that the in-mempool parent doesn't have any additional
217 // ancestors, as that would also be a violation.
218 if (pool.GetAncestorCount(mempool_parents[0]) + 1 > TRUC_ANCESTOR_LIMIT) {
219 return std::make_pair(strprintf("tx %s (wtxid=%s) would have too many ancestors",
220 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString()),
221 nullptr);
222 }
223 // If this transaction spends TRUC parents, it cannot be too large.
224 if (vsize > TRUC_CHILD_MAX_VSIZE) {
225 return std::make_pair(strprintf("version=3 child tx %s (wtxid=%s) is too big: %u > %u virtual bytes",
226 ptx->GetHash().ToString(), ptx->GetWitnessHash().ToString(), vsize, TRUC_CHILD_MAX_VSIZE),
227 nullptr);
228 }
229
230 // Check the descendant counts of in-mempool parents.
231 const auto& parent_entry = mempool_parents[0].get();
232 // If there are any parents, this is the only child allowed. The parent cannot have any
233 // other descendants. We handle the possibility of multiple children as that case is
234 // possible through a reorg.
235 CTxMemPool::setEntries descendants;
236 auto parent_it = pool.CalculateDescendants(parent_entry, descendants);
237 descendants.erase(parent_it);
238 // Don't double-count a transaction that is going to be replaced. This logic assumes that
239 // any descendant of the TRUC transaction is a direct child, which makes sense because a
240 // TRUC transaction can only have 1 descendant.
241 const bool child_will_be_replaced = !descendants.empty() &&
242 std::any_of(descendants.cbegin(), descendants.cend(),
243 [&direct_conflicts](const CTxMemPool::txiter& child){return direct_conflicts.contains(child->GetTx().GetHash());});
244 if (pool.GetDescendantCount(parent_entry) + 1 > TRUC_DESCENDANT_LIMIT && !child_will_be_replaced) {
245 // Allow sibling eviction for TRUC transaction: if another child already exists, even if
246 // we don't conflict inputs with it, consider evicting it under RBF rules. We rely on TRUC rules
247 // only permitting 1 descendant, as otherwise we would need to have logic for deciding
248 // which descendant to evict. Skip if this isn't true, e.g. if the transaction has
249 // multiple children or the sibling also has descendants due to a reorg.
250 const bool consider_sibling_eviction{pool.GetDescendantCount(parent_entry) == 2 &&
251 pool.GetAncestorCount(**descendants.begin()) == 2};
252
253 // Return the sibling if its eviction can be considered. Provide the "descendant count
254 // limit" string either way, as the caller may decide not to do sibling eviction.
255 return std::make_pair(strprintf("tx %u (wtxid=%s) would exceed descendant count limit",
256 parent_entry.GetSharedTx()->GetHash().ToString(),
257 parent_entry.GetSharedTx()->GetWitnessHash().ToString()),
258 consider_sibling_eviction ? (*descendants.begin())->GetSharedTx() : nullptr);
259 }
260 }
261 return std::nullopt;
262}
#define Assume(val)
Assume is the identity function.
Definition: check.h:125
const uint32_t version
Definition: transaction.h:293
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:189
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
Definition: txmempool.h:263
int64_t GetDescendantCount(txiter it) const
Definition: txmempool.h:277
std::set< txiter, CompareIteratorByHash > setEntries
Definition: txmempool.h:271
int64_t GetAncestorCount(const CTxMemPoolEntry &e) const
Definition: txmempool.h:279
indexed_transaction_set::nth_index< 0 >::type::const_iterator txiter
Definition: txmempool.h:268
void CalculateDescendants(txiter it, setEntries &setDescendants) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Populate setDescendants with all in-mempool descendants of given transaction.
Definition: txmempool.cpp:296
std::vector< CTransactionRef > Package
A package is an ordered list of transactions.
Definition: packages.h:45
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:403
Helper for PackageTRUCChecks, storing info for a mempool or package parent.
Definition: truc_policy.cpp:41
ParentInfo()=delete
decltype(CTransaction::version) m_version
version used to check inheritance of TRUC and non-TRUC
Definition: truc_policy.cpp:47
ParentInfo(const Txid &txid, const Wtxid &wtxid, decltype(CTransaction::version) version, bool has_mempool_descendant)
Definition: truc_policy.cpp:52
bool m_has_mempool_descendant
If parent is in mempool, whether it has any descendants in mempool.
Definition: truc_policy.cpp:49
const Txid & m_txid
Txid used to identify this parent by prevout.
Definition: truc_policy.cpp:43
const Wtxid & m_wtxid
Wtxid used for debug string.
Definition: truc_policy.cpp:45
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1172
std::optional< std::pair< std::string, CTransactionRef > > SingleTRUCChecks(const CTxMemPool &pool, const CTransactionRef &ptx, const std::vector< CTxMemPoolEntry::CTxMemPoolEntryRef > &mempool_parents, const std::set< Txid > &direct_conflicts, int64_t vsize)
Must be called for every transaction, even if not TRUC.
std::vector< size_t > FindInPackageParents(const Package &package, const CTransactionRef &ptx)
Helper for PackageTRUCChecks: Returns a vector containing the indices of transactions (within package...
Definition: truc_policy.cpp:19
std::optional< std::string > PackageTRUCChecks(const CTxMemPool &pool, const CTransactionRef &ptx, int64_t vsize, const Package &package, const std::vector< CTxMemPoolEntry::CTxMemPoolEntryRef > &mempool_parents)
Must be called for every transaction that is submitted within a package, even if not TRUC.
Definition: truc_policy.cpp:58
static constexpr unsigned int TRUC_DESCENDANT_LIMIT
Maximum number of transactions including an unconfirmed tx and its descendants.
Definition: truc_policy.h:25
static constexpr int64_t TRUC_CHILD_MAX_VSIZE
Maximum sigop-adjusted virtual size of a tx which spends from an unconfirmed TRUC transaction.
Definition: truc_policy.h:33
static constexpr decltype(CTransaction::version) TRUC_VERSION
Definition: truc_policy.h:20
static constexpr int64_t TRUC_MAX_VSIZE
Maximum sigop-adjusted virtual size of all v3 transactions.
Definition: truc_policy.h:30
static constexpr unsigned int TRUC_ANCESTOR_LIMIT
Maximum number of transactions including a TRUC tx and all its mempool ancestors.
Definition: truc_policy.h:27
AssertLockHeld(pool.cs)