state_processor.go 6.07 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

17 18 19
package core

import (
20 21
	"fmt"

22
	"github.com/ethereum/go-ethereum/common"
23 24
	"github.com/ethereum/go-ethereum/consensus"
	"github.com/ethereum/go-ethereum/consensus/misc"
25 26 27 28
	"github.com/ethereum/go-ethereum/core/state"
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/core/vm"
	"github.com/ethereum/go-ethereum/crypto"
29
	"github.com/ethereum/go-ethereum/params"
30 31
)

32 33 34 35
// StateProcessor is a basic Processor, which takes care of transitioning
// state from one point to another.
//
// StateProcessor implements Processor.
36
type StateProcessor struct {
37 38 39
	config *params.ChainConfig // Chain configuration options
	bc     *BlockChain         // Canonical block chain
	engine consensus.Engine    // Consensus engine used for block rewards
40 41
}

42
// NewStateProcessor initialises a new StateProcessor.
43
func NewStateProcessor(config *params.ChainConfig, bc *BlockChain, engine consensus.Engine) *StateProcessor {
44 45 46
	return &StateProcessor{
		config: config,
		bc:     bc,
47
		engine: engine,
48
	}
49 50 51 52 53 54 55 56 57
}

// Process processes the state changes according to the Ethereum rules by running
// the transaction messages using the statedb and applying any rewards to both
// the processor (coinbase) and any included uncles.
//
// Process returns the receipts and logs accumulated during the process and
// returns the amount of gas that was used in the process. If any of the
// transactions failed to execute due to insufficient gas it will return an error.
58
func (p *StateProcessor) Process(block *types.Block, statedb *state.StateDB, cfg vm.Config) (types.Receipts, []*types.Log, uint64, error) {
59
	var (
60 61 62 63 64
		receipts types.Receipts
		usedGas  = new(uint64)
		header   = block.Header()
		allLogs  []*types.Log
		gp       = new(GasPool).AddGas(block.GasLimit())
65
	)
66
	// Mutate the block and state according to any hard-fork specs
67
	if p.config.DAOForkSupport && p.config.DAOForkBlock != nil && p.config.DAOForkBlock.Cmp(block.Number()) == 0 {
68
		misc.ApplyDAOHardFork(statedb)
69
	}
70 71
	blockContext := NewEVMBlockContext(header, p.bc, nil)
	vmenv := vm.NewEVM(blockContext, vm.TxContext{}, statedb, p.config, cfg)
72
	// Iterate over and process the individual transactions
73
	for i, tx := range block.Transactions() {
74 75 76 77
		msg, err := tx.AsMessage(types.MakeSigner(p.config, header.Number))
		if err != nil {
			return nil, nil, 0, err
		}
78
		statedb.Prepare(tx.Hash(), block.Hash(), i)
79
		receipt, err := applyTransaction(msg, p.config, p.bc, nil, gp, statedb, header, tx, usedGas, vmenv)
80
		if err != nil {
81
			return nil, nil, 0, fmt.Errorf("could not apply tx %d [%v]: %w", i, tx.Hash().Hex(), err)
82 83
		}
		receipts = append(receipts, receipt)
84
		allLogs = append(allLogs, receipt.Logs...)
85
	}
86
	// Finalize the block, applying any consensus engine specific extras (e.g. block rewards)
87
	p.engine.Finalize(p.bc, header, statedb, block.Transactions(), block.Uncles())
88

89
	return receipts, allLogs, *usedGas, nil
90 91
}

92
func applyTransaction(msg types.Message, config *params.ChainConfig, bc ChainContext, author *common.Address, gp *GasPool, statedb *state.StateDB, header *types.Header, tx *types.Transaction, usedGas *uint64, evm *vm.EVM) (*types.Receipt, error) {
93
	// Create a new context to be used in the EVM environment.
94 95
	txContext := NewEVMTxContext(msg)
	evm.Reset(txContext, statedb)
96 97

	// Apply the transaction to the current state (included in the env).
98
	result, err := ApplyMessage(evm, msg, gp)
99
	if err != nil {
100
		return nil, err
101
	}
102 103

	// Update the state with pending changes.
104
	var root []byte
105
	if config.IsByzantium(header.Number) {
106
		statedb.Finalise(true)
107 108 109
	} else {
		root = statedb.IntermediateRoot(config.IsEIP158(header.Number)).Bytes()
	}
110
	*usedGas += result.UsedGas
111

112 113 114 115 116 117 118 119
	// Create a new receipt for the transaction, storing the intermediate root and gas used
	// by the tx.
	receipt := &types.Receipt{Type: tx.Type(), PostState: root, CumulativeGasUsed: *usedGas}
	if result.Failed() {
		receipt.Status = types.ReceiptStatusFailed
	} else {
		receipt.Status = types.ReceiptStatusSuccessful
	}
120
	receipt.TxHash = tx.Hash()
121
	receipt.GasUsed = result.UsedGas
122 123

	// If the transaction created a contract, store the creation address in the receipt.
124
	if msg.To() == nil {
125
		receipt.ContractAddress = crypto.CreateAddress(evm.TxContext.Origin, tx.Nonce())
126
	}
127 128

	// Set the receipt logs and create the bloom filter.
129
	receipt.Logs = statedb.GetLogs(tx.Hash())
130
	receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
131 132 133
	receipt.BlockHash = statedb.BlockHash()
	receipt.BlockNumber = header.Number
	receipt.TransactionIndex = uint(statedb.TxIndex())
134
	return receipt, err
135
}
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

// ApplyTransaction attempts to apply a transaction to the given state database
// and uses the input parameters for its environment. It returns the receipt
// for the transaction, gas used and an error if the transaction failed,
// indicating the block was invalid.
func ApplyTransaction(config *params.ChainConfig, bc ChainContext, author *common.Address, gp *GasPool, statedb *state.StateDB, header *types.Header, tx *types.Transaction, usedGas *uint64, cfg vm.Config) (*types.Receipt, error) {
	msg, err := tx.AsMessage(types.MakeSigner(config, header.Number))
	if err != nil {
		return nil, err
	}
	// Create a new context to be used in the EVM environment
	blockContext := NewEVMBlockContext(header, bc, author)
	vmenv := vm.NewEVM(blockContext, vm.TxContext{}, statedb, config, cfg)
	return applyTransaction(msg, config, bc, author, gp, statedb, header, tx, usedGas, vmenv)
}