Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 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 <txmempool.h>
7 : :
8 : : #include <chain.h>
9 : : #include <coins.h>
10 : : #include <common/system.h>
11 : : #include <consensus/consensus.h>
12 : : #include <consensus/tx_verify.h>
13 : : #include <consensus/validation.h>
14 : : #include <logging.h>
15 : : #include <policy/policy.h>
16 : : #include <policy/settings.h>
17 : : #include <random.h>
18 : : #include <tinyformat.h>
19 : : #include <util/check.h>
20 : : #include <util/feefrac.h>
21 : : #include <util/moneystr.h>
22 : : #include <util/overflow.h>
23 : : #include <util/result.h>
24 : : #include <util/time.h>
25 : : #include <util/trace.h>
26 : : #include <util/translation.h>
27 : : #include <validationinterface.h>
28 : :
29 : : #include <algorithm>
30 : : #include <cmath>
31 : : #include <numeric>
32 : : #include <optional>
33 : : #include <ranges>
34 : : #include <string_view>
35 : : #include <utility>
36 : :
37 : 1752 : bool TestLockPointValidity(CChain& active_chain, const LockPoints& lp)
38 : : {
39 : 1752 : AssertLockHeld(cs_main);
40 : : // If there are relative lock times then the maxInputBlock will be set
41 : : // If there are no relative lock times, the LockPoints don't depend on the chain
42 [ + - ]: 1752 : if (lp.maxInputBlock) {
43 : : // Check whether active_chain is an extension of the block at which the LockPoints
44 : : // calculation was valid. If not LockPoints are no longer valid
45 [ + + ]: 1752 : if (!active_chain.Contains(lp.maxInputBlock)) {
46 : 165 : return false;
47 : : }
48 : : }
49 : :
50 : : // LockPoints still valid
51 : : return true;
52 : : }
53 : :
54 : 342 : void CTxMemPool::UpdateForDescendants(txiter updateIt, cacheMap& cachedDescendants,
55 : : const std::set<uint256>& setExclude, std::set<uint256>& descendants_to_remove)
56 : : {
57 [ + - ]: 342 : CTxMemPoolEntry::Children stageEntries, descendants;
58 [ + - ]: 342 : stageEntries = updateIt->GetMemPoolChildrenConst();
59 : :
60 [ + + ]: 5375 : while (!stageEntries.empty()) {
61 [ + - ]: 5033 : const CTxMemPoolEntry& descendant = *stageEntries.begin();
62 [ + - ]: 5033 : descendants.insert(descendant);
63 : 5033 : stageEntries.erase(descendant);
64 : 5033 : const CTxMemPoolEntry::Children& children = descendant.GetMemPoolChildrenConst();
65 [ + + ]: 164744 : for (const CTxMemPoolEntry& childEntry : children) {
66 : 159711 : cacheMap::iterator cacheIt = cachedDescendants.find(mapTx.iterator_to(childEntry));
67 [ + + ]: 159711 : if (cacheIt != cachedDescendants.end()) {
68 : : // We've already calculated this one, just add the entries for this set
69 : : // but don't traverse again.
70 [ + + ]: 351910 : for (txiter cacheEntry : cacheIt->second) {
71 [ + - ]: 345005 : descendants.insert(*cacheEntry);
72 : : }
73 [ + + ]: 152806 : } else if (!descendants.count(childEntry)) {
74 : : // Schedule for later processing
75 [ + - ]: 10754 : stageEntries.insert(childEntry);
76 : : }
77 : : }
78 : : }
79 : : // descendants now contains all in-mempool descendants of updateIt.
80 : : // Update and add to cached descendant map
81 : 342 : int32_t modifySize = 0;
82 : 342 : CAmount modifyFee = 0;
83 : 342 : int64_t modifyCount = 0;
84 [ + + ]: 5380 : for (const CTxMemPoolEntry& descendant : descendants) {
85 [ + + ]: 5038 : if (!setExclude.count(descendant.GetTx().GetHash())) {
86 [ + - ]: 3773 : modifySize += descendant.GetTxSize();
87 [ + - ]: 3773 : modifyFee += descendant.GetModifiedFee();
88 : 3773 : modifyCount++;
89 [ + - + - ]: 3773 : cachedDescendants[updateIt].insert(mapTx.iterator_to(descendant));
90 : : // Update ancestor state for each descendant
91 [ + - ]: 3773 : mapTx.modify(mapTx.iterator_to(descendant), [=](CTxMemPoolEntry& e) {
92 : 3773 : e.UpdateAncestorState(updateIt->GetTxSize(), updateIt->GetModifiedFee(), 1, updateIt->GetSigOpCost());
93 : 3773 : });
94 : : // Don't directly remove the transaction here -- doing so would
95 : : // invalidate iterators in cachedDescendants. Mark it for removal
96 : : // by inserting into descendants_to_remove.
97 [ + - - + ]: 3773 : if (descendant.GetCountWithAncestors() > uint64_t(m_opts.limits.ancestor_count) || descendant.GetSizeWithAncestors() > m_opts.limits.ancestor_size_vbytes) {
98 [ # # ]: 0 : descendants_to_remove.insert(descendant.GetTx().GetHash());
99 : : }
100 : : }
101 : : }
102 [ + - ]: 1026 : mapTx.modify(updateIt, [=](CTxMemPoolEntry& e) { e.UpdateDescendantState(modifySize, modifyFee, modifyCount); });
103 : 342 : }
104 : :
105 : 3003 : void CTxMemPool::UpdateTransactionsFromBlock(const std::vector<uint256>& vHashesToUpdate)
106 : : {
107 : 3003 : AssertLockHeld(cs);
108 : : // For each entry in vHashesToUpdate, store the set of in-mempool, but not
109 : : // in-vHashesToUpdate transactions, so that we don't have to recalculate
110 : : // descendants when we come across a previously seen entry.
111 [ + - ]: 3003 : cacheMap mapMemPoolDescendantsToUpdate;
112 : :
113 : : // Use a set for lookups into vHashesToUpdate (these entries are already
114 : : // accounted for in the state of their ancestors)
115 [ + - ]: 3003 : std::set<uint256> setAlreadyIncluded(vHashesToUpdate.begin(), vHashesToUpdate.end());
116 : :
117 : 3003 : std::set<uint256> descendants_to_remove;
118 : :
119 : : // Iterate in reverse, so that whenever we are looking at a transaction
120 : : // we are sure that all in-mempool descendants have already been processed.
121 : : // This maximizes the benefit of the descendant cache and guarantees that
122 : : // CTxMemPoolEntry::m_children will be updated, an assumption made in
123 : : // UpdateForDescendants.
124 [ + + ]: 3345 : for (const uint256& hash : vHashesToUpdate | std::views::reverse) {
125 : : // calculate children from mapNextTx
126 [ + - ]: 342 : txiter it = mapTx.find(hash);
127 [ - + ]: 342 : if (it == mapTx.end()) {
128 : 0 : continue;
129 : : }
130 : 342 : auto iter = mapNextTx.lower_bound(COutPoint(Txid::FromUint256(hash), 0));
131 : : // First calculate the children, and update CTxMemPoolEntry::m_children to
132 : : // include them, and update their CTxMemPoolEntry::m_parents to include this tx.
133 : : // we cache the in-mempool children to avoid duplicate updates
134 : 342 : {
135 : 342 : WITH_FRESH_EPOCH(m_epoch);
136 [ + + + + ]: 5073 : for (; iter != mapNextTx.end() && iter->first->hash == hash; ++iter) {
137 [ + - ]: 4731 : const uint256 &childHash = iter->second->GetHash();
138 [ + - ]: 4731 : txiter childIter = mapTx.find(childHash);
139 [ - + ]: 4731 : assert(childIter != mapTx.end());
140 : : // We can skip updating entries we've encountered before or that
141 : : // are in the block (which are already accounted for).
142 [ + + + + ]: 4731 : if (!visited(childIter) && !setAlreadyIncluded.count(childHash)) {
143 [ + - ]: 3767 : UpdateChild(it, childIter, true);
144 [ + - ]: 3767 : UpdateParent(childIter, it, true);
145 : : }
146 : : }
147 : 342 : } // release epoch guard for UpdateForDescendants
148 [ + - ]: 342 : UpdateForDescendants(it, mapMemPoolDescendantsToUpdate, setAlreadyIncluded, descendants_to_remove);
149 : : }
150 : :
151 [ - + ]: 3003 : for (const auto& txid : descendants_to_remove) {
152 : : // This txid may have been removed already in a prior call to removeRecursive.
153 : : // Therefore we ensure it is not yet removed already.
154 [ # # # # ]: 0 : if (const std::optional<txiter> txiter = GetIter(txid)) {
155 [ # # ]: 0 : removeRecursive((*txiter)->GetTx(), MemPoolRemovalReason::SIZELIMIT);
156 : : }
157 : : }
158 : 3003 : }
159 : :
160 : 6925495 : util::Result<CTxMemPool::setEntries> CTxMemPool::CalculateAncestorsAndCheckLimits(
161 : : int64_t entry_size,
162 : : size_t entry_count,
163 : : CTxMemPoolEntry::Parents& staged_ancestors,
164 : : const Limits& limits) const
165 : : {
166 : 6925495 : int64_t totalSizeWithAncestors = entry_size;
167 : 6925495 : setEntries ancestors;
168 : :
169 [ + + ]: 8552930 : while (!staged_ancestors.empty()) {
170 [ + - ]: 1627568 : const CTxMemPoolEntry& stage = staged_ancestors.begin()->get();
171 : 1627568 : txiter stageit = mapTx.iterator_to(stage);
172 : :
173 [ + - ]: 1627568 : ancestors.insert(stageit);
174 : 1627568 : staged_ancestors.erase(stage);
175 [ + - ]: 1627568 : totalSizeWithAncestors += stageit->GetTxSize();
176 : :
177 [ + + ]: 1627568 : if (stageit->GetSizeWithDescendants() + entry_size > limits.descendant_size_vbytes) {
178 [ + - + - : 66 : return util::Error{Untranslated(strprintf("exceeds descendant size limit for tx %s [limit: %u]", stageit->GetTx().GetHash().ToString(), limits.descendant_size_vbytes))};
+ - ]
179 [ + + ]: 1627546 : } else if (stageit->GetCountWithDescendants() + entry_count > static_cast<uint64_t>(limits.descendant_count)) {
180 [ + - + - : 171 : return util::Error{Untranslated(strprintf("too many descendants for tx %s [limit: %u]", stageit->GetTx().GetHash().ToString(), limits.descendant_count))};
+ - ]
181 [ + + ]: 1627489 : } else if (totalSizeWithAncestors > limits.ancestor_size_vbytes) {
182 [ + - + - ]: 6 : return util::Error{Untranslated(strprintf("exceeds ancestor size limit [limit: %u]", limits.ancestor_size_vbytes))};
183 : : }
184 : :
185 : 1627487 : const CTxMemPoolEntry::Parents& parents = stageit->GetMemPoolParentsConst();
186 [ + + ]: 3205292 : for (const CTxMemPoolEntry& parent : parents) {
187 : 1577857 : txiter parent_it = mapTx.iterator_to(parent);
188 : :
189 : : // If this is a new ancestor, add it.
190 [ + + ]: 1577857 : if (ancestors.count(parent_it) == 0) {
191 [ + - ]: 1538379 : staged_ancestors.insert(parent);
192 : : }
193 [ + + ]: 1577857 : if (staged_ancestors.size() + ancestors.size() + entry_count > static_cast<uint64_t>(limits.ancestor_count)) {
194 [ + - + - ]: 156 : return util::Error{Untranslated(strprintf("too many unconfirmed ancestors [limit: %u]", limits.ancestor_count))};
195 : : }
196 : : }
197 : : }
198 : :
199 : 6925362 : return ancestors;
200 : 6925495 : }
201 : :
202 : 3248 : util::Result<void> CTxMemPool::CheckPackageLimits(const Package& package,
203 : : const int64_t total_vsize) const
204 : : {
205 [ - + ]: 3248 : size_t pack_count = package.size();
206 : :
207 : : // Package itself is busting mempool limits; should be rejected even if no staged_ancestors exist
208 [ - + ]: 3248 : if (pack_count > static_cast<uint64_t>(m_opts.limits.ancestor_count)) {
209 [ # # ]: 0 : return util::Error{Untranslated(strprintf("package count %u exceeds ancestor count limit [limit: %u]", pack_count, m_opts.limits.ancestor_count))};
210 [ - + ]: 3248 : } else if (pack_count > static_cast<uint64_t>(m_opts.limits.descendant_count)) {
211 [ # # ]: 0 : return util::Error{Untranslated(strprintf("package count %u exceeds descendant count limit [limit: %u]", pack_count, m_opts.limits.descendant_count))};
212 [ + + ]: 3248 : } else if (total_vsize > m_opts.limits.ancestor_size_vbytes) {
213 [ + - ]: 3 : return util::Error{Untranslated(strprintf("package size %u exceeds ancestor size limit [limit: %u]", total_vsize, m_opts.limits.ancestor_size_vbytes))};
214 [ - + ]: 3247 : } else if (total_vsize > m_opts.limits.descendant_size_vbytes) {
215 [ # # ]: 0 : return util::Error{Untranslated(strprintf("package size %u exceeds descendant size limit [limit: %u]", total_vsize, m_opts.limits.descendant_size_vbytes))};
216 : : }
217 : :
218 : 3247 : CTxMemPoolEntry::Parents staged_ancestors;
219 [ + + ]: 7072 : for (const auto& tx : package) {
220 [ + + ]: 15707 : for (const auto& input : tx->vin) {
221 [ + - ]: 11882 : std::optional<txiter> piter = GetIter(input.prevout.hash);
222 [ + + ]: 11882 : if (piter) {
223 [ + - ]: 789 : staged_ancestors.insert(**piter);
224 [ + + ]: 789 : if (staged_ancestors.size() + package.size() > static_cast<uint64_t>(m_opts.limits.ancestor_count)) {
225 [ + - + - ]: 3 : return util::Error{Untranslated(strprintf("too many unconfirmed parents [limit: %u]", m_opts.limits.ancestor_count))};
226 : : }
227 : : }
228 : : }
229 : : }
230 : : // When multiple transactions are passed in, the ancestors and descendants of all transactions
231 : : // considered together must be within limits even if they are not interdependent. This may be
232 : : // stricter than the limits for each individual transaction.
233 : 3246 : const auto ancestors{CalculateAncestorsAndCheckLimits(total_vsize, package.size(),
234 [ + - ]: 3246 : staged_ancestors, m_opts.limits)};
235 : : // It's possible to overestimate the ancestor/descendant totals.
236 [ + + + - : 3276 : if (!ancestors.has_value()) return util::Error{Untranslated("possibly " + util::ErrorString(ancestors).original)};
+ - + - ]
237 : 3236 : return {};
238 : 6493 : }
239 : :
240 : 6922250 : util::Result<CTxMemPool::setEntries> CTxMemPool::CalculateMemPoolAncestors(
241 : : const CTxMemPoolEntry &entry,
242 : : const Limits& limits,
243 : : bool fSearchForParents /* = true */) const
244 : : {
245 [ + + ]: 6922250 : CTxMemPoolEntry::Parents staged_ancestors;
246 [ + + ]: 6922250 : const CTransaction &tx = entry.GetTx();
247 : :
248 [ + + ]: 6922250 : if (fSearchForParents) {
249 : : // Get parents of this transaction that are in the mempool
250 : : // GetMemPoolParents() is only valid for entries in the mempool, so we
251 : : // iterate mapTx to find parents.
252 [ + + ]: 15922037 : for (unsigned int i = 0; i < tx.vin.size(); i++) {
253 [ + - ]: 9053391 : std::optional<txiter> piter = GetIter(tx.vin[i].prevout.hash);
254 [ + + ]: 9053391 : if (piter) {
255 [ + - ]: 129661 : staged_ancestors.insert(**piter);
256 [ + + ]: 129661 : if (staged_ancestors.size() + 1 > static_cast<uint64_t>(limits.ancestor_count)) {
257 [ + - + - ]: 3 : return util::Error{Untranslated(strprintf("too many unconfirmed parents [limit: %u]", limits.ancestor_count))};
258 : : }
259 : : }
260 : : }
261 : : } else {
262 : : // If we're not searching for parents, we require this to already be an
263 : : // entry in the mempool and use the entry's cached parents.
264 : 53603 : txiter it = mapTx.iterator_to(entry);
265 [ + - ]: 53603 : staged_ancestors = it->GetMemPoolParentsConst();
266 : : }
267 : :
268 [ + - ]: 6922249 : return CalculateAncestorsAndCheckLimits(entry.GetTxSize(), /*entry_count=*/1, staged_ancestors,
269 [ + - ]: 6922249 : limits);
270 : 6922250 : }
271 : :
272 : 6892679 : CTxMemPool::setEntries CTxMemPool::AssumeCalculateMemPoolAncestors(
273 : : std::string_view calling_fn_name,
274 : : const CTxMemPoolEntry &entry,
275 : : const Limits& limits,
276 : : bool fSearchForParents /* = true */) const
277 : : {
278 : 6892679 : auto result{CalculateMemPoolAncestors(entry, limits, fSearchForParents)};
279 [ + - - + ]: 6892679 : if (!Assume(result)) {
280 [ # # # # : 0 : LogPrintLevel(BCLog::MEMPOOL, BCLog::Level::Error, "%s: CalculateMemPoolAncestors failed unexpectedly, continuing with empty ancestor set (%s)\n",
# # # # ]
281 : : calling_fn_name, util::ErrorString(result).original);
282 : : }
283 : 6892679 : return std::move(result).value_or(CTxMemPool::setEntries{});
284 : 6892679 : }
285 : :
286 : 94028 : void CTxMemPool::UpdateAncestorsOf(bool add, txiter it, setEntries &setAncestors)
287 : : {
288 : 94028 : const CTxMemPoolEntry::Parents& parents = it->GetMemPoolParentsConst();
289 : : // add or remove this tx as a child of each parent
290 [ + + ]: 102228 : for (const CTxMemPoolEntry& parent : parents) {
291 : 8200 : UpdateChild(mapTx.iterator_to(parent), it, add);
292 : : }
293 [ + + ]: 94028 : const int32_t updateCount = (add ? 1 : -1);
294 : 94028 : const int32_t updateSize{updateCount * it->GetTxSize()};
295 : 94028 : const CAmount updateFee = updateCount * it->GetModifiedFee();
296 [ + + ]: 1244041 : for (txiter ancestorIt : setAncestors) {
297 : 2300026 : mapTx.modify(ancestorIt, [=](CTxMemPoolEntry& e) { e.UpdateDescendantState(updateSize, updateFee, updateCount); });
298 : : }
299 : 94028 : }
300 : :
301 : 49418 : void CTxMemPool::UpdateEntryForAncestors(txiter it, const setEntries &setAncestors)
302 : : {
303 : 49418 : int64_t updateCount = setAncestors.size();
304 : 49418 : int64_t updateSize = 0;
305 : 49418 : CAmount updateFee = 0;
306 : 49418 : int64_t updateSigOpsCost = 0;
307 [ + + ]: 1197650 : for (txiter ancestorIt : setAncestors) {
308 : 1148232 : updateSize += ancestorIt->GetTxSize();
309 : 1148232 : updateFee += ancestorIt->GetModifiedFee();
310 : 1148232 : updateSigOpsCost += ancestorIt->GetSigOpCost();
311 : : }
312 : 98836 : mapTx.modify(it, [=](CTxMemPoolEntry& e){ e.UpdateAncestorState(updateSize, updateFee, updateCount, updateSigOpsCost); });
313 : 49418 : }
314 : :
315 : 44610 : void CTxMemPool::UpdateChildrenForRemoval(txiter it)
316 : : {
317 : 44610 : const CTxMemPoolEntry::Children& children = it->GetMemPoolChildrenConst();
318 [ + + ]: 47540 : for (const CTxMemPoolEntry& updateIt : children) {
319 : 2930 : UpdateParent(mapTx.iterator_to(updateIt), it, false);
320 : : }
321 : 44610 : }
322 : :
323 : 110438 : void CTxMemPool::UpdateForRemoveFromMempool(const setEntries &entriesToRemove, bool updateDescendants)
324 : : {
325 : : // For each entry, walk back all ancestors and decrement size associated with this
326 : : // transaction
327 [ + + ]: 110438 : if (updateDescendants) {
328 : : // updateDescendants should be true whenever we're not recursively
329 : : // removing a tx and all its descendants, eg when a transaction is
330 : : // confirmed in a block.
331 : : // Here we only update statistics and not data in CTxMemPool::Parents
332 : : // and CTxMemPoolEntry::Children (which we need to preserve until we're
333 : : // finished with all operations that need to traverse the mempool).
334 [ + + ]: 86104 : for (txiter removeIt : entriesToRemove) {
335 [ + - ]: 43052 : setEntries setDescendants;
336 [ + - ]: 43052 : CalculateDescendants(removeIt, setDescendants);
337 : 43052 : setDescendants.erase(removeIt); // don't update state for self
338 [ + - ]: 43052 : int32_t modifySize = -removeIt->GetTxSize();
339 : 43052 : CAmount modifyFee = -removeIt->GetModifiedFee();
340 : 43052 : int modifySigOps = -removeIt->GetSigOpCost();
341 [ + + ]: 51233 : for (txiter dit : setDescendants) {
342 [ + - ]: 24543 : mapTx.modify(dit, [=](CTxMemPoolEntry& e){ e.UpdateAncestorState(modifySize, modifyFee, -1, modifySigOps); });
343 : : }
344 : 43052 : }
345 : : }
346 [ + + ]: 155048 : for (txiter removeIt : entriesToRemove) {
347 : 44610 : const CTxMemPoolEntry &entry = *removeIt;
348 : : // Since this is a tx that is already in the mempool, we can call CMPA
349 : : // with fSearchForParents = false. If the mempool is in a consistent
350 : : // state, then using true or false should both be correct, though false
351 : : // should be a bit faster.
352 : : // However, if we happen to be in the middle of processing a reorg, then
353 : : // the mempool can be in an inconsistent state. In this case, the set
354 : : // of ancestors reachable via GetMemPoolParents()/GetMemPoolChildren()
355 : : // will be the same as the set of ancestors whose packages include this
356 : : // transaction, because when we add a new transaction to the mempool in
357 : : // addUnchecked(), we assume it has no children, and in the case of a
358 : : // reorg where that assumption is false, the in-mempool children aren't
359 : : // linked to the in-block tx's until UpdateTransactionsFromBlock() is
360 : : // called.
361 : : // So if we're being called during a reorg, ie before
362 : : // UpdateTransactionsFromBlock() has been called, then
363 : : // GetMemPoolParents()/GetMemPoolChildren() will differ from the set of
364 : : // mempool parents we'd calculate by searching, and it's important that
365 : : // we use the cached notion of ancestor transactions as the set of
366 : : // things to update for removal.
367 : 44610 : auto ancestors{AssumeCalculateMemPoolAncestors(__func__, entry, Limits::NoLimits(), /*fSearchForParents=*/false)};
368 : : // Note that UpdateAncestorsOf severs the child links that point to
369 : : // removeIt in the entries for the parents of removeIt.
370 [ + - ]: 44610 : UpdateAncestorsOf(false, removeIt, ancestors);
371 : 44610 : }
372 : : // After updating all the ancestor sizes, we can now sever the link between each
373 : : // transaction being removed and any mempool children (ie, update CTxMemPoolEntry::m_parents
374 : : // for each direct child of a transaction being removed).
375 [ + + ]: 155048 : for (txiter removeIt : entriesToRemove) {
376 : 44610 : UpdateChildrenForRemoval(removeIt);
377 : : }
378 : 110438 : }
379 : :
380 : 1150390 : void CTxMemPoolEntry::UpdateDescendantState(int32_t modifySize, CAmount modifyFee, int64_t modifyCount)
381 : : {
382 : 1150390 : nSizeWithDescendants += modifySize;
383 [ - + ]: 1150390 : assert(nSizeWithDescendants > 0);
384 : 1150390 : nModFeesWithDescendants = SaturatingAdd(nModFeesWithDescendants, modifyFee);
385 : 1150390 : m_count_with_descendants += modifyCount;
386 [ - + ]: 1150390 : assert(m_count_with_descendants > 0);
387 : 1150390 : }
388 : :
389 : 61427 : void CTxMemPoolEntry::UpdateAncestorState(int32_t modifySize, CAmount modifyFee, int64_t modifyCount, int64_t modifySigOps)
390 : : {
391 : 61427 : nSizeWithAncestors += modifySize;
392 [ - + ]: 61427 : assert(nSizeWithAncestors > 0);
393 : 61427 : nModFeesWithAncestors = SaturatingAdd(nModFeesWithAncestors, modifyFee);
394 : 61427 : m_count_with_ancestors += modifyCount;
395 [ - + ]: 61427 : assert(m_count_with_ancestors > 0);
396 : 61427 : nSigOpCostWithAncestors += modifySigOps;
397 [ - + ]: 61427 : assert(int(nSigOpCostWithAncestors) >= 0);
398 : 61427 : }
399 : :
400 : : //! Clamp option values and populate the error if options are not valid.
401 : 1093 : static CTxMemPool::Options&& Flatten(CTxMemPool::Options&& opts, bilingual_str& error)
402 : : {
403 [ + - ]: 1093 : opts.check_ratio = std::clamp<int>(opts.check_ratio, 0, 1'000'000);
404 : 1093 : int64_t descendant_limit_bytes = opts.limits.descendant_size_vbytes * 40;
405 [ + - + + ]: 1093 : if (opts.max_size_bytes < 0 || opts.max_size_bytes < descendant_limit_bytes) {
406 [ + - ]: 3 : error = strprintf(_("-maxmempool must be at least %d MB"), std::ceil(descendant_limit_bytes / 1'000'000.0));
407 : : }
408 : 1093 : return std::move(opts);
409 : : }
410 : :
411 : 1093 : CTxMemPool::CTxMemPool(Options opts, bilingual_str& error)
412 [ + - ]: 1093 : : m_opts{Flatten(std::move(opts), error)}
413 : : {
414 : 1093 : }
415 : :
416 : 52 : bool CTxMemPool::isSpent(const COutPoint& outpoint) const
417 : : {
418 : 52 : LOCK(cs);
419 [ + - ]: 52 : return mapNextTx.count(outpoint);
420 : 52 : }
421 : :
422 : 2070 : unsigned int CTxMemPool::GetTransactionsUpdated() const
423 : : {
424 : 2070 : return nTransactionsUpdated;
425 : : }
426 : :
427 : 136930 : void CTxMemPool::AddTransactionsUpdated(unsigned int n)
428 : : {
429 : 136930 : nTransactionsUpdated += n;
430 : 136930 : }
431 : :
432 : 49418 : void CTxMemPool::addUnchecked(const CTxMemPoolEntry &entry, setEntries &setAncestors)
433 : : {
434 : : // Add to memory pool without checking anything.
435 : : // Used by AcceptToMemoryPool(), which DOES do
436 : : // all the appropriate checks.
437 : 49418 : indexed_transaction_set::iterator newit = mapTx.emplace(CTxMemPoolEntry::ExplicitCopy, entry).first;
438 : :
439 : : // Update transaction for any feeDelta created by PrioritiseTransaction
440 : 49418 : CAmount delta{0};
441 : 49418 : ApplyDelta(entry.GetTx().GetHash(), delta);
442 : : // The following call to UpdateModifiedFee assumes no previous fee modifications
443 : 49418 : Assume(entry.GetFee() == entry.GetModifiedFee());
444 [ + + ]: 49418 : if (delta) {
445 : 48 : mapTx.modify(newit, [&delta](CTxMemPoolEntry& e) { e.UpdateModifiedFee(delta); });
446 : : }
447 : :
448 : : // Update cachedInnerUsage to include contained transaction's usage.
449 : : // (When we update the entry for in-mempool parents, memory usage will be
450 : : // further updated.)
451 : 49418 : cachedInnerUsage += entry.DynamicMemoryUsage();
452 : :
453 : 49418 : const CTransaction& tx = newit->GetTx();
454 : 49418 : std::set<Txid> setParentTransactions;
455 [ + + ]: 115320 : for (unsigned int i = 0; i < tx.vin.size(); i++) {
456 [ + - ]: 65902 : mapNextTx.insert(std::make_pair(&tx.vin[i].prevout, &tx));
457 [ + - ]: 65902 : setParentTransactions.insert(tx.vin[i].prevout.hash);
458 : : }
459 : : // Don't bother worrying about child transactions of this one.
460 : : // Normal case of a new transaction arriving is that there can't be any
461 : : // children, because such children would be orphans.
462 : : // An exception to that is if a transaction enters that used to be in a block.
463 : : // In that case, our disconnect block logic will call UpdateTransactionsFromBlock
464 : : // to clean up the mess we're leaving here.
465 : :
466 : : // Update ancestors with information about this tx
467 [ + - + + ]: 57156 : for (const auto& pit : GetIterSet(setParentTransactions)) {
468 [ + - ]: 7738 : UpdateParent(newit, pit, true);
469 : 0 : }
470 [ + - ]: 49418 : UpdateAncestorsOf(true, newit, setAncestors);
471 [ + - ]: 49418 : UpdateEntryForAncestors(newit, setAncestors);
472 : :
473 [ + - ]: 49418 : nTransactionsUpdated++;
474 [ + - ]: 49418 : totalTxSize += entry.GetTxSize();
475 : 49418 : m_total_fee += entry.GetFee();
476 : :
477 [ + - + - ]: 98836 : txns_randomized.emplace_back(newit->GetSharedTx());
478 : 49418 : newit->idx_randomized = txns_randomized.size() - 1;
479 : :
480 : : TRACE3(mempool, added,
481 : : entry.GetTx().GetHash().data(),
482 : : entry.GetTxSize(),
483 : : entry.GetFee()
484 : 49418 : );
485 : 49418 : }
486 : :
487 : 44610 : void CTxMemPool::removeUnchecked(txiter it, MemPoolRemovalReason reason)
488 : : {
489 : : // We increment mempool sequence value no matter removal reason
490 : : // even if not directly reported below.
491 [ + + ]: 44610 : uint64_t mempool_sequence = GetAndIncrementSequence();
492 : :
493 [ + + + - ]: 44610 : if (reason != MemPoolRemovalReason::BLOCK && m_opts.signals) {
494 : : // Notify clients that a transaction has been removed from the mempool
495 : : // for any reason except being included in a block. Clients interested
496 : : // in transactions included in blocks can subscribe to the BlockConnected
497 : : // notification.
498 [ + - + - ]: 4674 : m_opts.signals->TransactionRemovedFromMempool(it->GetSharedTx(), reason, mempool_sequence);
499 : : }
500 : : TRACE5(mempool, removed,
501 : : it->GetTx().GetHash().data(),
502 : : RemovalReasonToString(reason).c_str(),
503 : : it->GetTxSize(),
504 : : it->GetFee(),
505 : : std::chrono::duration_cast<std::chrono::duration<std::uint64_t>>(it->GetTime()).count()
506 : 44610 : );
507 : :
508 [ + + ]: 99607 : for (const CTxIn& txin : it->GetTx().vin)
509 : 54997 : mapNextTx.erase(txin.prevout);
510 : :
511 : 44610 : RemoveUnbroadcastTx(it->GetTx().GetHash(), true /* add logging because unchecked */);
512 : :
513 [ + + ]: 44610 : if (txns_randomized.size() > 1) {
514 : : // Update idx_randomized of the to-be-moved entry.
515 : 42668 : Assert(GetEntry(txns_randomized.back()->GetHash()))->idx_randomized = it->idx_randomized;
516 : : // Remove entry from txns_randomized by replacing it with the back and deleting the back.
517 : 42668 : txns_randomized[it->idx_randomized] = std::move(txns_randomized.back());
518 : 42668 : txns_randomized.pop_back();
519 [ + + ]: 42668 : if (txns_randomized.size() * 2 < txns_randomized.capacity())
520 : 3085 : txns_randomized.shrink_to_fit();
521 : : } else
522 : 1942 : txns_randomized.clear();
523 : :
524 : 44610 : totalTxSize -= it->GetTxSize();
525 : 44610 : m_total_fee -= it->GetFee();
526 : 44610 : cachedInnerUsage -= it->DynamicMemoryUsage();
527 : 44610 : cachedInnerUsage -= memusage::DynamicUsage(it->GetMemPoolParentsConst()) + memusage::DynamicUsage(it->GetMemPoolChildrenConst());
528 : 44610 : mapTx.erase(it);
529 : 44610 : nTransactionsUpdated++;
530 : 44610 : }
531 : :
532 : : // Calculates descendants of entry that are not already in setDescendants, and adds to
533 : : // setDescendants. Assumes entryit is already a tx in the mempool and CTxMemPoolEntry::m_children
534 : : // is correct for tx and all descendants.
535 : : // Also assumes that if an entry is in setDescendants already, then all
536 : : // in-mempool descendants of it are already in setDescendants as well, so that we
537 : : // can save time by not iterating over those entries.
538 : 123475 : void CTxMemPool::CalculateDescendants(txiter entryit, setEntries& setDescendants) const
539 : : {
540 : 123475 : setEntries stage;
541 [ + - ]: 123475 : if (setDescendants.count(entryit) == 0) {
542 [ + - ]: 123475 : stage.insert(entryit);
543 : : }
544 : : // Traverse down the children of entry, only adding children that are not
545 : : // accounted for in setDescendants already (because those children have either
546 : : // already been walked, or will be walked in this iteration).
547 [ + + ]: 1304002 : while (!stage.empty()) {
548 [ + - ]: 1180527 : txiter it = *stage.begin();
549 [ + - ]: 1180527 : setDescendants.insert(it);
550 : 1180527 : stage.erase(it);
551 : :
552 : 1180527 : const CTxMemPoolEntry::Children& children = it->GetMemPoolChildrenConst();
553 [ + + ]: 2251392 : for (const CTxMemPoolEntry& child : children) {
554 : 1070865 : txiter childiter = mapTx.iterator_to(child);
555 [ + + ]: 1070865 : if (!setDescendants.count(childiter)) {
556 [ + - ]: 1064136 : stage.insert(childiter);
557 : : }
558 : : }
559 : : }
560 : 123475 : }
561 : :
562 : 18040 : void CTxMemPool::removeRecursive(const CTransaction &origTx, MemPoolRemovalReason reason)
563 : : {
564 : : // Remove transaction from memory pool
565 : 18040 : AssertLockHeld(cs);
566 [ + - ]: 18040 : setEntries txToRemove;
567 [ + - ]: 18040 : txiter origit = mapTx.find(origTx.GetHash());
568 [ + + ]: 18040 : if (origit != mapTx.end()) {
569 [ + - ]: 69 : txToRemove.insert(origit);
570 : : } else {
571 : : // When recursively removing but origTx isn't in the mempool
572 : : // be sure to remove any children that are in the pool. This can
573 : : // happen during chain re-orgs if origTx isn't re-accepted into
574 : : // the mempool for any reason.
575 [ + + ]: 45094 : for (unsigned int i = 0; i < origTx.vout.size(); i++) {
576 : 27123 : auto it = mapNextTx.find(COutPoint(origTx.GetHash(), i));
577 [ + + ]: 27123 : if (it == mapNextTx.end())
578 : 27051 : continue;
579 [ + - ]: 72 : txiter nextit = mapTx.find(it->second->GetHash());
580 [ - + ]: 72 : assert(nextit != mapTx.end());
581 [ + - ]: 72 : txToRemove.insert(nextit);
582 : : }
583 : : }
584 : 18040 : setEntries setAllRemoves;
585 [ + + ]: 18181 : for (txiter it : txToRemove) {
586 [ + - ]: 141 : CalculateDescendants(it, setAllRemoves);
587 : : }
588 : :
589 [ + - ]: 18040 : RemoveStaged(setAllRemoves, false, reason);
590 : 18040 : }
591 : :
592 : 3003 : void CTxMemPool::removeForReorg(CChain& chain, std::function<bool(txiter)> check_final_and_mature)
593 : : {
594 : : // Remove transactions spending a coinbase which are now immature and no-longer-final transactions
595 : 3003 : AssertLockHeld(cs);
596 : 3003 : AssertLockHeld(::cs_main);
597 : :
598 : 3003 : setEntries txToRemove;
599 [ + + ]: 3889 : for (indexed_transaction_set::const_iterator it = mapTx.begin(); it != mapTx.end(); it++) {
600 [ + - + + : 886 : if (check_final_and_mature(it)) txToRemove.insert(it);
+ - ]
601 : : }
602 : 3003 : setEntries setAllRemoves;
603 [ + + ]: 3020 : for (txiter it : txToRemove) {
604 [ + - ]: 17 : CalculateDescendants(it, setAllRemoves);
605 : : }
606 [ + - ]: 3003 : RemoveStaged(setAllRemoves, false, MemPoolRemovalReason::REORG);
607 [ + + ]: 3872 : for (indexed_transaction_set::const_iterator it = mapTx.begin(); it != mapTx.end(); it++) {
608 [ + - - + ]: 869 : assert(TestLockPointValidity(chain, it->GetLockPoints()));
609 : : }
610 : 3003 : }
611 : :
612 : 189585 : void CTxMemPool::removeConflicts(const CTransaction &tx)
613 : : {
614 : : // Remove transactions which depend on inputs of tx, recursively
615 : 189585 : AssertLockHeld(cs);
616 [ + + ]: 402338 : for (const CTxIn &txin : tx.vin) {
617 : 212753 : auto it = mapNextTx.find(txin.prevout);
618 [ + + ]: 212753 : if (it != mapNextTx.end()) {
619 [ + - ]: 59 : const CTransaction &txConflict = *it->second;
620 [ + - ]: 59 : if (txConflict != tx)
621 : : {
622 : 59 : ClearPrioritisation(txConflict.GetHash());
623 : 59 : removeRecursive(txConflict, MemPoolRemovalReason::CONFLICT);
624 : : }
625 : : }
626 : : }
627 : 189585 : }
628 : :
629 : : /**
630 : : * Called when a block is connected. Removes from mempool.
631 : : */
632 : 124224 : void CTxMemPool::removeForBlock(const std::vector<CTransactionRef>& vtx, unsigned int nBlockHeight)
633 : : {
634 : 124224 : AssertLockHeld(cs);
635 : 124224 : std::vector<RemovedMempoolTransactionInfo> txs_removed_for_block;
636 [ + - ]: 124224 : txs_removed_for_block.reserve(vtx.size());
637 [ + + ]: 313809 : for (const auto& tx : vtx)
638 : : {
639 [ + - ]: 189585 : txiter it = mapTx.find(tx->GetHash());
640 [ + + ]: 189585 : if (it != mapTx.end()) {
641 [ + - ]: 43052 : setEntries stage;
642 [ + - ]: 43052 : stage.insert(it);
643 [ + - ]: 43052 : txs_removed_for_block.emplace_back(*it);
644 [ + - ]: 43052 : RemoveStaged(stage, true, MemPoolRemovalReason::BLOCK);
645 : 43052 : }
646 [ + - ]: 189585 : removeConflicts(*tx);
647 [ + - ]: 189585 : ClearPrioritisation(tx->GetHash());
648 : : }
649 [ + - ]: 124224 : if (m_opts.signals) {
650 [ + - ]: 124224 : m_opts.signals->MempoolTransactionsRemovedForBlock(txs_removed_for_block, nBlockHeight);
651 : : }
652 [ + - ]: 124224 : lastRollingFeeUpdate = GetTime();
653 : 124224 : blockSinceLastRollingFeeBump = true;
654 : 124224 : }
655 : :
656 : 147165 : void CTxMemPool::check(const CCoinsViewCache& active_coins_tip, int64_t spendheight) const
657 : : {
658 [ + + ]: 147165 : if (m_opts.check_ratio == 0) return;
659 : :
660 [ + - ]: 147138 : if (FastRandomContext().randrange(m_opts.check_ratio) >= 1) return;
661 : :
662 : 147138 : AssertLockHeld(::cs_main);
663 : 147138 : LOCK(cs);
664 [ + - + - : 147138 : LogDebug(BCLog::MEMPOOL, "Checking mempool with %u transactions and %u inputs\n", (unsigned int)mapTx.size(), (unsigned int)mapNextTx.size());
+ - ]
665 : :
666 : 147138 : uint64_t checkTotal = 0;
667 : 147138 : CAmount check_total_fee{0};
668 : 147138 : uint64_t innerUsage = 0;
669 : 147138 : uint64_t prev_ancestor_count{0};
670 : :
671 [ + - ]: 147138 : CCoinsViewCache mempoolDuplicate(const_cast<CCoinsViewCache*>(&active_coins_tip));
672 : :
673 [ + - + + ]: 6958643 : for (const auto& it : GetSortedDepthAndScore()) {
674 [ + - ]: 6811505 : checkTotal += it->GetTxSize();
675 : 6811505 : check_total_fee += it->GetFee();
676 : 6811505 : innerUsage += it->DynamicMemoryUsage();
677 : 6811505 : const CTransaction& tx = it->GetTx();
678 : 6811505 : innerUsage += memusage::DynamicUsage(it->GetMemPoolParentsConst()) + memusage::DynamicUsage(it->GetMemPoolChildrenConst());
679 : 6811505 : CTxMemPoolEntry::Parents setParentCheck;
680 [ + + ]: 15785301 : for (const CTxIn &txin : tx.vin) {
681 : : // Check that every mempool transaction's inputs refer to available coins, or other mempool tx's.
682 [ + - ]: 8973796 : indexed_transaction_set::const_iterator it2 = mapTx.find(txin.prevout.hash);
683 [ + + ]: 8973796 : if (it2 != mapTx.end()) {
684 [ + - ]: 120712 : const CTransaction& tx2 = it2->GetTx();
685 [ + - - + ]: 120712 : assert(tx2.vout.size() > txin.prevout.n && !tx2.vout[txin.prevout.n].IsNull());
686 [ + - ]: 120712 : setParentCheck.insert(*it2);
687 : : }
688 : : // We are iterating through the mempool entries sorted in order by ancestor count.
689 : : // All parents must have been checked before their children and their coins added to
690 : : // the mempoolDuplicate coins cache.
691 [ + - - + ]: 8973796 : assert(mempoolDuplicate.HaveCoin(txin.prevout));
692 : : // Check whether its inputs are marked in mapNextTx.
693 : 8973796 : auto it3 = mapNextTx.find(txin.prevout);
694 [ - + ]: 8973796 : assert(it3 != mapNextTx.end());
695 [ - + ]: 8973796 : assert(it3->first == &txin.prevout);
696 [ - + ]: 8973796 : assert(it3->second == &tx);
697 : : }
698 : 7052701 : auto comp = [](const CTxMemPoolEntry& a, const CTxMemPoolEntry& b) -> bool {
699 [ + - ]: 241196 : return a.GetTx().GetHash() == b.GetTx().GetHash();
700 : : };
701 [ - + ]: 6811505 : assert(setParentCheck.size() == it->GetMemPoolParentsConst().size());
702 [ - + ]: 6811505 : assert(std::equal(setParentCheck.begin(), setParentCheck.end(), it->GetMemPoolParentsConst().begin(), comp));
703 : : // Verify ancestor state is correct.
704 [ + - ]: 6811505 : auto ancestors{AssumeCalculateMemPoolAncestors(__func__, *it, Limits::NoLimits())};
705 [ + - ]: 6811505 : uint64_t nCountCheck = ancestors.size() + 1;
706 [ + - ]: 6811505 : int32_t nSizeCheck = it->GetTxSize();
707 : 6811505 : CAmount nFeesCheck = it->GetModifiedFee();
708 : 6811505 : int64_t nSigOpCheck = it->GetSigOpCost();
709 : :
710 [ + + ]: 7271356 : for (txiter ancestorIt : ancestors) {
711 [ + - ]: 459851 : nSizeCheck += ancestorIt->GetTxSize();
712 : 459851 : nFeesCheck += ancestorIt->GetModifiedFee();
713 : 459851 : nSigOpCheck += ancestorIt->GetSigOpCost();
714 : : }
715 : :
716 [ - + ]: 6811505 : assert(it->GetCountWithAncestors() == nCountCheck);
717 [ - + ]: 6811505 : assert(it->GetSizeWithAncestors() == nSizeCheck);
718 [ - + ]: 6811505 : assert(it->GetSigOpCostWithAncestors() == nSigOpCheck);
719 [ - + ]: 6811505 : assert(it->GetModFeesWithAncestors() == nFeesCheck);
720 : : // Sanity check: we are walking in ascending ancestor count order.
721 [ - + ]: 6811505 : assert(prev_ancestor_count <= it->GetCountWithAncestors());
722 : 6811505 : prev_ancestor_count = it->GetCountWithAncestors();
723 : :
724 : : // Check children against mapNextTx
725 : 6811505 : CTxMemPoolEntry::Children setChildrenCheck;
726 : 6811505 : auto iter = mapNextTx.lower_bound(COutPoint(it->GetTx().GetHash(), 0));
727 : 6811505 : int32_t child_sizes{0};
728 [ + + + + ]: 6932217 : for (; iter != mapNextTx.end() && iter->first->hash == it->GetTx().GetHash(); ++iter) {
729 [ + - ]: 120712 : txiter childit = mapTx.find(iter->second->GetHash());
730 [ - + ]: 120712 : assert(childit != mapTx.end()); // mapNextTx points to in-mempool transactions
731 [ + - + + ]: 120712 : if (setChildrenCheck.insert(*childit).second) {
732 [ + - ]: 120598 : child_sizes += childit->GetTxSize();
733 : : }
734 : : }
735 [ - + ]: 6811505 : assert(setChildrenCheck.size() == it->GetMemPoolChildrenConst().size());
736 [ - + ]: 6811505 : assert(std::equal(setChildrenCheck.begin(), setChildrenCheck.end(), it->GetMemPoolChildrenConst().begin(), comp));
737 : : // Also check to make sure size is greater than sum with immediate children.
738 : : // just a sanity check, not definitive that this calc is correct...
739 [ + - - + ]: 6811505 : assert(it->GetSizeWithDescendants() >= child_sizes + it->GetTxSize());
740 : :
741 [ - + ]: 6811505 : TxValidationState dummy_state; // Not used. CheckTxInputs() should always pass
742 : 6811505 : CAmount txfee = 0;
743 [ - + ]: 6811505 : assert(!tx.IsCoinBase());
744 [ + - - + ]: 6811505 : assert(Consensus::CheckTxInputs(tx, dummy_state, mempoolDuplicate, spendheight, txfee));
745 [ + - + + ]: 15785301 : for (const auto& input: tx.vin) mempoolDuplicate.SpendCoin(input.prevout);
746 [ + - ]: 6811505 : AddCoins(mempoolDuplicate, tx, std::numeric_limits<int>::max());
747 : 6811505 : }
748 [ + + ]: 9120934 : for (auto it = mapNextTx.cbegin(); it != mapNextTx.cend(); it++) {
749 [ + - ]: 8973796 : uint256 hash = it->second->GetHash();
750 [ + - ]: 8973796 : indexed_transaction_set::const_iterator it2 = mapTx.find(hash);
751 [ - + ]: 8973796 : const CTransaction& tx = it2->GetTx();
752 [ - + ]: 8973796 : assert(it2 != mapTx.end());
753 [ - + ]: 8973796 : assert(&tx == it->second);
754 : : }
755 : :
756 [ - + ]: 147138 : assert(totalTxSize == checkTotal);
757 [ - + ]: 147138 : assert(m_total_fee == check_total_fee);
758 [ - + ]: 147138 : assert(innerUsage == cachedInnerUsage);
759 [ + - ]: 294276 : }
760 : :
761 : 20573 : bool CTxMemPool::CompareDepthAndScore(const uint256& hasha, const uint256& hashb, bool wtxid)
762 : : {
763 : : /* Return `true` if hasha should be considered sooner than hashb. Namely when:
764 : : * a is not in the mempool, but b is
765 : : * both are in the mempool and a has fewer ancestors than b
766 : : * both are in the mempool and a has a higher score than b
767 : : */
768 : 20573 : LOCK(cs);
769 [ + + + - : 20573 : indexed_transaction_set::const_iterator j = wtxid ? get_iter_from_wtxid(hashb) : mapTx.find(hashb);
+ - ]
770 [ + + ]: 20573 : if (j == mapTx.end()) return false;
771 [ + + + - : 15684 : indexed_transaction_set::const_iterator i = wtxid ? get_iter_from_wtxid(hasha) : mapTx.find(hasha);
+ - ]
772 [ + + ]: 15684 : if (i == mapTx.end()) return true;
773 [ + + ]: 14834 : uint64_t counta = i->GetCountWithAncestors();
774 : 14834 : uint64_t countb = j->GetCountWithAncestors();
775 [ + + ]: 14834 : if (counta == countb) {
776 [ + - ]: 13843 : return CompareTxMemPoolEntryByScore()(*i, *j);
777 : : }
778 : 991 : return counta < countb;
779 : 20573 : }
780 : :
781 : : namespace {
782 : : class DepthAndScoreComparator
783 : : {
784 : : public:
785 : 76188018 : bool operator()(const CTxMemPool::indexed_transaction_set::const_iterator& a, const CTxMemPool::indexed_transaction_set::const_iterator& b)
786 : : {
787 [ + + ]: 76188018 : uint64_t counta = a->GetCountWithAncestors();
788 : 76188018 : uint64_t countb = b->GetCountWithAncestors();
789 [ + + ]: 76188018 : if (counta == countb) {
790 : 75875898 : return CompareTxMemPoolEntryByScore()(*a, *b);
791 : : }
792 : 312120 : return counta < countb;
793 : : }
794 : : };
795 : : } // namespace
796 : :
797 : 155264 : std::vector<CTxMemPool::indexed_transaction_set::const_iterator> CTxMemPool::GetSortedDepthAndScore() const
798 : : {
799 : 155264 : std::vector<indexed_transaction_set::const_iterator> iters;
800 : 155264 : AssertLockHeld(cs);
801 : :
802 [ + - ]: 155264 : iters.reserve(mapTx.size());
803 : :
804 [ + + + + ]: 14116734 : for (indexed_transaction_set::iterator mi = mapTx.begin(); mi != mapTx.end(); ++mi) {
805 [ + - ]: 6980735 : iters.push_back(mi);
806 : : }
807 [ + - ]: 155264 : std::sort(iters.begin(), iters.end(), DepthAndScoreComparator());
808 : 155264 : return iters;
809 : 0 : }
810 : :
811 : 29369 : static TxMempoolInfo GetInfo(CTxMemPool::indexed_transaction_set::const_iterator it) {
812 [ + - + - : 58738 : return TxMempoolInfo{it->GetSharedTx(), it->GetTime(), it->GetFee(), it->GetTxSize(), it->GetModifiedFee() - it->GetFee()};
- - ]
813 : : }
814 : :
815 : 7279 : std::vector<CTxMemPoolEntryRef> CTxMemPool::entryAll() const
816 : : {
817 : 7279 : AssertLockHeld(cs);
818 : :
819 : 7279 : std::vector<CTxMemPoolEntryRef> ret;
820 [ + - ]: 7279 : ret.reserve(mapTx.size());
821 [ + - + + ]: 174911 : for (const auto& it : GetSortedDepthAndScore()) {
822 [ + - ]: 167632 : ret.emplace_back(*it);
823 : 0 : }
824 : 7279 : return ret;
825 : 0 : }
826 : :
827 : 847 : std::vector<TxMempoolInfo> CTxMemPool::infoAll() const
828 : : {
829 : 847 : LOCK(cs);
830 [ + - ]: 847 : auto iters = GetSortedDepthAndScore();
831 : :
832 : 847 : std::vector<TxMempoolInfo> ret;
833 [ + - ]: 847 : ret.reserve(mapTx.size());
834 [ + + ]: 2445 : for (auto it : iters) {
835 [ + - - + ]: 3196 : ret.push_back(GetInfo(it));
836 : : }
837 : :
838 : 847 : return ret;
839 [ + - ]: 1694 : }
840 : :
841 : 44900 : const CTxMemPoolEntry* CTxMemPool::GetEntry(const Txid& txid) const
842 : : {
843 : 44900 : AssertLockHeld(cs);
844 : 44900 : const auto i = mapTx.find(txid);
845 [ + + ]: 44900 : return i == mapTx.end() ? nullptr : &(*i);
846 : : }
847 : :
848 : 168340 : CTransactionRef CTxMemPool::get(const uint256& hash) const
849 : : {
850 : 168340 : LOCK(cs);
851 [ + - ]: 168340 : indexed_transaction_set::const_iterator i = mapTx.find(hash);
852 [ + + ]: 168340 : if (i == mapTx.end())
853 : 112107 : return nullptr;
854 [ + - + - ]: 224573 : return i->GetSharedTx();
855 : 168340 : }
856 : :
857 : 17530 : TxMempoolInfo CTxMemPool::info(const GenTxid& gtxid) const
858 : : {
859 : 17530 : LOCK(cs);
860 [ + + + - : 17530 : indexed_transaction_set::const_iterator i = (gtxid.IsWtxid() ? get_iter_from_wtxid(gtxid.GetHash()) : mapTx.find(gtxid.GetHash()));
+ - ]
861 [ + + ]: 17530 : if (i == mapTx.end())
862 : 1290 : return TxMempoolInfo();
863 [ + - ]: 16240 : return GetInfo(i);
864 : 17530 : }
865 : :
866 : 11548 : TxMempoolInfo CTxMemPool::info_for_relay(const GenTxid& gtxid, uint64_t last_sequence) const
867 : : {
868 : 11548 : LOCK(cs);
869 [ + + + - : 11548 : indexed_transaction_set::const_iterator i = (gtxid.IsWtxid() ? get_iter_from_wtxid(gtxid.GetHash()) : mapTx.find(gtxid.GetHash()));
+ - ]
870 [ + + + + ]: 11548 : if (i != mapTx.end() && i->GetSequence() < last_sequence) {
871 [ + - ]: 11531 : return GetInfo(i);
872 : : } else {
873 : 17 : return TxMempoolInfo();
874 : : }
875 : 11548 : }
876 : :
877 : 743 : void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta)
878 : : {
879 : 743 : {
880 : 743 : LOCK(cs);
881 [ + - ]: 743 : CAmount &delta = mapDeltas[hash];
882 : 743 : delta = SaturatingAdd(delta, nFeeDelta);
883 [ + - ]: 743 : txiter it = mapTx.find(hash);
884 [ + + ]: 743 : if (it != mapTx.end()) {
885 [ + - ]: 518 : mapTx.modify(it, [&nFeeDelta](CTxMemPoolEntry& e) { e.UpdateModifiedFee(nFeeDelta); });
886 : : // Now update all ancestors' modified fees with descendants
887 [ + - ]: 259 : auto ancestors{AssumeCalculateMemPoolAncestors(__func__, *it, Limits::NoLimits(), /*fSearchForParents=*/false)};
888 [ + + ]: 294 : for (txiter ancestorIt : ancestors) {
889 [ + - + - ]: 105 : mapTx.modify(ancestorIt, [=](CTxMemPoolEntry& e){ e.UpdateDescendantState(0, nFeeDelta, 0);});
890 : : }
891 : : // Now update all descendants' modified fees with ancestors
892 [ + - ]: 259 : setEntries setDescendants;
893 [ + - ]: 259 : CalculateDescendants(it, setDescendants);
894 : 259 : setDescendants.erase(it);
895 [ + + ]: 314 : for (txiter descendantIt : setDescendants) {
896 [ + - ]: 165 : mapTx.modify(descendantIt, [=](CTxMemPoolEntry& e){ e.UpdateAncestorState(0, nFeeDelta, 0, 0); });
897 : : }
898 : 259 : ++nTransactionsUpdated;
899 : 259 : }
900 [ + + ]: 743 : if (delta == 0) {
901 : 8 : mapDeltas.erase(hash);
902 [ + + + - : 23 : LogPrintf("PrioritiseTransaction: %s (%sin mempool) delta cleared\n", hash.ToString(), it == mapTx.end() ? "not " : "");
+ - ]
903 : : } else {
904 [ + - + - : 1722 : LogPrintf("PrioritiseTransaction: %s (%sin mempool) fee += %s, new delta=%s\n",
+ + + - +
- ]
905 : : hash.ToString(),
906 : : it == mapTx.end() ? "not " : "",
907 : : FormatMoney(nFeeDelta),
908 : : FormatMoney(delta));
909 : : }
910 : 743 : }
911 : 743 : }
912 : :
913 : 78951 : void CTxMemPool::ApplyDelta(const uint256& hash, CAmount &nFeeDelta) const
914 : : {
915 : 78951 : AssertLockHeld(cs);
916 : 78951 : std::map<uint256, CAmount>::const_iterator pos = mapDeltas.find(hash);
917 [ + + ]: 78951 : if (pos == mapDeltas.end())
918 : : return;
919 : 57 : const CAmount &delta = pos->second;
920 : 57 : nFeeDelta += delta;
921 : : }
922 : :
923 : 189645 : void CTxMemPool::ClearPrioritisation(const uint256& hash)
924 : : {
925 : 189645 : AssertLockHeld(cs);
926 : 189645 : mapDeltas.erase(hash);
927 : 189645 : }
928 : :
929 : 26 : std::vector<CTxMemPool::delta_info> CTxMemPool::GetPrioritisedTransactions() const
930 : : {
931 : 26 : AssertLockNotHeld(cs);
932 : 26 : LOCK(cs);
933 : 26 : std::vector<delta_info> result;
934 [ + - ]: 26 : result.reserve(mapDeltas.size());
935 [ + - + + ]: 54 : for (const auto& [txid, delta] : mapDeltas) {
936 [ + - ]: 28 : const auto iter{mapTx.find(txid)};
937 [ + + ]: 28 : const bool in_mempool{iter != mapTx.end()};
938 : 28 : std::optional<CAmount> modified_fee;
939 [ + + ]: 28 : if (in_mempool) modified_fee = iter->GetModifiedFee();
940 [ + - ]: 28 : result.emplace_back(delta_info{in_mempool, delta, modified_fee, txid});
941 : : }
942 [ + - ]: 26 : return result;
943 : 26 : }
944 : :
945 : 112006 : const CTransaction* CTxMemPool::GetConflictTx(const COutPoint& prevout) const
946 : : {
947 : 112006 : const auto it = mapNextTx.find(prevout);
948 [ + + ]: 112006 : return it == mapNextTx.end() ? nullptr : it->second;
949 : : }
950 : :
951 : 9181990 : std::optional<CTxMemPool::txiter> CTxMemPool::GetIter(const uint256& txid) const
952 : : {
953 : 9181990 : auto it = mapTx.find(txid);
954 [ + + ]: 9181990 : if (it != mapTx.end()) return it;
955 : 8991676 : return std::nullopt;
956 : : }
957 : :
958 : 78857 : CTxMemPool::setEntries CTxMemPool::GetIterSet(const std::set<Txid>& hashes) const
959 : : {
960 : 78857 : CTxMemPool::setEntries ret;
961 [ + + ]: 145249 : for (const auto& h : hashes) {
962 [ + - ]: 66392 : const auto mi = GetIter(h);
963 [ + + + - ]: 66392 : if (mi) ret.insert(*mi);
964 : : }
965 : 78857 : return ret;
966 : 0 : }
967 : :
968 : 2943 : std::vector<CTxMemPool::txiter> CTxMemPool::GetIterVec(const std::vector<uint256>& txids) const
969 : : {
970 : 2943 : AssertLockHeld(cs);
971 : 2943 : std::vector<txiter> ret;
972 [ + - ]: 2943 : ret.reserve(txids.size());
973 [ + + ]: 53059 : for (const auto& txid : txids) {
974 [ + - ]: 50116 : const auto it{GetIter(txid)};
975 [ - + ]: 50116 : if (!it) return {};
976 [ + - ]: 50116 : ret.push_back(*it);
977 : : }
978 : 2943 : return ret;
979 : 2943 : }
980 : :
981 : 21843 : bool CTxMemPool::HasNoInputsOf(const CTransaction &tx) const
982 : : {
983 [ + + ]: 55102 : for (unsigned int i = 0; i < tx.vin.size(); i++)
984 [ + + ]: 36046 : if (exists(GenTxid::Txid(tx.vin[i].prevout.hash)))
985 : : return false;
986 : : return true;
987 : : }
988 : :
989 [ + - + - ]: 36276 : CCoinsViewMemPool::CCoinsViewMemPool(CCoinsView* baseIn, const CTxMemPool& mempoolIn) : CCoinsViewBacked(baseIn), mempool(mempoolIn) { }
990 : :
991 : 73114 : std::optional<Coin> CCoinsViewMemPool::GetCoin(const COutPoint& outpoint) const
992 : : {
993 : : // Check to see if the inputs are made available by another tx in the package.
994 : : // These Coins would not be available in the underlying CoinsView.
995 [ + + ]: 73114 : if (auto it = m_temp_added.find(outpoint); it != m_temp_added.end()) {
996 : 587 : return it->second;
997 : : }
998 : :
999 : : // If an entry in the mempool exists, always return that one, as it's guaranteed to never
1000 : : // conflict with the underlying cache, and it cannot have pruned entries (as it contains full)
1001 : : // transactions. First checking the underlying cache risks returning a pruned entry instead.
1002 : 72527 : CTransactionRef ptx = mempool.get(outpoint.hash);
1003 [ + + ]: 72527 : if (ptx) {
1004 [ + - ]: 14130 : if (outpoint.n < ptx->vout.size()) {
1005 : 14130 : Coin coin(ptx->vout[outpoint.n], MEMPOOL_HEIGHT, false);
1006 [ + - ]: 14130 : m_non_base_coins.emplace(outpoint);
1007 : 14130 : return coin;
1008 : 14130 : }
1009 : 0 : return std::nullopt;
1010 : : }
1011 [ + - ]: 58397 : return base->GetCoin(outpoint);
1012 : 72527 : }
1013 : :
1014 : 733 : void CCoinsViewMemPool::PackageAddTransaction(const CTransactionRef& tx)
1015 : : {
1016 [ + + ]: 1492 : for (unsigned int n = 0; n < tx->vout.size(); ++n) {
1017 [ + - ]: 759 : m_temp_added.emplace(COutPoint(tx->GetHash(), n), Coin(tx->vout[n], MEMPOOL_HEIGHT, false));
1018 : 759 : m_non_base_coins.emplace(tx->GetHash(), n);
1019 : : }
1020 : 733 : }
1021 : 300 : void CCoinsViewMemPool::Reset()
1022 : : {
1023 : 300 : m_temp_added.clear();
1024 : 300 : m_non_base_coins.clear();
1025 : 300 : }
1026 : :
1027 : 439069 : size_t CTxMemPool::DynamicMemoryUsage() const {
1028 : 439069 : LOCK(cs);
1029 : : // Estimate the overhead of mapTx to be 15 pointers + an allocation, as no exact formula for boost::multi_index_contained is implemented.
1030 [ + + + - ]: 551528 : return memusage::MallocUsage(sizeof(CTxMemPoolEntry) + 15 * sizeof(void*)) * mapTx.size() + memusage::DynamicUsage(mapNextTx) + memusage::DynamicUsage(mapDeltas) + memusage::DynamicUsage(txns_randomized) + cachedInnerUsage;
1031 : 439069 : }
1032 : :
1033 : 56148 : void CTxMemPool::RemoveUnbroadcastTx(const uint256& txid, const bool unchecked) {
1034 : 56148 : LOCK(cs);
1035 : :
1036 [ + + ]: 56148 : if (m_unbroadcast_txids.erase(txid))
1037 : : {
1038 [ + - + - : 24120 : LogDebug(BCLog::MEMPOOL, "Removed %i from set of unbroadcast txns%s\n", txid.GetHex(), (unchecked ? " before confirmation that txn was sent out" : ""));
+ + + - +
- ]
1039 : : }
1040 : 56148 : }
1041 : :
1042 : 110438 : void CTxMemPool::RemoveStaged(setEntries &stage, bool updateDescendants, MemPoolRemovalReason reason) {
1043 : 110438 : AssertLockHeld(cs);
1044 : 110438 : UpdateForRemoveFromMempool(stage, updateDescendants);
1045 [ + + ]: 155048 : for (txiter it : stage) {
1046 : 44610 : removeUnchecked(it, reason);
1047 : : }
1048 : 110438 : }
1049 : :
1050 : 24441 : int CTxMemPool::Expire(std::chrono::seconds time)
1051 : : {
1052 : 24441 : AssertLockHeld(cs);
1053 : 24441 : indexed_transaction_set::index<entry_time>::type::iterator it = mapTx.get<entry_time>().begin();
1054 : 24441 : setEntries toremove;
1055 [ + + + + ]: 24445 : while (it != mapTx.get<entry_time>().end() && it->GetTime() < time) {
1056 [ + - ]: 4 : toremove.insert(mapTx.project<0>(it));
1057 : 4 : it++;
1058 : : }
1059 : 24441 : setEntries stage;
1060 [ + + ]: 24445 : for (txiter removeit : toremove) {
1061 [ + - ]: 4 : CalculateDescendants(removeit, stage);
1062 : : }
1063 [ + - ]: 24441 : RemoveStaged(stage, false, MemPoolRemovalReason::EXPIRY);
1064 : 24441 : return stage.size();
1065 : 24441 : }
1066 : :
1067 : 27571 : void CTxMemPool::addUnchecked(const CTxMemPoolEntry &entry)
1068 : : {
1069 : 27571 : auto ancestors{AssumeCalculateMemPoolAncestors(__func__, entry, Limits::NoLimits())};
1070 [ + - ]: 27571 : return addUnchecked(entry, ancestors);
1071 : 27571 : }
1072 : :
1073 : 11967 : void CTxMemPool::UpdateChild(txiter entry, txiter child, bool add)
1074 : : {
1075 : 11967 : AssertLockHeld(cs);
1076 [ + + ]: 11967 : CTxMemPoolEntry::Children s;
1077 [ + + + - : 11967 : if (add && entry->GetMemPoolChildren().insert(*child).second) {
+ - ]
1078 : 11505 : cachedInnerUsage += memusage::IncrementalDynamicUsage(s);
1079 [ + - + - ]: 462 : } else if (!add && entry->GetMemPoolChildren().erase(*child)) {
1080 : 462 : cachedInnerUsage -= memusage::IncrementalDynamicUsage(s);
1081 : : }
1082 : 11967 : }
1083 : :
1084 : 14435 : void CTxMemPool::UpdateParent(txiter entry, txiter parent, bool add)
1085 : : {
1086 : 14435 : AssertLockHeld(cs);
1087 [ + + ]: 14435 : CTxMemPoolEntry::Parents s;
1088 [ + + + - : 14435 : if (add && entry->GetMemPoolParents().insert(*parent).second) {
+ - ]
1089 : 11505 : cachedInnerUsage += memusage::IncrementalDynamicUsage(s);
1090 [ + - + - ]: 2930 : } else if (!add && entry->GetMemPoolParents().erase(*parent)) {
1091 : 2930 : cachedInnerUsage -= memusage::IncrementalDynamicUsage(s);
1092 : : }
1093 : 14435 : }
1094 : :
1095 : 463447 : CFeeRate CTxMemPool::GetMinFee(size_t sizelimit) const {
1096 : 463447 : LOCK(cs);
1097 [ + + + + ]: 463447 : if (!blockSinceLastRollingFeeBump || rollingMinimumFeeRate == 0)
1098 : 463396 : return CFeeRate(llround(rollingMinimumFeeRate));
1099 : :
1100 [ + - ]: 51 : int64_t time = GetTime();
1101 [ + + ]: 51 : if (time > lastRollingFeeUpdate + 10) {
1102 : 6 : double halflife = ROLLING_FEE_HALFLIFE;
1103 [ + - + + ]: 6 : if (DynamicMemoryUsage() < sizelimit / 4)
1104 : : halflife /= 4;
1105 [ + - + + ]: 5 : else if (DynamicMemoryUsage() < sizelimit / 2)
1106 : 1 : halflife /= 2;
1107 : :
1108 : 6 : rollingMinimumFeeRate = rollingMinimumFeeRate / pow(2.0, (time - lastRollingFeeUpdate) / halflife);
1109 : 6 : lastRollingFeeUpdate = time;
1110 : :
1111 [ + + ]: 6 : if (rollingMinimumFeeRate < (double)m_opts.incremental_relay_feerate.GetFeePerK() / 2) {
1112 : 1 : rollingMinimumFeeRate = 0;
1113 : 1 : return CFeeRate(0);
1114 : : }
1115 : : }
1116 [ + + + - ]: 463496 : return std::max(CFeeRate(llround(rollingMinimumFeeRate)), m_opts.incremental_relay_feerate);
1117 : 463447 : }
1118 : :
1119 : 59 : void CTxMemPool::trackPackageRemoved(const CFeeRate& rate) {
1120 : 59 : AssertLockHeld(cs);
1121 [ + + ]: 59 : if (rate.GetFeePerK() > rollingMinimumFeeRate) {
1122 : 57 : rollingMinimumFeeRate = rate.GetFeePerK();
1123 : 57 : blockSinceLastRollingFeeBump = false;
1124 : : }
1125 : 59 : }
1126 : :
1127 : 24449 : void CTxMemPool::TrimToSize(size_t sizelimit, std::vector<COutPoint>* pvNoSpendsRemaining) {
1128 : 24449 : AssertLockHeld(cs);
1129 : :
1130 : 24449 : unsigned nTxnRemoved = 0;
1131 : 24449 : CFeeRate maxFeeRateRemoved(0);
1132 [ + + + + ]: 24508 : while (!mapTx.empty() && DynamicMemoryUsage() > sizelimit) {
1133 : 59 : indexed_transaction_set::index<descendant_score>::type::iterator it = mapTx.get<descendant_score>().begin();
1134 : :
1135 : : // We set the new mempool min fee to the feerate of the removed set, plus the
1136 : : // "minimum reasonable fee rate" (ie some value under which we consider txn
1137 : : // to have 0 fee). This way, we don't allow txn to enter mempool with feerate
1138 : : // equal to txn which were removed with no block in between.
1139 : 59 : CFeeRate removed(it->GetModFeesWithDescendants(), it->GetSizeWithDescendants());
1140 : 59 : removed += m_opts.incremental_relay_feerate;
1141 : 59 : trackPackageRemoved(removed);
1142 [ + - ]: 59 : maxFeeRateRemoved = std::max(maxFeeRateRemoved, removed);
1143 : :
1144 [ + - ]: 59 : setEntries stage;
1145 [ + - ]: 59 : CalculateDescendants(mapTx.project<0>(it), stage);
1146 [ + + ]: 59 : nTxnRemoved += stage.size();
1147 : :
1148 : 59 : std::vector<CTransaction> txn;
1149 [ + + ]: 59 : if (pvNoSpendsRemaining) {
1150 [ + - ]: 52 : txn.reserve(stage.size());
1151 [ + + ]: 107 : for (txiter iter : stage)
1152 [ + - ]: 55 : txn.push_back(iter->GetTx());
1153 : : }
1154 [ + - ]: 59 : RemoveStaged(stage, false, MemPoolRemovalReason::SIZELIMIT);
1155 [ + + ]: 59 : if (pvNoSpendsRemaining) {
1156 [ + + ]: 107 : for (const CTransaction& tx : txn) {
1157 [ + + ]: 113 : for (const CTxIn& txin : tx.vin) {
1158 [ + - + + ]: 58 : if (exists(GenTxid::Txid(txin.prevout.hash))) continue;
1159 [ + - ]: 54 : pvNoSpendsRemaining->push_back(txin.prevout);
1160 : : }
1161 : : }
1162 : : }
1163 : 59 : }
1164 : :
1165 [ + + ]: 24449 : if (maxFeeRateRemoved > CFeeRate(0)) {
1166 [ + - + - ]: 92 : LogDebug(BCLog::MEMPOOL, "Removed %u txn, rolling minimum fee bumped to %s\n", nTxnRemoved, maxFeeRateRemoved.ToString());
1167 : : }
1168 : 24449 : }
1169 : :
1170 : 47698 : uint64_t CTxMemPool::CalculateDescendantMaximum(txiter entry) const {
1171 : : // find parent with highest descendant count
1172 : 47698 : std::vector<txiter> candidates;
1173 [ + - ]: 47698 : setEntries counted;
1174 [ + - ]: 47698 : candidates.push_back(entry);
1175 : 47698 : uint64_t maximum = 0;
1176 [ + + ]: 112745 : while (candidates.size()) {
1177 : 65047 : txiter candidate = candidates.back();
1178 [ + - ]: 65047 : candidates.pop_back();
1179 [ + - + + ]: 65047 : if (!counted.insert(candidate).second) continue;
1180 [ + + ]: 65046 : const CTxMemPoolEntry::Parents& parents = candidate->GetMemPoolParentsConst();
1181 [ + + ]: 65046 : if (parents.size() == 0) {
1182 [ + + ]: 47759 : maximum = std::max(maximum, candidate->GetCountWithDescendants());
1183 : : } else {
1184 [ + - + + ]: 34666 : for (const CTxMemPoolEntry& i : parents) {
1185 [ + - ]: 17349 : candidates.push_back(mapTx.iterator_to(i));
1186 : : }
1187 : : }
1188 : : }
1189 : 47698 : return maximum;
1190 : 47698 : }
1191 : :
1192 : 576394 : void CTxMemPool::GetTransactionAncestry(const uint256& txid, size_t& ancestors, size_t& descendants, size_t* const ancestorsize, CAmount* const ancestorfees) const {
1193 : 576394 : LOCK(cs);
1194 [ + - ]: 576394 : auto it = mapTx.find(txid);
1195 : 576394 : ancestors = descendants = 0;
1196 [ + + ]: 576394 : if (it != mapTx.end()) {
1197 [ + + ]: 47698 : ancestors = it->GetCountWithAncestors();
1198 [ + + ]: 47698 : if (ancestorsize) *ancestorsize = it->GetSizeWithAncestors();
1199 [ + + ]: 47698 : if (ancestorfees) *ancestorfees = it->GetModFeesWithAncestors();
1200 [ + - ]: 47698 : descendants = CalculateDescendantMaximum(it);
1201 : : }
1202 : 576394 : }
1203 : :
1204 : 3593 : bool CTxMemPool::GetLoadTried() const
1205 : : {
1206 : 3593 : LOCK(cs);
1207 [ + - ]: 3593 : return m_load_tried;
1208 : 3593 : }
1209 : :
1210 : 886 : void CTxMemPool::SetLoadTried(bool load_tried)
1211 : : {
1212 : 886 : LOCK(cs);
1213 [ + - ]: 886 : m_load_tried = load_tried;
1214 : 886 : }
1215 : :
1216 : 2941 : std::vector<CTxMemPool::txiter> CTxMemPool::GatherClusters(const std::vector<uint256>& txids) const
1217 : : {
1218 : 2941 : AssertLockHeld(cs);
1219 : 2941 : std::vector<txiter> clustered_txs{GetIterVec(txids)};
1220 : : // Use epoch: visiting an entry means we have added it to the clustered_txs vector. It does not
1221 : : // necessarily mean the entry has been processed.
1222 : 2941 : WITH_FRESH_EPOCH(m_epoch);
1223 [ + + ]: 52458 : for (const auto& it : clustered_txs) {
1224 : 49517 : visited(it);
1225 : : }
1226 : : // i = index of where the list of entries to process starts
1227 [ + + ]: 72202 : for (size_t i{0}; i < clustered_txs.size(); ++i) {
1228 : : // DoS protection: if there are 500 or more entries to process, just quit.
1229 [ + + ]: 69262 : if (clustered_txs.size() > 500) return {};
1230 [ + - ]: 69261 : const txiter& tx_iter = clustered_txs.at(i);
1231 [ + - + - : 346305 : for (const auto& entries : {tx_iter->GetMemPoolParentsConst(), tx_iter->GetMemPoolChildrenConst()}) {
+ + - - ]
1232 [ + + ]: 178337 : for (const CTxMemPoolEntry& entry : entries) {
1233 : 39815 : const auto entry_it = mapTx.iterator_to(entry);
1234 [ + + ]: 39815 : if (!visited(entry_it)) {
1235 [ - + ]: 19745 : clustered_txs.push_back(entry_it);
1236 : : }
1237 : : }
1238 [ + + - - ]: 207783 : }
1239 : : }
1240 : 2940 : return clustered_txs;
1241 : 2941 : }
1242 : :
1243 : 45 : std::optional<std::string> CTxMemPool::CheckConflictTopology(const setEntries& direct_conflicts)
1244 : : {
1245 [ + + ]: 132 : for (const auto& direct_conflict : direct_conflicts) {
1246 : : // Ancestor and descendant counts are inclusive of the tx itself.
1247 [ + - ]: 107 : const auto ancestor_count{direct_conflict->GetCountWithAncestors()};
1248 [ + - ]: 107 : const auto descendant_count{direct_conflict->GetCountWithDescendants()};
1249 : 107 : const bool has_ancestor{ancestor_count > 1};
1250 : 107 : const bool has_descendant{descendant_count > 1};
1251 [ + - + - : 214 : const auto& txid_string{direct_conflict->GetSharedTx()->GetHash().ToString()};
+ - ]
1252 : : // The only allowed configurations are:
1253 : : // 1 ancestor and 0 descendant
1254 : : // 0 ancestor and 1 descendant
1255 : : // 0 ancestor and 0 descendant
1256 [ + + ]: 107 : if (ancestor_count > 2) {
1257 [ + - ]: 8 : return strprintf("%s has %u ancestors, max 1 allowed", txid_string, ancestor_count - 1);
1258 [ + + ]: 103 : } else if (descendant_count > 2) {
1259 [ + - ]: 14 : return strprintf("%s has %u descendants, max 1 allowed", txid_string, descendant_count - 1);
1260 [ + + ]: 96 : } else if (has_ancestor && has_descendant) {
1261 [ + - ]: 2 : return strprintf("%s has both ancestor and descendant, exceeding cluster limit of 2", txid_string);
1262 : : }
1263 : : // Additionally enforce that:
1264 : : // If we have a child, we are its only parent.
1265 : : // If we have a parent, we are its only child.
1266 [ + + ]: 95 : if (has_descendant) {
1267 [ + + ]: 75 : const auto& our_child = direct_conflict->GetMemPoolChildrenConst().begin();
1268 [ + + ]: 75 : if (our_child->get().GetCountWithAncestors() > 2) {
1269 [ + - ]: 8 : return strprintf("%s is not the only parent of child %s",
1270 [ + - + - : 20 : txid_string, our_child->get().GetSharedTx()->GetHash().ToString());
+ - + - ]
1271 : : }
1272 [ + + ]: 20 : } else if (has_ancestor) {
1273 [ + + ]: 6 : const auto& our_parent = direct_conflict->GetMemPoolParentsConst().begin();
1274 [ + + ]: 6 : if (our_parent->get().GetCountWithDescendants() > 2) {
1275 [ + - ]: 8 : return strprintf("%s is not the only child of parent %s",
1276 [ + - + - : 20 : txid_string, our_parent->get().GetSharedTx()->GetHash().ToString());
+ - + - ]
1277 : : }
1278 : : }
1279 : 107 : }
1280 : 25 : return std::nullopt;
1281 : : }
1282 : :
1283 : 32 : util::Result<std::pair<std::vector<FeeFrac>, std::vector<FeeFrac>>> CTxMemPool::CalculateChunksForRBF(CAmount replacement_fees, int64_t replacement_vsize, const setEntries& direct_conflicts, const setEntries& all_conflicts)
1284 : : {
1285 : 32 : Assume(replacement_vsize > 0);
1286 : :
1287 : 32 : auto err_string{CheckConflictTopology(direct_conflicts)};
1288 [ + + ]: 32 : if (err_string.has_value()) {
1289 : : // Unsupported topology for calculating a feerate diagram
1290 [ + - + - ]: 36 : return util::Error{Untranslated(err_string.value())};
1291 : : }
1292 : :
1293 : : // new diagram will have chunks that consist of each ancestor of
1294 : : // direct_conflicts that is at its own fee/size, along with the replacement
1295 : : // tx/package at its own fee/size
1296 : :
1297 : : // old diagram will consist of the ancestors and descendants of each element of
1298 : : // all_conflicts. every such transaction will either be at its own feerate (followed
1299 : : // by any descendant at its own feerate), or as a single chunk at the descendant's
1300 : : // ancestor feerate.
1301 : :
1302 : 20 : std::vector<FeeFrac> old_chunks;
1303 : : // Step 1: build the old diagram.
1304 : :
1305 : : // The above clusters are all trivially linearized;
1306 : : // they have a strict topology of 1 or two connected transactions.
1307 : :
1308 : : // OLD: Compute existing chunks from all affected clusters
1309 [ + + ]: 157 : for (auto txiter : all_conflicts) {
1310 : : // Does this transaction have descendants?
1311 [ + + ]: 137 : if (txiter->GetCountWithDescendants() > 1) {
1312 : : // Consider this tx when we consider the descendant.
1313 : 64 : continue;
1314 : : }
1315 : : // Does this transaction have ancestors?
1316 [ + - + + ]: 73 : FeeFrac individual{txiter->GetModifiedFee(), txiter->GetTxSize()};
1317 [ + + ]: 73 : if (txiter->GetCountWithAncestors() > 1) {
1318 : : // We'll add chunks for either the ancestor by itself and this tx
1319 : : // by itself, or for a combined package.
1320 [ + + ]: 65 : FeeFrac package{txiter->GetModFeesWithAncestors(), static_cast<int32_t>(txiter->GetSizeWithAncestors())};
1321 [ + + ]: 65 : if (individual >> package) {
1322 : : // The individual feerate is higher than the package, and
1323 : : // therefore higher than the parent's fee. Chunk these
1324 : : // together.
1325 [ + - ]: 7 : old_chunks.emplace_back(package);
1326 : : } else {
1327 : : // Add two points, one for the parent and one for this child.
1328 [ + - ]: 58 : old_chunks.emplace_back(package - individual);
1329 [ + - ]: 58 : old_chunks.emplace_back(individual);
1330 : : }
1331 : : } else {
1332 [ + - ]: 8 : old_chunks.emplace_back(individual);
1333 : : }
1334 : : }
1335 : :
1336 : : // No topology restrictions post-chunking; sort
1337 : 20 : std::sort(old_chunks.begin(), old_chunks.end(), std::greater());
1338 : :
1339 : 20 : std::vector<FeeFrac> new_chunks;
1340 : :
1341 : : /* Step 2: build the NEW diagram
1342 : : * CON = Conflicts of proposed chunk
1343 : : * CNK = Proposed chunk
1344 : : * NEW = OLD - CON + CNK: New diagram includes all chunks in OLD, minus
1345 : : * the conflicts, plus the proposed chunk
1346 : : */
1347 : :
1348 : : // OLD - CON: Add any parents of direct conflicts that are not conflicted themselves
1349 [ + + ]: 93 : for (auto direct_conflict : direct_conflicts) {
1350 : : // If a direct conflict has an ancestor that is not in all_conflicts,
1351 : : // it can be affected by the replacement of the child.
1352 [ + + ]: 73 : if (direct_conflict->GetMemPoolParentsConst().size() > 0) {
1353 : : // Grab the parent.
1354 : 1 : const CTxMemPoolEntry& parent = direct_conflict->GetMemPoolParentsConst().begin()->get();
1355 [ + - ]: 1 : if (!all_conflicts.count(mapTx.iterator_to(parent))) {
1356 : : // This transaction would be left over, so add to the NEW
1357 : : // diagram.
1358 [ + - + - ]: 1 : new_chunks.emplace_back(parent.GetModifiedFee(), parent.GetTxSize());
1359 : : }
1360 : : }
1361 : : }
1362 : : // + CNK: Add the proposed chunk itself
1363 [ + - ]: 20 : new_chunks.emplace_back(replacement_fees, int32_t(replacement_vsize));
1364 : :
1365 : : // No topology restrictions post-chunking; sort
1366 : 20 : std::sort(new_chunks.begin(), new_chunks.end(), std::greater());
1367 [ + - ]: 40 : return std::make_pair(old_chunks, new_chunks);
1368 : 52 : }
|