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