github.com/4000d/go-ethereum@v1.8.2-0.20180223170251-423c8bb1d821/core/vm/interpreter.go (about) 1 // Copyright 2014 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 vm 18 19 import ( 20 "fmt" 21 "sync/atomic" 22 23 "github.com/ethereum/go-ethereum/common/math" 24 "github.com/ethereum/go-ethereum/params" 25 ) 26 27 // Config are the configuration options for the Interpreter 28 type Config struct { 29 // Debug enabled debugging Interpreter options 30 Debug bool 31 // EnableJit enabled the JIT VM 32 EnableJit bool 33 // ForceJit forces the JIT VM 34 ForceJit bool 35 // Tracer is the op code logger 36 Tracer Tracer 37 // NoRecursion disabled Interpreter call, callcode, 38 // delegate call and create. 39 NoRecursion bool 40 // Disable gas metering 41 DisableGasMetering bool 42 // Enable recording of SHA3/keccak preimages 43 EnablePreimageRecording bool 44 // JumpTable contains the EVM instruction table. This 45 // may be left uninitialised and will be set to the default 46 // table. 47 JumpTable [256]operation 48 } 49 50 // Interpreter is used to run Ethereum based contracts and will utilise the 51 // passed evmironment to query external sources for state information. 52 // The Interpreter will run the byte code VM or JIT VM based on the passed 53 // configuration. 54 type Interpreter struct { 55 evm *EVM 56 cfg Config 57 gasTable params.GasTable 58 intPool *intPool 59 60 readOnly bool // Whether to throw on stateful modifications 61 returnData []byte // Last CALL's return data for subsequent reuse 62 } 63 64 // NewInterpreter returns a new instance of the Interpreter. 65 func NewInterpreter(evm *EVM, cfg Config) *Interpreter { 66 // We use the STOP instruction whether to see 67 // the jump table was initialised. If it was not 68 // we'll set the default jump table. 69 if !cfg.JumpTable[STOP].valid { 70 switch { 71 case evm.ChainConfig().IsConstantinople(evm.BlockNumber): 72 cfg.JumpTable = constantinopleInstructionSet 73 case evm.ChainConfig().IsByzantium(evm.BlockNumber): 74 cfg.JumpTable = byzantiumInstructionSet 75 case evm.ChainConfig().IsHomestead(evm.BlockNumber): 76 cfg.JumpTable = homesteadInstructionSet 77 default: 78 cfg.JumpTable = frontierInstructionSet 79 } 80 } 81 82 return &Interpreter{ 83 evm: evm, 84 cfg: cfg, 85 gasTable: evm.ChainConfig().GasTable(evm.BlockNumber), 86 intPool: newIntPool(), 87 } 88 } 89 90 func (in *Interpreter) enforceRestrictions(op OpCode, operation operation, stack *Stack) error { 91 if in.evm.chainRules.IsByzantium { 92 if in.readOnly { 93 // If the interpreter is operating in readonly mode, make sure no 94 // state-modifying operation is performed. The 3rd stack item 95 // for a call operation is the value. Transferring value from one 96 // account to the others means the state is modified and should also 97 // return with an error. 98 if operation.writes || (op == CALL && stack.Back(2).BitLen() > 0) { 99 return errWriteProtection 100 } 101 } 102 } 103 return nil 104 } 105 106 // Run loops and evaluates the contract's code with the given input data and returns 107 // the return byte-slice and an error if one occurred. 108 // 109 // It's important to note that any errors returned by the interpreter should be 110 // considered a revert-and-consume-all-gas operation except for 111 // errExecutionReverted which means revert-and-keep-gas-left. 112 func (in *Interpreter) Run(contract *Contract, input []byte) (ret []byte, err error) { 113 // Increment the call depth which is restricted to 1024 114 in.evm.depth++ 115 defer func() { in.evm.depth-- }() 116 117 // Reset the previous call's return data. It's unimportant to preserve the old buffer 118 // as every returning call will return new data anyway. 119 in.returnData = nil 120 121 // Don't bother with the execution if there's no code. 122 if len(contract.Code) == 0 { 123 return nil, nil 124 } 125 126 var ( 127 op OpCode // current opcode 128 mem = NewMemory() // bound memory 129 stack = newstack() // local stack 130 // For optimisation reason we're using uint64 as the program counter. 131 // It's theoretically possible to go above 2^64. The YP defines the PC 132 // to be uint256. Practically much less so feasible. 133 pc = uint64(0) // program counter 134 cost uint64 135 // copies used by tracer 136 pcCopy uint64 // needed for the deferred Tracer 137 gasCopy uint64 // for Tracer to log gas remaining before execution 138 logged bool // deferred Tracer should ignore already logged steps 139 ) 140 contract.Input = input 141 142 if in.cfg.Debug { 143 defer func() { 144 if err != nil { 145 if !logged { 146 in.cfg.Tracer.CaptureState(in.evm, pcCopy, op, gasCopy, cost, mem, stack, contract, in.evm.depth, err) 147 } else { 148 in.cfg.Tracer.CaptureFault(in.evm, pcCopy, op, gasCopy, cost, mem, stack, contract, in.evm.depth, err) 149 } 150 } 151 }() 152 } 153 // The Interpreter main run loop (contextual). This loop runs until either an 154 // explicit STOP, RETURN or SELFDESTRUCT is executed, an error occurred during 155 // the execution of one of the operations or until the done flag is set by the 156 // parent context. 157 for atomic.LoadInt32(&in.evm.abort) == 0 { 158 if in.cfg.Debug { 159 // Capture pre-execution values for tracing. 160 logged, pcCopy, gasCopy = false, pc, contract.Gas 161 } 162 163 // Get the operation from the jump table and validate the stack to ensure there are 164 // enough stack items available to perform the operation. 165 op = contract.GetOp(pc) 166 operation := in.cfg.JumpTable[op] 167 if !operation.valid { 168 return nil, fmt.Errorf("invalid opcode 0x%x", int(op)) 169 } 170 if err := operation.validateStack(stack); err != nil { 171 return nil, err 172 } 173 // If the operation is valid, enforce and write restrictions 174 if err := in.enforceRestrictions(op, operation, stack); err != nil { 175 return nil, err 176 } 177 178 var memorySize uint64 179 // calculate the new memory size and expand the memory to fit 180 // the operation 181 if operation.memorySize != nil { 182 memSize, overflow := bigUint64(operation.memorySize(stack)) 183 if overflow { 184 return nil, errGasUintOverflow 185 } 186 // memory is expanded in words of 32 bytes. Gas 187 // is also calculated in words. 188 if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow { 189 return nil, errGasUintOverflow 190 } 191 } 192 193 if !in.cfg.DisableGasMetering { 194 // consume the gas and return an error if not enough gas is available. 195 // cost is explicitly set so that the capture state defer method cas get the proper cost 196 cost, err = operation.gasCost(in.gasTable, in.evm, contract, stack, mem, memorySize) 197 if err != nil || !contract.UseGas(cost) { 198 return nil, ErrOutOfGas 199 } 200 } 201 if memorySize > 0 { 202 mem.Resize(memorySize) 203 } 204 205 if in.cfg.Debug { 206 in.cfg.Tracer.CaptureState(in.evm, pc, op, gasCopy, cost, mem, stack, contract, in.evm.depth, err) 207 logged = true 208 } 209 210 // execute the operation 211 res, err := operation.execute(&pc, in.evm, contract, mem, stack) 212 // verifyPool is a build flag. Pool verification makes sure the integrity 213 // of the integer pool by comparing values to a default value. 214 if verifyPool { 215 verifyIntegerPool(in.intPool) 216 } 217 // if the operation clears the return data (e.g. it has returning data) 218 // set the last return to the result of the operation. 219 if operation.returns { 220 in.returnData = res 221 } 222 223 switch { 224 case err != nil: 225 return nil, err 226 case operation.reverts: 227 return res, errExecutionReverted 228 case operation.halts: 229 return res, nil 230 case !operation.jumps: 231 pc++ 232 } 233 } 234 return nil, nil 235 }