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-17 11:24:09 +00:00
|
|
|
import
|
2018-04-06 14:25:01 +00:00
|
|
|
os, macros, json, strformat, strutils, parseutils, ospaths, tables,
|
2018-07-05 12:41:01 +00:00
|
|
|
byteutils, eth_common, eth_keys, ranges/typedranges,
|
2018-06-15 09:11:25 +00:00
|
|
|
../nimbus/[vm_state, constants],
|
|
|
|
../nimbus/db/[db_chain, state_db],
|
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
|
|
|
../nimbus/transaction
|
2018-01-17 11:24:09 +00:00
|
|
|
|
2018-02-27 18:10:34 +00:00
|
|
|
type
|
|
|
|
Status* {.pure.} = enum OK, Fail, Skip
|
|
|
|
|
|
|
|
proc validTest*(folder: string, name: string): bool =
|
|
|
|
# tests we want to skip or which segfault will be skipped here
|
2018-04-06 14:25:01 +00:00
|
|
|
# TODO fix
|
2018-07-05 12:41:01 +00:00
|
|
|
#if true:
|
|
|
|
# return "or0" in name
|
|
|
|
#if true:
|
|
|
|
# return folder == "vmEnvironmentalInfo"
|
|
|
|
|
2018-02-27 18:10:34 +00:00
|
|
|
result = "calldatacopy" notin name and
|
|
|
|
"balanceAddressInputTooBigRightMyAddress." notin name and
|
|
|
|
"callstatelessToReturn1" notin name and
|
2018-07-05 12:41:01 +00:00
|
|
|
folder notin @["vmRandomTest", "vmSystemOperations", "vmPerformance"]
|
2018-02-28 15:06:05 +00:00
|
|
|
#result = name == "exp2.json"
|
2018-02-27 18:10:34 +00:00
|
|
|
|
|
|
|
macro jsonTest*(s: static[string], handler: untyped): untyped =
|
2018-07-06 15:08:31 +00:00
|
|
|
let
|
|
|
|
testStatusIMPL = ident("testStatusIMPL")
|
|
|
|
# workaround for strformat in quote do: https://github.com/nim-lang/Nim/issues/8220
|
|
|
|
symbol = newIdentNode"symbol"
|
|
|
|
final = newIdentNode"final"
|
|
|
|
name = newIdentNode"name"
|
|
|
|
formatted = newStrLitNode"{symbol[final]} {name:<64}{$final}{'\n'}"
|
2018-02-13 17:18:08 +00:00
|
|
|
result = quote:
|
2018-02-27 18:10:34 +00:00
|
|
|
var z = 0
|
|
|
|
var filenames: seq[(string, string, string)] = @[]
|
|
|
|
var status = initOrderedTable[string, OrderedTable[string, Status]]()
|
|
|
|
for filename in walkDirRec("tests" / "fixtures" / `s`):
|
|
|
|
var (folder, name) = filename.splitPath()
|
|
|
|
let last = folder.splitPath().tail
|
|
|
|
if not status.hasKey(last):
|
|
|
|
status[last] = initOrderedTable[string, Status]()
|
|
|
|
status[last][name] = Status.Skip
|
|
|
|
if last.validTest(name):
|
|
|
|
filenames.add((filename, last, name))
|
|
|
|
for child in filenames:
|
|
|
|
let (filename, folder, name) = child
|
|
|
|
test filename:
|
|
|
|
echo folder, name
|
|
|
|
status[folder][name] = Status.FAIL
|
|
|
|
`handler`(parseJSON(readFile(filename)), `testStatusIMPL`)
|
|
|
|
if `testStatusIMPL` == OK:
|
|
|
|
status[folder][name] = Status.OK
|
|
|
|
z += 1
|
2018-01-17 11:24:09 +00:00
|
|
|
|
2018-05-11 16:16:35 +00:00
|
|
|
status.sort do (a: (string, OrderedTable[string, Status]),
|
|
|
|
b: (string, OrderedTable[string, Status])) -> int: cmp(a[0], b[0])
|
2018-02-27 18:10:34 +00:00
|
|
|
|
2018-07-06 15:08:31 +00:00
|
|
|
let `symbol`: array[Status, string] = ["+", "-", " "]
|
2018-02-27 18:10:34 +00:00
|
|
|
var raw = ""
|
|
|
|
raw.add(`s` & "\n")
|
|
|
|
raw.add("===\n")
|
|
|
|
for folder, statuses in status:
|
|
|
|
raw.add("## " & folder & "\n")
|
|
|
|
raw.add("```diff\n")
|
|
|
|
var sortedStatuses = statuses
|
|
|
|
sortedStatuses.sort do (a: (string, Status), b: (string, Status)) -> int:
|
|
|
|
cmp(a[0], b[0])
|
|
|
|
var okCount = 0
|
|
|
|
var failCount = 0
|
|
|
|
var skipCount = 0
|
2018-07-06 15:08:31 +00:00
|
|
|
for `name`, `final` in sortedStatuses:
|
|
|
|
raw.add(&`formatted`)
|
|
|
|
case `final`:
|
2018-02-27 18:10:34 +00:00
|
|
|
of Status.OK: okCount += 1
|
|
|
|
of Status.Fail: failCount += 1
|
|
|
|
of Status.Skip: skipCount += 1
|
|
|
|
raw.add("```\n")
|
|
|
|
let sum = okCount + failCount + skipCount
|
|
|
|
raw.add("OK: " & $okCount & "/" & $sum & " Fail: " & $failCount & "/" & $sum & " Skip: " & $skipCount & "/" & $sum & "\n")
|
|
|
|
writeFile(`s` & ".md", raw)
|
2018-01-17 11:24:09 +00:00
|
|
|
|
2018-07-05 12:41:01 +00:00
|
|
|
proc ethAddressFromHex(s: string): EthAddress = hexToByteArray(s, result)
|
2018-05-30 16:11:15 +00:00
|
|
|
|
2018-07-05 12:41:01 +00:00
|
|
|
proc setupStateDB*(wantedState: JsonNode, stateDB: var AccountStateDB) =
|
|
|
|
for ac, accountData in wantedState:
|
|
|
|
let account = ethAddressFromHex(ac)
|
2018-02-13 17:18:08 +00:00
|
|
|
for slot, value in accountData{"storage"}:
|
2018-07-05 12:41:01 +00:00
|
|
|
stateDB.setStorage(account, slot.parseHexInt.u256, value.getInt.u256)
|
2018-01-17 11:24:09 +00:00
|
|
|
|
2018-02-20 17:27:43 +00:00
|
|
|
let nonce = accountData{"nonce"}.getInt.u256
|
2018-07-05 12:41:01 +00:00
|
|
|
let code = hexToSeqByte(accountData{"code"}.getStr).toRange
|
2018-07-17 08:57:14 +00:00
|
|
|
let balance = UInt256.fromHex accountData{"balance"}.getStr
|
2018-01-17 11:24:09 +00:00
|
|
|
|
2018-02-13 17:18:08 +00:00
|
|
|
stateDB.setNonce(account, nonce)
|
|
|
|
stateDB.setCode(account, code)
|
|
|
|
stateDB.setBalance(account, balance)
|
2018-02-14 16:38:01 +00:00
|
|
|
|
2018-07-05 12:41:01 +00:00
|
|
|
proc verifyStateDB*(wantedState: JsonNode, stateDB: AccountStateDB) =
|
|
|
|
for ac, accountData in wantedState:
|
|
|
|
let account = ethAddressFromHex(ac)
|
|
|
|
for slot, value in accountData{"storage"}:
|
|
|
|
let
|
2018-07-17 08:57:14 +00:00
|
|
|
slotId = UInt256.fromHex slot
|
2018-07-05 12:41:01 +00:00
|
|
|
wantedValue = UInt256.fromHex value.getStr
|
|
|
|
|
|
|
|
let (actualValue, found) = stateDB.getStorage(account, slotId)
|
|
|
|
# echo "FOUND ", found
|
|
|
|
# echo "ACTUAL VALUE ", actualValue.toHex
|
2018-07-17 08:57:14 +00:00
|
|
|
doAssert found
|
|
|
|
doAssert actualValue == wantedValue
|
2018-07-05 12:41:01 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
wantedCode = hexToSeqByte(accountData{"code"}.getStr).toRange
|
2018-07-17 08:57:14 +00:00
|
|
|
wantedBalance = UInt256.fromHex accountData{"balance"}.getStr
|
2018-07-05 12:41:01 +00:00
|
|
|
wantedNonce = accountData{"nonce"}.getInt.u256
|
|
|
|
|
|
|
|
actualCode = stateDB.getCode(account)
|
|
|
|
actualBalance = stateDB.getBalance(account)
|
|
|
|
actualNonce = stateDB.getNonce(account)
|
|
|
|
|
|
|
|
doAssert wantedCode == actualCode
|
|
|
|
doAssert wantedBalance == actualBalance
|
|
|
|
doAssert wantedNonce == actualNonce
|
|
|
|
|
2018-02-14 16:38:01 +00:00
|
|
|
proc getHexadecimalInt*(j: JsonNode): int =
|
|
|
|
discard parseHex(j.getStr, result)
|