| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2014 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-18 13:31:20 +02:00
										 |  |  | package vm | 
					
						
							| 
									
										
										
										
											2014-07-22 11:54:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2014-07-22 11:54:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common/math" | 
					
						
							| 
									
										
										
										
											2015-03-23 21:48:31 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/logger" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/logger/glog" | 
					
						
							| 
									
										
										
										
											2015-04-02 05:17:15 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/params" | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-10-15 17:12:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // Config are the configuration options for the Interpreter | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | type Config struct { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// Debug enabled debugging Interpreter options | 
					
						
							| 
									
										
										
										
											2016-12-06 02:16:03 +01:00
										 |  |  | 	Debug bool | 
					
						
							|  |  |  | 	// EnableJit enabled the JIT VM | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	EnableJit bool | 
					
						
							| 
									
										
										
										
											2016-12-06 02:16:03 +01:00
										 |  |  | 	// ForceJit forces the JIT VM | 
					
						
							|  |  |  | 	ForceJit bool | 
					
						
							|  |  |  | 	// Tracer is the op code logger | 
					
						
							|  |  |  | 	Tracer Tracer | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// NoRecursion disabled Interpreter call, callcode, | 
					
						
							| 
									
										
										
										
											2016-12-06 02:16:03 +01:00
										 |  |  | 	// delegate call and create. | 
					
						
							|  |  |  | 	NoRecursion bool | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// Disable gas metering | 
					
						
							|  |  |  | 	DisableGasMetering bool | 
					
						
							| 
									
										
										
										
											2017-01-17 11:19:50 +00:00
										 |  |  | 	// Enable recording of SHA3/keccak preimages | 
					
						
							|  |  |  | 	EnablePreimageRecording bool | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// JumpTable contains the EVM instruction table. This | 
					
						
							|  |  |  | 	// may me left uninitialised and will be set the default | 
					
						
							|  |  |  | 	// table. | 
					
						
							|  |  |  | 	JumpTable [256]operation | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // Interpreter is used to run Ethereum based contracts and will utilise the | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | // passed environment to query external sources for state information. | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // The Interpreter will run the byte code VM or JIT VM based on the passed | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | // configuration. | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | type Interpreter struct { | 
					
						
							|  |  |  | 	env      *EVM | 
					
						
							|  |  |  | 	cfg      Config | 
					
						
							|  |  |  | 	gasTable params.GasTable | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 	intPool  *intPool | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // NewInterpreter returns a new instance of the Interpreter. | 
					
						
							|  |  |  | func NewInterpreter(env *EVM, cfg Config) *Interpreter { | 
					
						
							|  |  |  | 	// 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 { | 
					
						
							|  |  |  | 		cfg.JumpTable = defaultJumpTable | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &Interpreter{ | 
					
						
							|  |  |  | 		env:      env, | 
					
						
							|  |  |  | 		cfg:      cfg, | 
					
						
							|  |  |  | 		gasTable: env.ChainConfig().GasTable(env.BlockNumber), | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 		intPool:  newIntPool(), | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 17:40:13 +02:00
										 |  |  | // Run loops and evaluates the contract's code with the given input data | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func (evm *Interpreter) Run(contract *Contract, input []byte) (ret []byte, err error) { | 
					
						
							|  |  |  | 	evm.env.depth++ | 
					
						
							|  |  |  | 	defer func() { evm.env.depth-- }() | 
					
						
							| 
									
										
										
										
											2015-03-23 21:48:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	if contract.CodeAddr != nil { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		if p := PrecompiledContracts[*contract.CodeAddr]; p != nil { | 
					
						
							|  |  |  | 			return RunPrecompiledContract(p, input, contract) | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	// Don't bother with the execution if there's no code. | 
					
						
							|  |  |  | 	if len(contract.Code) == 0 { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:50:00 +01:00
										 |  |  | 		return nil, nil | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-01 15:44:53 +03:00
										 |  |  | 	codehash := contract.CodeHash // codehash is used when doing jump dest caching | 
					
						
							|  |  |  | 	if codehash == (common.Hash{}) { | 
					
						
							|  |  |  | 		codehash = crypto.Keccak256Hash(contract.Code) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-13 13:44:15 +01:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2016-12-06 02:16:03 +01:00
										 |  |  | 		op    OpCode        // current opcode | 
					
						
							|  |  |  | 		mem   = NewMemory() // bound memory | 
					
						
							|  |  |  | 		stack = newstack()  // local stack | 
					
						
							| 
									
										
										
										
											2015-06-12 13:35:14 +02:00
										 |  |  | 		// For optimisation reason we're using uint64 as the program counter. | 
					
						
							| 
									
										
										
										
											2016-03-15 11:08:18 -07: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 11:52:10 +01:00
										 |  |  | 		pc   = uint64(0) // program counter | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 		cost uint64 | 
					
						
							| 
									
										
										
										
											2015-03-13 13:44:15 +01:00
										 |  |  | 	) | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	contract.Input = input | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-27 16:53:05 +01:00
										 |  |  | 	// User defer pattern to check for an error and, based on the error being nil or not, use all gas and return. | 
					
						
							| 
									
										
										
										
											2015-03-27 16:09:57 +01:00
										 |  |  | 	defer func() { | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 		if err != nil && evm.cfg.Debug { | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 			// XXX For debugging | 
					
						
							|  |  |  | 			//fmt.Printf("%04d: %8v    cost = %-8d stack = %-8d ERR = %v\n", pc, op, cost, stack.len(), err) | 
					
						
							|  |  |  | 			// TODO update the tracer | 
					
						
							|  |  |  | 			g, c := new(big.Int).SetUint64(contract.Gas), new(big.Int).SetUint64(cost) | 
					
						
							|  |  |  | 			evm.cfg.Tracer.CaptureState(evm.env, pc, op, g, c, mem, stack, contract, evm.env.depth, err) | 
					
						
							| 
									
										
										
										
											2015-03-27 16:09:57 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	if glog.V(logger.Debug) { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		glog.Infof("evm running: %x\n", codehash[:4]) | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 		tstart := time.Now() | 
					
						
							|  |  |  | 		defer func() { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 			glog.Infof("evm done: %x. time: %v\n", codehash[:4], time.Since(tstart)) | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// The Interpreter main run loop (contextual). This loop runs until either an | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 	// explicit STOP, RETURN or SUICIDE is executed, an error occurred during | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// the execution of one of the operations or until the evm.done is set by | 
					
						
							|  |  |  | 	// the parent context.Context. | 
					
						
							|  |  |  | 	for atomic.LoadInt32(&evm.env.abort) == 0 { | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 		// Get the memory location of pc | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 		op = contract.GetOp(pc) | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// get the operation from the jump table matching the opcode | 
					
						
							|  |  |  | 		operation := evm.cfg.JumpTable[op] | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// if the op is invalid abort the process and return an error | 
					
						
							|  |  |  | 		if !operation.valid { | 
					
						
							|  |  |  | 			return nil, fmt.Errorf("invalid opcode %x", op) | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// validate the stack and make sure there enough stack items available | 
					
						
							|  |  |  | 		// to perform the operation | 
					
						
							|  |  |  | 		if err := operation.validateStack(stack); err != nil { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 		var memorySize uint64 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// calculate the new memory size and expand the memory to fit | 
					
						
							|  |  |  | 		// the operation | 
					
						
							|  |  |  | 		if operation.memorySize != nil { | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 			memSize, overflow := bigUint64(operation.memorySize(stack)) | 
					
						
							|  |  |  | 			if overflow { | 
					
						
							|  |  |  | 				return nil, errGasUintOverflow | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 			// memory is expanded in words of 32 bytes. Gas | 
					
						
							|  |  |  | 			// is also calculated in words. | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 			if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow { | 
					
						
							|  |  |  | 				return nil, errGasUintOverflow | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-08 00:23:45 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		if !evm.cfg.DisableGasMetering { | 
					
						
							|  |  |  | 			// 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-02 15:25:42 +01:00
										 |  |  | 			cost, err = operation.gasCost(evm.gasTable, evm.env, contract, stack, mem, memorySize) | 
					
						
							|  |  |  | 			if err != nil || !contract.UseGas(cost) { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 				return nil, ErrOutOfGas | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-03-27 16:09:57 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 		if memorySize > 0 { | 
					
						
							|  |  |  | 			mem.Resize(memorySize) | 
					
						
							| 
									
										
										
										
											2015-03-27 16:09:57 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		if evm.cfg.Debug { | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 			g, c := new(big.Int).SetUint64(contract.Gas), new(big.Int).SetUint64(cost) | 
					
						
							|  |  |  | 			evm.cfg.Tracer.CaptureState(evm.env, pc, op, g, c, mem, stack, contract, evm.env.depth, err) | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01:00
										 |  |  | 		// XXX For debugging | 
					
						
							|  |  |  | 		//fmt.Printf("%04d: %8v    cost = %-8d stack = %-8d\n", pc, op, cost, stack.len()) | 
					
						
							| 
									
										
										
										
											2016-10-08 00:23:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// execute the operation | 
					
						
							|  |  |  | 		res, err := operation.execute(&pc, evm.env, contract, mem, stack) | 
					
						
							| 
									
										
										
										
											2017-02-02 15:25:42 +01: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 { | 
					
						
							|  |  |  | 			verifyIntegerPool(evm.intPool) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case err != nil: | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		case operation.halts: | 
					
						
							|  |  |  | 			return res, nil | 
					
						
							|  |  |  | 		case !operation.jumps: | 
					
						
							|  |  |  | 			pc++ | 
					
						
							| 
									
										
										
										
											2015-03-02 16:32:02 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	return nil, nil | 
					
						
							| 
									
										
										
										
											2014-07-22 11:54:48 +02:00
										 |  |  | } |