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