2011-08-09 13:27:58 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2009-2018 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
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <key.h>
|
|
|
|
#include <pubkey.h>
|
|
|
|
#include <script/script.h>
|
2018-03-18 03:19:09 +01:00
|
|
|
#include <script/sign.h>
|
2017-11-10 01:57:53 +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-18 03:19:09 +01: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-07-23 23:32:57 +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-11-11 08:49:27 +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-23 01:57:33 +01:00
|
|
|
mutable CCriticalSection cs_KeyStore;
|
|
|
|
|
2018-07-10 20:55:53 +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-04-29 20:14:27 +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);
|
2011-06-25 14:57:32 +02:00
|
|
|
|
2018-04-25 22:27:36 +02:00
|
|
|
void ImplicitlyLearnRelatedKeyScripts(const CPubKey& pubkey) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore);
|
2017-12-01 01:49:04 +01:00
|
|
|
|
2011-06-25 14:57:32 +02:00
|
|
|
public:
|
2017-06-20 21:58:56 +02:00
|
|
|
bool AddKeyPubKey(const CKey& key, const CPubKey &pubkey) override;
|
2018-03-23 01:57:09 +01:00
|
|
|
bool AddKey(const CKey &key) { return AddKeyPubKey(key, key.GetPubKey()); }
|
2017-06-20 21:58:56 +02:00
|
|
|
bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const override;
|
2017-09-07 22:24:20 +02:00
|
|
|
bool HaveKey(const CKeyID &address) const override;
|
|
|
|
std::set<CKeyID> GetKeys() const override;
|
|
|
|
bool GetKey(const CKeyID &address, CKey &keyOut) const override;
|
2017-06-29 12:57:45 +02:00
|
|
|
bool AddCScript(const CScript& redeemScript) override;
|
|
|
|
bool HaveCScript(const CScriptID &hash) const override;
|
2017-11-11 08:49:27 +01:00
|
|
|
std::set<CScriptID> GetCScripts() const override;
|
2017-06-29 12:57:45 +02:00
|
|
|
bool GetCScript(const CScriptID &hash, CScript& redeemScriptOut) const override;
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2017-06-29 12:57:45 +02:00
|
|
|
bool AddWatchOnly(const CScript &dest) override;
|
|
|
|
bool RemoveWatchOnly(const CScript &dest) override;
|
|
|
|
bool HaveWatchOnly(const CScript &dest) const override;
|
|
|
|
bool HaveWatchOnly() const override;
|
2011-06-25 14:57:32 +02:00
|
|
|
};
|
|
|
|
|
2017-12-01 01:48:41 +01:00
|
|
|
/** Return the CKeyID of the key involved in a script (if there is a unique one). */
|
|
|
|
CKeyID GetKeyForDestination(const CKeyStore& store, const CTxDestination& dest);
|
|
|
|
|
2018-04-12 23:04:49 +02:00
|
|
|
/** Checks if a CKey is in the given CKeyStore compressed or otherwise*/
|
|
|
|
bool HaveKey(const CKeyStore& store, const CKey& key);
|
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_KEYSTORE_H
|