interpreter.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. package vm
  17. import (
  18. "fmt"
  19. "sync/atomic"
  20. "github.com/ethereum/go-ethereum/common"
  21. "github.com/ethereum/go-ethereum/common/math"
  22. "github.com/ethereum/go-ethereum/crypto"
  23. "github.com/ethereum/go-ethereum/params"
  24. )
  25. // Config are the configuration options for the Interpreter
  26. type Config struct {
  27. // Debug enabled debugging Interpreter options
  28. Debug bool
  29. // EnableJit enabled the JIT VM
  30. EnableJit bool
  31. // ForceJit forces the JIT VM
  32. ForceJit bool
  33. // Tracer is the op code logger
  34. Tracer Tracer
  35. // NoRecursion disabled Interpreter call, callcode,
  36. // delegate call and create.
  37. NoRecursion bool
  38. // Disable gas metering
  39. DisableGasMetering 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. // Interpreter is used to run Ethereum based contracts and will utilise the
  48. // passed evmironment to query external sources for state information.
  49. // The Interpreter will run the byte code VM or JIT VM based on the passed
  50. // configuration.
  51. type Interpreter struct {
  52. evm *EVM
  53. cfg Config
  54. gasTable params.GasTable
  55. intPool *intPool
  56. readonly bool
  57. }
  58. // NewInterpreter returns a new instance of the Interpreter.
  59. func NewInterpreter(evm *EVM, cfg Config) *Interpreter {
  60. // We use the STOP instruction whether to see
  61. // the jump table was initialised. If it was not
  62. // we'll set the default jump table.
  63. if !cfg.JumpTable[STOP].valid {
  64. switch {
  65. case evm.ChainConfig().IsHomestead(evm.BlockNumber):
  66. cfg.JumpTable = homesteadInstructionSet
  67. default:
  68. cfg.JumpTable = frontierInstructionSet
  69. }
  70. }
  71. return &Interpreter{
  72. evm: evm,
  73. cfg: cfg,
  74. gasTable: evm.ChainConfig().GasTable(evm.BlockNumber),
  75. intPool: newIntPool(),
  76. }
  77. }
  78. func (in *Interpreter) enforceRestrictions(op OpCode, operation operation, stack *Stack) error {
  79. return nil
  80. }
  81. // Run loops and evaluates the contract's code with the given input data and returns
  82. // the return byte-slice and an error if one occurred.
  83. //
  84. // It's important to note that any errors returned by the interpreter should be
  85. // considered a revert-and-consume-all-gas operation. No error specific checks
  86. // should be handled to reduce complexity and errors further down the in.
  87. func (in *Interpreter) Run(snapshot int, contract *Contract, input []byte) (ret []byte, err error) {
  88. in.evm.depth++
  89. defer func() { in.evm.depth-- }()
  90. // Don't bother with the execution if there's no code.
  91. if len(contract.Code) == 0 {
  92. return nil, nil
  93. }
  94. codehash := contract.CodeHash // codehash is used when doing jump dest caching
  95. if codehash == (common.Hash{}) {
  96. codehash = crypto.Keccak256Hash(contract.Code)
  97. }
  98. var (
  99. op OpCode // current opcode
  100. mem = NewMemory() // bound memory
  101. stack = newstack() // local stack
  102. // For optimisation reason we're using uint64 as the program counter.
  103. // It's theoretically possible to go above 2^64. The YP defines the PC
  104. // to be uint256. Practically much less so feasible.
  105. pc = uint64(0) // program counter
  106. cost uint64
  107. )
  108. contract.Input = input
  109. defer func() {
  110. if err != nil && in.cfg.Debug {
  111. in.cfg.Tracer.CaptureState(in.evm, pc, op, contract.Gas, cost, mem, stack, contract, in.evm.depth, err)
  112. }
  113. }()
  114. // The Interpreter main run loop (contextual). This loop runs until either an
  115. // explicit STOP, RETURN or SELFDESTRUCT is executed, an error occurred during
  116. // the execution of one of the operations or until the done flag is set by the
  117. // parent context.
  118. for atomic.LoadInt32(&in.evm.abort) == 0 {
  119. // Get the memory location of pc
  120. op = contract.GetOp(pc)
  121. // get the operation from the jump table matching the opcode
  122. operation := in.cfg.JumpTable[op]
  123. if err := in.enforceRestrictions(op, operation, stack); err != nil {
  124. return nil, err
  125. }
  126. // if the op is invalid abort the process and return an error
  127. if !operation.valid {
  128. return nil, fmt.Errorf("invalid opcode 0x%x", int(op))
  129. }
  130. // validate the stack and make sure there enough stack items available
  131. // to perform the operation
  132. if err := operation.validateStack(stack); err != nil {
  133. return nil, err
  134. }
  135. var memorySize uint64
  136. // calculate the new memory size and expand the memory to fit
  137. // the operation
  138. if operation.memorySize != nil {
  139. memSize, overflow := bigUint64(operation.memorySize(stack))
  140. if overflow {
  141. return nil, errGasUintOverflow
  142. }
  143. // memory is expanded in words of 32 bytes. Gas
  144. // is also calculated in words.
  145. if memorySize, overflow = math.SafeMul(toWordSize(memSize), 32); overflow {
  146. return nil, errGasUintOverflow
  147. }
  148. }
  149. if !in.cfg.DisableGasMetering {
  150. // consume the gas and return an error if not enough gas is available.
  151. // cost is explicitly set so that the capture state defer method cas get the proper cost
  152. cost, err = operation.gasCost(in.gasTable, in.evm, contract, stack, mem, memorySize)
  153. if err != nil || !contract.UseGas(cost) {
  154. return nil, ErrOutOfGas
  155. }
  156. }
  157. if memorySize > 0 {
  158. mem.Resize(memorySize)
  159. }
  160. if in.cfg.Debug {
  161. in.cfg.Tracer.CaptureState(in.evm, pc, op, contract.Gas, cost, mem, stack, contract, in.evm.depth, err)
  162. }
  163. // execute the operation
  164. res, err := operation.execute(&pc, in.evm, contract, mem, stack)
  165. // verifyPool is a build flag. Pool verification makes sure the integrity
  166. // of the integer pool by comparing values to a default value.
  167. if verifyPool {
  168. verifyIntegerPool(in.intPool)
  169. }
  170. switch {
  171. case err != nil:
  172. return nil, err
  173. case operation.halts:
  174. return res, nil
  175. case !operation.jumps:
  176. pc++
  177. }
  178. // if the operation returned a value make sure that is also set
  179. // the last return data.
  180. if res != nil {
  181. mem.lastReturn = ret
  182. }
  183. }
  184. return nil, nil
  185. }