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 (
|
|
|
|
"fmt"
|
2017-01-05 10:52:10 +00:00
|
|
|
"sync/atomic"
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-01-04 19:17:24 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2015-03-23 20:48:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2015-04-02 03:17:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
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 {
|
2017-01-05 10:52:10 +00:00
|
|
|
// Debug enabled debugging Interpreter options
|
2016-12-06 01:16:03 +00:00
|
|
|
Debug bool
|
|
|
|
// EnableJit enabled the JIT VM
|
2016-02-03 22:46:27 +00:00
|
|
|
EnableJit bool
|
2016-12-06 01:16:03 +00:00
|
|
|
// ForceJit forces the JIT VM
|
|
|
|
ForceJit bool
|
|
|
|
// Tracer is the op code logger
|
|
|
|
Tracer Tracer
|
2017-01-05 10:52:10 +00:00
|
|
|
// NoRecursion disabled Interpreter call, callcode,
|
2016-12-06 01:16:03 +00:00
|
|
|
// delegate call and create.
|
|
|
|
NoRecursion bool
|
2017-01-05 10:52:10 +00:00
|
|
|
// Disable gas metering
|
|
|
|
DisableGasMetering bool
|
2017-01-17 11:19:50 +00:00
|
|
|
// Enable recording of SHA3/keccak preimages
|
|
|
|
EnablePreimageRecording bool
|
2017-05-12 19:35:45 +00:00
|
|
|
// JumpTable contains the EVM instruction table. This
|
2017-08-03 23:31:18 +00:00
|
|
|
// may be left uninitialised and will be set to the default
|
2017-01-05 10:52:10 +00:00
|
|
|
// table.
|
|
|
|
JumpTable [256]operation
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
// Interpreter is used to run Ethereum based contracts and will utilise the
|
2017-02-01 21:36:51 +00:00
|
|
|
// passed evmironment to query external sources for state information.
|
2017-01-05 10:52:10 +00:00
|
|
|
// The Interpreter will run the byte code VM or JIT VM based on the passed
|
2016-02-03 22:46:27 +00:00
|
|
|
// configuration.
|
2017-01-05 10:52:10 +00:00
|
|
|
type Interpreter struct {
|
2017-02-01 21:36:51 +00:00
|
|
|
evm *EVM
|
2017-01-05 10:52:10 +00:00
|
|
|
cfg Config
|
|
|
|
gasTable params.GasTable
|
2017-01-04 19:17:24 +00:00
|
|
|
intPool *intPool
|
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
|
|
|
}
|
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
// NewInterpreter returns a new instance of the Interpreter.
|
2017-02-01 21:36:51 +00:00
|
|
|
func NewInterpreter(evm *EVM, cfg Config) *Interpreter {
|
2017-01-05 10:52:10 +00:00
|
|
|
// We use the STOP instruction whether to see
|
|
|
|
// the jump table was initialised. If it was not
|
|
|
|
// we'll set the default jump table.
|
|
|
|
if !cfg.JumpTable[STOP].valid {
|
2017-02-01 21:36:51 +00:00
|
|
|
switch {
|
2017-09-14 07:07:31 +00:00
|
|
|
case evm.ChainConfig().IsByzantium(evm.BlockNumber):
|
|
|
|
cfg.JumpTable = byzantiumInstructionSet
|
2017-02-01 21:36:51 +00:00
|
|
|
case evm.ChainConfig().IsHomestead(evm.BlockNumber):
|
|
|
|
cfg.JumpTable = homesteadInstructionSet
|
|
|
|
default:
|
2017-05-12 19:35:45 +00:00
|
|
|
cfg.JumpTable = frontierInstructionSet
|
2017-02-01 21:36:51 +00:00
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &Interpreter{
|
2017-02-01 21:36:51 +00:00
|
|
|
evm: evm,
|
2017-01-05 10:52:10 +00:00
|
|
|
cfg: cfg,
|
2017-02-01 21:36:51 +00:00
|
|
|
gasTable: evm.ChainConfig().GasTable(evm.BlockNumber),
|
2017-01-04 19:17:24 +00:00
|
|
|
intPool: newIntPool(),
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 21:36:51 +00:00
|
|
|
func (in *Interpreter) enforceRestrictions(op OpCode, operation operation, stack *Stack) error {
|
2017-09-14 07:07:31 +00:00
|
|
|
if in.evm.chainRules.IsByzantium {
|
2017-08-16 10:36:48 +00:00
|
|
|
if in.readOnly {
|
2017-08-15 09:56:09 +00:00
|
|
|
// If the interpreter is operating in readonly mode, make sure no
|
|
|
|
// state-modifying operation is performed. The 3rd stack item
|
2017-08-22 09:43:36 +00:00
|
|
|
// for a call operation is the value. Transferring value from one
|
2017-08-15 08:23:23 +00:00
|
|
|
// account to the others means the state is modified and should also
|
|
|
|
// return with an error.
|
2017-08-15 09:56:09 +00:00
|
|
|
if operation.writes || (op == CALL && stack.Back(2).BitLen() > 0) {
|
2017-08-15 08:23:23 +00:00
|
|
|
return errWriteProtection
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-01 21:36:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-03-23 20:48:31 +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
|
|
|
|
// errExecutionReverted which means revert-and-keep-gas-left.
|
|
|
|
func (in *Interpreter) Run(contract *Contract, input []byte) (ret []byte, err error) {
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-10-01 12:44:53 +00:00
|
|
|
codehash := contract.CodeHash // codehash is used when doing jump dest caching
|
|
|
|
if codehash == (common.Hash{}) {
|
|
|
|
codehash = crypto.Keccak256Hash(contract.Code)
|
|
|
|
}
|
2015-07-17 21:09:36 +00:00
|
|
|
|
2015-03-13 12:44:15 +00:00
|
|
|
var (
|
2016-12-06 01:16:03 +00:00
|
|
|
op OpCode // current opcode
|
|
|
|
mem = NewMemory() // bound memory
|
|
|
|
stack = newstack() // local stack
|
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
|
2017-11-28 19:05:49 +00:00
|
|
|
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
|
2015-03-13 12:44:15 +00:00
|
|
|
)
|
2015-08-30 08:19:10 +00:00
|
|
|
contract.Input = input
|
2015-01-19 10:18:34 +00:00
|
|
|
|
2015-03-27 15:09:57 +00:00
|
|
|
defer func() {
|
2017-09-22 08:22:56 +00:00
|
|
|
if err != nil && !logged && in.cfg.Debug {
|
2017-11-28 19:05:49 +00:00
|
|
|
in.cfg.Tracer.CaptureState(in.evm, pcCopy, op, gasCopy, cost, mem, stack, contract, in.evm.depth, err)
|
2015-03-27 15:09:57 +00:00
|
|
|
}
|
|
|
|
}()
|
2015-01-19 10:18:34 +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.
|
2017-02-01 21:36:51 +00:00
|
|
|
for atomic.LoadInt32(&in.evm.abort) == 0 {
|
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]
|
2017-01-05 10:52:10 +00:00
|
|
|
if !operation.valid {
|
2017-05-22 14:56:06 +00:00
|
|
|
return nil, fmt.Errorf("invalid opcode 0x%x", int(op))
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
if err := operation.validateStack(stack); err != nil {
|
|
|
|
return nil, err
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2017-10-14 12:42:48 +00:00
|
|
|
// If the operation is valid, enforce and write restrictions
|
|
|
|
if err := in.enforceRestrictions(op, operation, stack); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-01-19 10:18:34 +00:00
|
|
|
|
2017-01-04 19:17:24 +00:00
|
|
|
var memorySize uint64
|
2017-01-05 10:52:10 +00:00
|
|
|
// calculate the new memory size and expand the memory to fit
|
|
|
|
// the operation
|
|
|
|
if operation.memorySize != nil {
|
2017-01-04 19:17:24 +00:00
|
|
|
memSize, overflow := bigUint64(operation.memorySize(stack))
|
|
|
|
if overflow {
|
|
|
|
return nil, errGasUintOverflow
|
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
// memory is expanded in words of 32 bytes. Gas
|
|
|
|
// is also calculated in words.
|
2017-01-04 19:17:24 +00:00
|
|
|
if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow {
|
|
|
|
return nil, errGasUintOverflow
|
|
|
|
}
|
2016-10-07 22:23:45 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 21:36:51 +00:00
|
|
|
if !in.cfg.DisableGasMetering {
|
2017-01-05 10:52:10 +00:00
|
|
|
// consume the gas and return an error if not enough gas is available.
|
|
|
|
// cost is explicitly set so that the capture state defer method cas get the proper cost
|
2017-02-01 21:36:51 +00:00
|
|
|
cost, err = operation.gasCost(in.gasTable, in.evm, contract, stack, mem, memorySize)
|
2017-01-04 19:17:24 +00:00
|
|
|
if err != nil || !contract.UseGas(cost) {
|
2017-01-05 10:52:10 +00:00
|
|
|
return nil, ErrOutOfGas
|
|
|
|
}
|
2015-03-27 15:09:57 +00:00
|
|
|
}
|
2017-01-04 19:17:24 +00:00
|
|
|
if memorySize > 0 {
|
|
|
|
mem.Resize(memorySize)
|
2015-03-27 15:09:57 +00:00
|
|
|
}
|
2015-01-19 10:18:34 +00:00
|
|
|
|
2017-02-01 21:36:51 +00:00
|
|
|
if in.cfg.Debug {
|
2017-11-28 19:05:49 +00:00
|
|
|
in.cfg.Tracer.CaptureState(in.evm, pc, op, gasCopy, cost, mem, stack, contract, in.evm.depth, err)
|
2017-09-22 08:22:56 +00:00
|
|
|
logged = true
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2016-10-07 22:23:45 +00:00
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
// execute the operation
|
2017-02-01 21:36:51 +00:00
|
|
|
res, err := operation.execute(&pc, in.evm, contract, mem, stack)
|
2017-01-04 19:17:24 +00:00
|
|
|
// verifyPool is a build flag. Pool verification makes sure the integrity
|
|
|
|
// of the integer pool by comparing values to a default value.
|
|
|
|
if verifyPool {
|
2017-02-01 21:36:51 +00:00
|
|
|
verifyIntegerPool(in.intPool)
|
2017-01-04 19:17:24 +00:00
|
|
|
}
|
2017-08-16 14:09:29 +00:00
|
|
|
// 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 {
|
|
|
|
in.returnData = res
|
2017-08-16 12:32:59 +00:00
|
|
|
}
|
2017-02-01 21:36:51 +00:00
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return nil, err
|
2017-08-16 14:09:29 +00:00
|
|
|
case operation.reverts:
|
|
|
|
return res, errExecutionReverted
|
2017-01-05 10:52:10 +00:00
|
|
|
case operation.halts:
|
|
|
|
return res, nil
|
|
|
|
case !operation.jumps:
|
|
|
|
pc++
|
2015-03-02 15:32:02 +00:00
|
|
|
}
|
2015-01-19 10:18:34 +00:00
|
|
|
}
|
2017-01-05 10:52:10 +00:00
|
|
|
return nil, nil
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|