2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-10-18 11:31:20 +00:00
|
|
|
package vm
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-01-19 10:18:34 +00:00
|
|
|
import (
|
2018-10-08 11:14:29 +00:00
|
|
|
"hash"
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2018-10-08 11:14:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-01-04 19:17:24 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2019-08-08 09:07:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2015-01-19 10:18:34 +00:00
|
|
|
)
|
2014-10-15 15:12:26 +00:00
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
// Config are the configuration options for the Interpreter
|
2016-02-03 22:46:27 +00:00
|
|
|
type Config struct {
|
2021-11-05 10:48:21 +00:00
|
|
|
Debug bool // Enables debugging
|
|
|
|
Tracer EVMLogger // Opcode logger
|
|
|
|
NoBaseFee bool // Forces the EIP-1559 baseFee to 0 (needed for 0 price calls)
|
|
|
|
EnablePreimageRecording bool // Enables recording of SHA3/keccak preimages
|
2018-09-20 07:44:35 +00:00
|
|
|
|
2021-11-30 12:21:40 +00:00
|
|
|
JumpTable *JumpTable // EVM instruction table, automatically populated if unset
|
2019-03-25 10:41:50 +00:00
|
|
|
|
2019-08-08 09:07:23 +00:00
|
|
|
ExtraEips []int // Additional EIPS that are to be enabled
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
|
2021-03-25 09:13:14 +00:00
|
|
|
// ScopeContext contains the things that are per-call, such as stack and memory,
|
2020-04-07 09:45:21 +00:00
|
|
|
// but not transients like pc and gas
|
2021-03-25 09:13:14 +00:00
|
|
|
type ScopeContext struct {
|
|
|
|
Memory *Memory
|
|
|
|
Stack *Stack
|
|
|
|
Contract *Contract
|
2020-04-07 09:45:21 +00:00
|
|
|
}
|
|
|
|
|
2018-10-08 11:14:29 +00:00
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
2018-07-25 12:56:39 +00:00
|
|
|
// EVMInterpreter represents an EVM interpreter
|
|
|
|
type EVMInterpreter struct {
|
2019-08-05 08:01:02 +00:00
|
|
|
evm *EVM
|
|
|
|
cfg Config
|
2018-10-08 11:14:29 +00:00
|
|
|
|
|
|
|
hasher keccakState // Keccak256 hasher instance shared across opcodes
|
|
|
|
hasherBuf common.Hash // Keccak256 hasher result array shared aross opcodes
|
2017-02-01 21:36:51 +00:00
|
|
|
|
2017-08-16 10:36:48 +00:00
|
|
|
readOnly bool // Whether to throw on stateful modifications
|
|
|
|
returnData []byte // Last CALL's return data for subsequent reuse
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
|
|
|
|
2018-07-25 12:56:39 +00:00
|
|
|
// NewEVMInterpreter returns a new instance of the Interpreter.
|
|
|
|
func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter {
|
2021-11-30 12:21:40 +00:00
|
|
|
// If jump table was not initialised we set the default one.
|
|
|
|
if cfg.JumpTable == nil {
|
2017-02-01 21:36:51 +00:00
|
|
|
switch {
|
2022-01-10 07:44:21 +00:00
|
|
|
case evm.chainRules.IsMerge:
|
|
|
|
cfg.JumpTable = &mergeInstructionSet
|
2021-05-07 06:25:32 +00:00
|
|
|
case evm.chainRules.IsLondon:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &londonInstructionSet
|
2021-02-25 07:10:30 +00:00
|
|
|
case evm.chainRules.IsBerlin:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &berlinInstructionSet
|
2019-08-22 10:41:55 +00:00
|
|
|
case evm.chainRules.IsIstanbul:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &istanbulInstructionSet
|
2019-08-05 08:01:02 +00:00
|
|
|
case evm.chainRules.IsConstantinople:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &constantinopleInstructionSet
|
2019-08-05 08:01:02 +00:00
|
|
|
case evm.chainRules.IsByzantium:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &byzantiumInstructionSet
|
2019-08-05 08:01:02 +00:00
|
|
|
case evm.chainRules.IsEIP158:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &spuriousDragonInstructionSet
|
2019-08-05 08:01:02 +00:00
|
|
|
case evm.chainRules.IsEIP150:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &tangerineWhistleInstructionSet
|
2019-08-05 08:01:02 +00:00
|
|
|
case evm.chainRules.IsHomestead:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &homesteadInstructionSet
|
2017-02-01 21:36:51 +00:00
|
|
|
default:
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = &frontierInstructionSet
|
2019-08-08 09:07:23 +00:00
|
|
|
}
|
|
|
|
for i, eip := range cfg.ExtraEips {
|
2021-11-30 12:21:40 +00:00
|
|
|
copy := *cfg.JumpTable
|
|
|
|
if err := EnableEIP(eip, ©); err != nil {
|
2019-08-08 09:07:23 +00:00
|
|
|
// 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)
|
|
|
|
}
|
2021-11-30 12:21:40 +00:00
|
|
|
cfg.JumpTable = ©
|
2017-02-01 21:36:51 +00:00
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
}
|
|
|
|
|
2018-07-25 12:56:39 +00:00
|
|
|
return &EVMInterpreter{
|
2019-08-05 08:01:02 +00:00
|
|
|
evm: evm,
|
|
|
|
cfg: cfg,
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 21:36:51 +00:00
|
|
|
// Run loops and evaluates the contract's code with the given input data and returns
|
2017-05-25 14:21:20 +00:00
|
|
|
// the return byte-slice and an error if one occurred.
|
2017-02-01 21:36:51 +00:00
|
|
|
//
|
|
|
|
// It's important to note that any errors returned by the interpreter should be
|
2017-12-14 12:28:44 +00:00
|
|
|
// considered a revert-and-consume-all-gas operation except for
|
2020-04-22 08:25:36 +00:00
|
|
|
// ErrExecutionReverted which means revert-and-keep-gas-left.
|
2018-09-07 16:13:25 +00:00
|
|
|
func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (ret []byte, err error) {
|
2018-07-03 10:06:42 +00:00
|
|
|
|
2017-08-15 08:23:23 +00:00
|
|
|
// Increment the call depth which is restricted to 1024
|
2017-02-01 21:36:51 +00:00
|
|
|
in.evm.depth++
|
|
|
|
defer func() { in.evm.depth-- }()
|
2015-07-17 21:09:36 +00:00
|
|
|
|
2018-09-07 16:13:25 +00:00
|
|
|
// Make sure the readOnly is only set if we aren't in readOnly yet.
|
2021-05-03 08:58:00 +00:00
|
|
|
// This also makes sure that the readOnly flag isn't removed for child calls.
|
2018-09-07 16:13:25 +00:00
|
|
|
if readOnly && !in.readOnly {
|
|
|
|
in.readOnly = true
|
|
|
|
defer func() { in.readOnly = false }()
|
|
|
|
}
|
|
|
|
|
2017-08-16 10:07:33 +00:00
|
|
|
// 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
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Don't bother with the execution if there's no code.
|
|
|
|
if len(contract.Code) == 0 {
|
2016-01-19 22:50:00 +00:00
|
|
|
return nil, nil
|
2015-08-30 08:19:10 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 12:44:15 +00:00
|
|
|
var (
|
2021-03-02 21:40:57 +00:00
|
|
|
op OpCode // current opcode
|
|
|
|
mem = NewMemory() // bound memory
|
|
|
|
stack = newstack() // local stack
|
2021-03-25 09:13:14 +00:00
|
|
|
callContext = &ScopeContext{
|
|
|
|
Memory: mem,
|
|
|
|
Stack: stack,
|
|
|
|
Contract: contract,
|
2020-04-07 09:45:21 +00:00
|
|
|
}
|
2015-06-12 11:35:14 +00:00
|
|
|
// For optimisation reason we're using uint64 as the program counter.
|
2017-02-01 21:36:51 +00:00
|
|
|
// It's theoretically possible to go above 2^64. The YP defines the PC
|
|
|
|
// to be uint256. Practically much less so feasible.
|
2017-01-05 10:52:10 +00:00
|
|
|
pc = uint64(0) // program counter
|
2017-01-04 19:17:24 +00:00
|
|
|
cost uint64
|
2017-09-22 08:22:56 +00:00
|
|
|
// copies used by tracer
|
2021-11-05 10:48:21 +00:00
|
|
|
pcCopy uint64 // needed for the deferred EVMLogger
|
|
|
|
gasCopy uint64 // for EVMLogger to log gas remaining before execution
|
|
|
|
logged bool // deferred EVMLogger should ignore already logged steps
|
2019-02-04 14:26:21 +00:00
|
|
|
res []byte // result of the opcode execution function
|
2015-03-13 12:44:15 +00:00
|
|
|
)
|
2020-07-16 12:06:19 +00:00
|
|
|
// 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)
|
|
|
|
}()
|
2015-08-30 08:19:10 +00:00
|
|
|
contract.Input = input
|
2015-01-19 10:18:34 +00:00
|
|
|
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
if in.cfg.Debug {
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
if !logged {
|
2021-11-09 11:09:35 +00:00
|
|
|
in.cfg.Tracer.CaptureState(pcCopy, op, gasCopy, cost, callContext, in.returnData, in.evm.depth, err)
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
} else {
|
2021-11-09 11:09:35 +00:00
|
|
|
in.cfg.Tracer.CaptureFault(pcCopy, op, gasCopy, cost, callContext, in.evm.depth, err)
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
// The Interpreter main run loop (contextual). This loop runs until either an
|
2017-02-08 12:39:26 +00:00
|
|
|
// explicit STOP, RETURN or SELFDESTRUCT is executed, an error occurred during
|
2017-05-12 19:35:45 +00:00
|
|
|
// the execution of one of the operations or until the done flag is set by the
|
|
|
|
// parent context.
|
2020-04-07 09:45:21 +00:00
|
|
|
for {
|
2017-09-22 08:22:56 +00:00
|
|
|
if in.cfg.Debug {
|
2017-11-28 19:05:49 +00:00
|
|
|
// Capture pre-execution values for tracing.
|
|
|
|
logged, pcCopy, gasCopy = false, pc, contract.Gas
|
2017-09-22 08:22:56 +00:00
|
|
|
}
|
2017-11-28 19:05:49 +00:00
|
|
|
// 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)
|
2017-02-01 21:36:51 +00:00
|
|
|
operation := in.cfg.JumpTable[op]
|
2021-12-14 10:30:20 +00:00
|
|
|
cost = operation.constantGas // For tracing
|
2019-03-12 09:40:05 +00:00
|
|
|
// Validate stack
|
|
|
|
if sLen := stack.len(); sLen < operation.minStack {
|
2020-04-22 08:25:36 +00:00
|
|
|
return nil, &ErrStackUnderflow{stackLen: sLen, required: operation.minStack}
|
2019-03-12 09:40:05 +00:00
|
|
|
} else if sLen > operation.maxStack {
|
2020-04-22 08:25:36 +00:00
|
|
|
return nil, &ErrStackOverflow{stackLen: sLen, limit: operation.maxStack}
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2021-12-14 10:30:20 +00:00
|
|
|
if !contract.UseGas(cost) {
|
2019-03-12 09:40:05 +00:00
|
|
|
return nil, ErrOutOfGas
|
2017-10-14 12:42:48 +00:00
|
|
|
}
|
2019-03-12 09:40:05 +00:00
|
|
|
if operation.dynamicGas != nil {
|
2021-12-14 10:30:20 +00:00
|
|
|
// All ops with a dynamic memory usage also has a dynamic gas cost.
|
|
|
|
var memorySize uint64
|
|
|
|
// calculate the new memory size and expand the memory to fit
|
|
|
|
// the operation
|
|
|
|
// Memory check needs to be done prior to evaluating the dynamic gas portion,
|
|
|
|
// to detect calculation overflows
|
|
|
|
if operation.memorySize != nil {
|
|
|
|
memSize, overflow := operation.memorySize(stack)
|
|
|
|
if overflow {
|
|
|
|
return nil, ErrGasUintOverflow
|
|
|
|
}
|
|
|
|
// memory is expanded in words of 32 bytes. Gas
|
|
|
|
// is also calculated in words.
|
|
|
|
if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow {
|
|
|
|
return nil, ErrGasUintOverflow
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Consume the gas and return an error if not enough gas is available.
|
|
|
|
// cost is explicitly set so that the capture state defer method can get the proper cost
|
2019-08-05 08:01:02 +00:00
|
|
|
var dynamicCost uint64
|
|
|
|
dynamicCost, err = operation.dynamicGas(in.evm, contract, stack, mem, memorySize)
|
2021-12-14 10:30:20 +00:00
|
|
|
cost += dynamicCost // for tracing
|
2019-08-05 08:01:02 +00:00
|
|
|
if err != nil || !contract.UseGas(dynamicCost) {
|
2019-03-12 09:40:05 +00:00
|
|
|
return nil, ErrOutOfGas
|
|
|
|
}
|
2021-12-14 10:30:20 +00:00
|
|
|
if memorySize > 0 {
|
|
|
|
mem.Resize(memorySize)
|
|
|
|
}
|
2015-03-27 15:09:57 +00:00
|
|
|
}
|
2017-02-01 21:36:51 +00:00
|
|
|
if in.cfg.Debug {
|
2021-11-09 11:09:35 +00:00
|
|
|
in.cfg.Tracer.CaptureState(pc, op, gasCopy, cost, callContext, in.returnData, in.evm.depth, err)
|
2017-09-22 08:22:56 +00:00
|
|
|
logged = true
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
// execute the operation
|
2020-04-07 09:45:21 +00:00
|
|
|
res, err = operation.execute(&pc, in, callContext)
|
2021-11-29 13:46:24 +00:00
|
|
|
if err != nil {
|
|
|
|
break
|
2015-03-02 15:32:02 +00:00
|
|
|
}
|
2021-11-29 13:46:24 +00:00
|
|
|
pc++
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2021-11-29 13:46:24 +00:00
|
|
|
|
|
|
|
if err == errStopToken {
|
|
|
|
err = nil // clear stop token error
|
|
|
|
}
|
|
|
|
|
|
|
|
return res, err
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|