2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-01-16 17:05:20 +00:00
|
|
|
import
|
2020-01-16 04:20:13 +00:00
|
|
|
chronicles, strformat, strutils, sequtils, macros, math, options, times,
|
2019-04-17 04:03:52 +00:00
|
|
|
sets, eth/[common, keys], eth/trie/db as triedb,
|
2019-11-13 14:49:39 +00:00
|
|
|
../constants, ../errors, ../vm_state, ../vm_types,
|
Refactor interpreter dispatch (#65)
* move forks constants, rename errors
* Move vm/utils to vm/interpreter/utils
* initial opcodes refactoring
* Add refactored Comparison & Bitwise Logic Operations
* Add sha3 and address, simplify macro, support pop 0
* balance, origin, caller, callValue
* fix gas copy opcodes gas costs, add callDataLoad/Size/Copy, CodeSize/Copy and gas price opcode
* Update with 30s, 40s, 50s opcodes + impl of balance + stack improvement
* add push, dup, swap, log, create and call operations
* finish opcode implementation
* Add the new dispatching logic
* Pass the opcode test
* Make test_vm_json compile
* halt execution without exceptions for Return, Revert, selfdestruct (fix #62)
* Properly catch and recover from EVM exceptions (stack underflow ...)
* Fix byte op
* Fix jump regressions
* Update for latest devel, don't import old dispatch code as quasiBoolean macro is broken by latest devel
* Fix sha3 regression on empty memory slice and until end of range slice
* Fix padding / range error on expXY_success (gas computation left)
* update logging procs
* Add tracing - expXY_success is not a regression, sload stub was accidentally passing the test
* Reuse the same stub as OO implementation
* Delete previous opcode implementation
* Delete object oriented fork code
* Delete exceptions that were used as control flows
* delete base.nim :fire:, yet another OO remnants
* Delete opcode table
* Enable omputed gotos and compile-time gas fees
* Revert const gasCosts -> generates SIGSEGV
* inline push, swap and dup opcodes
* loggers are now template again, why does this pass new tests?
* Trigger CI rebuild after rocksdb fix https://github.com/status-im/nim-rocksdb/pull/5
* Address review comment on "push" + VMTests in debug mode (not release)
* Address review comment: don't tag fork by default, make opcode impl grepable
* Static compilation fixes after rebasing
* fix the initialization of the VM database
* add a missing import
* Deactivate balance and sload test following #59
* Reactivate stack check (deactivated in #59, necessary to pass tests)
* Merge remaining opcodes implementation from #59
* Merge callDataLoad and codeCopy fixes, todo simplify see #67
2018-07-06 07:52:31 +00:00
|
|
|
./interpreter/[opcode_values, gas_meter, gas_costs, vm_forks],
|
2018-09-14 17:03:26 +00:00
|
|
|
./code_stream, ./memory, ./message, ./stack, ../db/[state_db, db_chain],
|
2019-07-07 10:12:01 +00:00
|
|
|
../utils/header, stew/[byteutils, ranges], precompiles,
|
2020-01-16 04:20:13 +00:00
|
|
|
transaction_tracer, evmc/evmc, evmc_helpers, evmc_api
|
2018-05-24 10:01:59 +00:00
|
|
|
|
2018-08-23 03:38:00 +00:00
|
|
|
logScope:
|
|
|
|
topics = "vm computation"
|
|
|
|
|
2020-01-16 07:01:59 +00:00
|
|
|
proc newComputation*(vmState: BaseVMState, message: Message): Computation =
|
Refactor interpreter dispatch (#65)
* move forks constants, rename errors
* Move vm/utils to vm/interpreter/utils
* initial opcodes refactoring
* Add refactored Comparison & Bitwise Logic Operations
* Add sha3 and address, simplify macro, support pop 0
* balance, origin, caller, callValue
* fix gas copy opcodes gas costs, add callDataLoad/Size/Copy, CodeSize/Copy and gas price opcode
* Update with 30s, 40s, 50s opcodes + impl of balance + stack improvement
* add push, dup, swap, log, create and call operations
* finish opcode implementation
* Add the new dispatching logic
* Pass the opcode test
* Make test_vm_json compile
* halt execution without exceptions for Return, Revert, selfdestruct (fix #62)
* Properly catch and recover from EVM exceptions (stack underflow ...)
* Fix byte op
* Fix jump regressions
* Update for latest devel, don't import old dispatch code as quasiBoolean macro is broken by latest devel
* Fix sha3 regression on empty memory slice and until end of range slice
* Fix padding / range error on expXY_success (gas computation left)
* update logging procs
* Add tracing - expXY_success is not a regression, sload stub was accidentally passing the test
* Reuse the same stub as OO implementation
* Delete previous opcode implementation
* Delete object oriented fork code
* Delete exceptions that were used as control flows
* delete base.nim :fire:, yet another OO remnants
* Delete opcode table
* Enable omputed gotos and compile-time gas fees
* Revert const gasCosts -> generates SIGSEGV
* inline push, swap and dup opcodes
* loggers are now template again, why does this pass new tests?
* Trigger CI rebuild after rocksdb fix https://github.com/status-im/nim-rocksdb/pull/5
* Address review comment on "push" + VMTests in debug mode (not release)
* Address review comment: don't tag fork by default, make opcode impl grepable
* Static compilation fixes after rebasing
* fix the initialization of the VM database
* add a missing import
* Deactivate balance and sload test following #59
* Reactivate stack check (deactivated in #59, necessary to pass tests)
* Merge remaining opcodes implementation from #59
* Merge callDataLoad and codeCopy fixes, todo simplify see #67
2018-07-06 07:52:31 +00:00
|
|
|
new result
|
2018-01-16 17:05:20 +00:00
|
|
|
result.vmState = vmState
|
|
|
|
result.msg = message
|
|
|
|
result.memory = Memory()
|
|
|
|
result.stack = newStack()
|
2018-07-18 12:18:17 +00:00
|
|
|
result.gasMeter.init(message.gas)
|
2020-01-09 06:25:53 +00:00
|
|
|
result.touchedAccounts = initHashSet[EthAddress]()
|
2019-12-19 16:37:10 +00:00
|
|
|
result.suicides = initHashSet[EthAddress]()
|
2018-09-06 17:05:22 +00:00
|
|
|
result.code = newCodeStream(message.code)
|
2019-04-04 04:44:35 +00:00
|
|
|
# a dummy/terminus continuation proc
|
|
|
|
result.nextProc = proc() =
|
|
|
|
discard
|
2018-01-24 13:31:24 +00:00
|
|
|
|
2020-01-16 07:01:59 +00:00
|
|
|
template gasCosts*(c: Computation): untyped =
|
|
|
|
c.vmState.gasCosts
|
|
|
|
|
|
|
|
template fork*(c: Computation): untyped =
|
|
|
|
c.vmState.fork
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc isOriginComputation*(c: Computation): bool =
|
2018-01-16 17:05:20 +00:00
|
|
|
# Is this computation the computation initiated by a transaction
|
2020-01-16 06:36:58 +00:00
|
|
|
c.msg.sender == c.vmState.txOrigin
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
template isSuccess*(c: Computation): bool =
|
2018-01-16 17:05:20 +00:00
|
|
|
c.error.isNil
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
template isError*(c: Computation): bool =
|
2018-01-16 17:05:20 +00:00
|
|
|
not c.isSuccess
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
func shouldBurnGas*(c: Computation): bool =
|
2018-01-16 17:05:20 +00:00
|
|
|
c.isError and c.error.burnsGas
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
func output*(c: Computation): seq[byte] =
|
2020-01-15 00:22:09 +00:00
|
|
|
c.rawOutput
|
2018-09-07 16:18:46 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
func `output=`*(c: Computation, value: openarray[byte]) =
|
2018-09-07 16:18:46 +00:00
|
|
|
c.rawOutput = @value
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc isSuicided*(c: Computation, address: EthAddress): bool =
|
2020-01-09 06:25:53 +00:00
|
|
|
result = address in c.suicides
|
2019-03-15 11:16:47 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc snapshot*(c: Computation) =
|
|
|
|
c.dbsnapshot.transaction = c.vmState.chaindb.db.beginTransaction()
|
|
|
|
c.dbsnapshot.intermediateRoot = c.vmState.accountDb.rootHash
|
2019-02-17 00:30:02 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc commit*(c: Computation) =
|
|
|
|
c.dbsnapshot.transaction.commit()
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc dispose*(c: Computation) {.inline.} =
|
|
|
|
c.dbsnapshot.transaction.dispose()
|
2019-02-18 11:45:18 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc rollback*(c: Computation) =
|
|
|
|
c.dbsnapshot.transaction.rollback()
|
|
|
|
c.vmState.accountDb.rootHash = c.dbsnapshot.intermediateRoot
|
2019-04-01 01:54:02 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc setError*(c: Computation, msg: string, burnsGas = false) {.inline.} =
|
|
|
|
c.error = Error(info: msg, burnsGas: burnsGas)
|
2019-04-01 01:54:02 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc writeContract*(c: Computation, fork: Fork): bool {.gcsafe.} =
|
2019-03-19 15:19:08 +00:00
|
|
|
result = true
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
let contractCode = c.output
|
2019-03-19 15:19:08 +00:00
|
|
|
if contractCode.len == 0: return
|
|
|
|
|
|
|
|
if fork >= FkSpurious and contractCode.len >= EIP170_CODE_SIZE_LIMIT:
|
|
|
|
debug "Contract code size exceeds EIP170", limit=EIP170_CODE_SIZE_LIMIT, actual=contractCode.len
|
|
|
|
return false
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
let storageAddr = c.msg.contractAddress
|
|
|
|
if c.isSuicided(storageAddr): return
|
2019-03-19 15:19:08 +00:00
|
|
|
|
|
|
|
let gasParams = GasParams(kind: Create, cr_memLength: contractCode.len)
|
2020-01-10 01:26:17 +00:00
|
|
|
let codeCost = c.gasCosts[Create].c_handler(0.u256, gasParams).gasCost
|
|
|
|
if c.gasMeter.gasRemaining >= codeCost:
|
|
|
|
c.gasMeter.consumeGas(codeCost, reason = "Write contract code for CREATE")
|
|
|
|
c.vmState.mutateStateDb:
|
2019-03-19 15:19:08 +00:00
|
|
|
db.setCode(storageAddr, contractCode.toRange)
|
|
|
|
result = true
|
|
|
|
else:
|
2020-01-10 01:26:17 +00:00
|
|
|
if fork < FkHomestead or fork >= FkByzantium: c.output = @[]
|
2019-03-19 15:19:08 +00:00
|
|
|
result = false
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
template continuation*(c: Computation, body: untyped) =
|
2019-04-04 04:44:35 +00:00
|
|
|
# this is a helper template to implement continuation
|
|
|
|
# passing and convert all recursion into tail call
|
2020-01-10 01:26:17 +00:00
|
|
|
var tmpNext = c.nextProc
|
|
|
|
c.nextProc = proc() {.gcsafe.} =
|
2019-04-04 03:50:25 +00:00
|
|
|
body
|
|
|
|
tmpNext()
|
|
|
|
|
2020-01-09 07:52:19 +00:00
|
|
|
proc initAddress(x: int): EthAddress {.compileTime.} = result[19] = x.byte
|
|
|
|
const ripemdAddr = initAddress(3)
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc postExecuteVM(c: Computation, opCode: static[Op]) {.gcsafe.} =
|
2019-04-17 05:15:15 +00:00
|
|
|
when opCode == Create:
|
2020-01-10 01:26:17 +00:00
|
|
|
if c.isSuccess:
|
|
|
|
let fork = c.fork
|
|
|
|
let contractFailed = not c.writeContract(fork)
|
2019-04-17 05:15:15 +00:00
|
|
|
if contractFailed and fork >= FkHomestead:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.setError(&"writeContract failed, depth={c.msg.depth}", true)
|
2019-04-04 03:50:25 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
if c.isSuccess:
|
|
|
|
c.commit()
|
2019-04-04 03:50:25 +00:00
|
|
|
else:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.rollback()
|
2019-04-04 03:50:25 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc executeOpcodes*(c: Computation) {.gcsafe.}
|
2019-03-19 16:30:35 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc applyMessage*(c: Computation, opCode: static[Op]) =
|
|
|
|
c.snapshot()
|
2019-04-04 04:44:35 +00:00
|
|
|
defer:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.dispose()
|
2019-02-18 11:45:18 +00:00
|
|
|
|
2020-01-15 06:28:05 +00:00
|
|
|
when opCode == Create:
|
|
|
|
if c.vmState.readOnlyStateDb().hasCodeOrNonce(c.msg.contractAddress):
|
|
|
|
c.setError("Address collision when creating contract address={c.msg.contractAddress.toHex}", true)
|
|
|
|
c.rollback()
|
|
|
|
c.nextProc()
|
|
|
|
return
|
|
|
|
|
2020-01-15 02:33:08 +00:00
|
|
|
c.vmState.mutateStateDb:
|
|
|
|
db.clearStorage(c.msg.contractAddress)
|
|
|
|
if c.fork >= FkSpurious:
|
|
|
|
# EIP161 nonce incrementation
|
2020-01-10 01:26:17 +00:00
|
|
|
db.incNonce(c.msg.contractAddress)
|
2019-04-17 05:15:15 +00:00
|
|
|
|
2020-01-15 07:56:39 +00:00
|
|
|
when opCode in {Call, Create}:
|
|
|
|
c.vmState.mutateStateDb:
|
|
|
|
db.subBalance(c.msg.sender, c.msg.value)
|
|
|
|
db.addBalance(c.msg.contractAddress, c.msg.value)
|
2019-03-19 16:54:54 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
if c.gasMeter.gasRemaining < 0:
|
|
|
|
c.commit()
|
|
|
|
c.nextProc()
|
2019-02-20 04:09:01 +00:00
|
|
|
return
|
2018-09-17 23:56:10 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
continuation(c):
|
|
|
|
postExecuteVM(c, opCode)
|
2018-09-14 17:03:26 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
executeOpcodes(c)
|
2019-04-04 05:13:33 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc addChildComputation*(c, child: Computation) =
|
|
|
|
if child.isError or c.fork == FKIstanbul:
|
2020-01-09 10:40:39 +00:00
|
|
|
if not child.msg.isCreate:
|
|
|
|
if child.msg.contractAddress == ripemdAddr:
|
|
|
|
child.vmState.touchedAccounts.incl child.msg.contractAddress
|
|
|
|
|
2018-09-07 16:18:46 +00:00
|
|
|
if child.isError:
|
2019-12-19 09:31:06 +00:00
|
|
|
if child.shouldBurnGas:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.returnData = @[]
|
2018-09-07 16:18:46 +00:00
|
|
|
else:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.returnData = child.output
|
2018-09-07 16:18:46 +00:00
|
|
|
else:
|
|
|
|
if child.msg.isCreate:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.returnData = @[]
|
2018-09-07 16:18:46 +00:00
|
|
|
else:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.returnData = child.output
|
2020-01-09 07:52:19 +00:00
|
|
|
child.touchedAccounts.incl child.msg.contractAddress
|
2020-01-10 01:26:17 +00:00
|
|
|
c.logEntries.add child.logEntries
|
|
|
|
c.gasMeter.refundGas(child.gasMeter.gasRefunded)
|
|
|
|
c.suicides.incl child.suicides
|
|
|
|
c.touchedAccounts.incl child.touchedAccounts
|
2018-09-07 16:18:46 +00:00
|
|
|
|
2019-04-02 05:13:18 +00:00
|
|
|
if not child.shouldBurnGas:
|
2020-01-10 01:26:17 +00:00
|
|
|
c.gasMeter.returnGas(child.gasMeter.gasRemaining)
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc registerAccountForDeletion*(c: Computation, beneficiary: EthAddress) =
|
2020-01-09 06:25:53 +00:00
|
|
|
c.touchedAccounts.incl beneficiary
|
2020-01-07 16:11:06 +00:00
|
|
|
c.suicides.incl(c.msg.contractAddress)
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc addLogEntry*(c: Computation, log: Log) {.inline.} =
|
2019-02-27 14:04:42 +00:00
|
|
|
c.logEntries.add(log)
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 11:18:36 +00:00
|
|
|
proc getSuicides*(c: Computation): HashSet[EthAddress] =
|
2019-12-19 16:37:10 +00:00
|
|
|
if c.isSuccess:
|
2020-01-10 11:18:36 +00:00
|
|
|
result = c.suicides
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc getGasRefund*(c: Computation): GasInt =
|
2019-12-19 09:31:06 +00:00
|
|
|
if c.isSuccess:
|
|
|
|
result = c.gasMeter.gasRefunded
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc getGasUsed*(c: Computation): GasInt =
|
2018-01-16 17:05:20 +00:00
|
|
|
if c.shouldBurnGas:
|
|
|
|
result = c.msg.gas
|
|
|
|
else:
|
2018-05-25 10:25:19 +00:00
|
|
|
result = max(0, c.msg.gas - c.gasMeter.gasRemaining)
|
2018-01-16 17:05:20 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc getGasRemaining*(c: Computation): GasInt =
|
2018-01-16 17:05:20 +00:00
|
|
|
if c.shouldBurnGas:
|
2018-05-25 10:25:19 +00:00
|
|
|
result = 0
|
2018-01-16 17:05:20 +00:00
|
|
|
else:
|
|
|
|
result = c.gasMeter.gasRemaining
|
2018-12-03 10:54:19 +00:00
|
|
|
|
2020-01-10 11:18:36 +00:00
|
|
|
proc refundSelfDestruct*(c: Computation) =
|
|
|
|
let cost = gasFees[c.fork][RefundSelfDestruct]
|
|
|
|
c.gasMeter.refundGas(cost * c.suicides.len)
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc collectTouchedAccounts*(c: Computation) =
|
2019-04-17 04:03:52 +00:00
|
|
|
## Collect all of the accounts that *may* need to be deleted based on EIP161:
|
|
|
|
## https://github.com/ethereum/EIPs/blob/master/EIPS/eip-161.md
|
|
|
|
## also see: https://github.com/ethereum/EIPs/issues/716
|
|
|
|
|
2020-01-09 10:40:39 +00:00
|
|
|
if c.isSuccess:
|
|
|
|
if not c.msg.isCreate:
|
|
|
|
c.touchedAccounts.incl c.msg.contractAddress
|
|
|
|
c.vmState.touchedAccounts.incl c.touchedAccounts
|
|
|
|
else:
|
|
|
|
if not c.msg.isCreate:
|
2019-04-17 04:03:52 +00:00
|
|
|
# Special case to account for geth+parity bug
|
|
|
|
# https://github.com/ethereum/EIPs/issues/716
|
2020-01-09 07:52:19 +00:00
|
|
|
if c.msg.contractAddress == ripemdAddr:
|
2020-01-09 10:40:39 +00:00
|
|
|
c.vmState.touchedAccounts.incl c.msg.contractAddress
|
2019-04-17 04:03:52 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc tracingEnabled*(c: Computation): bool =
|
2018-12-03 10:54:19 +00:00
|
|
|
c.vmState.tracingEnabled
|
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc traceOpCodeStarted*(c: Computation, op: Op): int =
|
2018-12-11 09:23:15 +00:00
|
|
|
c.vmState.tracer.traceOpCodeStarted(c, op)
|
2018-12-03 10:54:19 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc traceOpCodeEnded*(c: Computation, op: Op, lastIndex: int) =
|
2019-02-21 08:17:43 +00:00
|
|
|
c.vmState.tracer.traceOpCodeEnded(c, op, lastIndex)
|
2018-12-03 16:22:08 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc traceError*(c: Computation) =
|
2018-12-03 16:22:08 +00:00
|
|
|
c.vmState.tracer.traceError(c)
|
2019-02-25 13:02:16 +00:00
|
|
|
|
2020-01-10 01:26:17 +00:00
|
|
|
proc prepareTracer*(c: Computation) =
|
2019-02-25 13:02:16 +00:00
|
|
|
c.vmState.tracer.prepare(c.msg.depth)
|
2019-03-19 16:30:35 +00:00
|
|
|
|
|
|
|
include interpreter_dispatch
|
2020-01-16 04:20:13 +00:00
|
|
|
include evmc_host
|