Bitcoin ABC 0.32.4
P2P Digital Currency
blockfilterindex.cpp
Go to the documentation of this file.
1// Copyright (c) 2018 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 <common/args.h>
6#include <dbwrapper.h>
8#include <node/blockstorage.h>
10#include <util/fs_helpers.h>
11#include <validation.h>
12
13#include <map>
14
34constexpr uint8_t DB_BLOCK_HASH{'s'};
35constexpr uint8_t DB_BLOCK_HEIGHT{'t'};
36constexpr uint8_t DB_FILTER_POS{'P'};
37
38// 16 MiB
39constexpr unsigned int MAX_FLTR_FILE_SIZE = 0x1000000;
41// 1 MiB
42constexpr unsigned int FLTR_FILE_CHUNK_SIZE = 0x100000;
43
51constexpr size_t CF_HEADERS_CACHE_MAX_SZ{2000};
52
53namespace {
54
55struct DBVal {
56 uint256 hash;
57 uint256 header;
58 FlatFilePos pos;
59
60 SERIALIZE_METHODS(DBVal, obj) { READWRITE(obj.hash, obj.header, obj.pos); }
61};
62
63struct DBHeightKey {
64 int height{0};
65
66 DBHeightKey() = default;
67 explicit DBHeightKey(int height_in) : height(height_in) {}
68
69 template <typename Stream> void Serialize(Stream &s) const {
71 ser_writedata32be(s, height);
72 }
73
74 template <typename Stream> void Unserialize(Stream &s) {
75 const uint8_t prefix{ser_readdata8(s)};
76 if (prefix != DB_BLOCK_HEIGHT) {
77 throw std::ios_base::failure(
78 "Invalid format for block filter index DB height key");
79 }
80 height = ser_readdata32be(s);
81 }
82};
83
84struct DBHashKey {
85 BlockHash hash;
86
87 explicit DBHashKey(const BlockHash &hash_in) : hash(hash_in) {}
88
89 SERIALIZE_METHODS(DBHashKey, obj) {
90 uint8_t prefix{DB_BLOCK_HASH};
92 if (prefix != DB_BLOCK_HASH) {
93 throw std::ios_base::failure(
94 "Invalid format for block filter index DB hash key");
95 }
96
97 READWRITE(obj.hash);
98 }
99};
100
101}; // namespace
102
103static std::map<BlockFilterType, BlockFilterIndex> g_filter_indexes;
104
105BlockFilterIndex::BlockFilterIndex(std::unique_ptr<interfaces::Chain> chain,
106 BlockFilterType filter_type,
107 size_t n_cache_size, bool f_memory,
108 bool f_wipe)
109 : BaseIndex(std::move(chain),
110 BlockFilterTypeName(filter_type) + " block filter index"),
111 m_filter_type(filter_type) {
112 const std::string &filter_name = BlockFilterTypeName(filter_type);
113 if (filter_name.empty()) {
114 throw std::invalid_argument("unknown filter_type");
115 }
116
117 fs::path path =
118 gArgs.GetDataDirNet() / "indexes" / "blockfilter" / filter_name;
120
121 m_db = std::make_unique<BaseIndex::DB>(path / "db", n_cache_size, f_memory,
122 f_wipe);
123 m_filter_fileseq = std::make_unique<FlatFileSeq>(std::move(path), "fltr",
125}
126
128 const std::optional<interfaces::BlockKey> &block) {
129 if (!m_db->Read(DB_FILTER_POS, m_next_filter_pos)) {
130 // Check that the cause of the read failure is that the key does not
131 // exist. Any other errors indicate database corruption or a disk
132 // failure, and starting the index would cause further corruption.
133 if (m_db->Exists(DB_FILTER_POS)) {
134 LogError(
135 "%s: Cannot read current %s state; index may be corrupted\n",
136 __func__, GetName());
137 return false;
138 }
139
140 // If the DB_FILTER_POS is not set, then initialize to the first
141 // location.
144 }
145 return true;
146}
147
149 const FlatFilePos &pos = m_next_filter_pos;
150
151 // Flush current filter file to disk.
152 AutoFile file{m_filter_fileseq->Open(pos)};
153 if (file.IsNull()) {
154 LogError("%s: Failed to open filter file %d\n", __func__, pos.nFile);
155 return false;
156 }
157 if (!FileCommit(file.Get())) {
158 LogError("%s: Failed to commit filter file %d\n", __func__, pos.nFile);
159 return false;
160 }
161
162 batch.Write(DB_FILTER_POS, pos);
163 return true;
164}
165
167 BlockFilter &filter) const {
168 AutoFile filein{m_filter_fileseq->Open(pos, true)};
169 if (filein.IsNull()) {
170 return false;
171 }
172
173 BlockHash block_hash;
174 std::vector<uint8_t> encoded_filter;
175 try {
176 filein >> block_hash >> encoded_filter;
177 filter =
178 BlockFilter(GetFilterType(), block_hash, std::move(encoded_filter));
179 } catch (const std::exception &e) {
180 LogError("%s: Failed to deserialize block filter from disk: %s\n",
181 __func__, e.what());
182 return false;
183 }
184
185 return true;
186}
187
189 const BlockFilter &filter) {
190 assert(filter.GetFilterType() == GetFilterType());
191
192 size_t data_size =
195
196 // If writing the filter would overflow the file, flush and move to the next
197 // one.
198 if (pos.nPos + data_size > MAX_FLTR_FILE_SIZE) {
199 AutoFile last_file{m_filter_fileseq->Open(pos)};
200 if (last_file.IsNull()) {
201 LogPrintf("%s: Failed to open filter file %d\n", __func__,
202 pos.nFile);
203 return 0;
204 }
205 if (!TruncateFile(last_file.Get(), pos.nPos)) {
206 LogPrintf("%s: Failed to truncate filter file %d\n", __func__,
207 pos.nFile);
208 return 0;
209 }
210 if (!FileCommit(last_file.Get())) {
211 LogPrintf("%s: Failed to commit filter file %d\n", __func__,
212 pos.nFile);
213 return 0;
214 }
215
216 pos.nFile++;
217 pos.nPos = 0;
218 }
219
220 // Pre-allocate sufficient space for filter data.
221 bool out_of_space;
222 m_filter_fileseq->Allocate(pos, data_size, out_of_space);
223 if (out_of_space) {
224 LogPrintf("%s: out of disk space\n", __func__);
225 return 0;
226 }
227
228 AutoFile fileout{m_filter_fileseq->Open(pos)};
229 if (fileout.IsNull()) {
230 LogPrintf("%s: Failed to open filter file %d\n", __func__, pos.nFile);
231 return 0;
232 }
233
234 fileout << filter.GetBlockHash() << filter.GetEncodedFilter();
235 return data_size;
236}
237
239 const CBlockIndex *pindex) {
240 CBlockUndo block_undo;
241 uint256 prev_header;
242
243 if (pindex->nHeight > 0) {
244 if (!m_chainstate->m_blockman.UndoReadFromDisk(block_undo, *pindex)) {
245 return false;
246 }
247
248 std::pair<BlockHash, DBVal> read_out;
249 if (!m_db->Read(DBHeightKey(pindex->nHeight - 1), read_out)) {
250 return false;
251 }
252
253 BlockHash expected_block_hash = pindex->pprev->GetBlockHash();
254 if (read_out.first != expected_block_hash) {
255 LogError("%s: previous block header belongs to unexpected "
256 "block %s; expected %s\n",
257 __func__, read_out.first.ToString(),
258 expected_block_hash.ToString());
259 return false;
260 }
261
262 prev_header = read_out.second.header;
263 }
264
265 BlockFilter filter(m_filter_type, block, block_undo);
266
267 size_t bytes_written = WriteFilterToDisk(m_next_filter_pos, filter);
268 if (bytes_written == 0) {
269 return false;
270 }
271
272 std::pair<BlockHash, DBVal> value;
273 value.first = pindex->GetBlockHash();
274 value.second.hash = filter.GetHash();
275 value.second.header = filter.ComputeHeader(prev_header);
276 value.second.pos = m_next_filter_pos;
277
278 if (!m_db->Write(DBHeightKey(pindex->nHeight), value)) {
279 return false;
280 }
281
282 m_next_filter_pos.nPos += bytes_written;
283 return true;
284}
285
287 const std::string &index_name,
288 int start_height, int stop_height) {
289 DBHeightKey key(start_height);
290 db_it.Seek(key);
291
292 for (int height = start_height; height <= stop_height; ++height) {
293 if (!db_it.GetKey(key) || key.height != height) {
294 LogError("%s: unexpected key in %s: expected (%c, %d)\n", __func__,
295 index_name, DB_BLOCK_HEIGHT, height);
296 return false;
297 }
298
299 std::pair<BlockHash, DBVal> value;
300 if (!db_it.GetValue(value)) {
301 LogError("%s: unable to read value in %s at key (%c, %d)\n",
302 __func__, index_name, DB_BLOCK_HEIGHT, height);
303 return false;
304 }
305
306 batch.Write(DBHashKey(value.first), std::move(value.second));
307
308 db_it.Next();
309 }
310 return true;
311}
312
313bool BlockFilterIndex::Rewind(const CBlockIndex *current_tip,
314 const CBlockIndex *new_tip) {
315 assert(current_tip->GetAncestor(new_tip->nHeight) == new_tip);
316
317 CDBBatch batch(*m_db);
318 std::unique_ptr<CDBIterator> db_it(m_db->NewIterator());
319
320 // During a reorg, we need to copy all filters for blocks that are getting
321 // disconnected from the height index to the hash index so we can still find
322 // them when the height index entries are overwritten.
323 if (!CopyHeightIndexToHashIndex(*db_it, batch, m_name, new_tip->nHeight,
324 current_tip->nHeight)) {
325 return false;
326 }
327
328 // The latest filter position gets written in Commit by the call to the
329 // BaseIndex::Rewind. But since this creates new references to the filter,
330 // the position should get updated here atomically as well in case Commit
331 // fails.
333 if (!m_db->WriteBatch(batch)) {
334 return false;
335 }
336
337 return BaseIndex::Rewind(current_tip, new_tip);
338}
339
340static bool LookupOne(const CDBWrapper &db, const CBlockIndex *block_index,
341 DBVal &result) {
342 // First check if the result is stored under the height index and the value
343 // there matches the block hash. This should be the case if the block is on
344 // the active chain.
345 std::pair<BlockHash, DBVal> read_out;
346 if (!db.Read(DBHeightKey(block_index->nHeight), read_out)) {
347 return false;
348 }
349 if (read_out.first == block_index->GetBlockHash()) {
350 result = std::move(read_out.second);
351 return true;
352 }
353
354 // If value at the height index corresponds to an different block, the
355 // result will be stored in the hash index.
356 return db.Read(DBHashKey(block_index->GetBlockHash()), result);
357}
358
359static bool LookupRange(CDBWrapper &db, const std::string &index_name,
360 int start_height, const CBlockIndex *stop_index,
361 std::vector<DBVal> &results) {
362 if (start_height < 0) {
363 LogError("%s: start height (%d) is negative\n", __func__, start_height);
364 return false;
365 }
366 if (start_height > stop_index->nHeight) {
367 LogError("%s: start height (%d) is greater than stop height (%d)\n",
368 __func__, start_height, stop_index->nHeight);
369 return false;
370 }
371
372 size_t results_size =
373 static_cast<size_t>(stop_index->nHeight - start_height + 1);
374 std::vector<std::pair<BlockHash, DBVal>> values(results_size);
375
376 DBHeightKey key(start_height);
377 std::unique_ptr<CDBIterator> db_it(db.NewIterator());
378 db_it->Seek(DBHeightKey(start_height));
379 for (int height = start_height; height <= stop_index->nHeight; ++height) {
380 if (!db_it->Valid() || !db_it->GetKey(key) || key.height != height) {
381 return false;
382 }
383
384 size_t i = static_cast<size_t>(height - start_height);
385 if (!db_it->GetValue(values[i])) {
386 LogError("%s: unable to read value in %s at key (%c, %d)\n",
387 __func__, index_name, DB_BLOCK_HEIGHT, height);
388 return false;
389 }
390
391 db_it->Next();
392 }
393
394 results.resize(results_size);
395
396 // Iterate backwards through block indexes collecting results in order to
397 // access the block hash of each entry in case we need to look it up in the
398 // hash index.
399 for (const CBlockIndex *block_index = stop_index;
400 block_index && block_index->nHeight >= start_height;
401 block_index = block_index->pprev) {
402 BlockHash block_hash = block_index->GetBlockHash();
403
404 size_t i = static_cast<size_t>(block_index->nHeight - start_height);
405 if (block_hash == values[i].first) {
406 results[i] = std::move(values[i].second);
407 continue;
408 }
409
410 if (!db.Read(DBHashKey(block_hash), results[i])) {
411 LogError("%s: unable to read value in %s at key (%c, %s)\n",
412 __func__, index_name, DB_BLOCK_HASH,
413 block_hash.ToString());
414 return false;
415 }
416 }
417
418 return true;
419}
420
422 BlockFilter &filter_out) const {
423 DBVal entry;
424 if (!LookupOne(*m_db, block_index, entry)) {
425 return false;
426 }
427
428 return ReadFilterFromDisk(entry.pos, filter_out);
429}
430
432 uint256 &header_out) {
434
435 bool is_checkpoint{block_index->nHeight % CFCHECKPT_INTERVAL == 0};
436
437 if (is_checkpoint) {
438 // Try to find the block in the headers cache if this is a checkpoint
439 // height.
440 auto header = m_headers_cache.find(block_index->GetBlockHash());
441 if (header != m_headers_cache.end()) {
442 header_out = header->second;
443 return true;
444 }
445 }
446
447 DBVal entry;
448 if (!LookupOne(*m_db, block_index, entry)) {
449 return false;
450 }
451
452 if (is_checkpoint && m_headers_cache.size() < CF_HEADERS_CACHE_MAX_SZ) {
453 // Add to the headers cache if this is a checkpoint height.
454 m_headers_cache.emplace(block_index->GetBlockHash(), entry.header);
455 }
456
457 header_out = entry.header;
458 return true;
459}
460
462 int start_height, const CBlockIndex *stop_index,
463 std::vector<BlockFilter> &filters_out) const {
464 std::vector<DBVal> entries;
465 if (!LookupRange(*m_db, m_name, start_height, stop_index, entries)) {
466 return false;
467 }
468
469 filters_out.resize(entries.size());
470 auto filter_pos_it = filters_out.begin();
471 for (const auto &entry : entries) {
472 if (!ReadFilterFromDisk(entry.pos, *filter_pos_it)) {
473 return false;
474 }
475 ++filter_pos_it;
476 }
477
478 return true;
479}
480
482 int start_height, const CBlockIndex *stop_index,
483 std::vector<uint256> &hashes_out) const
484
485{
486 std::vector<DBVal> entries;
487 if (!LookupRange(*m_db, m_name, start_height, stop_index, entries)) {
488 return false;
489 }
490
491 hashes_out.clear();
492 hashes_out.reserve(entries.size());
493 for (const auto &entry : entries) {
494 hashes_out.push_back(entry.hash);
495 }
496 return true;
497}
498
500 auto it = g_filter_indexes.find(filter_type);
501 return it != g_filter_indexes.end() ? &it->second : nullptr;
502}
503
504void ForEachBlockFilterIndex(std::function<void(BlockFilterIndex &)> fn) {
505 for (auto &entry : g_filter_indexes) {
506 fn(entry.second);
507 }
508}
509
511 std::function<std::unique_ptr<interfaces::Chain>()> make_chain,
512 BlockFilterType filter_type, size_t n_cache_size, bool f_memory,
513 bool f_wipe) {
514 auto result = g_filter_indexes.emplace(
515 std::piecewise_construct, std::forward_as_tuple(filter_type),
516 std::forward_as_tuple(make_chain(), filter_type, n_cache_size, f_memory,
517 f_wipe));
518 return result.second;
519}
520
522 return g_filter_indexes.erase(filter_type);
523}
524
526 g_filter_indexes.clear();
527}
ArgsManager gArgs
Definition: args.cpp:40
const std::string & BlockFilterTypeName(BlockFilterType filter_type)
Get the human-readable name for a filter type.
BlockFilterType
Definition: blockfilter.h:88
constexpr unsigned int FLTR_FILE_CHUNK_SIZE
The pre-allocation chunk size for fltr?????.dat files.
bool DestroyBlockFilterIndex(BlockFilterType filter_type)
Destroy the block filter index with the given type.
void DestroyAllBlockFilterIndexes()
Destroy all open block filter indexes.
static bool CopyHeightIndexToHashIndex(CDBIterator &db_it, CDBBatch &batch, const std::string &index_name, int start_height, int stop_height)
BlockFilterIndex * GetBlockFilterIndex(BlockFilterType filter_type)
Get a block filter index by type.
constexpr uint8_t DB_FILTER_POS
static bool LookupOne(const CDBWrapper &db, const CBlockIndex *block_index, DBVal &result)
constexpr unsigned int MAX_FLTR_FILE_SIZE
constexpr uint8_t DB_BLOCK_HASH
The index database stores three items for each block: the disk location of the encoded filter,...
void ForEachBlockFilterIndex(std::function< void(BlockFilterIndex &)> fn)
Iterate over all running block filter indexes, invoking fn on each.
constexpr size_t CF_HEADERS_CACHE_MAX_SZ
Maximum size of the cfheaders cache.
bool InitBlockFilterIndex(std::function< std::unique_ptr< interfaces::Chain >()> make_chain, BlockFilterType filter_type, size_t n_cache_size, bool f_memory, bool f_wipe)
Initialize a block filter index for the given type if one does not already exist.
static bool LookupRange(CDBWrapper &db, const std::string &index_name, int start_height, const CBlockIndex *stop_index, std::vector< DBVal > &results)
constexpr uint8_t DB_BLOCK_HEIGHT
static std::map< BlockFilterType, BlockFilterIndex > g_filter_indexes
static constexpr int CFCHECKPT_INTERVAL
Interval between compact filter checkpoints.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
Definition: args.h:239
Non-refcounted RAII wrapper for FILE*.
Definition: streams.h:526
Base class for indices of blockchain data.
Definition: base.h:37
const std::string & GetName() const LIFETIMEBOUND
Get the name of the index for display in logs.
Definition: base.h:143
const std::string m_name
Definition: base.h:103
Chainstate * m_chainstate
Definition: base.h:102
virtual bool Rewind(const CBlockIndex *current_tip, const CBlockIndex *new_tip)
Rewind index to an earlier chain tip during a chain reorg.
Definition: base.cpp:252
Complete block filter struct as defined in BIP 157.
Definition: blockfilter.h:111
uint256 ComputeHeader(const uint256 &prev_header) const
Compute the filter header given the previous one.
BlockFilterType GetFilterType() const
Definition: blockfilter.h:130
const BlockHash & GetBlockHash() const
Definition: blockfilter.h:131
uint256 GetHash() const
Compute the filter hash.
const std::vector< uint8_t > & GetEncodedFilter() const
Definition: blockfilter.h:134
BlockFilterIndex is used to store and retrieve block filters, hashes, and headers for a range of bloc...
std::unique_ptr< BaseIndex::DB > m_db
bool Rewind(const CBlockIndex *current_tip, const CBlockIndex *new_tip) override
Rewind index to an earlier chain tip during a chain reorg.
bool ReadFilterFromDisk(const FlatFilePos &pos, BlockFilter &filter) const
bool LookupFilterRange(int start_height, const CBlockIndex *stop_index, std::vector< BlockFilter > &filters_out) const
Get a range of filters between two heights on a chain.
bool CustomInit(const std::optional< interfaces::BlockKey > &block) override
Initialize internal state from the database and block index.
BlockFilterType GetFilterType() const
bool CustomCommit(CDBBatch &batch) override
Virtual method called internally by Commit that can be overridden to atomically commit more index sta...
BlockFilterType m_filter_type
BlockFilterIndex(std::unique_ptr< interfaces::Chain > chain, BlockFilterType filter_type, size_t n_cache_size, bool f_memory=false, bool f_wipe=false)
Constructs the index, which becomes available to be queried.
bool WriteBlock(const CBlock &block, const CBlockIndex *pindex) override
Write update index entries for a newly connected block.
std::unique_ptr< FlatFileSeq > m_filter_fileseq
bool LookupFilter(const CBlockIndex *block_index, BlockFilter &filter_out) const
Get a single filter by block.
bool LookupFilterHashRange(int start_height, const CBlockIndex *stop_index, std::vector< uint256 > &hashes_out) const
Get a range of filter hashes between two heights on a chain.
size_t WriteFilterToDisk(FlatFilePos &pos, const BlockFilter &filter)
bool LookupFilterHeader(const CBlockIndex *block_index, uint256 &header_out) EXCLUSIVE_LOCKS_REQUIRED(!m_cs_headers_cache)
Get a single filter header by block.
FlatFilePos m_next_filter_pos
Definition: block.h:60
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:25
CBlockIndex * pprev
pointer to the index of the predecessor of this block
Definition: blockindex.h:32
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
Definition: blockindex.cpp:62
BlockHash GetBlockHash() const
Definition: blockindex.h:130
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition: blockindex.h:38
Undo information for a CBlock.
Definition: undo.h:73
Batch of changes queued to be written to a CDBWrapper.
Definition: dbwrapper.h:78
void Write(const K &key, const V &value)
Definition: dbwrapper.h:103
bool GetValue(V &value)
Definition: dbwrapper.h:184
bool GetKey(K &key)
Definition: dbwrapper.h:173
void Seek(const K &key)
Definition: dbwrapper.h:163
void Next()
Definition: dbwrapper.cpp:259
node::BlockManager & m_blockman
Reference to a BlockManager instance which itself is shared across all Chainstate instances.
Definition: validation.h:791
std::string ToString() const
Definition: uint256.h:80
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
bool UndoReadFromDisk(CBlockUndo &blockundo, const CBlockIndex &index) const
256-bit opaque blob.
Definition: uint256.h:129
static constexpr int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
Definition: clientversion.h:38
bool TruncateFile(FILE *file, unsigned int length)
Definition: fs_helpers.cpp:170
bool FileCommit(FILE *file)
Ensure file contents are fully committed to disk, using a platform-specific feature analogous to fsyn...
Definition: fs_helpers.cpp:126
#define LogError(...)
Definition: logging.h:419
#define LogPrintf(...)
Definition: logging.h:424
static bool create_directories(const std::filesystem::path &p)
Create directory (and if necessary its parents), unless the leaf directory already exists or is a sym...
Definition: fs.h:184
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
const char * prefix
Definition: rest.cpp:812
CAddrDb db
Definition: main.cpp:35
void Serialize(Stream &, V)=delete
uint8_t ser_readdata8(Stream &s)
Definition: serialize.h:85
void ser_writedata32be(Stream &s, uint32_t obj)
Definition: serialize.h:76
#define SERIALIZE_METHODS(cls, obj)
Implement the Serialize and Unserialize methods by delegating to a single templated static method tha...
Definition: serialize.h:215
void Unserialize(Stream &, V)=delete
void ser_writedata8(Stream &s, uint8_t obj)
Lowest-level serialization and conversion.
Definition: serialize.h:57
size_t GetSerializeSize(const T &t, int nVersion=0)
Definition: serialize.h:1207
uint32_t ser_readdata32be(Stream &s)
Definition: serialize.h:105
#define READWRITE(...)
Definition: serialize.h:168
A BlockHash is a unqiue identifier for a block.
Definition: blockhash.h:13
int nFile
Definition: flatfile.h:15
unsigned int nPos
Definition: flatfile.h:16
#define LOCK(cs)
Definition: sync.h:306
assert(!tx.IsCoinBase())