quorum/core/block_processor.go

385 lines
11 KiB
Go
Raw Normal View History

2014-12-04 01:28:02 -08:00
package core
2014-02-14 14:56:09 -08:00
import (
2014-06-30 04:09:04 -07:00
"fmt"
2014-08-08 06:36:59 -07:00
"math/big"
"sync"
2015-01-21 15:24:30 -08:00
"time"
2014-08-08 06:36:59 -07:00
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-23 10:27:05 -07:00
"github.com/ethereum/go-ethereum/core/state"
2015-03-16 15:48:18 -07:00
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
2014-10-31 04:56:05 -07:00
"github.com/ethereum/go-ethereum/logger"
2015-04-04 04:41:58 -07:00
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/params"
2014-12-10 07:45:16 -08:00
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/rlp"
"gopkg.in/fatih/set.v0"
2014-02-14 14:56:09 -08:00
)
2014-10-31 04:56:05 -07:00
var statelogger = logger.NewLogger("BLOCK")
2015-01-04 15:18:44 -08:00
type BlockProcessor struct {
2015-03-16 03:27:38 -07:00
db common.Database
extraDb common.Database
2014-02-14 14:56:09 -08:00
// Mutex for locking the block processor. Blocks can only be handled one at a time
mutex sync.Mutex
// Canonical block chain
2014-10-20 02:53:11 -07:00
bc *ChainManager
2014-02-14 14:56:09 -08:00
// non-persistent key/value memory storage
mem map[string]*big.Int
// Proof of work used for validating
2014-12-10 07:45:16 -08:00
Pow pow.PoW
2014-12-18 03:18:19 -08:00
txpool *TxPool
// The last attempted block is mainly used for debugging purposes
// This does not have to be a valid block and will be set during
// 'Process' & canonical validation.
lastAttemptedBlock *types.Block
events event.Subscription
2014-12-10 11:26:55 -08:00
eventMux *event.TypeMux
2014-02-14 14:56:09 -08:00
}
2015-03-16 03:27:38 -07:00
func NewBlockProcessor(db, extra common.Database, pow pow.PoW, txpool *TxPool, chainManager *ChainManager, eventMux *event.TypeMux) *BlockProcessor {
2015-01-04 15:18:44 -08:00
sm := &BlockProcessor{
2015-02-26 09:39:05 -08:00
db: db,
extraDb: extra,
2015-02-26 09:39:05 -08:00
mem: make(map[string]*big.Int),
2015-03-03 08:55:23 -08:00
Pow: pow,
2014-12-18 03:18:19 -08:00
bc: chainManager,
eventMux: eventMux,
txpool: txpool,
2014-02-14 14:56:09 -08:00
}
2014-03-05 01:57:32 -08:00
return sm
2014-02-14 14:56:09 -08:00
}
func (sm *BlockProcessor) TransitionState(statedb *state.StateDB, parent, block *types.Block, transientProcess bool) (receipts types.Receipts, err error) {
coinbase := statedb.GetOrNewStateObject(block.Header().Coinbase)
coinbase.SetGasPool(block.Header().GasLimit)
2014-12-02 13:37:45 -08:00
2015-01-05 02:22:02 -08:00
// Process the transactions on to parent state
receipts, err = sm.ApplyTransactions(coinbase, statedb, block, block.Transactions(), transientProcess)
2014-12-02 13:37:45 -08:00
if err != nil {
return nil, err
}
return receipts, nil
}
func (self *BlockProcessor) ApplyTransaction(coinbase *state.StateObject, statedb *state.StateDB, block *types.Block, tx *types.Transaction, usedGas *big.Int, transientProcess bool) (*types.Receipt, *big.Int, error) {
2015-02-04 05:52:59 -08:00
// If we are mining this block and validating we want to set the logs back to 0
//statedb.EmptyLogs()
2015-02-04 05:52:59 -08:00
cb := statedb.GetStateObject(coinbase.Address())
2015-03-12 14:29:10 -07:00
_, gas, err := ApplyMessage(NewEnv(statedb, self.bc, tx, block), tx, cb)
if err != nil && (IsNonceErr(err) || state.IsGasLimitErr(err) || IsInvalidTxErr(err)) {
// If the account is managed, remove the invalid nonce.
from, _ := tx.From()
self.bc.TxState().RemoveNonce(from, tx.Nonce())
return nil, nil, err
}
2015-02-04 05:52:59 -08:00
// Update the state with pending changes
2015-04-01 14:58:26 -07:00
statedb.Update()
2015-02-04 05:52:59 -08:00
2015-03-12 14:29:10 -07:00
cumulative := new(big.Int).Set(usedGas.Add(usedGas, gas))
2015-03-16 15:48:18 -07:00
receipt := types.NewReceipt(statedb.Root().Bytes(), cumulative)
logs := statedb.GetLogs(tx.Hash())
receipt.SetLogs(logs)
2015-02-04 05:52:59 -08:00
receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
2015-04-04 04:41:58 -07:00
glog.V(logger.Debug).Infoln(receipt)
2015-02-04 05:52:59 -08:00
// Notify all subscribers
if !transientProcess {
go self.eventMux.Post(TxPostEvent{tx})
2015-02-26 09:39:05 -08:00
go self.eventMux.Post(logs)
2015-02-04 05:52:59 -08:00
}
2015-03-12 14:29:10 -07:00
return receipt, gas, err
2015-02-04 05:52:59 -08:00
}
2015-02-27 17:56:24 -08:00
func (self *BlockProcessor) ChainManager() *ChainManager {
return self.bc
}
2015-02-04 05:52:59 -08:00
func (self *BlockProcessor) ApplyTransactions(coinbase *state.StateObject, statedb *state.StateDB, block *types.Block, txs types.Transactions, transientProcess bool) (types.Receipts, error) {
2014-06-13 03:45:11 -07:00
var (
receipts types.Receipts
totalUsedGas = big.NewInt(0)
err error
cumulativeSum = new(big.Int)
2014-06-13 03:45:11 -07:00
)
for i, tx := range txs {
statedb.StartRecord(tx.Hash(), block.Hash(), i)
receipt, txGas, err := self.ApplyTransaction(coinbase, statedb, block, tx, totalUsedGas, transientProcess)
if err != nil && (IsNonceErr(err) || state.IsGasLimitErr(err) || IsInvalidTxErr(err)) {
return nil, err
}
if err != nil {
2015-04-04 04:41:58 -07:00
glog.V(logger.Core).Infoln("TX err:", err)
}
receipts = append(receipts, receipt)
2014-07-11 07:04:09 -07:00
2015-02-04 05:52:59 -08:00
cumulativeSum.Add(cumulativeSum, new(big.Int).Mul(txGas, tx.GasPrice()))
}
if block.GasUsed().Cmp(totalUsedGas) != 0 {
return nil, ValidationError(fmt.Sprintf("gas used error (%v / %v)", block.GasUsed(), totalUsedGas))
}
2014-06-11 02:40:40 -07:00
2015-02-05 11:55:03 -08:00
if transientProcess {
2015-03-19 08:19:54 -07:00
go self.eventMux.Post(PendingBlockEvent{block, statedb.Logs()})
2015-02-05 11:55:03 -08:00
}
return receipts, err
}
// Process block will attempt to process the given block's transactions and applies them
// on top of the block's parent state (given it exists) and will return wether it was
// successful or not.
2015-03-19 08:19:54 -07:00
func (sm *BlockProcessor) Process(block *types.Block) (td *big.Int, logs state.Logs, err error) {
2014-02-14 14:56:09 -08:00
// Processing a blocks may never happen simultaneously
2014-03-05 01:57:32 -08:00
sm.mutex.Lock()
defer sm.mutex.Unlock()
2014-02-14 14:56:09 -08:00
header := block.Header()
if sm.bc.HasBlock(header.Hash()) {
2015-03-19 08:19:54 -07:00
return nil, nil, &KnownBlockError{header.Number, header.Hash()}
2014-02-14 14:56:09 -08:00
}
if !sm.bc.HasBlock(header.ParentHash) {
2015-03-19 08:19:54 -07:00
return nil, nil, ParentError(header.ParentHash)
2014-06-23 02:23:18 -07:00
}
parent := sm.bc.GetBlock(header.ParentHash)
return sm.processWithParent(block, parent)
}
2014-06-23 02:23:18 -07:00
2015-03-19 08:19:54 -07:00
func (sm *BlockProcessor) processWithParent(block, parent *types.Block) (td *big.Int, logs state.Logs, err error) {
sm.lastAttemptedBlock = block
// Create a new state based on the parent's root (e.g., create copy)
2015-01-07 04:17:48 -08:00
state := state.New(parent.Root(), sm.db)
2014-06-23 02:23:18 -07:00
2014-12-04 06:13:29 -08:00
// Block validation
2015-03-04 01:49:56 -08:00
if err = sm.ValidateHeader(block.Header(), parent.Header()); err != nil {
2015-04-04 03:40:11 -07:00
return
2014-07-11 07:04:09 -07:00
}
2015-03-04 01:49:56 -08:00
// There can be at most two uncles
if len(block.Uncles()) > 2 {
2015-03-19 08:19:54 -07:00
return nil, nil, ValidationError("Block can only contain one uncle (contained %v)", len(block.Uncles()))
2015-03-04 01:49:56 -08:00
}
receipts, err := sm.TransitionState(state, parent, block, false)
if err != nil {
return
}
header := block.Header()
// Validate the received block's bloom with the one derived from the generated receipts.
// For valid blocks this should always validate to true.
rbloom := types.CreateBloom(receipts)
2015-03-16 15:48:18 -07:00
if rbloom != header.Bloom {
err = fmt.Errorf("unable to replicate block's bloom=%x", rbloom)
return
}
2015-03-25 09:05:29 -07:00
// The transactions Trie's root (R = (Tr [[i, RLP(T1)], [i, RLP(T2)], ... [n, RLP(Tn)]]))
// can be used by light clients to make sure they've received the correct Txs
txSha := types.DeriveSha(block.Transactions())
2015-03-16 15:48:18 -07:00
if txSha != header.TxHash {
err = fmt.Errorf("validating transaction root. received=%x got=%x", header.TxHash, txSha)
2014-11-11 16:36:36 -08:00
return
}
// Tre receipt Trie's root (R = (Tr [[H1, R1], ... [Hn, R1]]))
receiptSha := types.DeriveSha(receipts)
2015-03-16 15:48:18 -07:00
if receiptSha != header.ReceiptHash {
err = fmt.Errorf("validating receipt root. received=%x got=%x", header.ReceiptHash, receiptSha)
return
}
2014-07-21 03:21:34 -07:00
// Verify uncles
if err = sm.VerifyUncles(state, block, parent); err != nil {
return
2014-02-14 14:56:09 -08:00
}
// Accumulate static rewards; block reward, uncle's and uncle inclusion.
AccumulateRewards(state, block)
2014-02-14 14:56:09 -08:00
// Commit state objects/accounts to a temporary trie (does not save)
// used to calculate the state root.
2015-04-01 14:58:26 -07:00
state.Update()
2015-03-16 15:48:18 -07:00
if header.Root != state.Root() {
err = fmt.Errorf("invalid merkle root. received=%x got=%x", header.Root, state.Root())
return
2014-02-14 14:56:09 -08:00
}
// Calculate the td for this block
td = CalculateTD(block, parent)
2015-02-02 20:02:00 -08:00
// Sync the current block's state to the database
state.Sync()
2015-03-23 08:14:33 -07:00
2015-04-04 03:40:11 -07:00
// Remove transactions from the pool
sm.txpool.RemoveSet(block.Transactions())
2014-02-14 14:56:09 -08:00
// This puts transactions in a extra db for rpc
for i, tx := range block.Transactions() {
2015-04-01 03:14:35 -07:00
putTx(sm.extraDb, tx, block, uint64(i))
}
2015-03-19 08:19:54 -07:00
return td, state.Logs(), nil
2014-02-14 14:56:09 -08:00
}
// Validates the current block. Returns an error if the block was invalid,
// an uncle or anything that isn't on the current block chain.
// Validation validates easy over difficult (dagger takes longer time = difficult)
2015-03-04 01:49:56 -08:00
func (sm *BlockProcessor) ValidateHeader(block, parent *types.Header) error {
if big.NewInt(int64(len(block.Extra))).Cmp(params.MaximumExtraDataSize) == 1 {
2015-03-04 01:49:56 -08:00
return fmt.Errorf("Block extra data too long (%d)", len(block.Extra))
2015-01-05 15:17:05 -08:00
}
expd := CalcDifficulty(block, parent)
2015-03-04 01:49:56 -08:00
if expd.Cmp(block.Difficulty) != 0 {
return fmt.Errorf("Difficulty check failed for block %v, %v", block.Difficulty, expd)
}
// block.gasLimit - parent.gasLimit <= parent.gasLimit / GasLimitBoundDivisor
2015-03-04 01:49:56 -08:00
a := new(big.Int).Sub(block.GasLimit, parent.GasLimit)
a.Abs(a)
b := new(big.Int).Div(parent.GasLimit, params.GasLimitBoundDivisor)
if !(a.Cmp(b) < 0) || (block.GasLimit.Cmp(params.MinGasLimit) == -1) {
2015-03-04 01:49:56 -08:00
return fmt.Errorf("GasLimit check failed for block %v (%v > %v)", block.GasLimit, a, b)
2015-02-27 07:17:31 -08:00
}
2015-04-04 04:24:01 -07:00
// Allow future blocks up to 10 seconds
if int64(block.Time) > time.Now().Unix()+4 {
2015-02-18 04:14:21 -08:00
return BlockFutureErr
}
2015-03-04 01:49:56 -08:00
if new(big.Int).Sub(block.Number, parent.Number).Cmp(big.NewInt(1)) != 0 {
2015-02-18 04:14:21 -08:00
return BlockNumberErr
2014-02-14 14:56:09 -08:00
}
2015-04-04 09:23:51 -07:00
if block.Time <= parent.Time {
return BlockEqualTSErr //ValidationError("Block timestamp equal or less than previous block (%v - %v)", block.Time, parent.Time)
}
2014-02-14 14:56:09 -08:00
// Verify the nonce of the block. Return an error if it's not valid
2015-03-04 01:49:56 -08:00
if !sm.Pow.Verify(types.NewBlockWithHeader(block)) {
return ValidationError("Block's nonce is invalid (= %x)", block.Nonce)
2014-02-14 14:56:09 -08:00
}
return nil
}
func AccumulateRewards(statedb *state.StateDB, block *types.Block) {
2014-09-15 06:42:12 -07:00
reward := new(big.Int).Set(BlockReward)
for _, uncle := range block.Uncles() {
num := new(big.Int).Add(big.NewInt(8), uncle.Number)
num.Sub(num, block.Number())
r := new(big.Int)
r.Mul(BlockReward, num)
r.Div(r, big.NewInt(8))
statedb.AddBalance(uncle.Coinbase, r)
reward.Add(reward, new(big.Int).Div(BlockReward, big.NewInt(32)))
}
// Get the account associated with the coinbase
statedb.AddBalance(block.Header().Coinbase, reward)
}
func (sm *BlockProcessor) VerifyUncles(statedb *state.StateDB, block, parent *types.Block) error {
ancestors := set.New()
2015-03-04 01:49:56 -08:00
uncles := set.New()
2015-03-16 15:48:18 -07:00
ancestorHeaders := make(map[common.Hash]*types.Header)
2015-01-13 05:57:51 -08:00
for _, ancestor := range sm.bc.GetAncestors(block, 7) {
2015-03-16 15:48:18 -07:00
ancestorHeaders[ancestor.Hash()] = ancestor.Header()
ancestors.Add(ancestor.Hash())
2015-03-04 01:49:56 -08:00
// Include ancestors uncles in the uncle set. Uncles must be unique.
for _, uncle := range ancestor.Uncles() {
2015-03-16 15:48:18 -07:00
uncles.Add(uncle.Hash())
2015-03-04 01:49:56 -08:00
}
}
2015-03-16 15:48:18 -07:00
uncles.Add(block.Hash())
for _, uncle := range block.Uncles() {
2015-03-16 15:48:18 -07:00
if uncles.Has(uncle.Hash()) {
2014-09-14 16:11:01 -07:00
// Error not unique
return UncleError("Uncle not unique")
}
2015-03-04 01:49:56 -08:00
2015-03-16 15:48:18 -07:00
uncles.Add(uncle.Hash())
2014-02-17 16:33:26 -08:00
2015-03-16 15:48:18 -07:00
if ancestors.Has(uncle.Hash()) {
2015-03-04 01:49:56 -08:00
return UncleError("Uncle is ancestor")
}
2015-03-16 15:48:18 -07:00
if !ancestors.Has(uncle.ParentHash) {
return UncleError(fmt.Sprintf("Uncle's parent unknown (%x)", uncle.ParentHash[0:4]))
2014-09-14 16:11:01 -07:00
}
2014-02-17 16:33:26 -08:00
if err := sm.ValidateHeader(uncle, ancestorHeaders[uncle.ParentHash]); err != nil {
2015-03-04 01:49:56 -08:00
return ValidationError(fmt.Sprintf("%v", err))
}
2014-02-17 16:33:26 -08:00
}
2014-02-14 14:56:09 -08:00
return nil
}
2015-01-28 01:23:18 -08:00
func (sm *BlockProcessor) GetLogs(block *types.Block) (logs state.Logs, err error) {
if !sm.bc.HasBlock(block.Header().ParentHash) {
return nil, ParentError(block.Header().ParentHash)
}
sm.lastAttemptedBlock = block
var (
parent = sm.bc.GetBlock(block.Header().ParentHash)
state = state.New(parent.Root(), sm.db)
2015-01-28 01:23:18 -08:00
)
sm.TransitionState(state, parent, block, true)
2015-01-28 01:23:18 -08:00
return state.Logs(), nil
}
2015-04-01 03:14:35 -07:00
func putTx(db common.Database, tx *types.Transaction, block *types.Block, i uint64) {
rlpEnc, err := rlp.EncodeToBytes(tx)
if err != nil {
2015-04-04 04:41:58 -07:00
glog.V(logger.Debug).Infoln("Failed encoding tx", err)
return
}
2015-03-16 15:48:18 -07:00
db.Put(tx.Hash().Bytes(), rlpEnc)
2015-04-01 03:14:35 -07:00
var txExtra struct {
BlockHash common.Hash
BlockIndex uint64
Index uint64
}
2015-04-01 03:14:35 -07:00
txExtra.BlockHash = block.Hash()
txExtra.BlockIndex = block.NumberU64()
txExtra.Index = i
rlpMeta, err := rlp.EncodeToBytes(txExtra)
if err != nil {
2015-04-04 04:41:58 -07:00
glog.V(logger.Debug).Infoln("Failed encoding tx meta data", err)
return
}
2015-04-01 03:14:35 -07:00
db.Put(append(tx.Hash().Bytes(), 0x0001), rlpMeta)
}