github.com/cuiweixie/go-ethereum@v1.8.2-0.20180303084001-66cd41af1e38/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 if b.gasPool == nil { 86 b.SetCoinbase(common.Address{}) 87 } 88 b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs)) 89 receipt, _, err := ApplyTransaction(b.config, nil, &b.header.Coinbase, b.gasPool, b.statedb, b.header, tx, &b.header.GasUsed, vm.Config{}) 90 if err != nil { 91 panic(err) 92 } 93 b.txs = append(b.txs, tx) 94 b.receipts = append(b.receipts, receipt) 95 } 96 97 // Number returns the block number of the block being generated. 98 func (b *BlockGen) Number() *big.Int { 99 return new(big.Int).Set(b.header.Number) 100 } 101 102 // AddUncheckedReceipt forcefully adds a receipts to the block without a 103 // backing transaction. 104 // 105 // AddUncheckedReceipt will cause consensus failures when used during real 106 // chain processing. This is best used in conjunction with raw block insertion. 107 func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) { 108 b.receipts = append(b.receipts, receipt) 109 } 110 111 // TxNonce returns the next valid transaction nonce for the 112 // account at addr. It panics if the account does not exist. 113 func (b *BlockGen) TxNonce(addr common.Address) uint64 { 114 if !b.statedb.Exist(addr) { 115 panic("account does not exist") 116 } 117 return b.statedb.GetNonce(addr) 118 } 119 120 // AddUncle adds an uncle header to the generated block. 121 func (b *BlockGen) AddUncle(h *types.Header) { 122 b.uncles = append(b.uncles, h) 123 } 124 125 // PrevBlock returns a previously generated block by number. It panics if 126 // num is greater or equal to the number of the block being generated. 127 // For index -1, PrevBlock returns the parent block given to GenerateChain. 128 func (b *BlockGen) PrevBlock(index int) *types.Block { 129 if index >= b.i { 130 panic("block index out of range") 131 } 132 if index == -1 { 133 return b.parent 134 } 135 return b.chain[index] 136 } 137 138 // OffsetTime modifies the time instance of a block, implicitly changing its 139 // associated difficulty. It's useful to test scenarios where forking is not 140 // tied to chain length directly. 141 func (b *BlockGen) OffsetTime(seconds int64) { 142 b.header.Time.Add(b.header.Time, new(big.Int).SetInt64(seconds)) 143 if b.header.Time.Cmp(b.parent.Header().Time) <= 0 { 144 panic("block time out of range") 145 } 146 b.header.Difficulty = b.engine.CalcDifficulty(b.chainReader, b.header.Time.Uint64(), b.parent.Header()) 147 } 148 149 // GenerateChain creates a chain of n blocks. The first block's 150 // parent will be the provided parent. db is used to store 151 // intermediate states and should contain the parent's state trie. 152 // 153 // The generator function is called with a new block generator for 154 // every block. Any transactions and uncles added to the generator 155 // become part of the block. If gen is nil, the blocks will be empty 156 // and their coinbase will be the zero address. 157 // 158 // Blocks created by GenerateChain do not contain valid proof of work 159 // values. Inserting them into BlockChain requires use of FakePow or 160 // a similar non-validating proof of work implementation. 161 func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db ethdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) { 162 if config == nil { 163 config = params.TestChainConfig 164 } 165 blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n) 166 genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) { 167 // TODO(karalabe): This is needed for clique, which depends on multiple blocks. 168 // It's nonetheless ugly to spin up a blockchain here. Get rid of this somehow. 169 blockchain, _ := NewBlockChain(db, nil, config, engine, vm.Config{}) 170 defer blockchain.Stop() 171 172 b := &BlockGen{i: i, parent: parent, chain: blocks, chainReader: blockchain, statedb: statedb, config: config, engine: engine} 173 b.header = makeHeader(b.chainReader, parent, statedb, b.engine) 174 175 // Mutate the state and block according to any hard-fork specs 176 if daoBlock := config.DAOForkBlock; daoBlock != nil { 177 limit := new(big.Int).Add(daoBlock, params.DAOForkExtraRange) 178 if b.header.Number.Cmp(daoBlock) >= 0 && b.header.Number.Cmp(limit) < 0 { 179 if config.DAOForkSupport { 180 b.header.Extra = common.CopyBytes(params.DAOForkBlockExtra) 181 } 182 } 183 } 184 if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 { 185 misc.ApplyDAOHardFork(statedb) 186 } 187 // Execute any user modifications to the block and finalize it 188 if gen != nil { 189 gen(i, b) 190 } 191 192 if b.engine != nil { 193 block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, b.uncles, b.receipts) 194 // Write state changes to db 195 root, err := statedb.Commit(config.IsEIP158(b.header.Number)) 196 if err != nil { 197 panic(fmt.Sprintf("state write error: %v", err)) 198 } 199 if err := statedb.Database().TrieDB().Commit(root, false); err != nil { 200 panic(fmt.Sprintf("trie write error: %v", err)) 201 } 202 return block, b.receipts 203 } 204 return nil, nil 205 } 206 for i := 0; i < n; i++ { 207 statedb, err := state.New(parent.Root(), state.NewDatabase(db)) 208 if err != nil { 209 panic(err) 210 } 211 block, receipt := genblock(i, parent, statedb) 212 blocks[i] = block 213 receipts[i] = receipt 214 parent = block 215 } 216 return blocks, receipts 217 } 218 219 func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header { 220 var time *big.Int 221 if parent.Time() == nil { 222 time = big.NewInt(10) 223 } else { 224 time = new(big.Int).Add(parent.Time(), big.NewInt(10)) // block time is fixed at 10 seconds 225 } 226 227 return &types.Header{ 228 Root: state.IntermediateRoot(chain.Config().IsEIP158(parent.Number())), 229 ParentHash: parent.Hash(), 230 Coinbase: parent.Coinbase(), 231 Difficulty: engine.CalcDifficulty(chain, time.Uint64(), &types.Header{ 232 Number: parent.Number(), 233 Time: new(big.Int).Sub(time, big.NewInt(10)), 234 Difficulty: parent.Difficulty(), 235 UncleHash: parent.UncleHash(), 236 }), 237 GasLimit: CalcGasLimit(parent), 238 Number: new(big.Int).Add(parent.Number(), common.Big1), 239 Time: time, 240 } 241 } 242 243 // newCanonical creates a chain database, and injects a deterministic canonical 244 // chain. Depending on the full flag, if creates either a full block chain or a 245 // header only chain. 246 func newCanonical(engine consensus.Engine, n int, full bool) (ethdb.Database, *BlockChain, error) { 247 // Initialize a fresh chain with only a genesis block 248 gspec := new(Genesis) 249 db, _ := ethdb.NewMemDatabase() 250 genesis := gspec.MustCommit(db) 251 252 blockchain, _ := NewBlockChain(db, nil, params.AllEthashProtocolChanges, engine, vm.Config{}) 253 // Create and inject the requested chain 254 if n == 0 { 255 return db, blockchain, nil 256 } 257 if full { 258 // Full block-chain requested 259 blocks := makeBlockChain(genesis, n, engine, db, canonicalSeed) 260 _, err := blockchain.InsertChain(blocks) 261 return db, blockchain, err 262 } 263 // Header-only chain requested 264 headers := makeHeaderChain(genesis.Header(), n, engine, db, canonicalSeed) 265 _, err := blockchain.InsertHeaderChain(headers, 1) 266 return db, blockchain, err 267 } 268 269 // makeHeaderChain creates a deterministic chain of headers rooted at parent. 270 func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Header { 271 blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed) 272 headers := make([]*types.Header, len(blocks)) 273 for i, block := range blocks { 274 headers[i] = block.Header() 275 } 276 return headers 277 } 278 279 // makeBlockChain creates a deterministic chain of blocks rooted at parent. 280 func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Block { 281 blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) { 282 b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)}) 283 }) 284 return blocks 285 }