quorum/core/block_processor.go

360 lines
10 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 (
"bytes"
2014-11-04 02:04:02 -08:00
"errors"
2014-06-30 04:09:04 -07:00
"fmt"
2014-08-08 06:36:59 -07:00
"math/big"
"sync"
2014-12-04 01:28:02 -08:00
"github.com/ethereum/go-ethereum/core/types"
2014-10-31 04:37:43 -07:00
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/event"
2014-10-31 04:56:05 -07:00
"github.com/ethereum/go-ethereum/logger"
2014-12-14 10:19:29 -08:00
"github.com/ethereum/go-ethereum/p2p"
2014-12-10 07:45:16 -08:00
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/pow/ezp"
2014-10-31 06:43:14 -07:00
"github.com/ethereum/go-ethereum/state"
"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")
type EthManager interface {
2015-01-04 15:18:44 -08:00
BlockProcessor() *BlockProcessor
2014-10-20 02:53:11 -07:00
ChainManager() *ChainManager
TxPool() *TxPool
PeerCount() int
IsMining() bool
IsListening() bool
2014-12-14 10:19:29 -08:00
Peers() []*p2p.Peer
2014-10-31 04:37:43 -07:00
KeyManager() *crypto.KeyManager
2014-12-14 10:19:29 -08:00
ClientIdentity() p2p.ClientIdentity
2014-08-11 07:23:38 -07:00
Db() ethutil.Database
EventMux() *event.TypeMux
}
2015-01-04 15:18:44 -08:00
type BlockProcessor struct {
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-01-04 15:18:44 -08:00
func NewBlockProcessor(txpool *TxPool, chainManager *ChainManager, eventMux *event.TypeMux) *BlockProcessor {
sm := &BlockProcessor{
2014-12-10 11:26:55 -08:00
mem: make(map[string]*big.Int),
Pow: ezp.New(),
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
}
2015-01-04 15:18:44 -08:00
func (sm *BlockProcessor) TransitionState(statedb *state.StateDB, parent, block *types.Block) (receipts types.Receipts, err error) {
coinbase := statedb.GetOrNewStateObject(block.Header().Coinbase)
coinbase.SetGasPool(CalcGasLimit(parent, block))
2014-12-02 13:37:45 -08:00
// Process the transactions on to current block
receipts, _, _, _, err = sm.ApplyTransactions(coinbase, statedb, block, block.Transactions(), false)
2014-12-02 13:37:45 -08:00
if err != nil {
return nil, err
}
return receipts, nil
}
2015-01-04 15:18:44 -08:00
func (self *BlockProcessor) ApplyTransactions(coinbase *state.StateObject, state *state.StateDB, block *types.Block, txs types.Transactions, transientProcess bool) (types.Receipts, types.Transactions, types.Transactions, types.Transactions, error) {
2014-06-13 03:45:11 -07:00
var (
receipts types.Receipts
handled, unhandled types.Transactions
erroneous types.Transactions
2014-06-13 03:45:11 -07:00
totalUsedGas = big.NewInt(0)
err error
2014-12-02 13:37:45 -08:00
cumulativeSum = new(big.Int)
2014-06-13 03:45:11 -07:00
)
done:
for i, tx := range txs {
// If we are mining this block and validating we want to set the logs back to 0
state.EmptyLogs()
txGas := new(big.Int).Set(tx.Gas())
2014-07-17 05:53:27 -07:00
cb := state.GetStateObject(coinbase.Address())
st := NewStateTransition(NewEnv(state, self.bc, tx, block), tx, cb)
2014-12-18 12:58:26 -08:00
_, err = st.TransitionState()
if err != nil {
2014-06-13 03:45:11 -07:00
switch {
case IsNonceErr(err):
err = nil // ignore error
continue
2014-06-13 03:45:11 -07:00
case IsGasLimitErr(err):
unhandled = txs[i:]
2014-05-28 06:07:11 -07:00
2014-06-13 03:45:11 -07:00
break done
default:
statelogger.Infoln(err)
erroneous = append(erroneous, tx)
err = nil
2014-06-13 03:45:11 -07:00
}
}
2014-11-28 12:20:32 -08:00
txGas.Sub(txGas, st.gas)
cumulativeSum.Add(cumulativeSum, new(big.Int).Mul(txGas, tx.GasPrice()))
2014-11-28 12:20:32 -08:00
// Update the state with pending changes
2014-11-28 12:20:32 -08:00
state.Update(txGas)
cumulative := new(big.Int).Set(totalUsedGas.Add(totalUsedGas, txGas))
receipt := types.NewReceipt(state.Root(), cumulative)
receipt.SetLogs(state.Logs())
receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
chainlogger.Debugln(receipt)
2014-09-28 05:52:58 -07:00
// Notify all subscribers
if !transientProcess {
2014-12-10 11:26:55 -08:00
go self.eventMux.Post(TxPostEvent{tx})
}
2014-09-28 05:52:58 -07:00
receipts = append(receipts, receipt)
2014-06-13 03:45:11 -07:00
handled = append(handled, tx)
2014-07-11 07:04:09 -07:00
if ethutil.Config.Diff && ethutil.Config.DiffType == "all" {
2014-07-11 07:04:09 -07:00
state.CreateOutputForDiff()
}
}
2014-12-02 13:37:45 -08:00
block.Reward = cumulativeSum
block.Header().GasUsed = totalUsedGas
2014-06-11 02:40:40 -07:00
return receipts, handled, unhandled, erroneous, err
}
2015-01-04 15:18:44 -08:00
func (sm *BlockProcessor) Process(block *types.Block) (td *big.Int, msgs state.Messages, 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()) {
return nil, nil, &KnownBlockError{header.Number, header.Hash()}
2014-02-14 14:56:09 -08:00
}
if !sm.bc.HasBlock(header.ParentHash) {
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-01-04 15:18:44 -08:00
func (sm *BlockProcessor) ProcessWithParent(block, parent *types.Block) (td *big.Int, messages state.Messages, err error) {
sm.lastAttemptedBlock = block
state := state.New(parent.Trie().Copy())
2014-06-23 02:23:18 -07:00
2014-12-04 06:13:29 -08:00
// Block validation
if err = sm.ValidateBlock(block, parent); err != nil {
return
2014-07-11 07:04:09 -07:00
}
receipts, err := sm.TransitionState(state, parent, block)
if err != nil {
return
}
header := block.Header()
rbloom := types.CreateBloom(receipts)
if bytes.Compare(rbloom, header.Bloom) != 0 {
err = fmt.Errorf("unable to replicate block's bloom=%x", rbloom)
return
}
txSha := types.DeriveSha(block.Transactions())
if bytes.Compare(txSha, header.TxHash) != 0 {
err = fmt.Errorf("validating transaction root. received=%x got=%x", header.TxHash, txSha)
2014-11-11 16:36:36 -08:00
return
}
receiptSha := types.DeriveSha(receipts)
if bytes.Compare(receiptSha, header.ReceiptHash) != 0 {
2014-12-23 09:35:36 -08:00
fmt.Println("receipts", receipts)
err = fmt.Errorf("validating receipt root. received=%x got=%x", header.ReceiptHash, receiptSha)
return
}
2014-07-21 03:21:34 -07:00
2014-09-14 16:11:01 -07:00
if err = sm.AccumelateRewards(state, block, parent); err != nil {
return
2014-02-14 14:56:09 -08:00
}
state.Update(ethutil.Big0)
2014-09-15 06:42:12 -07:00
if !bytes.Equal(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 new total difficulty and sync back to the db
if td, ok := sm.CalculateTD(block); ok {
2014-02-17 16:33:26 -08:00
// Sync the current block's state to the database and cancelling out the deferred Undo
state.Sync()
2014-02-14 14:56:09 -08:00
state.Manifest().SetHash(block.Hash())
messages := state.Manifest().Messages
2014-10-29 06:20:42 -07:00
state.Manifest().Reset()
2014-05-13 08:51:33 -07:00
chainlogger.Infof("Processed block #%d (%x...)\n", header.Number, block.Hash()[0:4])
2014-11-11 03:16:36 -08:00
2014-12-18 03:18:19 -08:00
sm.txpool.RemoveSet(block.Transactions())
return td, messages, nil
2014-02-14 14:56:09 -08:00
} else {
return nil, nil, errors.New("total diff failed")
2014-02-14 14:56:09 -08:00
}
}
2014-06-23 02:23:18 -07:00
2015-01-04 15:18:44 -08:00
func (sm *BlockProcessor) CalculateTD(block *types.Block) (*big.Int, bool) {
2014-02-14 14:56:09 -08:00
uncleDiff := new(big.Int)
for _, uncle := range block.Uncles() {
2014-02-14 14:56:09 -08:00
uncleDiff = uncleDiff.Add(uncleDiff, uncle.Difficulty)
}
// TD(genesis_block) = 0 and TD(B) = TD(B.parent) + sum(u.difficulty for u in B.uncles) + B.difficulty
td := new(big.Int)
td = td.Add(sm.bc.Td(), uncleDiff)
td = td.Add(td, block.Header().Difficulty)
2014-02-14 14:56:09 -08:00
// The new TD will only be accepted if the new difficulty is
// is greater than the previous.
if td.Cmp(sm.bc.Td()) > 0 {
return td, true
2014-02-14 14:56:09 -08:00
}
return nil, false
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-01-04 15:18:44 -08:00
func (sm *BlockProcessor) ValidateBlock(block, parent *types.Block) error {
expd := CalcDifficulty(block, parent)
if expd.Cmp(block.Header().Difficulty) < 0 {
return fmt.Errorf("Difficulty check failed for block %v, %v", block.Header().Difficulty, expd)
}
diff := block.Header().Time - parent.Header().Time
2014-02-14 14:56:09 -08:00
if diff < 0 {
return ValidationError("Block timestamp less then prev block %v (%v - %v)", diff, block.Header().Time, sm.bc.CurrentBlock().Header().Time)
2014-02-14 14:56:09 -08:00
}
2014-06-19 15:42:26 -07:00
/* XXX
2014-02-14 14:56:09 -08:00
// New blocks must be within the 15 minute range of the last block.
if diff > int64(15*time.Minute) {
return ValidationError("Block is too far in the future of last block (> 15 minutes)")
}
2014-06-19 15:42:26 -07:00
*/
2014-02-14 14:56:09 -08:00
// Verify the nonce of the block. Return an error if it's not valid
2014-12-10 07:45:16 -08:00
if !sm.Pow.Verify(block /*block.HashNoNonce(), block.Difficulty, block.Nonce*/) {
return ValidationError("Block's nonce is invalid (= %v)", ethutil.Bytes2Hex(block.Header().Nonce))
2014-02-14 14:56:09 -08:00
}
return nil
}
2015-01-04 15:18:44 -08:00
func (sm *BlockProcessor) AccumelateRewards(statedb *state.StateDB, block, parent *types.Block) error {
2014-09-15 06:42:12 -07:00
reward := new(big.Int).Set(BlockReward)
knownUncles := set.New()
for _, uncle := range parent.Uncles() {
2014-12-23 05:33:15 -08:00
knownUncles.Add(string(uncle.Hash()))
}
nonces := ethutil.NewSet(block.Header().Nonce)
for _, uncle := range block.Uncles() {
2014-09-14 16:11:01 -07:00
if nonces.Include(uncle.Nonce) {
// Error not unique
return UncleError("Uncle not unique")
}
2014-02-17 16:33:26 -08:00
uncleParent := sm.bc.GetBlock(uncle.ParentHash)
2014-09-14 16:11:01 -07:00
if uncleParent == nil {
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 uncleParent.Header().Number.Cmp(new(big.Int).Sub(parent.Header().Number, big.NewInt(6))) < 0 {
2014-09-14 16:11:01 -07:00
return UncleError("Uncle too old")
}
2014-02-14 14:56:09 -08:00
2014-12-23 05:33:15 -08:00
if knownUncles.Has(string(uncle.Hash())) {
2014-09-14 16:11:01 -07:00
return UncleError("Uncle in chain")
}
2014-09-15 06:42:12 -07:00
nonces.Insert(uncle.Nonce)
2014-09-14 16:11:01 -07:00
r := new(big.Int)
r.Mul(BlockReward, big.NewInt(15)).Div(r, big.NewInt(16))
2014-02-14 14:56:09 -08:00
2014-12-02 13:37:45 -08:00
uncleAccount := statedb.GetAccount(uncle.Coinbase)
2014-09-14 16:11:01 -07:00
uncleAccount.AddAmount(r)
2014-02-17 16:33:26 -08:00
2014-09-14 16:11:01 -07:00
reward.Add(reward, new(big.Int).Div(BlockReward, big.NewInt(32)))
2014-02-17 16:33:26 -08:00
}
2014-02-14 14:56:09 -08:00
2014-09-14 16:11:01 -07:00
// Get the account associated with the coinbase
account := statedb.GetAccount(block.Header().Coinbase)
2014-09-14 16:11:01 -07:00
// Reward amount of ether to the coinbase address
account.AddAmount(reward)
2014-12-02 13:37:45 -08:00
statedb.Manifest().AddMessage(&state.Message{
To: block.Header().Coinbase,
Input: nil,
Origin: nil,
Timestamp: int64(block.Header().Time), Coinbase: block.Header().Coinbase, Number: block.Header().Number,
2014-12-02 13:37:45 -08:00
Value: new(big.Int).Add(reward, block.Reward),
})
2014-02-14 14:56:09 -08:00
return nil
}
2015-01-04 15:18:44 -08:00
func (sm *BlockProcessor) GetMessages(block *types.Block) (messages []*state.Message, err error) {
if !sm.bc.HasBlock(block.Header().ParentHash) {
return nil, ParentError(block.Header().ParentHash)
2014-08-11 07:23:38 -07:00
}
sm.lastAttemptedBlock = block
var (
parent = sm.bc.GetBlock(block.Header().ParentHash)
state = state.New(parent.Trie().Copy())
2014-08-11 07:23:38 -07:00
)
defer state.Reset()
2014-12-02 13:37:45 -08:00
sm.TransitionState(state, parent, block)
2014-09-14 16:11:01 -07:00
sm.AccumelateRewards(state, block, parent)
2014-08-11 07:23:38 -07:00
return state.Manifest().Messages, nil
}