| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | package core | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2014-06-02 15:20:27 +02:00
										 |  |  | 	"container/list" | 
					
						
							| 
									
										
										
										
											2014-11-04 11:04:02 +01:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2014-06-30 13:09:04 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2014-08-08 14:36:59 +01:00
										 |  |  | 	"math/big" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethutil" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/event" | 
					
						
							| 
									
										
										
										
											2014-10-31 12:56:05 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/logger" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:53:42 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/wire" | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 12:56:05 +01:00
										 |  |  | var statelogger = logger.NewLogger("BLOCK") | 
					
						
							| 
									
										
										
										
											2014-06-23 12:54:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-02 15:20:27 +02:00
										 |  |  | type Peer interface { | 
					
						
							|  |  |  | 	Inbound() bool | 
					
						
							|  |  |  | 	LastSend() time.Time | 
					
						
							|  |  |  | 	LastPong() int64 | 
					
						
							|  |  |  | 	Host() []byte | 
					
						
							|  |  |  | 	Port() uint16 | 
					
						
							|  |  |  | 	Version() string | 
					
						
							| 
									
										
										
										
											2014-06-03 10:42:55 +02:00
										 |  |  | 	PingTime() string | 
					
						
							| 
									
										
										
										
											2014-06-02 15:20:27 +02:00
										 |  |  | 	Connected() *int32 | 
					
						
							| 
									
										
										
										
											2014-09-26 13:45:26 +02:00
										 |  |  | 	Caps() *ethutil.Value | 
					
						
							| 
									
										
										
										
											2014-06-02 15:20:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | type EthManager interface { | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | 	BlockManager() *BlockManager | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	ChainManager() *ChainManager | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 	TxPool() *TxPool | 
					
						
							| 
									
										
										
										
											2014-10-31 14:53:42 +01:00
										 |  |  | 	Broadcast(msgType wire.MsgType, data []interface{}) | 
					
						
							| 
									
										
										
										
											2014-05-13 14:43:29 +02:00
										 |  |  | 	PeerCount() int | 
					
						
							|  |  |  | 	IsMining() bool | 
					
						
							|  |  |  | 	IsListening() bool | 
					
						
							| 
									
										
										
										
											2014-06-02 15:20:27 +02:00
										 |  |  | 	Peers() *list.List | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 	KeyManager() *crypto.KeyManager | 
					
						
							| 
									
										
										
										
											2014-10-31 14:53:42 +01:00
										 |  |  | 	ClientIdentity() wire.ClientIdentity | 
					
						
							| 
									
										
										
										
											2014-08-11 16:23:38 +02:00
										 |  |  | 	Db() ethutil.Database | 
					
						
							| 
									
										
										
										
											2014-10-14 01:58:31 +02:00
										 |  |  | 	EventMux() *event.TypeMux | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | type BlockManager struct { | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	// Mutex for locking the block processor. Blocks can only be handled one at a time | 
					
						
							|  |  |  | 	mutex sync.Mutex | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 	// Canonical block chain | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	bc *ChainManager | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	// non-persistent key/value memory storage | 
					
						
							|  |  |  | 	mem map[string]*big.Int | 
					
						
							| 
									
										
										
										
											2014-05-08 18:41:45 +02:00
										 |  |  | 	// Proof of work used for validating | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	Pow PoW | 
					
						
							| 
									
										
										
										
											2014-05-08 18:41:45 +02:00
										 |  |  | 	// The ethereum manager interface | 
					
						
							| 
									
										
										
										
											2014-09-29 12:57:51 +02:00
										 |  |  | 	eth EthManager | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 	// The managed states | 
					
						
							| 
									
										
										
										
											2014-05-08 18:26:46 +02:00
										 |  |  | 	// Transiently state. The trans state isn't ever saved, validated and | 
					
						
							|  |  |  | 	// it could be used for setting account nonces without effecting | 
					
						
							|  |  |  | 	// the main states. | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	transState *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 	// Mining state. The mining state is used purely and solely by the mining | 
					
						
							|  |  |  | 	// operation. | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	miningState *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-07-10 15:05:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// 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. | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	lastAttemptedBlock *types.Block | 
					
						
							| 
									
										
										
										
											2014-09-29 12:57:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-14 01:58:31 +02:00
										 |  |  | 	events event.Subscription | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | func NewBlockManager(ethereum EthManager) *BlockManager { | 
					
						
							|  |  |  | 	sm := &BlockManager{ | 
					
						
							| 
									
										
										
										
											2014-10-14 01:58:31 +02:00
										 |  |  | 		mem: make(map[string]*big.Int), | 
					
						
							|  |  |  | 		Pow: &EasyPow{}, | 
					
						
							|  |  |  | 		eth: ethereum, | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 		bc:  ethereum.ChainManager(), | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	sm.transState = ethereum.ChainManager().CurrentBlock.State().Copy() | 
					
						
							|  |  |  | 	sm.miningState = ethereum.ChainManager().CurrentBlock.State().Copy() | 
					
						
							| 
									
										
										
										
											2014-05-08 18:26:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	return sm | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | func (self *BlockManager) Start() { | 
					
						
							| 
									
										
										
										
											2014-11-09 23:59:25 +01:00
										 |  |  | 	statelogger.Debugln("Starting block manager") | 
					
						
							| 
									
										
										
										
											2014-09-29 12:57:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | func (self *BlockManager) Stop() { | 
					
						
							| 
									
										
										
										
											2014-09-29 12:57:51 +02:00
										 |  |  | 	statelogger.Debugln("Stopping state manager") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) CurrentState() *state.StateDB { | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	return sm.eth.ChainManager().CurrentBlock.State() | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) TransState() *state.StateDB { | 
					
						
							| 
									
										
										
										
											2014-05-08 18:26:46 +02:00
										 |  |  | 	return sm.transState | 
					
						
							| 
									
										
										
										
											2014-02-23 01:56:48 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) MiningState() *state.StateDB { | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 	return sm.miningState | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) NewMiningState() *state.StateDB { | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	sm.miningState = sm.eth.ChainManager().CurrentBlock.State().Copy() | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return sm.miningState | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 10:57:02 +01:00
										 |  |  | func (sm *BlockManager) ChainManager() *ChainManager { | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	return sm.bc | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) TransitionState(statedb *state.StateDB, parent, block *types.Block) (receipts types.Receipts, err error) { | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	coinbase := statedb.GetOrNewStateObject(block.Coinbase) | 
					
						
							|  |  |  | 	coinbase.SetGasPool(block.CalcGasLimit(parent)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Process the transactions on to current block | 
					
						
							|  |  |  | 	receipts, _, _, _, err = sm.ProcessTransactions(coinbase, statedb, block, parent, block.Transactions()) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return receipts, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (self *BlockManager) ProcessTransactions(coinbase *state.StateObject, state *state.StateDB, block, parent *types.Block, txs types.Transactions) (types.Receipts, types.Transactions, types.Transactions, types.Transactions, error) { | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 		receipts           types.Receipts | 
					
						
							|  |  |  | 		handled, unhandled types.Transactions | 
					
						
							|  |  |  | 		erroneous          types.Transactions | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 		totalUsedGas       = big.NewInt(0) | 
					
						
							|  |  |  | 		err                error | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 		cumulativeSum      = new(big.Int) | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	for i, tx := range txs { | 
					
						
							| 
									
										
										
										
											2014-10-30 13:32:50 +01:00
										 |  |  | 		// If we are mining this block and validating we want to set the logs back to 0 | 
					
						
							|  |  |  | 		state.EmptyLogs() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 		txGas := new(big.Int).Set(tx.Gas) | 
					
						
							| 
									
										
										
										
											2014-07-17 14:53:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		cb := state.GetStateObject(coinbase.Address()) | 
					
						
							|  |  |  | 		st := NewStateTransition(cb, tx, state, block) | 
					
						
							| 
									
										
										
										
											2014-06-13 12:57:52 +02:00
										 |  |  | 		err = st.TransitionState() | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 			switch { | 
					
						
							|  |  |  | 			case IsNonceErr(err): | 
					
						
							|  |  |  | 				err = nil // ignore error | 
					
						
							| 
									
										
										
										
											2014-06-10 17:23:32 +02:00
										 |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 			case IsGasLimitErr(err): | 
					
						
							|  |  |  | 				unhandled = txs[i:] | 
					
						
							| 
									
										
										
										
											2014-05-28 15:07:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 				break done | 
					
						
							|  |  |  | 			default: | 
					
						
							| 
									
										
										
										
											2014-06-23 12:54:10 +01:00
										 |  |  | 				statelogger.Infoln(err) | 
					
						
							| 
									
										
										
										
											2014-10-27 16:52:58 +01:00
										 |  |  | 				erroneous = append(erroneous, tx) | 
					
						
							| 
									
										
										
										
											2014-07-01 11:26:45 +02:00
										 |  |  | 				err = nil | 
					
						
							| 
									
										
										
										
											2014-10-27 16:52:58 +01:00
										 |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 21:20:32 +01:00
										 |  |  | 		txGas.Sub(txGas, st.gas) | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 		cumulativeSum.Add(cumulativeSum, new(big.Int).Mul(txGas, tx.GasPrice)) | 
					
						
							| 
									
										
										
										
											2014-11-28 21:20:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:14 +02:00
										 |  |  | 		// Update the state with pending changes | 
					
						
							| 
									
										
										
										
											2014-11-28 21:20:32 +01:00
										 |  |  | 		state.Update(txGas) | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 10:34:40 +01:00
										 |  |  | 		cumulative := new(big.Int).Set(totalUsedGas.Add(totalUsedGas, txGas)) | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 		receipt := types.NewReceipt(state.Root(), cumulative) | 
					
						
							|  |  |  | 		receipt.SetLogs(state.Logs()) | 
					
						
							|  |  |  | 		receipt.Bloom = types.CreateBloom(types.Receipts{receipt}) | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-28 14:52:58 +02:00
										 |  |  | 		// Notify all subscribers | 
					
						
							| 
									
										
										
										
											2014-10-31 10:50:16 +01:00
										 |  |  | 		go self.eth.EventMux().Post(TxPostEvent{tx}) | 
					
						
							| 
									
										
										
										
											2014-09-28 14:52:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 		receipts = append(receipts, receipt) | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | 		handled = append(handled, tx) | 
					
						
							| 
									
										
										
										
											2014-07-11 16:04:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 00:37:18 +02:00
										 |  |  | 		if ethutil.Config.Diff && ethutil.Config.DiffType == "all" { | 
					
						
							| 
									
										
										
										
											2014-07-11 16:04:09 +02:00
										 |  |  | 			state.CreateOutputForDiff() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-21 00:17:50 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	block.Reward = cumulativeSum | 
					
						
							| 
									
										
										
										
											2014-11-09 23:59:25 +01:00
										 |  |  | 	block.GasUsed = totalUsedGas | 
					
						
							| 
									
										
										
										
											2014-06-11 11:40:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 16:52:58 +01:00
										 |  |  | 	return receipts, handled, unhandled, erroneous, err | 
					
						
							| 
									
										
										
										
											2014-05-21 00:17:50 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (sm *BlockManager) Process(block *types.Block) (td *big.Int, msgs state.Messages, err error) { | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	// Processing a blocks may never happen simultaneously | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	sm.mutex.Lock() | 
					
						
							|  |  |  | 	defer sm.mutex.Unlock() | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 	if sm.bc.HasBlock(block.Hash()) { | 
					
						
							| 
									
										
										
										
											2014-12-02 12:23:27 +01:00
										 |  |  | 		return nil, nil, &KnownBlockError{block.Number, block.Hash()} | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 	if !sm.bc.HasBlock(block.PrevHash) { | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		return nil, nil, ParentError(block.PrevHash) | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-04 12:46:33 +01:00
										 |  |  | 	parent := sm.bc.GetBlock(block.PrevHash) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sm.ProcessWithParent(block, parent) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (sm *BlockManager) ProcessWithParent(block, parent *types.Block) (td *big.Int, messages state.Messages, err error) { | 
					
						
							| 
									
										
										
										
											2014-07-10 15:05:06 +02:00
										 |  |  | 	sm.lastAttemptedBlock = block | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | 	state := parent.State().Copy() | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 12:36:27 +02:00
										 |  |  | 	// Defer the Undo on the Trie. If the block processing happened | 
					
						
							|  |  |  | 	// we don't want to undo but since undo only happens on dirty | 
					
						
							|  |  |  | 	// nodes this won't happen because Commit would have been called | 
					
						
							|  |  |  | 	// before that. | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 	defer state.Reset() | 
					
						
							| 
									
										
										
										
											2014-04-29 12:36:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 15:13:29 +01:00
										 |  |  | 	// Block validation | 
					
						
							|  |  |  | 	if err = sm.ValidateBlock(block, parent); err != nil { | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											2014-07-11 16:04:09 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	_, err = sm.TransitionState(state, parent, block) | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	txSha := types.DeriveSha(block.Transactions()) | 
					
						
							| 
									
										
										
										
											2014-11-12 01:36:36 +01:00
										 |  |  | 	if bytes.Compare(txSha, block.TxSha) != 0 { | 
					
						
							| 
									
										
										
										
											2014-11-14 14:17:54 +01:00
										 |  |  | 		err = fmt.Errorf("validating transaction root. received=%x got=%x", block.TxSha, txSha) | 
					
						
							| 
									
										
										
										
											2014-11-12 01:36:36 +01:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-29 10:34:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 11:37:33 +01:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2014-12-02 11:52:56 +01:00
										 |  |  | 		receiptSha := types.DeriveSha(receipts) | 
					
						
							| 
									
										
										
										
											2014-12-02 11:37:33 +01:00
										 |  |  | 		if bytes.Compare(receiptSha, block.ReceiptSha) != 0 { | 
					
						
							|  |  |  | 			err = fmt.Errorf("validating receipt root. received=%x got=%x", block.ReceiptSha, receiptSha) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2014-07-21 12:21:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 	if err = sm.AccumelateRewards(state, block, parent); err != nil { | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 11:37:33 +01:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2014-12-02 11:52:56 +01:00
										 |  |  | 		//block.receipts = receipts // although this isn't necessary it be in the future | 
					
						
							|  |  |  | 		rbloom := types.CreateBloom(receipts) | 
					
						
							| 
									
										
										
										
											2014-12-02 11:37:33 +01:00
										 |  |  | 		if bytes.Compare(rbloom, block.LogsBloom) != 0 { | 
					
						
							|  |  |  | 			err = fmt.Errorf("unable to replicate block's bloom=%x", rbloom) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2014-11-04 11:04:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 	state.Update(ethutil.Big0) | 
					
						
							| 
									
										
										
										
											2014-09-15 15:42:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 	if !block.State().Cmp(state) { | 
					
						
							| 
									
										
										
										
											2014-11-14 14:17:54 +01:00
										 |  |  | 		err = fmt.Errorf("invalid merkle root. received=%x got=%x", block.Root(), state.Root()) | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:14 +02:00
										 |  |  | 		return | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Calculate the new total difficulty and sync back to the db | 
					
						
							| 
									
										
										
										
											2014-11-04 12:46:33 +01:00
										 |  |  | 	if td, ok := sm.CalculateTD(block); ok { | 
					
						
							| 
									
										
										
										
											2014-02-18 01:33:26 +01:00
										 |  |  | 		// Sync the current block's state to the database and cancelling out the deferred Undo | 
					
						
							| 
									
										
										
										
											2014-05-17 14:07:52 +02:00
										 |  |  | 		state.Sync() | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		messages := state.Manifest().Messages | 
					
						
							| 
									
										
										
										
											2014-10-29 14:20:42 +01:00
										 |  |  | 		state.Manifest().Reset() | 
					
						
							| 
									
										
										
										
											2014-05-13 17:51:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 13:47:12 +01:00
										 |  |  | 		chainlogger.Infof("Processed block #%d (%x...)\n", block.Number, block.Hash()[0:4]) | 
					
						
							| 
									
										
										
										
											2014-11-11 12:16:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		sm.transState = state.Copy() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-27 16:52:58 +01:00
										 |  |  | 		sm.eth.TxPool().RemoveSet(block.Transactions()) | 
					
						
							| 
									
										
										
										
											2014-11-04 12:46:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		return td, messages, nil | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-11-10 13:27:24 +01:00
										 |  |  | 		return nil, nil, errors.New("total diff failed") | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (sm *BlockManager) CalculateTD(block *types.Block) (*big.Int, bool) { | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	uncleDiff := new(big.Int) | 
					
						
							|  |  |  | 	for _, uncle := range block.Uncles { | 
					
						
							|  |  |  | 		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) | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	td = td.Add(sm.bc.TD, uncleDiff) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	td = td.Add(td, block.Difficulty) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// The new TD will only be accepted if the new difficulty is | 
					
						
							|  |  |  | 	// is greater than the previous. | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	if td.Cmp(sm.bc.TD) > 0 { | 
					
						
							| 
									
										
										
										
											2014-11-04 12:46:33 +01:00
										 |  |  | 		return td, true | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 12:46:33 +01:00
										 |  |  | 	return nil, false | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01: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) | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (sm *BlockManager) ValidateBlock(block, parent *types.Block) error { | 
					
						
							| 
									
										
										
										
											2014-10-10 17:00:06 +02:00
										 |  |  | 	expd := CalcDifficulty(block, parent) | 
					
						
							|  |  |  | 	if expd.Cmp(block.Difficulty) < 0 { | 
					
						
							|  |  |  | 		return fmt.Errorf("Difficulty check failed for block %v, %v", block.Difficulty, expd) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 22:11:05 +02:00
										 |  |  | 	diff := block.Time - parent.Time | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	if diff < 0 { | 
					
						
							| 
									
										
										
										
											2014-07-18 16:13:21 +02:00
										 |  |  | 		return ValidationError("Block timestamp less then prev block %v (%v - %v)", diff, block.Time, sm.bc.CurrentBlock.Time) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-20 00:42:26 +02:00
										 |  |  | 	/* XXX | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01: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-20 00:42:26 +02:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Verify the nonce of the block. Return an error if it's not valid | 
					
						
							| 
									
										
										
										
											2014-03-05 10:57:32 +01:00
										 |  |  | 	if !sm.Pow.Verify(block.HashNoNonce(), block.Difficulty, block.Nonce) { | 
					
						
							| 
									
										
										
										
											2014-06-29 18:30:05 +01:00
										 |  |  | 		return ValidationError("Block's nonce is invalid (= %v)", ethutil.Bytes2Hex(block.Nonce)) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (sm *BlockManager) AccumelateRewards(statedb *state.StateDB, block, parent *types.Block) error { | 
					
						
							| 
									
										
										
										
											2014-09-15 15:42:12 +02:00
										 |  |  | 	reward := new(big.Int).Set(BlockReward) | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 	knownUncles := ethutil.Set(parent.Uncles) | 
					
						
							|  |  |  | 	nonces := ethutil.NewSet(block.Nonce) | 
					
						
							|  |  |  | 	for _, uncle := range block.Uncles { | 
					
						
							|  |  |  | 		if nonces.Include(uncle.Nonce) { | 
					
						
							|  |  |  | 			// Error not unique | 
					
						
							|  |  |  | 			return UncleError("Uncle not unique") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-18 01:33:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		uncleParent := sm.bc.GetBlock(uncle.PrevHash) | 
					
						
							|  |  |  | 		if uncleParent == nil { | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | 			return UncleError(fmt.Sprintf("Uncle's parent unknown (%x)", uncle.PrevHash[0:4])) | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-18 01:33:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		if uncleParent.Number.Cmp(new(big.Int).Sub(parent.Number, big.NewInt(6))) < 0 { | 
					
						
							|  |  |  | 			return UncleError("Uncle too old") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		if knownUncles.Include(uncle.Hash()) { | 
					
						
							|  |  |  | 			return UncleError("Uncle in chain") | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 15:42:12 +02:00
										 |  |  | 		nonces.Insert(uncle.Nonce) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		r := new(big.Int) | 
					
						
							|  |  |  | 		r.Mul(BlockReward, big.NewInt(15)).Div(r, big.NewInt(16)) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 		uncleAccount := statedb.GetAccount(uncle.Coinbase) | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		uncleAccount.AddAmount(r) | 
					
						
							| 
									
										
										
										
											2014-02-18 01:33:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 		reward.Add(reward, new(big.Int).Div(BlockReward, big.NewInt(32))) | 
					
						
							| 
									
										
										
										
											2014-02-18 01:33:26 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 	// Get the account associated with the coinbase | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	account := statedb.GetAccount(block.Coinbase) | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 	// Reward amount of ether to the coinbase address | 
					
						
							|  |  |  | 	account.AddAmount(reward) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	statedb.Manifest().AddMessage(&state.Message{ | 
					
						
							|  |  |  | 		To: block.Coinbase, From: block.Coinbase, | 
					
						
							|  |  |  | 		Input:  nil, | 
					
						
							|  |  |  | 		Origin: nil, | 
					
						
							|  |  |  | 		Block:  block.Hash(), Timestamp: block.Time, Coinbase: block.Coinbase, Number: block.Number, | 
					
						
							|  |  |  | 		Value: new(big.Int).Add(reward, block.Reward), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (sm *BlockManager) GetMessages(block *types.Block) (messages []*state.Message, err error) { | 
					
						
							| 
									
										
										
										
											2014-08-11 16:23:38 +02:00
										 |  |  | 	if !sm.bc.HasBlock(block.PrevHash) { | 
					
						
							|  |  |  | 		return nil, ParentError(block.PrevHash) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sm.lastAttemptedBlock = block | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var ( | 
					
						
							|  |  |  | 		parent = sm.bc.GetBlock(block.PrevHash) | 
					
						
							|  |  |  | 		state  = parent.State().Copy() | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	defer state.Reset() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 22:37:45 +01:00
										 |  |  | 	sm.TransitionState(state, parent, block) | 
					
						
							| 
									
										
										
										
											2014-09-15 01:11:01 +02:00
										 |  |  | 	sm.AccumelateRewards(state, block, parent) | 
					
						
							| 
									
										
										
										
											2014-08-11 16:23:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return state.Manifest().Messages, nil | 
					
						
							| 
									
										
										
										
											2014-04-30 14:43:32 +02:00
										 |  |  | } |