interpreter.go 7.5 KB

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