2015-05-01 08:28:01 +02:00
|
|
|
// Copyright (c) 2013-2014 The btcsuite developers
|
2013-07-18 16:49:28 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
package blockchain
|
2013-07-18 16:49:28 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-02 18:04:59 +02:00
|
|
|
"math"
|
|
|
|
"runtime"
|
|
|
|
|
2015-01-30 19:08:47 +01:00
|
|
|
"github.com/btcsuite/btcd/txscript"
|
2015-02-05 22:16:39 +01:00
|
|
|
"github.com/btcsuite/btcd/wire"
|
2015-01-15 17:23:47 +01:00
|
|
|
"github.com/btcsuite/btcutil"
|
2013-07-18 16:49:28 +02:00
|
|
|
)
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// txValidateItem holds a transaction along with which input to validate.
|
|
|
|
type txValidateItem struct {
|
|
|
|
txInIndex int
|
2015-02-05 22:16:39 +01:00
|
|
|
txIn *wire.TxIn
|
2014-01-16 19:48:37 +01:00
|
|
|
tx *btcutil.Tx
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// txValidator provides a type which asynchronously validates transaction
|
|
|
|
// inputs. It provides several channels for communication and a processing
|
|
|
|
// function that is intended to be in run multiple goroutines.
|
|
|
|
type txValidator struct {
|
|
|
|
validateChan chan *txValidateItem
|
2014-07-02 18:00:47 +02:00
|
|
|
quitChan chan struct{}
|
2014-01-16 19:48:37 +01:00
|
|
|
resultChan chan error
|
|
|
|
txStore TxStore
|
2015-01-30 19:08:47 +01:00
|
|
|
flags txscript.ScriptFlags
|
2015-09-25 01:22:00 +02:00
|
|
|
sigCache *txscript.SigCache
|
2014-01-16 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// sendResult sends the result of a script pair validation on the internal
|
|
|
|
// result channel while respecting the quit channel. The allows orderly
|
|
|
|
// shutdown when the validation process is aborted early due to a validation
|
|
|
|
// error in one of the other goroutines.
|
|
|
|
func (v *txValidator) sendResult(result error) {
|
|
|
|
select {
|
|
|
|
case v.resultChan <- result:
|
|
|
|
case <-v.quitChan:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateHandler consumes items to validate from the internal validate channel
|
|
|
|
// and returns the result of the validation on the internal result channel. It
|
|
|
|
// must be run as a goroutine.
|
|
|
|
func (v *txValidator) validateHandler() {
|
|
|
|
out:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case txVI := <-v.validateChan:
|
|
|
|
// Ensure the referenced input transaction is available.
|
|
|
|
txIn := txVI.txIn
|
2014-10-01 14:53:47 +02:00
|
|
|
originTxHash := &txIn.PreviousOutPoint.Hash
|
2014-06-27 06:29:57 +02:00
|
|
|
originTx, exists := v.txStore[*originTxHash]
|
2014-01-16 19:48:37 +01:00
|
|
|
if !exists || originTx.Err != nil || originTx.Tx == nil {
|
2014-06-27 06:29:57 +02:00
|
|
|
str := fmt.Sprintf("unable to find input "+
|
2014-01-16 19:48:37 +01:00
|
|
|
"transaction %v referenced from "+
|
2014-06-27 06:29:57 +02:00
|
|
|
"transaction %v", originTxHash,
|
2014-01-16 19:48:37 +01:00
|
|
|
txVI.tx.Sha())
|
2014-06-27 06:29:57 +02:00
|
|
|
err := ruleError(ErrMissingTx, str)
|
2014-01-16 19:48:37 +01:00
|
|
|
v.sendResult(err)
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
originMsgTx := originTx.Tx.MsgTx()
|
|
|
|
|
|
|
|
// Ensure the output index in the referenced transaction
|
|
|
|
// is available.
|
2014-10-01 14:53:47 +02:00
|
|
|
originTxIndex := txIn.PreviousOutPoint.Index
|
2014-01-16 19:48:37 +01:00
|
|
|
if originTxIndex >= uint32(len(originMsgTx.TxOut)) {
|
2014-06-27 06:29:57 +02:00
|
|
|
str := fmt.Sprintf("out of bounds "+
|
2014-01-16 19:48:37 +01:00
|
|
|
"input index %d in transaction %v "+
|
|
|
|
"referenced from transaction %v",
|
2014-06-27 06:29:57 +02:00
|
|
|
originTxIndex, originTxHash,
|
|
|
|
txVI.tx.Sha())
|
|
|
|
err := ruleError(ErrBadTxInput, str)
|
2014-01-16 19:48:37 +01:00
|
|
|
v.sendResult(err)
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new script engine for the script pair.
|
|
|
|
sigScript := txIn.SignatureScript
|
|
|
|
pkScript := originMsgTx.TxOut[originTxIndex].PkScript
|
2015-04-20 22:28:00 +02:00
|
|
|
vm, err := txscript.NewEngine(pkScript, txVI.tx.MsgTx(),
|
2015-09-25 01:22:00 +02:00
|
|
|
txVI.txInIndex, v.flags, v.sigCache)
|
2014-01-16 19:48:37 +01:00
|
|
|
if err != nil {
|
2014-06-27 06:29:57 +02:00
|
|
|
str := fmt.Sprintf("failed to parse input "+
|
|
|
|
"%s:%d which references output %s:%d - "+
|
|
|
|
"%v (input script bytes %x, prev output "+
|
|
|
|
"script bytes %x)", txVI.tx.Sha(),
|
|
|
|
txVI.txInIndex, originTxHash,
|
|
|
|
originTxIndex, err, sigScript, pkScript)
|
|
|
|
err := ruleError(ErrScriptMalformed, str)
|
2014-01-16 19:48:37 +01:00
|
|
|
v.sendResult(err)
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute the script pair.
|
2015-04-20 22:28:00 +02:00
|
|
|
if err := vm.Execute(); err != nil {
|
2014-06-27 06:29:57 +02:00
|
|
|
str := fmt.Sprintf("failed to validate input "+
|
|
|
|
"%s:%d which references output %s:%d - "+
|
|
|
|
"%v (input script bytes %x, prev output "+
|
|
|
|
"script bytes %x)", txVI.tx.Sha(),
|
|
|
|
txVI.txInIndex, originTxHash,
|
|
|
|
originTxIndex, err, sigScript, pkScript)
|
|
|
|
err := ruleError(ErrScriptValidation, str)
|
2014-01-16 19:48:37 +01:00
|
|
|
v.sendResult(err)
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validation succeeded.
|
|
|
|
v.sendResult(nil)
|
|
|
|
|
|
|
|
case <-v.quitChan:
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the scripts for all of the passed transaction inputs using
|
|
|
|
// multiple goroutines.
|
|
|
|
func (v *txValidator) Validate(items []*txValidateItem) error {
|
|
|
|
if len(items) == 0 {
|
2013-07-18 16:49:28 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// Limit the number of goroutines to do script validation based on the
|
|
|
|
// number of processor cores. This help ensure the system stays
|
|
|
|
// reasonably responsive under heavy load.
|
|
|
|
maxGoRoutines := runtime.NumCPU() * 3
|
|
|
|
if maxGoRoutines <= 0 {
|
|
|
|
maxGoRoutines = 1
|
|
|
|
}
|
|
|
|
if maxGoRoutines > len(items) {
|
|
|
|
maxGoRoutines = len(items)
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// Start up validation handlers that are used to asynchronously
|
|
|
|
// validate each transaction input.
|
|
|
|
for i := 0; i < maxGoRoutines; i++ {
|
|
|
|
go v.validateHandler()
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// Validate each of the inputs. The quit channel is closed when any
|
|
|
|
// errors occur so all processing goroutines exit regardless of which
|
|
|
|
// input had the validation error.
|
|
|
|
numInputs := len(items)
|
|
|
|
currentItem := 0
|
|
|
|
processedItems := 0
|
|
|
|
for processedItems < numInputs {
|
|
|
|
// Only send items while there are still items that need to
|
|
|
|
// be processed. The select statement will never select a nil
|
|
|
|
// channel.
|
|
|
|
var validateChan chan *txValidateItem
|
|
|
|
var item *txValidateItem
|
|
|
|
if currentItem < numInputs {
|
|
|
|
validateChan = v.validateChan
|
|
|
|
item = items[currentItem]
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case validateChan <- item:
|
|
|
|
currentItem++
|
|
|
|
|
|
|
|
case err := <-v.resultChan:
|
|
|
|
processedItems++
|
|
|
|
if err != nil {
|
|
|
|
close(v.quitChan)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
close(v.quitChan)
|
2013-07-18 16:49:28 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// newTxValidator returns a new instance of txValidator to be used for
|
|
|
|
// validating transaction scripts asynchronously.
|
2015-09-25 01:22:00 +02:00
|
|
|
func newTxValidator(txStore TxStore, flags txscript.ScriptFlags, sigCache *txscript.SigCache) *txValidator {
|
2014-01-16 19:48:37 +01:00
|
|
|
return &txValidator{
|
|
|
|
validateChan: make(chan *txValidateItem),
|
2014-07-02 18:00:47 +02:00
|
|
|
quitChan: make(chan struct{}),
|
2014-01-16 19:48:37 +01:00
|
|
|
resultChan: make(chan error),
|
|
|
|
txStore: txStore,
|
2015-09-25 01:22:00 +02:00
|
|
|
sigCache: sigCache,
|
2014-01-16 19:48:37 +01:00
|
|
|
flags: flags,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 23:47:37 +02:00
|
|
|
// ValidateTransactionScripts validates the scripts for the passed transaction
|
|
|
|
// using multiple goroutines.
|
2015-09-25 01:22:00 +02:00
|
|
|
func ValidateTransactionScripts(tx *btcutil.Tx, txStore TxStore, flags txscript.ScriptFlags, sigCache *txscript.SigCache) error {
|
2014-01-16 19:48:37 +01:00
|
|
|
// Collect all of the transaction inputs and required information for
|
|
|
|
// validation.
|
|
|
|
txIns := tx.MsgTx().TxIn
|
|
|
|
txValItems := make([]*txValidateItem, 0, len(txIns))
|
|
|
|
for txInIdx, txIn := range txIns {
|
|
|
|
// Skip coinbases.
|
2014-10-01 14:53:47 +02:00
|
|
|
if txIn.PreviousOutPoint.Index == math.MaxUint32 {
|
2014-01-16 19:48:37 +01:00
|
|
|
continue
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
txVI := &txValidateItem{
|
|
|
|
txInIndex: txInIdx,
|
|
|
|
txIn: txIn,
|
|
|
|
tx: tx,
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
txValItems = append(txValItems, txVI)
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
|
|
|
|
// Validate all of the inputs.
|
2015-09-25 01:22:00 +02:00
|
|
|
validator := newTxValidator(txStore, flags, sigCache)
|
2014-01-16 19:48:37 +01:00
|
|
|
if err := validator.Validate(txValItems); err != nil {
|
|
|
|
return err
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
|
|
|
|
return nil
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// checkBlockScripts executes and validates the scripts for all transactions in
|
|
|
|
// the passed block.
|
2015-02-25 21:31:46 +01:00
|
|
|
func checkBlockScripts(block *btcutil.Block, txStore TxStore,
|
2015-09-25 01:22:00 +02:00
|
|
|
scriptFlags txscript.ScriptFlags, sigCache *txscript.SigCache) error {
|
2013-10-12 00:14:58 +02:00
|
|
|
|
2014-01-16 19:48:37 +01:00
|
|
|
// Collect all of the transaction inputs and required information for
|
|
|
|
// validation for all transactions in the block into a single slice.
|
|
|
|
numInputs := 0
|
|
|
|
for _, tx := range block.Transactions() {
|
|
|
|
numInputs += len(tx.MsgTx().TxIn)
|
2013-10-12 00:14:58 +02:00
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
txValItems := make([]*txValidateItem, 0, numInputs)
|
|
|
|
for _, tx := range block.Transactions() {
|
|
|
|
for txInIdx, txIn := range tx.MsgTx().TxIn {
|
|
|
|
// Skip coinbases.
|
2014-10-01 14:53:47 +02:00
|
|
|
if txIn.PreviousOutPoint.Index == math.MaxUint32 {
|
2014-01-16 19:48:37 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
txVI := &txValidateItem{
|
|
|
|
txInIndex: txInIdx,
|
|
|
|
txIn: txIn,
|
|
|
|
tx: tx,
|
2013-10-12 00:14:58 +02:00
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
txValItems = append(txValItems, txVI)
|
2013-10-12 00:14:58 +02:00
|
|
|
}
|
|
|
|
}
|
2014-01-16 19:48:37 +01:00
|
|
|
|
|
|
|
// Validate all of the inputs.
|
2015-09-25 01:22:00 +02:00
|
|
|
validator := newTxValidator(txStore, scriptFlags, sigCache)
|
2014-01-16 19:48:37 +01:00
|
|
|
if err := validator.Validate(txValItems); err != nil {
|
|
|
|
return err
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|