Bitcoin Core 31.99.0
P2P Digital Currency
txdb.cpp
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-present 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 <txdb.h>
7
8#include <coins.h>
9#include <dbwrapper.h>
10#include <logging/timer.h>
12#include <random.h>
13#include <serialize.h>
14#include <uint256.h>
15#include <util/byte_units.h>
16#include <util/log.h>
17#include <util/threadnames.h>
18#include <util/vector.h>
19
20#include <cassert>
21#include <chrono>
22#include <cstdlib>
23#include <exception>
24#include <future>
25#include <iterator>
26#include <utility>
27
28static constexpr uint8_t DB_COIN{'C'};
29static constexpr uint8_t DB_BEST_BLOCK{'B'};
30static constexpr uint8_t DB_HEAD_BLOCKS{'H'};
31// Keys used in previous version that might still be found in the DB:
32static constexpr uint8_t DB_COINS{'c'};
33
34// Threshold for warning when writing this many dirty cache entries to disk.
35static constexpr size_t WARN_FLUSH_COINS_COUNT{10'000'000};
36
38{
39 std::unique_ptr<CDBIterator> cursor{m_db->NewIterator()};
40 // DB_COINS was deprecated in v0.15.0, commit
41 // 1088b02f0ccd7358d2b7076bb9e122d59d502d02
42 cursor->Seek(std::make_pair(DB_COINS, uint256{}));
43 return cursor->Valid();
44}
45
46namespace {
47
48struct CoinEntry {
49 COutPoint* outpoint;
50 uint8_t key{DB_COIN};
51 explicit CoinEntry(const COutPoint* ptr) : outpoint(const_cast<COutPoint*>(ptr)) {}
52
53 SERIALIZE_METHODS(CoinEntry, obj) { READWRITE(obj.key, obj.outpoint->hash, VARINT(obj.outpoint->n)); }
54};
55
56} // namespace
57
59 m_db_params{std::move(db_params)},
60 m_options{std::move(options)},
61 m_db{std::make_unique<CDBWrapper>(m_db_params)} { }
62
64{
65 if (m_compaction.valid()) {
66 if (m_compaction.wait_for(std::chrono::seconds{0}) != std::future_status::ready) {
67 LogInfo("Waiting for background chainstate compaction of %s", fs::PathToString(m_db_params.path));
68 }
69 m_compaction.wait();
70 }
71}
72
73void CCoinsViewDB::ResizeCache(size_t new_cache_size)
74{
75 // We can't do this operation with an in-memory DB since we'll lose all the coins upon
76 // reset.
79 // Have to do a reset first to get the original `m_db` state to release its
80 // filesystem lock.
81 m_db.reset();
82 m_db_params.cache_bytes = new_cache_size;
83 m_db_params.wipe_data = false;
84 m_db = std::make_unique<CDBWrapper>(m_db_params);
85 }
86}
87
88std::optional<Coin> CCoinsViewDB::GetCoin(const COutPoint& outpoint) const
89{
90 if (Coin coin; m_db->Read(CoinEntry(&outpoint), coin)) {
91 Assert(!coin.IsSpent()); // The UTXO database should never contain spent coins
92 return coin;
93 }
94 return std::nullopt;
95}
96
97std::optional<Coin> CCoinsViewDB::PeekCoin(const COutPoint& outpoint) const
98{
99 return GetCoin(outpoint);
100}
101
102bool CCoinsViewDB::HaveCoin(const COutPoint& outpoint) const
103{
104 return m_db->Exists(CoinEntry(&outpoint));
105}
106
108 uint256 hashBestChain;
109 if (!m_db->Read(DB_BEST_BLOCK, hashBestChain))
110 return uint256();
111 return hashBestChain;
112}
113
114std::vector<uint256> CCoinsViewDB::GetHeadBlocks() const {
115 std::vector<uint256> vhashHeadBlocks;
116 if (!m_db->Read(DB_HEAD_BLOCKS, vhashHeadBlocks)) {
117 return std::vector<uint256>();
118 }
119 return vhashHeadBlocks;
120}
121
123{
124 CDBBatch batch(*m_db);
125 size_t count = 0;
126 const size_t dirty_count{cursor.GetDirtyCount()};
127 assert(!block_hash.IsNull());
128
129 uint256 old_tip = GetBestBlock();
130 if (old_tip.IsNull()) {
131 // We may be in the middle of replaying.
132 std::vector<uint256> old_heads = GetHeadBlocks();
133 if (old_heads.size() == 2) {
134 if (old_heads[0] != block_hash) {
135 LogError("The coins database detected an inconsistent state, likely due to a previous crash or shutdown. You will need to restart bitcoind with the -reindex-chainstate or -reindex configuration option.\n");
136 }
137 assert(old_heads[0] == block_hash);
138 old_tip = old_heads[1];
139 }
140 }
141
142 if (dirty_count > WARN_FLUSH_COINS_COUNT) LogWarning("Flushing large (%d entries) UTXO set to disk, it may take several minutes", dirty_count);
143 LOG_TIME_MILLIS_WITH_CATEGORY(strprintf("write coins cache to disk (%d out of %d cached coins)",
144 dirty_count, cursor.GetTotalCount()), BCLog::BENCH);
145
146 // In the first batch, mark the database as being in the middle of a
147 // transition from old_tip to block_hash.
148 // A vector is used for future extensibility, as we may want to support
149 // interrupting after partial writes from multiple independent reorgs.
150 batch.Erase(DB_BEST_BLOCK);
151 batch.Write(DB_HEAD_BLOCKS, Vector(block_hash, old_tip));
152
153 for (auto it{cursor.Begin()}; it != cursor.End();) {
154 if (it->second.IsDirty()) {
155 CoinEntry entry(&it->first);
156 if (it->second.coin.IsSpent()) {
157 batch.Erase(entry);
158 } else {
159 batch.Write(entry, it->second.coin);
160 }
161 }
162 count++;
163 it = cursor.NextAndMaybeErase(*it);
165 LogDebug(BCLog::COINDB, "Writing partial batch of %.2f MiB\n", batch.ApproximateSize() / double(1_MiB));
166
167 m_db->WriteBatch(batch);
168 batch.Clear();
170 static FastRandomContext rng;
172 LogError("Simulating a crash. Goodbye.");
173 _Exit(0);
174 }
175 }
176 }
177 }
178
179 // In the last batch, mark the database as consistent with block_hash again.
180 batch.Erase(DB_HEAD_BLOCKS);
181 batch.Write(DB_BEST_BLOCK, block_hash);
182
183 LogDebug(BCLog::COINDB, "Writing final batch of %.2f MiB\n", batch.ApproximateSize() / double(1_MiB));
184 m_db->WriteBatch(batch);
185 LogDebug(BCLog::COINDB, "Committed %u changed transaction outputs (out of %u) to coin database...", (unsigned int)dirty_count, (unsigned int)count);
186}
187
189{
190 return m_db->EstimateSize(DB_COIN, uint8_t(DB_COIN + 1));
191}
192
193std::optional<std::string> CCoinsViewDB::GetDBProperty(const std::string& property)
194{
195 return m_db->GetProperty(property);
196}
197
198std::shared_future<void> CCoinsViewDB::CompactFullAsync()
199{
201 if (m_compaction.valid() && m_compaction.wait_for(std::chrono::seconds{0}) != std::future_status::ready) return m_compaction;
202 m_compaction = std::async(std::launch::async, [this] {
203 try {
204 util::ThreadRename("utxocompact");
206
207 LogDebug(BCLog::COINDB, "Starting chainstate compaction of %s", fs::PathToString(m_db_params.path));
208 m_db->CompactFull();
209 LogDebug(BCLog::COINDB, "Finished chainstate compaction of %s", fs::PathToString(m_db_params.path));
210 } catch (const std::exception& e) {
211 LogWarning("Failed chainstate compaction (%s)", e.what());
212 }
213 }).share();
214 return m_compaction;
215}
216
219{
220public:
221 // Prefer using CCoinsViewDB::Cursor() since we want to perform some
222 // cache warmup on instantiation.
223 CCoinsViewDBCursor(CDBIterator* pcursorIn, const uint256& in_block_hash):
224 CCoinsViewCursor(in_block_hash), pcursor(pcursorIn) {}
226
227 bool GetKey(COutPoint &key) const override;
228 bool GetValue(Coin &coin) const override;
229
230 bool Valid() const override;
231 void Next() override;
232
233private:
234 std::unique_ptr<CDBIterator> pcursor;
235 std::pair<char, COutPoint> keyTmp;
236
237 friend class CCoinsViewDB;
238};
239
240std::unique_ptr<CCoinsViewCursor> CCoinsViewDB::Cursor() const
241{
242 auto i = std::make_unique<CCoinsViewDBCursor>(
243 const_cast<CDBWrapper&>(*m_db).NewIterator(), GetBestBlock());
244 /* It seems that there are no "const iterators" for LevelDB. Since we
245 only need read operations on it, use a const-cast to get around
246 that restriction. */
247 i->pcursor->Seek(DB_COIN);
248 // Cache key of first record
249 if (i->pcursor->Valid()) {
250 CoinEntry entry(&i->keyTmp.second);
251 i->pcursor->GetKey(entry);
252 i->keyTmp.first = entry.key;
253 } else {
254 i->keyTmp.first = 0; // Make sure Valid() and GetKey() return false
255 }
256 return i;
257}
258
260{
261 // Return cached key
262 if (keyTmp.first == DB_COIN) {
263 key = keyTmp.second;
264 return true;
265 }
266 return false;
267}
268
270{
271 return pcursor->GetValue(coin);
272}
273
275{
276 return keyTmp.first == DB_COIN;
277}
278
280{
281 pcursor->Next();
282 CoinEntry entry(&keyTmp.second);
283 if (!pcursor->Valid() || !pcursor->GetKey(entry)) {
284 keyTmp.first = 0; // Invalidate cached key after last record so that Valid() and GetKey() return false
285 } else {
286 keyTmp.first = entry.key;
287 }
288}
#define Assert(val)
Identity function.
Definition: check.h:116
Cursor for iterating over CoinsView state.
Definition: coins.h:230
Specialization of CCoinsViewCursor to iterate over a CCoinsViewDB.
Definition: txdb.cpp:219
std::unique_ptr< CDBIterator > pcursor
Definition: txdb.cpp:234
bool GetKey(COutPoint &key) const override
Definition: txdb.cpp:259
~CCoinsViewDBCursor()=default
bool GetValue(Coin &coin) const override
Definition: txdb.cpp:269
CCoinsViewDBCursor(CDBIterator *pcursorIn, const uint256 &in_block_hash)
Definition: txdb.cpp:223
bool Valid() const override
Definition: txdb.cpp:274
void Next() override
Definition: txdb.cpp:279
std::pair< char, COutPoint > keyTmp
Definition: txdb.cpp:235
CCoinsView backed by the coin database (chainstate/)
Definition: txdb.h:37
Mutex m_db_mutex
Prevents CompactFull() from using m_db while ResizeCache() replaces it.
Definition: txdb.h:42
std::shared_future< void > CompactFullAsync() EXCLUSIVE_LOCKS_REQUIRED(cs_main
Perform a full compaction of the underlying LevelDB on a one-shot background thread.
Definition: txdb.cpp:198
std::shared_future< void > m_compaction
Definition: txdb.h:44
bool HaveCoin(const COutPoint &outpoint) const override
Just check whether a given outpoint is unspent.
Definition: txdb.cpp:102
std::unique_ptr< CDBWrapper > m_db
Definition: txdb.h:43
~CCoinsViewDB() override
Definition: txdb.cpp:63
CCoinsViewDB(DBParams db_params, CoinsViewOptions options)
Definition: txdb.cpp:58
std::optional< std::string > GetDBProperty(const std::string &property)
Return an underlying LevelDB property value, if available.
Definition: txdb.cpp:193
std::optional< Coin > PeekCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
Definition: txdb.cpp:97
uint256 GetBestBlock() const override
Retrieve the block hash whose state this CCoinsView currently represents.
Definition: txdb.cpp:107
std::optional< Coin > GetCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
Definition: txdb.cpp:88
void ResizeCache(size_t new_cache_size) EXCLUSIVE_LOCKS_REQUIRED(cs_main
Dynamically alter the underlying leveldb cache size.
Definition: txdb.cpp:73
std::unique_ptr< CCoinsViewCursor > Cursor() const override
Get a cursor to iterate over the whole state. Implementations may return nullptr.
Definition: txdb.cpp:240
CoinsViewOptions m_options
Definition: txdb.h:40
std::vector< uint256 > GetHeadBlocks() const override
Retrieve the range of blocks that may have been only partially written.
Definition: txdb.cpp:114
void BatchWrite(CoinsViewCacheCursor &cursor, const uint256 &block_hash) override
Do a bulk modification (multiple Coin changes + BestBlock change).
Definition: txdb.cpp:122
bool NeedsUpgrade()
Whether an unsupported database format is used.
Definition: txdb.cpp:37
size_t EstimateSize() const override
Estimate database size.
Definition: txdb.cpp:188
DBParams m_db_params
Definition: txdb.h:39
Batch of changes queued to be written to a CDBWrapper.
Definition: dbwrapper.h:83
void Erase(const K &key)
Definition: dbwrapper.h:116
void Write(const K &key, const V &value)
Definition: dbwrapper.h:107
void Clear()
Definition: dbwrapper.cpp:171
size_t ApproximateSize() const
Definition: dbwrapper.cpp:192
CDBIterator * NewIterator()
Definition: dbwrapper.cpp:380
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition: transaction.h:29
A UTXO entry.
Definition: coins.h:35
Fast randomness source.
Definition: random.h:386
I randrange(I range) noexcept
Generate a random integer in the range [0..range), with range > 0.
Definition: random.h:254
constexpr bool IsNull() const
Definition: uint256.h:49
256-bit opaque blob.
Definition: uint256.h:196
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
static std::string PathToString(const path &path)
Convert path object to a byte string.
Definition: fs.h:162
#define LogWarning(...)
Definition: log.h:126
#define LogInfo(...)
Definition: log.h:125
#define LogError(...)
Definition: log.h:127
#define LogDebug(category,...)
Definition: log.h:143
@ COINDB
Definition: categories.h:33
@ BENCH
Definition: categories.h:20
void ThreadRename(const std::string &)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
Definition: threadnames.cpp:55
#define VARINT(obj)
Definition: serialize.h:494
#define SERIALIZE_METHODS(cls, obj)
Implement the Serialize and Unserialize methods by delegating to a single templated static method tha...
Definition: serialize.h:232
#define READWRITE(...)
Definition: serialize.h:148
constexpr CoinEntry(const CAmount v, const State s)
Cursor for iterating over the linked list of flagged entries in CCoinsViewCache.
Definition: coins.h:261
CoinsCachePair * NextAndMaybeErase(CoinsCachePair &current) noexcept
Return the next entry after current, possibly erasing current.
Definition: coins.h:279
size_t GetTotalCount() const noexcept
Definition: coins.h:298
size_t GetDirtyCount() const noexcept
Definition: coins.h:297
CoinsCachePair * Begin() const noexcept
Definition: coins.h:275
CoinsCachePair * End() const noexcept
Definition: coins.h:276
User-controlled performance and debug options.
Definition: txdb.h:28
int simulate_crash_ratio
If non-zero, randomly exit when the database is flushed with (1/ratio) probability.
Definition: txdb.h:32
size_t batch_write_bytes
Maximum database write batch size in bytes.
Definition: txdb.h:30
Application-specific storage settings.
Definition: dbwrapper.h:38
bool wipe_data
If true, remove all existing data.
Definition: dbwrapper.h:46
size_t cache_bytes
Configures various leveldb cache settings.
Definition: dbwrapper.h:42
fs::path path
Location in the filesystem where leveldb data will be stored.
Definition: dbwrapper.h:40
bool memory_only
If true, use leveldb's memory environment.
Definition: dbwrapper.h:44
#define LOCK(cs)
Definition: sync.h:268
FastRandomContext rng
Definition: dbwrapper.cpp:414
static int count
#define LOG_TIME_MILLIS_WITH_CATEGORY(end_msg, log_category)
Definition: timer.h:103
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1172
static constexpr size_t WARN_FLUSH_COINS_COUNT
Definition: txdb.cpp:35
static constexpr uint8_t DB_HEAD_BLOCKS
Definition: txdb.cpp:30
static constexpr uint8_t DB_BEST_BLOCK
Definition: txdb.cpp:29
static constexpr uint8_t DB_COIN
Definition: txdb.cpp:28
static constexpr uint8_t DB_COINS
Definition: txdb.cpp:32
AssertLockHeld(pool.cs)
assert(!tx.IsCoinBase())
std::vector< std::common_type_t< Args... > > Vector(Args &&... args)
Construct a vector with the specified elements.
Definition: vector.h:23