github.com/oskarth/go-ethereum@v1.6.8-0.20191013093314-dac24a9d3494/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  // BlockGen creates blocks for testing.
    34  // See GenerateChain for a detailed explanation.
    35  type BlockGen struct {
    36  	i           int
    37  	parent      *types.Block
    38  	chain       []*types.Block
    39  	chainReader consensus.ChainReader
    40  	header      *types.Header
    41  	statedb     *state.StateDB
    42  
    43  	gasPool  *GasPool
    44  	txs      []*types.Transaction
    45  	receipts []*types.Receipt
    46  	uncles   []*types.Header
    47  
    48  	config *params.ChainConfig
    49  	engine consensus.Engine
    50  }
    51  
    52  // SetCoinbase sets the coinbase of the generated block.
    53  // It can be called at most once.
    54  func (b *BlockGen) SetCoinbase(addr common.Address) {
    55  	if b.gasPool != nil {
    56  		if len(b.txs) > 0 {
    57  			panic("coinbase must be set before adding transactions")
    58  		}
    59  		panic("coinbase can only be set once")
    60  	}
    61  	b.header.Coinbase = addr
    62  	b.gasPool = new(GasPool).AddGas(b.header.GasLimit)
    63  }
    64  
    65  // SetExtra sets the extra data field of the generated block.
    66  func (b *BlockGen) SetExtra(data []byte) {
    67  	b.header.Extra = data
    68  }
    69  
    70  // SetNonce sets the nonce field of the generated block.
    71  func (b *BlockGen) SetNonce(nonce types.BlockNonce) {
    72  	b.header.Nonce = nonce
    73  }
    74  
    75  // AddTx adds a transaction to the generated block. If no coinbase has
    76  // been set, the block's coinbase is set to the zero address.
    77  //
    78  // AddTx panics if the transaction cannot be executed. In addition to
    79  // the protocol-imposed limitations (gas limit, etc.), there are some
    80  // further limitations on the content of transactions that can be
    81  // added. Notably, contract code relying on the BLOCKHASH instruction
    82  // will panic during execution.
    83  func (b *BlockGen) AddTx(tx *types.Transaction) {
    84  	b.AddTxWithChain(nil, tx)
    85  }
    86  
    87  // AddTxWithChain adds a transaction to the generated block. If no coinbase has
    88  // been set, the block's coinbase is set to the zero address.
    89  //
    90  // AddTxWithChain panics if the transaction cannot be executed. In addition to
    91  // the protocol-imposed limitations (gas limit, etc.), there are some
    92  // further limitations on the content of transactions that can be
    93  // added. If contract code relies on the BLOCKHASH instruction,
    94  // the block in chain will be returned.
    95  func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
    96  	if b.gasPool == nil {
    97  		b.SetCoinbase(common.Address{})
    98  	}
    99  	b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs))
   100  	receipt, _, err := ApplyTransaction(b.config, bc, &b.header.Coinbase, b.gasPool, b.statedb, b.header, tx, &b.header.GasUsed, vm.Config{})
   101  	if err != nil {
   102  		panic(err)
   103  	}
   104  	b.txs = append(b.txs, tx)
   105  	b.receipts = append(b.receipts, receipt)
   106  }
   107  
   108  // Number returns the block number of the block being generated.
   109  func (b *BlockGen) Number() *big.Int {
   110  	return new(big.Int).Set(b.header.Number)
   111  }
   112  
   113  // AddUncheckedReceipt forcefully adds a receipts to the block without a
   114  // backing transaction.
   115  //
   116  // AddUncheckedReceipt will cause consensus failures when used during real
   117  // chain processing. This is best used in conjunction with raw block insertion.
   118  func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
   119  	b.receipts = append(b.receipts, receipt)
   120  }
   121  
   122  // TxNonce returns the next valid transaction nonce for the
   123  // account at addr. It panics if the account does not exist.
   124  func (b *BlockGen) TxNonce(addr common.Address) uint64 {
   125  	if !b.statedb.Exist(addr) {
   126  		panic("account does not exist")
   127  	}
   128  	return b.statedb.GetNonce(addr)
   129  }
   130  
   131  // AddUncle adds an uncle header to the generated block.
   132  func (b *BlockGen) AddUncle(h *types.Header) {
   133  	b.uncles = append(b.uncles, h)
   134  }
   135  
   136  // PrevBlock returns a previously generated block by number. It panics if
   137  // num is greater or equal to the number of the block being generated.
   138  // For index -1, PrevBlock returns the parent block given to GenerateChain.
   139  func (b *BlockGen) PrevBlock(index int) *types.Block {
   140  	if index >= b.i {
   141  		panic("block index out of range")
   142  	}
   143  	if index == -1 {
   144  		return b.parent
   145  	}
   146  	return b.chain[index]
   147  }
   148  
   149  // OffsetTime modifies the time instance of a block, implicitly changing its
   150  // associated difficulty. It's useful to test scenarios where forking is not
   151  // tied to chain length directly.
   152  func (b *BlockGen) OffsetTime(seconds int64) {
   153  	b.header.Time.Add(b.header.Time, new(big.Int).SetInt64(seconds))
   154  	if b.header.Time.Cmp(b.parent.Header().Time) <= 0 {
   155  		panic("block time out of range")
   156  	}
   157  	b.header.Difficulty = b.engine.CalcDifficulty(b.chainReader, b.header.Time.Uint64(), b.parent.Header())
   158  }
   159  
   160  // GenerateChain creates a chain of n blocks. The first block's
   161  // parent will be the provided parent. db is used to store
   162  // intermediate states and should contain the parent's state trie.
   163  //
   164  // The generator function is called with a new block generator for
   165  // every block. Any transactions and uncles added to the generator
   166  // become part of the block. If gen is nil, the blocks will be empty
   167  // and their coinbase will be the zero address.
   168  //
   169  // Blocks created by GenerateChain do not contain valid proof of work
   170  // values. Inserting them into BlockChain requires use of FakePow or
   171  // a similar non-validating proof of work implementation.
   172  func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db ethdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
   173  	if config == nil {
   174  		config = params.TestChainConfig
   175  	}
   176  	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
   177  	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
   178  		// TODO(karalabe): This is needed for clique, which depends on multiple blocks.
   179  		// It's nonetheless ugly to spin up a blockchain here. Get rid of this somehow.
   180  		blockchain, _ := NewBlockChain(db, nil, config, engine, vm.Config{}, nil)
   181  		defer blockchain.Stop()
   182  
   183  		b := &BlockGen{i: i, parent: parent, chain: blocks, chainReader: blockchain, statedb: statedb, config: config, engine: engine}
   184  		b.header = makeHeader(b.chainReader, parent, statedb, b.engine)
   185  
   186  		// Mutate the state and block according to any hard-fork specs
   187  		if daoBlock := config.DAOForkBlock; daoBlock != nil {
   188  			limit := new(big.Int).Add(daoBlock, params.DAOForkExtraRange)
   189  			if b.header.Number.Cmp(daoBlock) >= 0 && b.header.Number.Cmp(limit) < 0 {
   190  				if config.DAOForkSupport {
   191  					b.header.Extra = common.CopyBytes(params.DAOForkBlockExtra)
   192  				}
   193  			}
   194  		}
   195  		if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 {
   196  			misc.ApplyDAOHardFork(statedb)
   197  		}
   198  		// Execute any user modifications to the block
   199  		if gen != nil {
   200  			gen(i, b)
   201  		}
   202  		if b.engine != nil {
   203  			// Finalize and seal the block
   204  			block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, b.uncles, b.receipts)
   205  
   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, parent.GasLimit(), parent.GasLimit()),
   250  		Number:   new(big.Int).Add(parent.Number(), common.Big1),
   251  		Time:     time,
   252  	}
   253  }
   254  
   255  // makeHeaderChain creates a deterministic chain of headers rooted at parent.
   256  func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Header {
   257  	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
   258  	headers := make([]*types.Header, len(blocks))
   259  	for i, block := range blocks {
   260  		headers[i] = block.Header()
   261  	}
   262  	return headers
   263  }
   264  
   265  // makeBlockChain creates a deterministic chain of blocks rooted at parent.
   266  func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Block {
   267  	blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
   268  		b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)})
   269  	})
   270  	return blocks
   271  }