github.com/clem109/go-ethereum@v1.8.3-0.20180316121352-fe6cf00f480a/tests/vm_test_util.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 tests 18 19 import ( 20 "bytes" 21 "encoding/json" 22 "fmt" 23 "math/big" 24 25 "github.com/ethereum/go-ethereum/common" 26 "github.com/ethereum/go-ethereum/common/hexutil" 27 "github.com/ethereum/go-ethereum/common/math" 28 "github.com/ethereum/go-ethereum/core" 29 "github.com/ethereum/go-ethereum/core/state" 30 "github.com/ethereum/go-ethereum/core/vm" 31 "github.com/ethereum/go-ethereum/crypto" 32 "github.com/ethereum/go-ethereum/ethdb" 33 "github.com/ethereum/go-ethereum/params" 34 ) 35 36 // VMTest checks EVM execution without block or transaction context. 37 // See https://github.com/ethereum/tests/wiki/VM-Tests for the test format specification. 38 type VMTest struct { 39 json vmJSON 40 } 41 42 func (t *VMTest) UnmarshalJSON(data []byte) error { 43 return json.Unmarshal(data, &t.json) 44 } 45 46 type vmJSON struct { 47 Env stEnv `json:"env"` 48 Exec vmExec `json:"exec"` 49 Logs common.UnprefixedHash `json:"logs"` 50 GasRemaining *math.HexOrDecimal64 `json:"gas"` 51 Out hexutil.Bytes `json:"out"` 52 Pre core.GenesisAlloc `json:"pre"` 53 Post core.GenesisAlloc `json:"post"` 54 PostStateRoot common.Hash `json:"postStateRoot"` 55 } 56 57 //go:generate gencodec -type vmExec -field-override vmExecMarshaling -out gen_vmexec.go 58 59 type vmExec struct { 60 Address common.Address `json:"address" gencodec:"required"` 61 Caller common.Address `json:"caller" gencodec:"required"` 62 Origin common.Address `json:"origin" gencodec:"required"` 63 Code []byte `json:"code" gencodec:"required"` 64 Data []byte `json:"data" gencodec:"required"` 65 Value *big.Int `json:"value" gencodec:"required"` 66 GasLimit uint64 `json:"gas" gencodec:"required"` 67 GasPrice *big.Int `json:"gasPrice" gencodec:"required"` 68 } 69 70 type vmExecMarshaling struct { 71 Address common.UnprefixedAddress 72 Caller common.UnprefixedAddress 73 Origin common.UnprefixedAddress 74 Code hexutil.Bytes 75 Data hexutil.Bytes 76 Value *math.HexOrDecimal256 77 GasLimit math.HexOrDecimal64 78 GasPrice *math.HexOrDecimal256 79 } 80 81 func (t *VMTest) Run(vmconfig vm.Config) error { 82 db, _ := ethdb.NewMemDatabase() 83 statedb := MakePreState(db, t.json.Pre) 84 ret, gasRemaining, err := t.exec(statedb, vmconfig) 85 86 if t.json.GasRemaining == nil { 87 if err == nil { 88 return fmt.Errorf("gas unspecified (indicating an error), but VM returned no error") 89 } 90 if gasRemaining > 0 { 91 return fmt.Errorf("gas unspecified (indicating an error), but VM returned gas remaining > 0") 92 } 93 return nil 94 } 95 // Test declares gas, expecting outputs to match. 96 if !bytes.Equal(ret, t.json.Out) { 97 return fmt.Errorf("return data mismatch: got %x, want %x", ret, t.json.Out) 98 } 99 if gasRemaining != uint64(*t.json.GasRemaining) { 100 return fmt.Errorf("remaining gas %v, want %v", gasRemaining, *t.json.GasRemaining) 101 } 102 for addr, account := range t.json.Post { 103 for k, wantV := range account.Storage { 104 if haveV := statedb.GetState(addr, k); haveV != wantV { 105 return fmt.Errorf("wrong storage value at %x:\n got %x\n want %x", k, haveV, wantV) 106 } 107 } 108 } 109 // if root := statedb.IntermediateRoot(false); root != t.json.PostStateRoot { 110 // return fmt.Errorf("post state root mismatch, got %x, want %x", root, t.json.PostStateRoot) 111 // } 112 if logs := rlpHash(statedb.Logs()); logs != common.Hash(t.json.Logs) { 113 return fmt.Errorf("post state logs hash mismatch: got %x, want %x", logs, t.json.Logs) 114 } 115 return nil 116 } 117 118 func (t *VMTest) exec(statedb *state.StateDB, vmconfig vm.Config) ([]byte, uint64, error) { 119 evm := t.newEVM(statedb, vmconfig) 120 e := t.json.Exec 121 return evm.Call(vm.AccountRef(e.Caller), e.Address, e.Data, e.GasLimit, e.Value) 122 } 123 124 func (t *VMTest) newEVM(statedb *state.StateDB, vmconfig vm.Config) *vm.EVM { 125 initialCall := true 126 canTransfer := func(db vm.StateDB, address common.Address, amount *big.Int) bool { 127 if initialCall { 128 initialCall = false 129 return true 130 } 131 return core.CanTransfer(db, address, amount) 132 } 133 transfer := func(db vm.StateDB, sender, recipient common.Address, amount *big.Int) {} 134 context := vm.Context{ 135 CanTransfer: canTransfer, 136 Transfer: transfer, 137 GetHash: vmTestBlockHash, 138 Origin: t.json.Exec.Origin, 139 Coinbase: t.json.Env.Coinbase, 140 BlockNumber: new(big.Int).SetUint64(t.json.Env.Number), 141 Time: new(big.Int).SetUint64(t.json.Env.Timestamp), 142 GasLimit: t.json.Env.GasLimit, 143 Difficulty: t.json.Env.Difficulty, 144 GasPrice: t.json.Exec.GasPrice, 145 } 146 vmconfig.NoRecursion = true 147 return vm.NewEVM(context, statedb, params.MainnetChainConfig, vmconfig) 148 } 149 150 func vmTestBlockHash(n uint64) common.Hash { 151 return common.BytesToHash(crypto.Keccak256([]byte(big.NewInt(int64(n)).String()))) 152 }