2011-08-09 13:27:58 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-26 09:35:06 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2011-06-01 18:27:05 +02:00
|
|
|
#ifndef BITCOIN_KEYSTORE_H
|
|
|
|
#define BITCOIN_KEYSTORE_H
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <hdchain.h>
|
|
|
|
#include <key.h>
|
|
|
|
#include <pubkey.h>
|
|
|
|
#include <script/script.h>
|
2018-03-27 20:16:45 +02:00
|
|
|
#include <script/sign.h>
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <script/standard.h>
|
|
|
|
#include <sync.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-05-06 19:40:58 +02:00
|
|
|
#include <boost/signals2/signal.hpp>
|
2012-04-16 14:56:45 +02:00
|
|
|
|
2012-03-26 16:48:23 +02:00
|
|
|
/** A virtual base class for key stores */
|
2018-03-27 20:16:45 +02:00
|
|
|
class CKeyStore : public SigningProvider
|
CWallet class
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore.
* A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around.
* Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter
* CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions.
* Some code was moved from CWalletDB to CWallet, such as handling of reserve keys.
* Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument.
* The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable.
* Functions in main.cpp and db.cpp that are not used by other modules are marked static.
* The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-01 18:28:20 +02:00
|
|
|
{
|
2011-08-26 20:37:23 +02:00
|
|
|
public:
|
2014-10-26 09:35:06 +01:00
|
|
|
//! Add a key to the store.
|
2013-05-01 06:52:05 +02:00
|
|
|
virtual bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey) =0;
|
2011-11-07 00:05:42 +01:00
|
|
|
|
2014-10-26 09:35:06 +01:00
|
|
|
//! Check whether a key corresponding to a given address is present in the store.
|
2012-05-14 23:44:52 +02:00
|
|
|
virtual bool HaveKey(const CKeyID &address) const =0;
|
2017-09-07 22:03:41 +02:00
|
|
|
virtual std::set<CKeyID> GetKeys() const =0;
|
2011-11-07 00:05:42 +01:00
|
|
|
|
2014-10-26 09:35:06 +01:00
|
|
|
//! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
|
2012-01-05 03:40:52 +01:00
|
|
|
virtual bool AddCScript(const CScript& redeemScript) =0;
|
2012-05-14 23:44:52 +02:00
|
|
|
virtual bool HaveCScript(const CScriptID &hash) const =0;
|
2017-12-21 11:29:51 +01:00
|
|
|
virtual std::set<CScriptID> GetCScripts() const =0;
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2014-10-26 09:35:06 +01:00
|
|
|
//! Support for Watch-only addresses
|
2014-06-09 21:11:59 +02:00
|
|
|
virtual bool AddWatchOnly(const CScript &dest) =0;
|
2014-07-26 21:05:11 +02:00
|
|
|
virtual bool RemoveWatchOnly(const CScript &dest) =0;
|
2014-06-09 21:11:59 +02:00
|
|
|
virtual bool HaveWatchOnly(const CScript &dest) const =0;
|
2014-07-26 21:05:11 +02:00
|
|
|
virtual bool HaveWatchOnly() const =0;
|
2011-06-25 14:57:32 +02:00
|
|
|
};
|
|
|
|
|
2012-03-26 16:48:23 +02:00
|
|
|
/** Basic key store, that keeps keys in an address->secret map */
|
2011-06-25 14:57:32 +02:00
|
|
|
class CBasicKeyStore : public CKeyStore
|
|
|
|
{
|
|
|
|
protected:
|
2018-03-27 20:42:09 +02:00
|
|
|
mutable CCriticalSection cs_KeyStore;
|
|
|
|
|
2018-07-12 14:03:51 +02:00
|
|
|
using KeyMap = std::map<CKeyID, CKey>;
|
|
|
|
using WatchKeyMap = std::map<CKeyID, CPubKey>;
|
|
|
|
using ScriptMap = std::map<CScriptID, CScript>;
|
|
|
|
using WatchOnlySet = std::set<CScript>;
|
|
|
|
|
2018-07-11 21:09:19 +02:00
|
|
|
KeyMap mapKeys GUARDED_BY(cs_KeyStore);
|
|
|
|
WatchKeyMap mapWatchKeys GUARDED_BY(cs_KeyStore);
|
|
|
|
ScriptMap mapScripts GUARDED_BY(cs_KeyStore);
|
|
|
|
WatchOnlySet setWatchOnly GUARDED_BY(cs_KeyStore);
|
2017-05-29 13:51:40 +02:00
|
|
|
/* the HD chain data model*/
|
2018-07-11 21:09:19 +02:00
|
|
|
CHDChain hdChain GUARDED_BY(cs_KeyStore);
|
2011-06-25 14:57:32 +02:00
|
|
|
|
|
|
|
public:
|
2018-02-15 08:29:15 +01:00
|
|
|
bool AddKeyPubKey(const CKey& key, const CPubKey &pubkey) override;
|
2018-03-27 20:42:09 +02:00
|
|
|
bool AddKey(const CKey &key) { return AddKeyPubKey(key, key.GetPubKey()); }
|
2018-02-15 08:29:15 +01:00
|
|
|
bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const override;
|
2020-02-04 13:33:36 +01:00
|
|
|
bool HaveKey(const CKeyID &address) const override;
|
|
|
|
std::set<CKeyID> GetKeys() const override;
|
|
|
|
bool GetKey(const CKeyID &address, CKey &keyOut) const override;
|
2017-09-05 03:06:09 +02:00
|
|
|
bool AddCScript(const CScript& redeemScript) override;
|
|
|
|
bool HaveCScript(const CScriptID &hash) const override;
|
2017-12-21 11:29:51 +01:00
|
|
|
std::set<CScriptID> GetCScripts() const override;
|
2017-09-05 03:06:09 +02:00
|
|
|
bool GetCScript(const CScriptID &hash, CScript& redeemScriptOut) const override;
|
|
|
|
|
|
|
|
bool AddWatchOnly(const CScript &dest) override;
|
|
|
|
bool RemoveWatchOnly(const CScript &dest) override;
|
|
|
|
bool HaveWatchOnly(const CScript &dest) const override;
|
|
|
|
bool HaveWatchOnly() const override;
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2018-02-15 08:29:15 +01:00
|
|
|
virtual bool GetHDChain(CHDChain& hdChainRet) const;
|
2011-06-25 14:57:32 +02:00
|
|
|
};
|
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_KEYSTORE_H
|