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 : : #ifndef BITCOIN_WALLET_WALLETDB_H
7 : : #define BITCOIN_WALLET_WALLETDB_H
8 : :
9 : : #include <script/sign.h>
10 : : #include <wallet/db.h>
11 : : #include <wallet/walletutil.h>
12 : : #include <key.h>
13 : :
14 : : #include <stdint.h>
15 : : #include <string>
16 : : #include <vector>
17 : :
18 : : class CScript;
19 : : class uint160;
20 : : class uint256;
21 : : struct CBlockLocator;
22 : :
23 : : namespace wallet {
24 : : class CKeyPool;
25 : : class CMasterKey;
26 : : class CWallet;
27 : : class CWalletTx;
28 : : struct WalletContext;
29 : :
30 : : /**
31 : : * Overview of wallet database classes:
32 : : *
33 : : * - WalletBatch is an abstract modifier object for the wallet database, and encapsulates a database
34 : : * batch update as well as methods to act on the database. It should be agnostic to the database implementation.
35 : : *
36 : : * The following classes are implementation specific:
37 : : * - BerkeleyEnvironment is an environment in which the database exists.
38 : : * - BerkeleyDatabase represents a wallet database.
39 : : * - BerkeleyBatch is a low-level database batch update.
40 : : */
41 : :
42 : : static const bool DEFAULT_FLUSHWALLET = true;
43 : :
44 : : /** Error statuses for the wallet database.
45 : : * Values are in order of severity. When multiple errors occur, the most severe (highest value) will be returned.
46 : : */
47 : : enum class DBErrors : int
48 : : {
49 : : LOAD_OK = 0,
50 : : NEED_RESCAN = 1,
51 : : NEED_REWRITE = 2,
52 : : EXTERNAL_SIGNER_SUPPORT_REQUIRED = 3,
53 : : NONCRITICAL_ERROR = 4,
54 : : TOO_NEW = 5,
55 : : UNKNOWN_DESCRIPTOR = 6,
56 : : LOAD_FAIL = 7,
57 : : UNEXPECTED_LEGACY_ENTRY = 8,
58 : : CORRUPT = 9,
59 : : };
60 : :
61 : : namespace DBKeys {
62 : : extern const std::string ACENTRY;
63 : : extern const std::string ACTIVEEXTERNALSPK;
64 : : extern const std::string ACTIVEINTERNALSPK;
65 : : extern const std::string BESTBLOCK;
66 : : extern const std::string BESTBLOCK_NOMERKLE;
67 : : extern const std::string CRYPTED_KEY;
68 : : extern const std::string CSCRIPT;
69 : : extern const std::string DEFAULTKEY;
70 : : extern const std::string DESTDATA;
71 : : extern const std::string FLAGS;
72 : : extern const std::string HDCHAIN;
73 : : extern const std::string KEY;
74 : : extern const std::string KEYMETA;
75 : : extern const std::string LOCKED_UTXO;
76 : : extern const std::string MASTER_KEY;
77 : : extern const std::string MINVERSION;
78 : : extern const std::string NAME;
79 : : extern const std::string OLD_KEY;
80 : : extern const std::string ORDERPOSNEXT;
81 : : extern const std::string POOL;
82 : : extern const std::string PURPOSE;
83 : : extern const std::string SETTINGS;
84 : : extern const std::string TX;
85 : : extern const std::string VERSION;
86 : : extern const std::string WALLETDESCRIPTOR;
87 : : extern const std::string WALLETDESCRIPTORCKEY;
88 : : extern const std::string WALLETDESCRIPTORKEY;
89 : : extern const std::string WATCHMETA;
90 : : extern const std::string WATCHS;
91 : :
92 : : // Keys in this set pertain only to the legacy wallet (LegacyScriptPubKeyMan) and are removed during migration from legacy to descriptors.
93 : : extern const std::unordered_set<std::string> LEGACY_TYPES;
94 : : } // namespace DBKeys
95 : :
96 : : /* simple HD chain data model */
97 : : class CHDChain
98 : : {
99 : : public:
100 : : uint32_t nExternalChainCounter;
101 : : uint32_t nInternalChainCounter;
102 : : CKeyID seed_id; //!< seed hash160
103 : : int64_t m_next_external_index{0}; // Next index in the keypool to be used. Memory only.
104 : : int64_t m_next_internal_index{0}; // Next index in the keypool to be used. Memory only.
105 : :
106 : : static const int VERSION_HD_BASE = 1;
107 : : static const int VERSION_HD_CHAIN_SPLIT = 2;
108 : : static const int CURRENT_VERSION = VERSION_HD_CHAIN_SPLIT;
109 : : int nVersion;
110 : :
111 : 0 : CHDChain() { SetNull(); }
112 : :
113 : 0 : SERIALIZE_METHODS(CHDChain, obj)
114 : : {
115 : 0 : READWRITE(obj.nVersion, obj.nExternalChainCounter, obj.seed_id);
116 [ # # ]: 0 : if (obj.nVersion >= VERSION_HD_CHAIN_SPLIT) {
117 : 0 : READWRITE(obj.nInternalChainCounter);
118 : : }
119 : 0 : }
120 : :
121 : 0 : void SetNull()
122 : : {
123 : 0 : nVersion = CHDChain::CURRENT_VERSION;
124 : 0 : nExternalChainCounter = 0;
125 : 0 : nInternalChainCounter = 0;
126 : 0 : seed_id.SetNull();
127 : : }
128 : :
129 : 0 : bool operator==(const CHDChain& chain) const
130 : : {
131 [ # # # # : 0 : return seed_id == chain.seed_id;
# # ]
132 : : }
133 : : };
134 : :
135 : 6237 : class CKeyMetadata
136 : : {
137 : : public:
138 : : static const int VERSION_BASIC=1;
139 : : static const int VERSION_WITH_HDDATA=10;
140 : : static const int VERSION_WITH_KEY_ORIGIN = 12;
141 : : static const int CURRENT_VERSION=VERSION_WITH_KEY_ORIGIN;
142 : : int nVersion;
143 : : int64_t nCreateTime; // 0 means unknown
144 : : std::string hdKeypath; //optional HD/bip32 keypath. Still used to determine whether a key is a seed. Also kept for backwards compatibility
145 : : CKeyID hd_seed_id; //id of the HD seed used to derive this key
146 : : KeyOriginInfo key_origin; // Key origin info with path and fingerprint
147 : : bool has_key_origin = false; //!< Whether the key_origin is useful
148 : :
149 : 6237 : CKeyMetadata()
150 : 6237 : {
151 : 6237 : SetNull();
152 : 6237 : }
153 : 0 : explicit CKeyMetadata(int64_t nCreateTime_)
154 : 0 : {
155 : 0 : SetNull();
156 : 0 : nCreateTime = nCreateTime_;
157 : 0 : }
158 : :
159 : 0 : SERIALIZE_METHODS(CKeyMetadata, obj)
160 : : {
161 : 0 : READWRITE(obj.nVersion, obj.nCreateTime);
162 [ # # ]: 0 : if (obj.nVersion >= VERSION_WITH_HDDATA) {
163 : 0 : READWRITE(obj.hdKeypath, obj.hd_seed_id);
164 : : }
165 [ # # ]: 0 : if (obj.nVersion >= VERSION_WITH_KEY_ORIGIN)
166 : : {
167 : 0 : READWRITE(obj.key_origin);
168 : 0 : READWRITE(obj.has_key_origin);
169 : : }
170 : 0 : }
171 : :
172 : 6237 : void SetNull()
173 : : {
174 : 6237 : nVersion = CKeyMetadata::CURRENT_VERSION;
175 : 6237 : nCreateTime = 0;
176 : 6237 : hdKeypath.clear();
177 : 6237 : hd_seed_id.SetNull();
178 : 6237 : key_origin.clear();
179 : 6237 : has_key_origin = false;
180 : 6237 : }
181 : : };
182 : :
183 : 0 : struct DbTxnListener
184 : : {
185 : : std::function<void()> on_commit, on_abort;
186 : : };
187 : :
188 : : /** Access to the wallet database.
189 : : * Opens the database and provides read and write access to it. Each read and write is its own transaction.
190 : : * Multiple operation transactions can be started using TxnBegin() and committed using TxnCommit()
191 : : * Otherwise the transaction will be committed when the object goes out of scope.
192 : : * Optionally (on by default) it will flush to disk on close.
193 : : * Every 1000 writes will automatically trigger a flush to disk.
194 : : */
195 [ - - + - : 2850606 : class WalletBatch
+ - + - -
- - - - -
- - - - -
- - - - -
- - - - -
- ][ - - -
- + - - -
- - - - ]
[ # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# ]
196 : : {
197 : : private:
198 : : template <typename K, typename T>
199 : 3538836 : bool WriteIC(const K& key, const T& value, bool fOverwrite = true)
200 : : {
201 [ + - ]: 3538836 : if (!m_batch->Write(key, value, fOverwrite)) {
202 : : return false;
203 : : }
204 : 3538836 : m_database.IncrementUpdateCounter();
205 [ + - ]: 3538836 : if (m_database.nUpdateCounter % 1000 == 0) {
206 : 3538836 : m_batch->Flush();
207 : : }
208 : : return true;
209 : : }
210 : :
211 : : template <typename K>
212 : 0 : bool EraseIC(const K& key)
213 : : {
214 [ # # ]: 0 : if (!m_batch->Erase(key)) {
215 : : return false;
216 : : }
217 : 0 : m_database.IncrementUpdateCounter();
218 [ # # ]: 0 : if (m_database.nUpdateCounter % 1000 == 0) {
219 : 0 : m_batch->Flush();
220 : : }
221 : : return true;
222 : : }
223 : :
224 : : public:
225 : 2850606 : explicit WalletBatch(WalletDatabase &database, bool _fFlushOnClose = true) :
226 [ - - - - : 2850606 : m_batch(database.MakeBatch(_fFlushOnClose)),
+ - + - +
- + - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - ]
[ - - - -
- - - - -
- - - - -
- - - - +
- - - - -
- - - - -
- ][ # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # #
# ][ # # #
# # # ]
227 [ # # # # ]: 2850606 : m_database(database)
[ - - + -
+ - + - +
- + - + -
- - - - -
- - - + -
- - + - -
- - - - -
- - - - -
- ]
[ # # # # ]
228 : : {
229 : 0 : }
230 : : WalletBatch(const WalletBatch&) = delete;
231 : : WalletBatch& operator=(const WalletBatch&) = delete;
232 : :
233 : : bool WriteName(const std::string& strAddress, const std::string& strName);
234 : : bool EraseName(const std::string& strAddress);
235 : :
236 : : bool WritePurpose(const std::string& strAddress, const std::string& purpose);
237 : : bool ErasePurpose(const std::string& strAddress);
238 : :
239 : : bool WriteTx(const CWalletTx& wtx);
240 : : bool EraseTx(uint256 hash);
241 : :
242 : : bool WriteKeyMetadata(const CKeyMetadata& meta, const CPubKey& pubkey, const bool overwrite);
243 : : bool WriteKey(const CPubKey& vchPubKey, const CPrivKey& vchPrivKey, const CKeyMetadata &keyMeta);
244 : : bool WriteCryptedKey(const CPubKey& vchPubKey, const std::vector<unsigned char>& vchCryptedSecret, const CKeyMetadata &keyMeta);
245 : : bool WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey);
246 : :
247 : : bool WriteCScript(const uint160& hash, const CScript& redeemScript);
248 : :
249 : : bool WriteWatchOnly(const CScript &script, const CKeyMetadata &keymeta);
250 : : bool EraseWatchOnly(const CScript &script);
251 : :
252 : : bool WriteBestBlock(const CBlockLocator& locator);
253 : : bool ReadBestBlock(CBlockLocator& locator);
254 : :
255 : : // Returns true if wallet stores encryption keys
256 : : bool IsEncrypted();
257 : :
258 : : bool WriteOrderPosNext(int64_t nOrderPosNext);
259 : :
260 : : bool ReadPool(int64_t nPool, CKeyPool& keypool);
261 : : bool WritePool(int64_t nPool, const CKeyPool& keypool);
262 : : bool ErasePool(int64_t nPool);
263 : :
264 : : bool WriteMinVersion(int nVersion);
265 : :
266 : : bool WriteDescriptorKey(const uint256& desc_id, const CPubKey& pubkey, const CPrivKey& privkey);
267 : : bool WriteCryptedDescriptorKey(const uint256& desc_id, const CPubKey& pubkey, const std::vector<unsigned char>& secret);
268 : : bool WriteDescriptor(const uint256& desc_id, const WalletDescriptor& descriptor);
269 : : bool WriteDescriptorDerivedCache(const CExtPubKey& xpub, const uint256& desc_id, uint32_t key_exp_index, uint32_t der_index);
270 : : bool WriteDescriptorParentCache(const CExtPubKey& xpub, const uint256& desc_id, uint32_t key_exp_index);
271 : : bool WriteDescriptorLastHardenedCache(const CExtPubKey& xpub, const uint256& desc_id, uint32_t key_exp_index);
272 : : bool WriteDescriptorCacheItems(const uint256& desc_id, const DescriptorCache& cache);
273 : :
274 : : bool WriteLockedUTXO(const COutPoint& output);
275 : : bool EraseLockedUTXO(const COutPoint& output);
276 : :
277 : : bool WriteAddressPreviouslySpent(const CTxDestination& dest, bool previously_spent);
278 : : bool WriteAddressReceiveRequest(const CTxDestination& dest, const std::string& id, const std::string& receive_request);
279 : : bool EraseAddressReceiveRequest(const CTxDestination& dest, const std::string& id);
280 : : bool EraseAddressData(const CTxDestination& dest);
281 : :
282 : : bool WriteActiveScriptPubKeyMan(uint8_t type, const uint256& id, bool internal);
283 : : bool EraseActiveScriptPubKeyMan(uint8_t type, bool internal);
284 : :
285 : : DBErrors LoadWallet(CWallet* pwallet);
286 : :
287 : : //! write the hdchain model (external chain child index counter)
288 : : bool WriteHDChain(const CHDChain& chain);
289 : :
290 : : //! Delete records of the given types
291 : : bool EraseRecords(const std::unordered_set<std::string>& types);
292 : :
293 : : bool WriteWalletFlags(const uint64_t flags);
294 : : //! Begin a new transaction
295 : : bool TxnBegin();
296 : : //! Commit current transaction
297 : : bool TxnCommit();
298 : : //! Abort current transaction
299 : : bool TxnAbort();
300 : 0 : bool HasActiveTxn() { return m_batch->HasActiveTxn(); }
301 : :
302 : : //! Registers db txn callback functions
303 : : void RegisterTxnListener(const DbTxnListener& l);
304 : :
305 : : private:
306 : : std::unique_ptr<DatabaseBatch> m_batch;
307 : : WalletDatabase& m_database;
308 : :
309 : : // External functions listening to the current db txn outcome.
310 : : // Listeners are cleared at the end of the transaction.
311 : : std::vector<DbTxnListener> m_txn_listeners;
312 : : };
313 : :
314 : : /**
315 : : * Executes the provided function 'func' within a database transaction context.
316 : : *
317 : : * This function ensures that all db modifications performed within 'func()' are
318 : : * atomically committed to the db at the end of the process. And, in case of a
319 : : * failure during execution, all performed changes are rolled back.
320 : : *
321 : : * @param database The db connection instance to perform the transaction on.
322 : : * @param process_desc A description of the process being executed, used for logging purposes in the event of a failure.
323 : : * @param func The function to be executed within the db txn context. It returns a boolean indicating whether to commit or roll back the txn.
324 : : * @return true if the db txn executed successfully, false otherwise.
325 : : */
326 : : bool RunWithinTxn(WalletDatabase& database, std::string_view process_desc, const std::function<bool(WalletBatch&)>& func);
327 : :
328 : : //! Compacts BDB state so that wallet.dat is self-contained (if there are changes)
329 : : void MaybeCompactWalletDB(WalletContext& context);
330 : :
331 : : bool LoadKey(CWallet* pwallet, DataStream& ssKey, DataStream& ssValue, std::string& strErr);
332 : : bool LoadCryptedKey(CWallet* pwallet, DataStream& ssKey, DataStream& ssValue, std::string& strErr);
333 : : bool LoadEncryptionKey(CWallet* pwallet, DataStream& ssKey, DataStream& ssValue, std::string& strErr);
334 : : bool LoadHDChain(CWallet* pwallet, DataStream& ssValue, std::string& strErr);
335 : : } // namespace wallet
336 : :
337 : : #endif // BITCOIN_WALLET_WALLETDB_H
|