chain_makers.go 9.66 KB
Newer Older
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 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
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 13 14
// GNU Lesser General Public License for more details.
//
// 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 18 19
package core

import (
20
	"fmt"
obscuren's avatar
obscuren committed
21 22
	"math/big"

obscuren's avatar
obscuren committed
23
	"github.com/ethereum/go-ethereum/common"
24
	"github.com/ethereum/go-ethereum/consensus"
25
	"github.com/ethereum/go-ethereum/consensus/misc"
obscuren's avatar
obscuren committed
26
	"github.com/ethereum/go-ethereum/core/state"
obscuren's avatar
obscuren committed
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 34 35
// BlockGen creates blocks for testing.
// See GenerateChain for a detailed explanation.
type BlockGen struct {
36 37 38 39 40 41
	i           int
	parent      *types.Block
	chain       []*types.Block
	chainReader consensus.ChainReader
	header      *types.Header
	statedb     *state.StateDB
42

43
	gasPool  *GasPool
44 45 46
	txs      []*types.Transaction
	receipts []*types.Receipt
	uncles   []*types.Header
47 48

	config *params.ChainConfig
49
	engine consensus.Engine
50 51
}

52 53 54
// SetCoinbase sets the coinbase of the generated block.
// It can be called at most once.
func (b *BlockGen) SetCoinbase(addr common.Address) {
55
	if b.gasPool != nil {
56 57 58 59 60 61
		if len(b.txs) > 0 {
			panic("coinbase must be set before adding transactions")
		}
		panic("coinbase can only be set once")
	}
	b.header.Coinbase = addr
62
	b.gasPool = new(GasPool).AddGas(b.header.GasLimit)
63 64
}

65 66 67
// SetExtra sets the extra data field of the generated block.
func (b *BlockGen) SetExtra(data []byte) {
	b.header.Extra = data
68 69
}

70 71 72 73 74 75 76 77 78
// AddTx adds a transaction to the generated block. If no coinbase has
// been set, the block's coinbase is set to the zero address.
//
// AddTx panics if the transaction cannot be executed. In addition to
// the protocol-imposed limitations (gas limit, etc.), there are some
// further limitations on the content of transactions that can be
// added. Notably, contract code relying on the BLOCKHASH instruction
// will panic during execution.
func (b *BlockGen) AddTx(tx *types.Transaction) {
79 80 81 82 83 84 85 86 87 88 89 90
	b.AddTxWithChain(nil, tx)
}

// AddTxWithChain adds a transaction to the generated block. If no coinbase has
// been set, the block's coinbase is set to the zero address.
//
// AddTxWithChain panics if the transaction cannot be executed. In addition to
// the protocol-imposed limitations (gas limit, etc.), there are some
// further limitations on the content of transactions that can be
// added. If contract code relies on the BLOCKHASH instruction,
// the block in chain will be returned.
func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
91
	if b.gasPool == nil {
92 93
		b.SetCoinbase(common.Address{})
	}
94
	b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs))
95
	receipt, _, err := ApplyTransaction(b.config, bc, &b.header.Coinbase, b.gasPool, b.statedb, b.header, tx, &b.header.GasUsed, vm.Config{})
96 97 98 99 100
	if err != nil {
		panic(err)
	}
	b.txs = append(b.txs, tx)
	b.receipts = append(b.receipts, receipt)
101 102
}

103 104 105 106 107
// Number returns the block number of the block being generated.
func (b *BlockGen) Number() *big.Int {
	return new(big.Int).Set(b.header.Number)
}

108
// AddUncheckedReceipt forcefully adds a receipts to the block without a
109 110
// backing transaction.
//
111
// AddUncheckedReceipt will cause consensus failures when used during real
Leif Jurvetson's avatar
Leif Jurvetson committed
112
// chain processing. This is best used in conjunction with raw block insertion.
113
func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
114 115 116
	b.receipts = append(b.receipts, receipt)
}

117 118 119
// TxNonce returns the next valid transaction nonce for the
// account at addr. It panics if the account does not exist.
func (b *BlockGen) TxNonce(addr common.Address) uint64 {
120
	if !b.statedb.Exist(addr) {
121 122 123
		panic("account does not exist")
	}
	return b.statedb.GetNonce(addr)
124 125
}

126 127 128 129
// AddUncle adds an uncle header to the generated block.
func (b *BlockGen) AddUncle(h *types.Header) {
	b.uncles = append(b.uncles, h)
}
130

131 132 133 134 135 136
// PrevBlock returns a previously generated block by number. It panics if
// num is greater or equal to the number of the block being generated.
// For index -1, PrevBlock returns the parent block given to GenerateChain.
func (b *BlockGen) PrevBlock(index int) *types.Block {
	if index >= b.i {
		panic("block index out of range")
137
	}
138 139 140 141
	if index == -1 {
		return b.parent
	}
	return b.chain[index]
142 143
}

144 145 146 147 148 149 150 151
// OffsetTime modifies the time instance of a block, implicitly changing its
// associated difficulty. It's useful to test scenarios where forking is not
// tied to chain length directly.
func (b *BlockGen) OffsetTime(seconds int64) {
	b.header.Time.Add(b.header.Time, new(big.Int).SetInt64(seconds))
	if b.header.Time.Cmp(b.parent.Header().Time) <= 0 {
		panic("block time out of range")
	}
152
	b.header.Difficulty = b.engine.CalcDifficulty(b.chainReader, b.header.Time.Uint64(), b.parent.Header())
153 154
}

155 156 157 158 159 160 161 162 163 164
// GenerateChain creates a chain of n blocks. The first block's
// parent will be the provided parent. db is used to store
// intermediate states and should contain the parent's state trie.
//
// The generator function is called with a new block generator for
// every block. Any transactions and uncles added to the generator
// become part of the block. If gen is nil, the blocks will be empty
// and their coinbase will be the zero address.
//
// Blocks created by GenerateChain do not contain valid proof of work
165
// values. Inserting them into BlockChain requires use of FakePow or
166
// a similar non-validating proof of work implementation.
167
func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db ethdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
168 169 170
	if config == nil {
		config = params.TestChainConfig
	}
171
	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
172 173 174
	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
		// TODO(karalabe): This is needed for clique, which depends on multiple blocks.
		// It's nonetheless ugly to spin up a blockchain here. Get rid of this somehow.
175
		blockchain, _ := NewBlockChain(db, nil, config, engine, vm.Config{})
176 177 178 179 180
		defer blockchain.Stop()

		b := &BlockGen{i: i, parent: parent, chain: blocks, chainReader: blockchain, statedb: statedb, config: config, engine: engine}
		b.header = makeHeader(b.chainReader, parent, statedb, b.engine)

181 182 183
		// Mutate the state and block according to any hard-fork specs
		if daoBlock := config.DAOForkBlock; daoBlock != nil {
			limit := new(big.Int).Add(daoBlock, params.DAOForkExtraRange)
184
			if b.header.Number.Cmp(daoBlock) >= 0 && b.header.Number.Cmp(limit) < 0 {
185
				if config.DAOForkSupport {
186
					b.header.Extra = common.CopyBytes(params.DAOForkBlockExtra)
187 188 189
				}
			}
		}
190
		if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 {
191
			misc.ApplyDAOHardFork(statedb)
192 193
		}
		// Execute any user modifications to the block and finalize it
194 195
		if gen != nil {
			gen(i, b)
196
		}
197 198 199 200

		if b.engine != nil {
			block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, b.uncles, b.receipts)
			// Write state changes to db
201
			root, err := statedb.Commit(config.IsEIP158(b.header.Number))
202 203 204
			if err != nil {
				panic(fmt.Sprintf("state write error: %v", err))
			}
205 206 207
			if err := statedb.Database().TrieDB().Commit(root, false); err != nil {
				panic(fmt.Sprintf("trie write error: %v", err))
			}
208
			return block, b.receipts
209
		}
210
		return nil, nil
211 212
	}
	for i := 0; i < n; i++ {
213
		statedb, err := state.New(parent.Root(), state.NewDatabase(db))
214 215 216
		if err != nil {
			panic(err)
		}
217
		block, receipt := genblock(i, parent, statedb)
218
		blocks[i] = block
219
		receipts[i] = receipt
220 221
		parent = block
	}
222
	return blocks, receipts
223 224
}

225
func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header {
226 227 228 229 230 231
	var time *big.Int
	if parent.Time() == nil {
		time = big.NewInt(10)
	} else {
		time = new(big.Int).Add(parent.Time(), big.NewInt(10)) // block time is fixed at 10 seconds
	}
232

233
	return &types.Header{
234
		Root:       state.IntermediateRoot(chain.Config().IsEIP158(parent.Number())),
235 236
		ParentHash: parent.Hash(),
		Coinbase:   parent.Coinbase(),
237
		Difficulty: engine.CalcDifficulty(chain, time.Uint64(), &types.Header{
238 239 240
			Number:     parent.Number(),
			Time:       new(big.Int).Sub(time, big.NewInt(10)),
			Difficulty: parent.Difficulty(),
241
			UncleHash:  parent.UncleHash(),
242 243 244 245
		}),
		GasLimit: CalcGasLimit(parent),
		Number:   new(big.Int).Add(parent.Number(), common.Big1),
		Time:     time,
246 247 248
	}
}

249
// makeHeaderChain creates a deterministic chain of headers rooted at parent.
250 251
func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Header {
	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
252 253 254
	headers := make([]*types.Header, len(blocks))
	for i, block := range blocks {
		headers[i] = block.Header()
255
	}
256
	return headers
257
}
258

259
// makeBlockChain creates a deterministic chain of blocks rooted at parent.
260 261
func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Block {
	blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
262 263
		b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)})
	})
264
	return blocks
265
}