github.com/eduardonunesp/go-ethereum@v1.8.9-0.20180514135602-f6bc65fc6811/core/chain_makers.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package core
    18  
    19  import (
    20  	"fmt"
    21  	"math/big"
    22  
    23  	"github.com/ethereum/go-ethereum/common"
    24  	"github.com/ethereum/go-ethereum/consensus"
    25  	"github.com/ethereum/go-ethereum/consensus/misc"
    26  	"github.com/ethereum/go-ethereum/core/state"
    27  	"github.com/ethereum/go-ethereum/core/types"
    28  	"github.com/ethereum/go-ethereum/core/vm"
    29  	"github.com/ethereum/go-ethereum/ethdb"
    30  	"github.com/ethereum/go-ethereum/params"
    31  )
    32  
    33  // So we can deterministically seed different blockchains
    34  var (
    35  	canonicalSeed = 1
    36  	forkSeed      = 2
    37  )
    38  
    39  // BlockGen creates blocks for testing.
    40  // See GenerateChain for a detailed explanation.
    41  type BlockGen struct {
    42  	i           int
    43  	parent      *types.Block
    44  	chain       []*types.Block
    45  	chainReader consensus.ChainReader
    46  	header      *types.Header
    47  	statedb     *state.StateDB
    48  
    49  	gasPool  *GasPool
    50  	txs      []*types.Transaction
    51  	receipts []*types.Receipt
    52  	uncles   []*types.Header
    53  
    54  	config *params.ChainConfig
    55  	engine consensus.Engine
    56  }
    57  
    58  // SetCoinbase sets the coinbase of the generated block.
    59  // It can be called at most once.
    60  func (b *BlockGen) SetCoinbase(addr common.Address) {
    61  	if b.gasPool != nil {
    62  		if len(b.txs) > 0 {
    63  			panic("coinbase must be set before adding transactions")
    64  		}
    65  		panic("coinbase can only be set once")
    66  	}
    67  	b.header.Coinbase = addr
    68  	b.gasPool = new(GasPool).AddGas(b.header.GasLimit)
    69  }
    70  
    71  // SetExtra sets the extra data field of the generated block.
    72  func (b *BlockGen) SetExtra(data []byte) {
    73  	b.header.Extra = data
    74  }
    75  
    76  // AddTx adds a transaction to the generated block. If no coinbase has
    77  // been set, the block's coinbase is set to the zero address.
    78  //
    79  // AddTx panics if the transaction cannot be executed. In addition to
    80  // the protocol-imposed limitations (gas limit, etc.), there are some
    81  // further limitations on the content of transactions that can be
    82  // added. Notably, contract code relying on the BLOCKHASH instruction
    83  // will panic during execution.
    84  func (b *BlockGen) AddTx(tx *types.Transaction) {
    85  	b.AddTxWithChain(nil, tx)
    86  }
    87  
    88  // AddTxWithChain adds a transaction to the generated block. If no coinbase has
    89  // been set, the block's coinbase is set to the zero address.
    90  //
    91  // AddTxWithChain panics if the transaction cannot be executed. In addition to
    92  // the protocol-imposed limitations (gas limit, etc.), there are some
    93  // further limitations on the content of transactions that can be
    94  // added. If contract code relies on the BLOCKHASH instruction,
    95  // the block in chain will be returned.
    96  func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
    97  	if b.gasPool == nil {
    98  		b.SetCoinbase(common.Address{})
    99  	}
   100  	b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs))
   101  	receipt, _, err := ApplyTransaction(b.config, bc, &b.header.Coinbase, b.gasPool, b.statedb, b.header, tx, &b.header.GasUsed, vm.Config{})
   102  	if err != nil {
   103  		panic(err)
   104  	}
   105  	b.txs = append(b.txs, tx)
   106  	b.receipts = append(b.receipts, receipt)
   107  }
   108  
   109  // Number returns the block number of the block being generated.
   110  func (b *BlockGen) Number() *big.Int {
   111  	return new(big.Int).Set(b.header.Number)
   112  }
   113  
   114  // AddUncheckedReceipt forcefully adds a receipts to the block without a
   115  // backing transaction.
   116  //
   117  // AddUncheckedReceipt will cause consensus failures when used during real
   118  // chain processing. This is best used in conjunction with raw block insertion.
   119  func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
   120  	b.receipts = append(b.receipts, receipt)
   121  }
   122  
   123  // TxNonce returns the next valid transaction nonce for the
   124  // account at addr. It panics if the account does not exist.
   125  func (b *BlockGen) TxNonce(addr common.Address) uint64 {
   126  	if !b.statedb.Exist(addr) {
   127  		panic("account does not exist")
   128  	}
   129  	return b.statedb.GetNonce(addr)
   130  }
   131  
   132  // AddUncle adds an uncle header to the generated block.
   133  func (b *BlockGen) AddUncle(h *types.Header) {
   134  	b.uncles = append(b.uncles, h)
   135  }
   136  
   137  // PrevBlock returns a previously generated block by number. It panics if
   138  // num is greater or equal to the number of the block being generated.
   139  // For index -1, PrevBlock returns the parent block given to GenerateChain.
   140  func (b *BlockGen) PrevBlock(index int) *types.Block {
   141  	if index >= b.i {
   142  		panic("block index out of range")
   143  	}
   144  	if index == -1 {
   145  		return b.parent
   146  	}
   147  	return b.chain[index]
   148  }
   149  
   150  // OffsetTime modifies the time instance of a block, implicitly changing its
   151  // associated difficulty. It's useful to test scenarios where forking is not
   152  // tied to chain length directly.
   153  func (b *BlockGen) OffsetTime(seconds int64) {
   154  	b.header.Time.Add(b.header.Time, new(big.Int).SetInt64(seconds))
   155  	if b.header.Time.Cmp(b.parent.Header().Time) <= 0 {
   156  		panic("block time out of range")
   157  	}
   158  	b.header.Difficulty = b.engine.CalcDifficulty(b.chainReader, b.header.Time.Uint64(), b.parent.Header())
   159  }
   160  
   161  // GenerateChain creates a chain of n blocks. The first block's
   162  // parent will be the provided parent. db is used to store
   163  // intermediate states and should contain the parent's state trie.
   164  //
   165  // The generator function is called with a new block generator for
   166  // every block. Any transactions and uncles added to the generator
   167  // become part of the block. If gen is nil, the blocks will be empty
   168  // and their coinbase will be the zero address.
   169  //
   170  // Blocks created by GenerateChain do not contain valid proof of work
   171  // values. Inserting them into BlockChain requires use of FakePow or
   172  // a similar non-validating proof of work implementation.
   173  func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db ethdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
   174  	if config == nil {
   175  		config = params.TestChainConfig
   176  	}
   177  	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
   178  	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
   179  		// TODO(karalabe): This is needed for clique, which depends on multiple blocks.
   180  		// It's nonetheless ugly to spin up a blockchain here. Get rid of this somehow.
   181  		blockchain, _ := NewBlockChain(db, nil, config, engine, vm.Config{})
   182  		defer blockchain.Stop()
   183  
   184  		b := &BlockGen{i: i, parent: parent, chain: blocks, chainReader: blockchain, statedb: statedb, config: config, engine: engine}
   185  		b.header = makeHeader(b.chainReader, parent, statedb, b.engine)
   186  
   187  		// Mutate the state and block according to any hard-fork specs
   188  		if daoBlock := config.DAOForkBlock; daoBlock != nil {
   189  			limit := new(big.Int).Add(daoBlock, params.DAOForkExtraRange)
   190  			if b.header.Number.Cmp(daoBlock) >= 0 && b.header.Number.Cmp(limit) < 0 {
   191  				if config.DAOForkSupport {
   192  					b.header.Extra = common.CopyBytes(params.DAOForkBlockExtra)
   193  				}
   194  			}
   195  		}
   196  		if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 {
   197  			misc.ApplyDAOHardFork(statedb)
   198  		}
   199  		// Execute any user modifications to the block and finalize it
   200  		if gen != nil {
   201  			gen(i, b)
   202  		}
   203  
   204  		if b.engine != nil {
   205  			block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, b.uncles, b.receipts)
   206  			// Write state changes to db
   207  			root, err := statedb.Commit(config.IsEIP158(b.header.Number))
   208  			if err != nil {
   209  				panic(fmt.Sprintf("state write error: %v", err))
   210  			}
   211  			if err := statedb.Database().TrieDB().Commit(root, false); err != nil {
   212  				panic(fmt.Sprintf("trie write error: %v", err))
   213  			}
   214  			return block, b.receipts
   215  		}
   216  		return nil, nil
   217  	}
   218  	for i := 0; i < n; i++ {
   219  		statedb, err := state.New(parent.Root(), state.NewDatabase(db))
   220  		if err != nil {
   221  			panic(err)
   222  		}
   223  		block, receipt := genblock(i, parent, statedb)
   224  		blocks[i] = block
   225  		receipts[i] = receipt
   226  		parent = block
   227  	}
   228  	return blocks, receipts
   229  }
   230  
   231  func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header {
   232  	var time *big.Int
   233  	if parent.Time() == nil {
   234  		time = big.NewInt(10)
   235  	} else {
   236  		time = new(big.Int).Add(parent.Time(), big.NewInt(10)) // block time is fixed at 10 seconds
   237  	}
   238  
   239  	return &types.Header{
   240  		Root:       state.IntermediateRoot(chain.Config().IsEIP158(parent.Number())),
   241  		ParentHash: parent.Hash(),
   242  		Coinbase:   parent.Coinbase(),
   243  		Difficulty: engine.CalcDifficulty(chain, time.Uint64(), &types.Header{
   244  			Number:     parent.Number(),
   245  			Time:       new(big.Int).Sub(time, big.NewInt(10)),
   246  			Difficulty: parent.Difficulty(),
   247  			UncleHash:  parent.UncleHash(),
   248  		}),
   249  		GasLimit: CalcGasLimit(parent),
   250  		Number:   new(big.Int).Add(parent.Number(), common.Big1),
   251  		Time:     time,
   252  	}
   253  }
   254  
   255  // newCanonical creates a chain database, and injects a deterministic canonical
   256  // chain. Depending on the full flag, if creates either a full block chain or a
   257  // header only chain.
   258  func newCanonical(engine consensus.Engine, n int, full bool) (ethdb.Database, *BlockChain, error) {
   259  	var (
   260  		db      = ethdb.NewMemDatabase()
   261  		genesis = new(Genesis).MustCommit(db)
   262  	)
   263  
   264  	// Initialize a fresh chain with only a genesis block
   265  	blockchain, _ := NewBlockChain(db, nil, params.AllEthashProtocolChanges, engine, vm.Config{})
   266  	// Create and inject the requested chain
   267  	if n == 0 {
   268  		return db, blockchain, nil
   269  	}
   270  	if full {
   271  		// Full block-chain requested
   272  		blocks := makeBlockChain(genesis, n, engine, db, canonicalSeed)
   273  		_, err := blockchain.InsertChain(blocks)
   274  		return db, blockchain, err
   275  	}
   276  	// Header-only chain requested
   277  	headers := makeHeaderChain(genesis.Header(), n, engine, db, canonicalSeed)
   278  	_, err := blockchain.InsertHeaderChain(headers, 1)
   279  	return db, blockchain, err
   280  }
   281  
   282  // makeHeaderChain creates a deterministic chain of headers rooted at parent.
   283  func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Header {
   284  	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
   285  	headers := make([]*types.Header, len(blocks))
   286  	for i, block := range blocks {
   287  		headers[i] = block.Header()
   288  	}
   289  	return headers
   290  }
   291  
   292  // makeBlockChain creates a deterministic chain of blocks rooted at parent.
   293  func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Block {
   294  	blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
   295  		b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)})
   296  	})
   297  	return blocks
   298  }