Bitcoin Core 28.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
base.cpp
Go to the documentation of this file.
1// Copyright (c) 2017-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 <chainparams.h>
6#include <common/args.h>
7#include <index/base.h>
8#include <interfaces/chain.h>
9#include <kernel/chain.h>
10#include <logging.h>
11#include <node/abort.h>
12#include <node/blockstorage.h>
13#include <node/context.h>
14#include <node/database_args.h>
15#include <node/interface_ui.h>
16#include <tinyformat.h>
17#include <util/thread.h>
18#include <util/translation.h>
19#include <validation.h> // For g_chainman
20
21#include <string>
22#include <utility>
23
24constexpr uint8_t DB_BEST_BLOCK{'B'};
25
26constexpr auto SYNC_LOG_INTERVAL{30s};
27constexpr auto SYNC_LOCATOR_WRITE_INTERVAL{30s};
28
29template <typename... Args>
30void BaseIndex::FatalErrorf(const char* fmt, const Args&... args)
31{
32 auto message = tfm::format(fmt, args...);
33 node::AbortNode(m_chain->context()->shutdown, m_chain->context()->exit_status, Untranslated(message), m_chain->context()->warnings.get());
34}
35
37{
38 CBlockLocator locator;
39 bool found = chain.findBlock(block_hash, interfaces::FoundBlock().locator(locator));
40 assert(found);
41 assert(!locator.IsNull());
42 return locator;
43}
44
45BaseIndex::DB::DB(const fs::path& path, size_t n_cache_size, bool f_memory, bool f_wipe, bool f_obfuscate) :
47 .path = path,
48 .cache_bytes = n_cache_size,
49 .memory_only = f_memory,
50 .wipe_data = f_wipe,
51 .obfuscate = f_obfuscate,
52 .options = [] { DBOptions options; node::ReadDatabaseArgs(gArgs, options); return options; }()}}
53{}
54
56{
57 bool success = Read(DB_BEST_BLOCK, locator);
58 if (!success) {
59 locator.SetNull();
60 }
61 return success;
62}
63
65{
66 batch.Write(DB_BEST_BLOCK, locator);
67}
68
69BaseIndex::BaseIndex(std::unique_ptr<interfaces::Chain> chain, std::string name)
70 : m_chain{std::move(chain)}, m_name{std::move(name)} {}
71
73{
74 Interrupt();
75 Stop();
76}
77
79{
81
82 // May need reset if index is being restarted.
84
85 // m_chainstate member gives indexing code access to node internals. It is
86 // removed in followup https://github.com/bitcoin/bitcoin/pull/24230
88 return &m_chain->context()->chainman->GetChainstateForIndexing());
89 // Register to validation interface before setting the 'm_synced' flag, so that
90 // callbacks are not missed once m_synced is true.
91 m_chain->context()->validation_signals->RegisterValidationInterface(this);
92
93 CBlockLocator locator;
94 if (!GetDB().ReadBestBlock(locator)) {
95 locator.SetNull();
96 }
97
99 CChain& index_chain = m_chainstate->m_chain;
100
101 if (locator.IsNull()) {
102 SetBestBlockIndex(nullptr);
103 } else {
104 // Setting the best block to the locator's top block. If it is not part of the
105 // best chain, we will rewind to the fork point during index sync
106 const CBlockIndex* locator_index{m_chainstate->m_blockman.LookupBlockIndex(locator.vHave.at(0))};
107 if (!locator_index) {
108 return InitError(strprintf(Untranslated("%s: best block of the index not found. Please rebuild the index."), GetName()));
109 }
110 SetBestBlockIndex(locator_index);
111 }
112
113 // Child init
114 const CBlockIndex* start_block = m_best_block_index.load();
115 if (!CustomInit(start_block ? std::make_optional(interfaces::BlockKey{start_block->GetBlockHash(), start_block->nHeight}) : std::nullopt)) {
116 return false;
117 }
118
119 // Note: this will latch to true immediately if the user starts up with an empty
120 // datadir and an index enabled. If this is the case, indexation will happen solely
121 // via `BlockConnected` signals until, possibly, the next restart.
122 m_synced = start_block == index_chain.Tip();
123 m_init = true;
124 return true;
125}
126
128{
130
131 if (!pindex_prev) {
132 return chain.Genesis();
133 }
134
135 const CBlockIndex* pindex = chain.Next(pindex_prev);
136 if (pindex) {
137 return pindex;
138 }
139
140 return chain.Next(chain.FindFork(pindex_prev));
141}
142
144{
145 const CBlockIndex* pindex = m_best_block_index.load();
146 if (!m_synced) {
147 std::chrono::steady_clock::time_point last_log_time{0s};
148 std::chrono::steady_clock::time_point last_locator_write_time{0s};
149 while (true) {
150 if (m_interrupt) {
151 LogPrintf("%s: m_interrupt set; exiting ThreadSync\n", GetName());
152
153 SetBestBlockIndex(pindex);
154 // No need to handle errors in Commit. If it fails, the error will be already be
155 // logged. The best way to recover is to continue, as index cannot be corrupted by
156 // a missed commit to disk for an advanced index state.
157 Commit();
158 return;
159 }
160
161 const CBlockIndex* pindex_next = WITH_LOCK(cs_main, return NextSyncBlock(pindex, m_chainstate->m_chain));
162 // If pindex_next is null, it means pindex is the chain tip, so
163 // commit data indexed so far.
164 if (!pindex_next) {
165 SetBestBlockIndex(pindex);
166 // No need to handle errors in Commit. See rationale above.
167 Commit();
168
169 // If pindex is still the chain tip after committing, exit the
170 // sync loop. It is important for cs_main to be locked while
171 // setting m_synced = true, otherwise a new block could be
172 // attached while m_synced is still false, and it would not be
173 // indexed.
175 pindex_next = NextSyncBlock(pindex, m_chainstate->m_chain);
176 if (!pindex_next) {
177 m_synced = true;
178 break;
179 }
180 }
181 if (pindex_next->pprev != pindex && !Rewind(pindex, pindex_next->pprev)) {
182 FatalErrorf("%s: Failed to rewind index %s to a previous chain tip", __func__, GetName());
183 return;
184 }
185 pindex = pindex_next;
186
187
188 CBlock block;
189 interfaces::BlockInfo block_info = kernel::MakeBlockInfo(pindex);
190 if (!m_chainstate->m_blockman.ReadBlockFromDisk(block, *pindex)) {
191 FatalErrorf("%s: Failed to read block %s from disk",
192 __func__, pindex->GetBlockHash().ToString());
193 return;
194 } else {
195 block_info.data = &block;
196 }
197 if (!CustomAppend(block_info)) {
198 FatalErrorf("%s: Failed to write block %s to index database",
199 __func__, pindex->GetBlockHash().ToString());
200 return;
201 }
202
203 auto current_time{std::chrono::steady_clock::now()};
204 if (last_log_time + SYNC_LOG_INTERVAL < current_time) {
205 LogPrintf("Syncing %s with block chain from height %d\n",
206 GetName(), pindex->nHeight);
207 last_log_time = current_time;
208 }
209
210 if (last_locator_write_time + SYNC_LOCATOR_WRITE_INTERVAL < current_time) {
211 SetBestBlockIndex(pindex);
212 last_locator_write_time = current_time;
213 // No need to handle errors in Commit. See rationale above.
214 Commit();
215 }
216 }
217 }
218
219 if (pindex) {
220 LogPrintf("%s is enabled at height %d\n", GetName(), pindex->nHeight);
221 } else {
222 LogPrintf("%s is enabled\n", GetName());
223 }
224}
225
227{
228 // Don't commit anything if we haven't indexed any block yet
229 // (this could happen if init is interrupted).
230 bool ok = m_best_block_index != nullptr;
231 if (ok) {
232 CDBBatch batch(GetDB());
233 ok = CustomCommit(batch);
234 if (ok) {
235 GetDB().WriteBestBlock(batch, GetLocator(*m_chain, m_best_block_index.load()->GetBlockHash()));
236 ok = GetDB().WriteBatch(batch);
237 }
238 }
239 if (!ok) {
240 LogError("%s: Failed to commit latest %s state\n", __func__, GetName());
241 return false;
242 }
243 return true;
244}
245
246bool BaseIndex::Rewind(const CBlockIndex* current_tip, const CBlockIndex* new_tip)
247{
248 assert(current_tip == m_best_block_index);
249 assert(current_tip->GetAncestor(new_tip->nHeight) == new_tip);
250
251 if (!CustomRewind({current_tip->GetBlockHash(), current_tip->nHeight}, {new_tip->GetBlockHash(), new_tip->nHeight})) {
252 return false;
253 }
254
255 // In the case of a reorg, ensure persisted block locator is not stale.
256 // Pruning has a minimum of 288 blocks-to-keep and getting the index
257 // out of sync may be possible but a users fault.
258 // In case we reorg beyond the pruned depth, ReadBlockFromDisk would
259 // throw and lead to a graceful shutdown
260 SetBestBlockIndex(new_tip);
261 if (!Commit()) {
262 // If commit fails, revert the best block index to avoid corruption.
263 SetBestBlockIndex(current_tip);
264 return false;
265 }
266
267 return true;
268}
269
270void BaseIndex::BlockConnected(ChainstateRole role, const std::shared_ptr<const CBlock>& block, const CBlockIndex* pindex)
271{
272 // Ignore events from the assumed-valid chain; we will process its blocks
273 // (sequentially) after it is fully verified by the background chainstate. This
274 // is to avoid any out-of-order indexing.
275 //
276 // TODO at some point we could parameterize whether a particular index can be
277 // built out of order, but for now just do the conservative simple thing.
278 if (role == ChainstateRole::ASSUMEDVALID) {
279 return;
280 }
281
282 // Ignore BlockConnected signals until we have fully indexed the chain.
283 if (!m_synced) {
284 return;
285 }
286
287 const CBlockIndex* best_block_index = m_best_block_index.load();
288 if (!best_block_index) {
289 if (pindex->nHeight != 0) {
290 FatalErrorf("%s: First block connected is not the genesis block (height=%d)",
291 __func__, pindex->nHeight);
292 return;
293 }
294 } else {
295 // Ensure block connects to an ancestor of the current best block. This should be the case
296 // most of the time, but may not be immediately after the sync thread catches up and sets
297 // m_synced. Consider the case where there is a reorg and the blocks on the stale branch are
298 // in the ValidationInterface queue backlog even after the sync thread has caught up to the
299 // new chain tip. In this unlikely event, log a warning and let the queue clear.
300 if (best_block_index->GetAncestor(pindex->nHeight - 1) != pindex->pprev) {
301 LogPrintf("%s: WARNING: Block %s does not connect to an ancestor of "
302 "known best chain (tip=%s); not updating index\n",
303 __func__, pindex->GetBlockHash().ToString(),
304 best_block_index->GetBlockHash().ToString());
305 return;
306 }
307 if (best_block_index != pindex->pprev && !Rewind(best_block_index, pindex->pprev)) {
308 FatalErrorf("%s: Failed to rewind index %s to a previous chain tip",
309 __func__, GetName());
310 return;
311 }
312 }
313 interfaces::BlockInfo block_info = kernel::MakeBlockInfo(pindex, block.get());
314 if (CustomAppend(block_info)) {
315 // Setting the best block index is intentionally the last step of this
316 // function, so BlockUntilSyncedToCurrentChain callers waiting for the
317 // best block index to be updated can rely on the block being fully
318 // processed, and the index object being safe to delete.
319 SetBestBlockIndex(pindex);
320 } else {
321 FatalErrorf("%s: Failed to write block %s to index",
322 __func__, pindex->GetBlockHash().ToString());
323 return;
324 }
325}
326
328{
329 // Ignore events from the assumed-valid chain; we will process its blocks
330 // (sequentially) after it is fully verified by the background chainstate.
331 if (role == ChainstateRole::ASSUMEDVALID) {
332 return;
333 }
334
335 if (!m_synced) {
336 return;
337 }
338
339 const uint256& locator_tip_hash = locator.vHave.front();
340 const CBlockIndex* locator_tip_index;
341 {
342 LOCK(cs_main);
343 locator_tip_index = m_chainstate->m_blockman.LookupBlockIndex(locator_tip_hash);
344 }
345
346 if (!locator_tip_index) {
347 FatalErrorf("%s: First block (hash=%s) in locator was not found",
348 __func__, locator_tip_hash.ToString());
349 return;
350 }
351
352 // This checks that ChainStateFlushed callbacks are received after BlockConnected. The check may fail
353 // immediately after the sync thread catches up and sets m_synced. Consider the case where
354 // there is a reorg and the blocks on the stale branch are in the ValidationInterface queue
355 // backlog even after the sync thread has caught up to the new chain tip. In this unlikely
356 // event, log a warning and let the queue clear.
357 const CBlockIndex* best_block_index = m_best_block_index.load();
358 if (best_block_index->GetAncestor(locator_tip_index->nHeight) != locator_tip_index) {
359 LogPrintf("%s: WARNING: Locator contains block (hash=%s) not on known best "
360 "chain (tip=%s); not writing index locator\n",
361 __func__, locator_tip_hash.ToString(),
362 best_block_index->GetBlockHash().ToString());
363 return;
364 }
365
366 // No need to handle errors in Commit. If it fails, the error will be already be logged. The
367 // best way to recover is to continue, as index cannot be corrupted by a missed commit to disk
368 // for an advanced index state.
369 Commit();
370}
371
372bool BaseIndex::BlockUntilSyncedToCurrentChain() const
373{
375
376 if (!m_synced) {
377 return false;
378 }
379
380 {
381 // Skip the queue-draining stuff if we know we're caught up with
382 // m_chain.Tip().
383 LOCK(cs_main);
384 const CBlockIndex* chain_tip = m_chainstate->m_chain.Tip();
385 const CBlockIndex* best_block_index = m_best_block_index.load();
386 if (best_block_index->GetAncestor(chain_tip->nHeight) == chain_tip) {
387 return true;
388 }
389 }
390
391 LogPrintf("%s: %s is catching up on block notifications\n", __func__, GetName());
392 m_chain->context()->validation_signals->SyncWithValidationInterfaceQueue();
393 return true;
394}
395
397{
398 m_interrupt();
399}
400
402{
403 if (!m_init) throw std::logic_error("Error: Cannot start a non-initialized index");
404
405 m_thread_sync = std::thread(&util::TraceThread, GetName(), [this] { Sync(); });
406 return true;
407}
408
410{
411 if (m_chain->context()->validation_signals) {
412 m_chain->context()->validation_signals->UnregisterValidationInterface(this);
413 }
414
415 if (m_thread_sync.joinable()) {
416 m_thread_sync.join();
417 }
418}
419
421{
422 IndexSummary summary{};
423 summary.name = GetName();
424 summary.synced = m_synced;
425 if (const auto& pindex = m_best_block_index.load()) {
426 summary.best_block_height = pindex->nHeight;
427 summary.best_block_hash = pindex->GetBlockHash();
428 } else {
429 summary.best_block_height = 0;
430 summary.best_block_hash = m_chain->getBlockHash(0);
431 }
432 return summary;
433}
434
436{
438
439 if (AllowPrune() && block) {
440 node::PruneLockInfo prune_lock;
441 prune_lock.height_first = block->nHeight;
442 WITH_LOCK(::cs_main, m_chainstate->m_blockman.UpdatePruneLock(GetName(), prune_lock));
443 }
444
445 // Intentionally set m_best_block_index as the last step in this function,
446 // after updating prune locks above, and after making any other references
447 // to *this, so the BlockUntilSyncedToCurrentChain function (which checks
448 // m_best_block_index as an optimization) can be used to wait for the last
449 // BlockConnected notification and safely assume that prune locks are
450 // updated and that the index object is safe to delete.
451 m_best_block_index = block;
452}
ArgsManager gArgs
Definition args.cpp:41
static const CBlockIndex * NextSyncBlock(const CBlockIndex *pindex_prev, CChain &chain) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Definition base.cpp:127
constexpr uint8_t DB_BEST_BLOCK
Definition base.cpp:24
constexpr auto SYNC_LOCATOR_WRITE_INTERVAL
Definition base.cpp:27
constexpr auto SYNC_LOG_INTERVAL
Definition base.cpp:26
CBlockLocator GetLocator(interfaces::Chain &chain, const uint256 &block_hash)
Definition base.cpp:36
ArgsManager & args
Definition bitcoind.cpp:270
CBlockLocator GetLocator(const CBlockIndex *index)
Get a locator for a block index entry.
Definition chain.cpp:50
void WriteBestBlock(CDBBatch &batch, const CBlockLocator &locator)
Write block locator of the chain that the index is in sync with.
Definition base.cpp:64
DB(const fs::path &path, size_t n_cache_size, bool f_memory=false, bool f_wipe=false, bool f_obfuscate=false)
Definition base.cpp:45
bool ReadBestBlock(CBlockLocator &locator) const
Read block locator of the chain that the index is in sync with.
Definition base.cpp:55
void Stop()
Stops the instance from staying in sync with blockchain updates.
Definition base.cpp:409
void SetBestBlockIndex(const CBlockIndex *block)
Update the internal best block index as well as the prune lock.
Definition base.cpp:435
bool Init()
Initializes the sync state and registers the instance to the validation interface so that it stays in...
Definition base.cpp:78
virtual ~BaseIndex()
Destructor interrupts sync thread if running and blocks until it exits.
Definition base.cpp:72
virtual bool CustomCommit(CDBBatch &batch)
Virtual method called internally by Commit that can be overridden to atomically commit more index sta...
Definition base.h:116
const std::string & GetName() const LIFETIMEBOUND
Get the name of the index for display in logs.
Definition base.h:133
bool BlockUntilSyncedToCurrentChain() const LOCKS_EXCLUDED(void Interrupt()
Blocks the current thread until the index is caught up to the current state of the block chain.
Definition base.cpp:396
virtual bool AllowPrune() const =0
void BlockConnected(ChainstateRole role, const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex) override
Notifies listeners of a block being connected.
Definition base.cpp:270
std::atomic< bool > m_synced
Whether the index is in sync with the main chain.
Definition base.h:73
CThreadInterrupt m_interrupt
Definition base.h:79
BaseIndex(std::unique_ptr< interfaces::Chain > chain, std::string name)
Definition base.cpp:69
IndexSummary GetSummary() const
Get a summary of the index and its state.
Definition base.cpp:420
const std::string m_name
Definition base.h:102
virtual DB & GetDB() const =0
void Sync()
Sync the index with the block index starting from the current best block.
Definition base.cpp:143
std::thread m_thread_sync
Definition base.h:78
bool Commit()
Write the current index state (eg.
Definition base.cpp:226
virtual bool CustomInit(const std::optional< interfaces::BlockKey > &block)
Initialize internal state from the database and block index.
Definition base.h:109
virtual bool CustomRewind(const interfaces::BlockKey &current_tip, const interfaces::BlockKey &new_tip)
Rewind index to an earlier chain tip during a chain reorg.
Definition base.h:120
void FatalErrorf(const char *fmt, const Args &... args)
Definition base.cpp:30
Chainstate * m_chainstate
Definition base.h:101
bool Rewind(const CBlockIndex *current_tip, const CBlockIndex *new_tip)
Loop over disconnected blocks and call CustomRewind.
Definition base.cpp:246
bool StartBackgroundSync()
Starts the initial sync process on a background thread.
Definition base.cpp:401
void ChainStateFlushed(ChainstateRole role, const CBlockLocator &locator) override
Notifies listeners of the new active block chain on-disk.
Definition base.cpp:327
std::unique_ptr< interfaces::Chain > m_chain
Definition base.h:100
std::atomic< bool > m_init
Whether the index has been initialized or not.
Definition base.h:65
std::atomic< const CBlockIndex * > m_best_block_index
The last block in the chain that the index is in sync with.
Definition base.h:76
virtual bool CustomAppend(const interfaces::BlockInfo &block)
Write update index entries for a newly connected block.
Definition base.h:112
Definition block.h:69
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition chain.h:141
CBlockIndex * pprev
pointer to the index of the predecessor of this block
Definition chain.h:147
uint256 GetBlockHash() const
Definition chain.h:243
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
Definition chain.cpp:120
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition chain.h:153
An in-memory indexed chain of blocks.
Definition chain.h:417
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition chain.h:433
Batch of changes queued to be written to a CDBWrapper.
Definition dbwrapper.h:73
void Write(const K &key, const V &value)
Definition dbwrapper.h:99
bool WriteBatch(CDBBatch &batch, bool fSync=false)
CChain m_chain
The current chain of blockheaders we consult and build on.
Definition validation.h:593
node::BlockManager & m_blockman
Reference to a BlockManager instance which itself is shared across all Chainstate instances.
Definition validation.h:548
std::string ToString() const
Definition uint256.cpp:47
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition fs.h:33
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition chain.h:135
virtual bool findBlock(const uint256 &hash, const FoundBlock &block={})=0
Return whether node has the block and optionally return block metadata or contents.
Helper for findBlock to selectively return pieces of block data.
Definition chain.h:54
bool ReadBlockFromDisk(CBlock &block, const FlatFilePos &pos) const
Functions for disk access for blocks.
CBlockIndex * LookupBlockIndex(const uint256 &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
bool IsPruneMode() const
Whether running in -prune mode.
256-bit opaque blob.
Definition uint256.h:178
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition cs_main.cpp:8
bool InitError(const bilingual_str &str)
Show error message.
ChainstateRole
This enum describes the various roles a specific Chainstate instance can take.
Definition chain.h:25
#define LogError(...)
Definition logging.h:271
#define LogPrintf(...)
Definition logging.h:274
interfaces::BlockInfo MakeBlockInfo(const CBlockIndex *index, const CBlock *data)
Return data from block index.
Definition chain.cpp:14
void AbortNode(util::SignalInterrupt *shutdown, std::atomic< int > &exit_status, const bilingual_str &message, node::Warnings *warnings)
Definition abort.cpp:18
void ReadDatabaseArgs(const ArgsManager &args, DBOptions &options)
void format(std::ostream &out, const char *fmt, const Args &... args)
Format list of arguments to the stream according to given format string.
void TraceThread(std::string_view thread_name, std::function< void()> thread_func)
A wrapper for do-something-once thread functions.
Definition thread.cpp:16
const char * name
Definition rest.cpp:49
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
Definition block.h:124
std::vector< uint256 > vHave
Definition block.h:134
bool IsNull() const
Definition block.h:152
void SetNull()
Definition block.h:147
User-controlled performance and debug options.
Definition dbwrapper.h:27
Application-specific storage settings.
Definition dbwrapper.h:33
std::string name
Definition base.h:24
Block data sent with blockConnected, blockDisconnected notifications.
Definition chain.h:84
const CBlock * data
Definition chain.h:90
Hash/height pair to help track and identify blocks.
Definition chain.h:45
#define AssertLockNotHeld(cs)
Definition sync.h:147
#define LOCK(cs)
Definition sync.h:257
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
Definition sync.h:301
#define AssertLockHeld(cs)
Definition sync.h:142
#define EXCLUSIVE_LOCKS_REQUIRED(...)
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
Definition translation.h:48
assert(!tx.IsCoinBase())