| 
									
										
										
										
											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" | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2014-07-22 11:54:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common/math" | 
					
						
							| 
									
										
										
										
											2015-03-23 21:48:31 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											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-05-12 21:35:45 +02:00
										 |  |  | 	// JumpTable contains the EVM instruction table. This | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// 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 | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | // passed evmironment 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 { | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 	evm      *EVM | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	cfg      Config | 
					
						
							|  |  |  | 	gasTable params.GasTable | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +01:00
										 |  |  | 	intPool  *intPool | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	readonly bool | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // NewInterpreter returns a new instance of the Interpreter. | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | func NewInterpreter(evm *EVM, cfg Config) *Interpreter { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01: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 22:36:51 +01:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case evm.ChainConfig().IsHomestead(evm.BlockNumber): | 
					
						
							|  |  |  | 			cfg.JumpTable = homesteadInstructionSet | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2017-05-12 21:35:45 +02:00
										 |  |  | 			cfg.JumpTable = frontierInstructionSet | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &Interpreter{ | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		evm:      evm, | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		cfg:      cfg, | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		gasTable: evm.ChainConfig().GasTable(evm.BlockNumber), | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +01:00
										 |  |  | 		intPool:  newIntPool(), | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | func (in *Interpreter) enforceRestrictions(op OpCode, operation operation, stack *Stack) error { | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-03-23 21:48:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | // Run loops and evaluates the contract's code with the given input data and returns | 
					
						
							| 
									
										
										
										
											2017-05-25 17:21:20 +03:00
										 |  |  | // the return byte-slice and an error if one occurred. | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | // | 
					
						
							|  |  |  | // It's important to note that any errors returned by the interpreter should be | 
					
						
							|  |  |  | // considered a revert-and-consume-all-gas operation. No error specific checks | 
					
						
							|  |  |  | // should be handled to reduce complexity and errors further down the in. | 
					
						
							|  |  |  | func (in *Interpreter) Run(snapshot int, contract *Contract, input []byte) (ret []byte, err error) { | 
					
						
							|  |  |  | 	in.evm.depth++ | 
					
						
							|  |  |  | 	defer func() { in.evm.depth-- }() | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01: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-01-04 20:17:24 +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:09:57 +01:00
										 |  |  | 	defer func() { | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		if err != nil && in.cfg.Debug { | 
					
						
							|  |  |  | 			in.cfg.Tracer.CaptureState(in.evm, pc, op, contract.Gas, cost, mem, stack, contract, in.evm.depth, err) | 
					
						
							| 
									
										
										
										
											2015-03-27 16:09:57 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 	// The Interpreter main run loop (contextual). This loop runs until either an | 
					
						
							| 
									
										
										
										
											2017-02-08 13:39:26 +01:00
										 |  |  | 	// explicit STOP, RETURN or SELFDESTRUCT is executed, an error occurred during | 
					
						
							| 
									
										
										
										
											2017-05-12 21:35:45 +02:00
										 |  |  | 	// the execution of one of the operations or until the done flag is set by the | 
					
						
							|  |  |  | 	// parent context. | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 	for atomic.LoadInt32(&in.evm.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 | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		operation := in.cfg.JumpTable[op] | 
					
						
							|  |  |  | 		if err := in.enforceRestrictions(op, operation, stack); err != nil { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2017-05-22 16:56:06 +02:00
										 |  |  | 			return nil, fmt.Errorf("invalid opcode 0x%x", int(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-01-04 20:17:24 +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-01-04 20:17:24 +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-01-04 20:17:24 +01:00
										 |  |  | 			if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow { | 
					
						
							|  |  |  | 				return nil, errGasUintOverflow | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-08 00:23:45 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		if !in.cfg.DisableGasMetering { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01: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 22:36:51 +01:00
										 |  |  | 			cost, err = operation.gasCost(in.gasTable, in.evm, contract, stack, mem, memorySize) | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +01:00
										 |  |  | 			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-01-04 20:17:24 +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-02-01 22:36:51 +01:00
										 |  |  | 		if in.cfg.Debug { | 
					
						
							|  |  |  | 			in.cfg.Tracer.CaptureState(in.evm, pc, op, contract.Gas, cost, mem, stack, contract, in.evm.depth, err) | 
					
						
							| 
									
										
										
										
											2015-01-19 11:18:34 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-10-08 00:23:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		// execute the operation | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		res, err := operation.execute(&pc, in.evm, contract, mem, stack) | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +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 { | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 			verifyIntegerPool(in.intPool) | 
					
						
							| 
									
										
										
										
											2017-01-04 20:17:24 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-02-01 22:36:51 +01:00
										 |  |  | 		// if the operation returned a value make sure that is also set | 
					
						
							|  |  |  | 		// the last return data. | 
					
						
							|  |  |  | 		if res != nil { | 
					
						
							|  |  |  | 			mem.lastReturn = ret | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } |