Branch data Line data Source code
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 : :
5 : : #include <node/mempool_persist.h>
6 : :
7 : : #include <clientversion.h>
8 : : #include <consensus/amount.h>
9 : : #include <logging.h>
10 : : #include <primitives/transaction.h>
11 : : #include <random.h>
12 : : #include <serialize.h>
13 : : #include <streams.h>
14 : : #include <sync.h>
15 : : #include <txmempool.h>
16 : : #include <uint256.h>
17 : : #include <util/fs.h>
18 : : #include <util/fs_helpers.h>
19 : : #include <util/signalinterrupt.h>
20 : : #include <util/time.h>
21 : : #include <validation.h>
22 : :
23 : : #include <cstdint>
24 : : #include <cstdio>
25 : : #include <exception>
26 : : #include <functional>
27 : : #include <map>
28 : : #include <memory>
29 : : #include <set>
30 : : #include <stdexcept>
31 : : #include <utility>
32 : : #include <vector>
33 : :
34 : : using fsbridge::FopenFn;
35 : :
36 : : namespace node {
37 : :
38 : : static const uint64_t MEMPOOL_DUMP_VERSION_NO_XOR_KEY{1};
39 : : static const uint64_t MEMPOOL_DUMP_VERSION{2};
40 : :
41 : 889 : bool LoadMempool(CTxMemPool& pool, const fs::path& load_path, Chainstate& active_chainstate, ImportMempoolOptions&& opts)
42 : : {
43 [ + + ]: 889 : if (load_path.empty()) return false;
44 : :
45 [ + - ]: 850 : AutoFile file{opts.mockable_fopen_function(load_path, "rb")};
46 [ + + ]: 850 : if (file.IsNull()) {
47 [ + - ]: 456 : LogInfo("Failed to open mempool file. Continuing anyway.\n");
48 : : return false;
49 : : }
50 : :
51 : 394 : int64_t count = 0;
52 : 394 : int64_t expired = 0;
53 : 394 : int64_t failed = 0;
54 : 394 : int64_t already_there = 0;
55 : 394 : int64_t unbroadcast = 0;
56 : 394 : const auto now{NodeClock::now()};
57 : :
58 : 394 : try {
59 : 394 : uint64_t version;
60 [ + - ]: 394 : file >> version;
61 : 394 : std::vector<std::byte> xor_key;
62 [ + + ]: 394 : if (version == MEMPOOL_DUMP_VERSION_NO_XOR_KEY) {
63 : : // Leave XOR-key empty
64 [ + - ]: 393 : } else if (version == MEMPOOL_DUMP_VERSION) {
65 [ + - ]: 393 : file >> xor_key;
66 : : } else {
67 : : return false;
68 : : }
69 [ + - ]: 788 : file.SetXor(xor_key);
70 : 394 : uint64_t total_txns_to_load;
71 [ + - ]: 394 : file >> total_txns_to_load;
72 : 394 : uint64_t txns_tried = 0;
73 [ + - ]: 394 : LogInfo("Loading %u mempool transactions from file...\n", total_txns_to_load);
74 : : int next_tenth_to_report = 0;
75 [ + + ]: 770 : while (txns_tried < total_txns_to_load) {
76 : 376 : const int percentage_done(100.0 * txns_tried / total_txns_to_load);
77 [ + + ]: 376 : if (next_tenth_to_report < percentage_done / 10) {
78 [ + - ]: 118 : LogInfo("Progress loading mempool transactions from file: %d%% (tried %u, %u remaining)\n",
79 : : percentage_done, txns_tried, total_txns_to_load - txns_tried);
80 : 118 : next_tenth_to_report = percentage_done / 10;
81 : : }
82 : 376 : ++txns_tried;
83 : :
84 : 376 : CTransactionRef tx;
85 : 376 : int64_t nTime;
86 : 376 : int64_t nFeeDelta;
87 [ + - ]: 376 : file >> TX_WITH_WITNESS(tx);
88 [ + - ]: 376 : file >> nTime;
89 [ + - ]: 376 : file >> nFeeDelta;
90 : :
91 [ + + ]: 376 : if (opts.use_current_time) {
92 : 23 : nTime = TicksSinceEpoch<std::chrono::seconds>(now);
93 : : }
94 : :
95 : 376 : CAmount amountdelta = nFeeDelta;
96 [ + + + + ]: 376 : if (amountdelta && opts.apply_fee_delta_priority) {
97 [ + - ]: 16 : pool.PrioritiseTransaction(tx->GetHash(), amountdelta);
98 : : }
99 [ + + ]: 376 : if (nTime > TicksSinceEpoch<std::chrono::seconds>(now - pool.m_opts.expiry)) {
100 [ + - ]: 375 : LOCK(cs_main);
101 [ + - ]: 375 : const auto& accepted = AcceptToMemoryPool(active_chainstate, tx, nTime, /*bypass_limits=*/false, /*test_accept=*/false);
102 [ + + ]: 375 : if (accepted.m_result_type == MempoolAcceptResult::ResultType::VALID) {
103 : 339 : ++count;
104 : : } else {
105 : : // mempool may contain the transaction already, e.g. from
106 : : // wallet(s) having loaded it while we were processing
107 : : // mempool transactions; consider these as valid, instead of
108 : : // failed, but mark them as 'already there'
109 [ + - + + ]: 36 : if (pool.exists(GenTxid::Txid(tx->GetHash()))) {
110 : 15 : ++already_there;
111 : : } else {
112 : 21 : ++failed;
113 : : }
114 : : }
115 [ + - ]: 750 : } else {
116 : 1 : ++expired;
117 : : }
118 [ + - - + ]: 376 : if (active_chainstate.m_chainman.m_interrupt)
119 [ # # ]: 0 : return false;
120 : 376 : }
121 [ + - ]: 394 : std::map<uint256, CAmount> mapDeltas;
122 [ + - ]: 394 : file >> mapDeltas;
123 : :
124 [ + + ]: 394 : if (opts.apply_fee_delta_priority) {
125 [ + + ]: 399 : for (const auto& i : mapDeltas) {
126 [ + - ]: 6 : pool.PrioritiseTransaction(i.first, i.second);
127 : : }
128 : : }
129 : :
130 [ + + ]: 394 : std::set<uint256> unbroadcast_txids;
131 [ + + ]: 394 : file >> unbroadcast_txids;
132 [ + + ]: 393 : if (opts.apply_unbroadcast_set) {
133 : 391 : unbroadcast = unbroadcast_txids.size();
134 [ + + ]: 659 : for (const auto& txid : unbroadcast_txids) {
135 : : // Ensure transactions were accepted to mempool then add to
136 : : // unbroadcast set.
137 [ + - + + : 524 : if (pool.get(txid) != nullptr) pool.AddUnbroadcastTx(txid);
+ + + - ]
138 : : }
139 : : }
140 [ - + ]: 396 : } catch (const std::exception& e) {
141 [ + - ]: 1 : LogInfo("Failed to deserialize mempool data on file: %s. Continuing anyway.\n", e.what());
142 : 1 : return false;
143 : 1 : }
144 : :
145 [ + - ]: 393 : LogInfo("Imported mempool transactions from file: %i succeeded, %i failed, %i expired, %i already there, %i waiting for initial broadcast\n", count, failed, expired, already_there, unbroadcast);
146 : : return true;
147 : 850 : }
148 : :
149 : 846 : bool DumpMempool(const CTxMemPool& pool, const fs::path& dump_path, FopenFn mockable_fopen_function, bool skip_file_commit)
150 : : {
151 : 846 : auto start = SteadyClock::now();
152 : :
153 [ + + ]: 846 : std::map<uint256, CAmount> mapDeltas;
154 : 846 : std::vector<TxMempoolInfo> vinfo;
155 [ + + ]: 846 : std::set<uint256> unbroadcast_txids;
156 : :
157 [ + + + - ]: 846 : static Mutex dump_mutex;
158 [ + - ]: 846 : LOCK(dump_mutex);
159 : :
160 : 846 : {
161 [ + - ]: 846 : LOCK(pool.cs);
162 [ + + ]: 1102 : for (const auto &i : pool.mapDeltas) {
163 [ + - ]: 256 : mapDeltas[i.first] = i.second;
164 : : }
165 [ + - ]: 1692 : vinfo = pool.infoAll();
166 [ + - + - ]: 1692 : unbroadcast_txids = pool.GetUnbroadcastTxs();
167 : 0 : }
168 : :
169 : 846 : auto mid = SteadyClock::now();
170 : :
171 [ + - + - : 3384 : AutoFile file{mockable_fopen_function(dump_path + ".new", "wb")};
+ - + - ]
172 [ + + ]: 846 : if (file.IsNull()) {
173 : : return false;
174 : : }
175 : :
176 : 845 : try {
177 [ + + ]: 845 : const uint64_t version{pool.m_opts.persist_v1_dat ? MEMPOOL_DUMP_VERSION_NO_XOR_KEY : MEMPOOL_DUMP_VERSION};
178 [ + - ]: 845 : file << version;
179 : :
180 [ + - ]: 845 : std::vector<std::byte> xor_key(8);
181 [ + + ]: 845 : if (!pool.m_opts.persist_v1_dat) {
182 : 844 : FastRandomContext{}.fillrand(xor_key);
183 [ + - ]: 844 : file << xor_key;
184 : : }
185 [ + - ]: 1690 : file.SetXor(xor_key);
186 : :
187 [ + - ]: 845 : uint64_t mempool_transactions_to_write(vinfo.size());
188 [ + - ]: 845 : file << mempool_transactions_to_write;
189 [ + - ]: 845 : LogInfo("Writing %u mempool transactions to file...\n", mempool_transactions_to_write);
190 [ + + ]: 2434 : for (const auto& i : vinfo) {
191 [ + - ]: 1589 : file << TX_WITH_WITNESS(*(i.tx));
192 [ + - ]: 1589 : file << int64_t{count_seconds(i.m_time)};
193 [ + - ]: 1589 : file << int64_t{i.nFeeDelta};
194 : 1589 : mapDeltas.erase(i.tx->GetHash());
195 : : }
196 : :
197 [ + - ]: 845 : file << mapDeltas;
198 : :
199 [ + - ]: 845 : LogInfo("Writing %d unbroadcast transactions to file.\n", unbroadcast_txids.size());
200 [ + - ]: 845 : file << unbroadcast_txids;
201 : :
202 [ + - + - : 845 : if (!skip_file_commit && !file.Commit())
- + ]
203 [ # # ]: 0 : throw std::runtime_error("Commit failed");
204 [ + - ]: 845 : file.fclose();
205 [ + - + - : 4225 : if (!RenameOver(dump_path + ".new", dump_path)) {
+ - + - -
+ ]
206 [ # # ]: 0 : throw std::runtime_error("Rename failed");
207 : : }
208 : 845 : auto last = SteadyClock::now();
209 : :
210 [ + - + - ]: 845 : LogInfo("Dumped mempool: %.3fs to copy, %.3fs to dump, %d bytes dumped to file\n",
211 : : Ticks<SecondsDouble>(mid - start),
212 : : Ticks<SecondsDouble>(last - mid),
213 : : fs::file_size(dump_path));
214 [ - - ]: 0 : } catch (const std::exception& e) {
215 [ - - ]: 0 : LogInfo("Failed to dump mempool: %s. Continuing anyway.\n", e.what());
216 : 0 : return false;
217 : 0 : }
218 : 845 : return true;
219 [ + - ]: 1692 : }
220 : :
221 : : } // namespace node
|