interpreter.go 9.46 KB
Newer Older
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 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

obscuren's avatar
obscuren committed
17
package vm
18

obscuren's avatar
obscuren committed
19
import (
20
	"hash"
21
	"sync/atomic"
22

23
	"github.com/ethereum/go-ethereum/common"
24
	"github.com/ethereum/go-ethereum/common/math"
25
	"github.com/ethereum/go-ethereum/log"
obscuren's avatar
obscuren committed
26
)
obscuren's avatar
obscuren committed
27

28
// Config are the configuration options for the Interpreter
29
type Config struct {
30 31 32
	Debug                   bool   // Enables debugging
	Tracer                  Tracer // Opcode logger
	NoRecursion             bool   // Disables call, callcode, delegate call and create
33
	NoBaseFee               bool   // Forces the EIP-1559 baseFee to 0 (needed for 0 price calls)
34
	EnablePreimageRecording bool   // Enables recording of SHA3/keccak preimages
35

36
	JumpTable [256]*operation // EVM instruction table, automatically populated if unset
37

38
	ExtraEips []int // Additional EIPS that are to be enabled
39 40
}

41
// ScopeContext contains the things that are per-call, such as stack and memory,
42
// but not transients like pc and gas
43 44 45 46
type ScopeContext struct {
	Memory   *Memory
	Stack    *Stack
	Contract *Contract
47 48
}

49 50 51 52 53 54 55 56
// keccakState wraps sha3.state. In addition to the usual hash methods, it also supports
// Read to get a variable amount of data from the hash state. Read is faster than Sum
// because it doesn't copy the internal state, but also modifies the internal state.
type keccakState interface {
	hash.Hash
	Read([]byte) (int, error)
}

57 58
// EVMInterpreter represents an EVM interpreter
type EVMInterpreter struct {
59 60
	evm *EVM
	cfg Config
61 62 63

	hasher    keccakState // Keccak256 hasher instance shared across opcodes
	hasherBuf common.Hash // Keccak256 hasher result array shared aross opcodes
64

65 66
	readOnly   bool   // Whether to throw on stateful modifications
	returnData []byte // Last CALL's return data for subsequent reuse
obscuren's avatar
obscuren committed
67 68
}

69 70
// NewEVMInterpreter returns a new instance of the Interpreter.
func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter {
71 72 73
	// We use the STOP instruction whether to see
	// the jump table was initialised. If it was not
	// we'll set the default jump table.
74
	if cfg.JumpTable[STOP] == nil {
75
		var jt JumpTable
76
		switch {
77 78
		case evm.chainRules.IsLondon:
			jt = londonInstructionSet
79 80
		case evm.chainRules.IsBerlin:
			jt = berlinInstructionSet
81 82
		case evm.chainRules.IsIstanbul:
			jt = istanbulInstructionSet
83
		case evm.chainRules.IsConstantinople:
84
			jt = constantinopleInstructionSet
85
		case evm.chainRules.IsByzantium:
86
			jt = byzantiumInstructionSet
87
		case evm.chainRules.IsEIP158:
88
			jt = spuriousDragonInstructionSet
89
		case evm.chainRules.IsEIP150:
90
			jt = tangerineWhistleInstructionSet
91
		case evm.chainRules.IsHomestead:
92
			jt = homesteadInstructionSet
93
		default:
94 95 96 97 98 99 100 101
			jt = frontierInstructionSet
		}
		for i, eip := range cfg.ExtraEips {
			if err := EnableEIP(eip, &jt); err != nil {
				// Disable it, so caller can check if it's activated or not
				cfg.ExtraEips = append(cfg.ExtraEips[:i], cfg.ExtraEips[i+1:]...)
				log.Error("EIP activation failed", "eip", eip, "error", err)
			}
102
		}
103
		cfg.JumpTable = jt
104 105
	}

106
	return &EVMInterpreter{
107 108
		evm: evm,
		cfg: cfg,
109
	}
obscuren's avatar
obscuren committed
110 111
}

112
// Run loops and evaluates the contract's code with the given input data and returns
113
// the return byte-slice and an error if one occurred.
114 115
//
// It's important to note that any errors returned by the interpreter should be
116
// considered a revert-and-consume-all-gas operation except for
117
// ErrExecutionReverted which means revert-and-keep-gas-left.
118
func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (ret []byte, err error) {
119

120
	// Increment the call depth which is restricted to 1024
121 122
	in.evm.depth++
	defer func() { in.evm.depth-- }()
123

124
	// Make sure the readOnly is only set if we aren't in readOnly yet.
125
	// This also makes sure that the readOnly flag isn't removed for child calls.
126 127 128 129 130
	if readOnly && !in.readOnly {
		in.readOnly = true
		defer func() { in.readOnly = false }()
	}

131 132 133 134
	// Reset the previous call's return data. It's unimportant to preserve the old buffer
	// as every returning call will return new data anyway.
	in.returnData = nil

135 136
	// Don't bother with the execution if there's no code.
	if len(contract.Code) == 0 {
137
		return nil, nil
138 139
	}

140
	var (
141 142 143
		op          OpCode        // current opcode
		mem         = NewMemory() // bound memory
		stack       = newstack()  // local stack
144 145 146 147
		callContext = &ScopeContext{
			Memory:   mem,
			Stack:    stack,
			Contract: contract,
148
		}
149
		// For optimisation reason we're using uint64 as the program counter.
150 151
		// It's theoretically possible to go above 2^64. The YP defines the PC
		// to be uint256. Practically much less so feasible.
152
		pc   = uint64(0) // program counter
153
		cost uint64
154
		// copies used by tracer
155 156 157
		pcCopy  uint64 // needed for the deferred Tracer
		gasCopy uint64 // for Tracer to log gas remaining before execution
		logged  bool   // deferred Tracer should ignore already logged steps
158
		res     []byte // result of the opcode execution function
159
	)
160 161 162 163 164 165
	// Don't move this deferrred function, it's placed before the capturestate-deferred method,
	// so that it get's executed _after_: the capturestate needs the stacks before
	// they are returned to the pools
	defer func() {
		returnStack(stack)
	}()
166
	contract.Input = input
obscuren's avatar
obscuren committed
167

168 169 170 171
	if in.cfg.Debug {
		defer func() {
			if err != nil {
				if !logged {
172
					in.cfg.Tracer.CaptureState(in.evm, pcCopy, op, gasCopy, cost, callContext, in.returnData, in.evm.depth, err)
173
				} else {
174
					in.cfg.Tracer.CaptureFault(in.evm, pcCopy, op, gasCopy, cost, callContext, in.evm.depth, err)
175 176 177 178
				}
			}
		}()
	}
179
	// The Interpreter main run loop (contextual). This loop runs until either an
180
	// explicit STOP, RETURN or SELFDESTRUCT is executed, an error occurred during
181 182
	// the execution of one of the operations or until the done flag is set by the
	// parent context.
183 184 185 186 187 188
	steps := 0
	for {
		steps++
		if steps%1000 == 0 && atomic.LoadInt32(&in.evm.abort) != 0 {
			break
		}
189
		if in.cfg.Debug {
190 191
			// Capture pre-execution values for tracing.
			logged, pcCopy, gasCopy = false, pc, contract.Gas
192 193
		}

194 195 196
		// Get the operation from the jump table and validate the stack to ensure there are
		// enough stack items available to perform the operation.
		op = contract.GetOp(pc)
197
		operation := in.cfg.JumpTable[op]
198
		if operation == nil {
199
			return nil, &ErrInvalidOpCode{opcode: op}
200
		}
201 202
		// Validate stack
		if sLen := stack.len(); sLen < operation.minStack {
203
			return nil, &ErrStackUnderflow{stackLen: sLen, required: operation.minStack}
204
		} else if sLen > operation.maxStack {
205
			return nil, &ErrStackOverflow{stackLen: sLen, limit: operation.maxStack}
obscuren's avatar
obscuren committed
206
		}
207
		// If the operation is valid, enforce write restrictions
208 209 210 211 212 213 214
		if in.readOnly && in.evm.chainRules.IsByzantium {
			// If the interpreter is operating in readonly mode, make sure no
			// state-modifying operation is performed. The 3rd stack item
			// for a call operation is the value. Transferring value from one
			// account to the others means the state is modified and should also
			// return with an error.
			if operation.writes || (op == CALL && stack.Back(2).Sign() != 0) {
215
				return nil, ErrWriteProtection
216 217 218
			}
		}
		// Static portion of gas
219
		cost = operation.constantGas // For tracing
220 221
		if !contract.UseGas(operation.constantGas) {
			return nil, ErrOutOfGas
222
		}
obscuren's avatar
obscuren committed
223

224
		var memorySize uint64
225 226
		// calculate the new memory size and expand the memory to fit
		// the operation
227 228
		// Memory check needs to be done prior to evaluating the dynamic gas portion,
		// to detect calculation overflows
229
		if operation.memorySize != nil {
230
			memSize, overflow := operation.memorySize(stack)
231
			if overflow {
232
				return nil, ErrGasUintOverflow
233
			}
234 235
			// memory is expanded in words of 32 bytes. Gas
			// is also calculated in words.
236
			if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow {
237
				return nil, ErrGasUintOverflow
238
			}
239
		}
240
		// Dynamic portion of gas
241
		// consume the gas and return an error if not enough gas is available.
242
		// cost is explicitly set so that the capture state defer method can get the proper cost
243
		if operation.dynamicGas != nil {
244 245 246 247
			var dynamicCost uint64
			dynamicCost, err = operation.dynamicGas(in.evm, contract, stack, mem, memorySize)
			cost += dynamicCost // total cost, for debug tracing
			if err != nil || !contract.UseGas(dynamicCost) {
248 249
				return nil, ErrOutOfGas
			}
obscuren's avatar
obscuren committed
250
		}
251 252
		if memorySize > 0 {
			mem.Resize(memorySize)
obscuren's avatar
obscuren committed
253
		}
obscuren's avatar
obscuren committed
254

255
		if in.cfg.Debug {
256
			in.cfg.Tracer.CaptureState(in.evm, pc, op, gasCopy, cost, callContext, in.returnData, in.evm.depth, err)
257
			logged = true
obscuren's avatar
obscuren committed
258
		}
259

260
		// execute the operation
261
		res, err = operation.execute(&pc, in, callContext)
262 263 264
		// if the operation clears the return data (e.g. it has returning data)
		// set the last return to the result of the operation.
		if operation.returns {
265
			in.returnData = common.CopyBytes(res)
266
		}
267

268 269 270
		switch {
		case err != nil:
			return nil, err
271
		case operation.reverts:
272
			return res, ErrExecutionReverted
273 274 275 276
		case operation.halts:
			return res, nil
		case !operation.jumps:
			pc++
obscuren's avatar
obscuren committed
277
		}
obscuren's avatar
obscuren committed
278
	}
279
	return nil, nil
280
}