129 lines
3.8 KiB
C++
129 lines
3.8 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "wallet_ismine.h"
|
|
|
|
#include "key.h"
|
|
#include "keystore.h"
|
|
#include "script/script.h"
|
|
#include "script/standard.h"
|
|
#include "cc/eval.h"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
using namespace std;
|
|
|
|
typedef vector<unsigned char> valtype;
|
|
|
|
unsigned int HaveKeys(const vector<valtype>& pubkeys, const CKeyStore& keystore)
|
|
{
|
|
unsigned int nResult = 0;
|
|
BOOST_FOREACH(const valtype& pubkey, pubkeys)
|
|
{
|
|
CKeyID keyID = CPubKey(pubkey).GetID();
|
|
if (keystore.HaveKey(keyID))
|
|
++nResult;
|
|
}
|
|
return nResult;
|
|
}
|
|
|
|
isminetype IsMine(const CKeyStore &keystore, const CTxDestination& dest)
|
|
{
|
|
CScript script = GetScriptForDestination(dest);
|
|
return IsMine(keystore, script);
|
|
}
|
|
|
|
isminetype IsMine(const CKeyStore &keystore, const CScript& _scriptPubKey)
|
|
{
|
|
vector<valtype> vSolutions;
|
|
txnouttype whichType;
|
|
CScript scriptPubKey = _scriptPubKey;
|
|
|
|
if (scriptPubKey.IsCheckLockTimeVerify())
|
|
{
|
|
uint8_t pushOp = scriptPubKey[0];
|
|
uint32_t scriptStart = pushOp + 3;
|
|
|
|
// continue with post CLTV script
|
|
scriptPubKey = CScript(scriptPubKey.size() > scriptStart ? scriptPubKey.begin() + scriptStart : scriptPubKey.end(), scriptPubKey.end());
|
|
}
|
|
|
|
if (!Solver(scriptPubKey, whichType, vSolutions)) {
|
|
if (keystore.HaveWatchOnly(scriptPubKey))
|
|
return ISMINE_WATCH_ONLY;
|
|
return ISMINE_NO;
|
|
}
|
|
|
|
CKeyID keyID;
|
|
switch (whichType)
|
|
{
|
|
case TX_NONSTANDARD:
|
|
case TX_NULL_DATA:
|
|
break;
|
|
case TX_PUBKEY:
|
|
keyID = CPubKey(vSolutions[0]).GetID();
|
|
if (keystore.HaveKey(keyID))
|
|
return ISMINE_SPENDABLE;
|
|
break;
|
|
case TX_PUBKEYHASH:
|
|
keyID = CKeyID(uint160(vSolutions[0]));
|
|
if (keystore.HaveKey(keyID))
|
|
return ISMINE_SPENDABLE;
|
|
break;
|
|
case TX_SCRIPTHASH:
|
|
{
|
|
CScriptID scriptID = CScriptID(uint160(vSolutions[0]));
|
|
CScript subscript;
|
|
if (keystore.GetCScript(scriptID, subscript)) {
|
|
isminetype ret = IsMine(keystore, subscript);
|
|
if (ret == ISMINE_SPENDABLE)
|
|
return ret;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case TX_CRYPTOCONDITION:
|
|
{
|
|
// some crypto conditions we consider "mine" if our address is the first specified
|
|
// extra address
|
|
CScript subScript;
|
|
vector<valtype> vParams;
|
|
COptCCParams p;
|
|
if (scriptPubKey.IsPayToCryptoCondition(&subScript, vParams))
|
|
{
|
|
if (vParams.size() > 1)
|
|
{
|
|
p = COptCCParams(vParams[0]);
|
|
// if we are the primary output on a coinbase guard, it is ours
|
|
if (p.IsValid() && p.evalCode == EVAL_COINBASEGUARD && vParams[1].size() == 20)
|
|
{
|
|
CKeyID adr = CKeyID(uint160(vParams[1]));
|
|
if (keystore.HaveKey(keyID))
|
|
return ISMINE_SPENDABLE;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
case TX_MULTISIG:
|
|
{
|
|
// Only consider transactions "mine" if we own ALL the
|
|
// keys involved. Multi-signature transactions that are
|
|
// partially owned (somebody else has a key that can spend
|
|
// them) enable spend-out-from-under-you attacks, especially
|
|
// in shared-wallet situations.
|
|
vector<valtype> keys(vSolutions.begin()+1, vSolutions.begin()+vSolutions.size()-1);
|
|
if (HaveKeys(keys, keystore) == keys.size())
|
|
return ISMINE_SPENDABLE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (keystore.HaveWatchOnly(scriptPubKey))
|
|
return ISMINE_WATCH_ONLY;
|
|
return ISMINE_NO;
|
|
}
|