2021-04-30 09:33:14 +00:00
|
|
|
# Nimbus - Various ways of calling the EVM
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018-2021 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.
|
|
|
|
|
|
|
|
import
|
2021-05-03 08:07:56 +00:00
|
|
|
eth/common/eth_types, stint, options, stew/byteutils,
|
2021-05-03 09:04:15 +00:00
|
|
|
".."/[vm_types, vm_types2, vm_state, vm_computation, utils],
|
2021-05-03 08:08:11 +00:00
|
|
|
".."/[db/db_chain, config, vm_state_transactions, rpc/hexstrings],
|
2021-05-03 18:19:34 +00:00
|
|
|
".."/[db/accounts_cache, transaction, vm_precompiles, vm_gas_costs], eth/trie/db,
|
|
|
|
".."/vm_internals
|
2021-04-30 09:33:14 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
RpcCallData* = object
|
|
|
|
source*: EthAddress
|
|
|
|
to*: EthAddress
|
|
|
|
gas*: GasInt
|
|
|
|
gasPrice*: GasInt
|
|
|
|
value*: UInt256
|
|
|
|
data*: seq[byte]
|
|
|
|
contractCreation*: bool
|
|
|
|
|
2021-05-03 20:28:55 +00:00
|
|
|
proc rpcSetupComputation(vmState: BaseVMState, call: RpcCallData,
|
|
|
|
fork: Fork, gasLimit: GasInt): Computation =
|
2021-04-30 09:33:14 +00:00
|
|
|
vmState.setupTxContext(
|
|
|
|
origin = call.source,
|
|
|
|
gasPrice = call.gasPrice,
|
|
|
|
forkOverride = some(fork)
|
|
|
|
)
|
|
|
|
|
2021-05-03 09:04:15 +00:00
|
|
|
var msg = Message(
|
|
|
|
kind: if call.contractCreation: evmcCreate else: evmcCall,
|
2021-04-30 09:33:14 +00:00
|
|
|
depth: 0,
|
2021-05-03 09:04:15 +00:00
|
|
|
gas: gasLimit,
|
2021-04-30 09:33:14 +00:00
|
|
|
sender: call.source,
|
2021-05-03 09:04:15 +00:00
|
|
|
contractAddress:
|
|
|
|
if not call.contractCreation:
|
|
|
|
call.to
|
|
|
|
else:
|
|
|
|
generateAddress(call.source, vmState.readOnlyStateDB.getNonce(call.source)),
|
2021-04-30 09:33:14 +00:00
|
|
|
codeAddress: call.to,
|
|
|
|
value: call.value,
|
|
|
|
data: call.data
|
2021-05-03 09:04:15 +00:00
|
|
|
)
|
2021-04-30 09:33:14 +00:00
|
|
|
|
|
|
|
return newComputation(vmState, msg)
|
2021-05-03 08:08:03 +00:00
|
|
|
|
|
|
|
proc rpcDoCall*(call: RpcCallData, header: BlockHeader, chain: BaseChainDB): HexDataStr =
|
|
|
|
# TODO: handle revert and error
|
|
|
|
# TODO: handle contract ABI
|
|
|
|
var
|
|
|
|
# we use current header stateRoot, unlike block validation
|
|
|
|
# which use previous block stateRoot
|
|
|
|
vmState = newBaseVMState(header.stateRoot, header, chain)
|
|
|
|
fork = toFork(chain.config, header.blockNumber)
|
2021-05-03 09:04:15 +00:00
|
|
|
comp = rpcSetupComputation(vmState, call, fork, call.gas)
|
2021-05-03 08:08:03 +00:00
|
|
|
|
|
|
|
comp.execComputation()
|
|
|
|
result = hexDataStr(comp.output)
|
2021-05-03 08:08:11 +00:00
|
|
|
|
2021-05-03 08:07:56 +00:00
|
|
|
proc rpcMakeCall*(call: RpcCallData, header: BlockHeader, chain: BaseChainDB): (string, GasInt, bool) =
|
|
|
|
# TODO: handle revert
|
|
|
|
var
|
|
|
|
# we use current header stateRoot, unlike block validation
|
|
|
|
# which use previous block stateRoot
|
|
|
|
vmState = newBaseVMState(header.stateRoot, header, chain)
|
|
|
|
fork = toFork(chain.config, header.blockNumber)
|
2021-05-03 09:04:15 +00:00
|
|
|
comp = rpcSetupComputation(vmState, call, fork, call.gas)
|
2021-05-03 08:07:56 +00:00
|
|
|
|
|
|
|
let gas = comp.gasMeter.gasRemaining
|
|
|
|
comp.execComputation()
|
|
|
|
return (comp.output.toHex, gas - comp.gasMeter.gasRemaining, comp.isError)
|
|
|
|
|
RPC: Change rpcEstimateGas to use the EVM without a fake transaction
Change `rpcEstimateGas` to setup and execute a computation directly, in a
similar way to `rpcDoCall` and `rpcMakeCall`, instead of constructing a fake
transaction and then validating it.
This patch does not (or should not) change any behaviour.
Although this looks a bit messy as it duplicates parts of `validateTransaction`
and `processTransaction`, proc names have been used to hopefully keep the
meanings clear, and it's just a stepping stone as those transaction functions
will be changed next. Also the behaviour of RPC `estimateGas` may not be
correct (although this patch is careful not to change it), so it's good to make
it explicit so we can see how it differs from other RPCs.
Doing this change exposed some interesting behaviour differences between the
`call` RPC and `estimateGas` RPC, which may be bugs, or may be intentional.
These differences are now obvious and explicit.
The unclear areas are not well documented by any of the clients, even Infura
which says a bit more than the others. So to find out if they are intended,
we'll have to run tests against other Ethereum services.
Guessing, on the face of it, it looks likely that RPC `call` should:
- Setup EIP2929 access lists
- Account for intrinsic gas (maybe not because zero-gas transactions are ok)
And it looks likely that RPC `estimateGas` should:
- Not return zero when an account has insufficient balance
- Maybe use a different gas cost estimate when one isn't supplied in the RPC
Signed-off-by: Jamie Lokier <jamie@shareable.org>
2021-05-03 06:58:45 +00:00
|
|
|
func rpcIntrinsicGas(call: RpcCallData, fork: Fork): GasInt =
|
|
|
|
var intrinsicGas = call.data.intrinsicGas(fork)
|
|
|
|
if call.contractCreation:
|
|
|
|
intrinsicGas = intrinsicGas + gasFees[fork][GasTXCreate]
|
|
|
|
return intrinsicGas
|
|
|
|
|
|
|
|
func rpcValidateCall(call: RpcCallData, vmState: BaseVMState, gasLimit: GasInt,
|
|
|
|
fork: Fork, intrinsicGas: var GasInt, gasCost: var UInt256): bool =
|
|
|
|
# This behaviour matches `validateTransaction`, used by `processTransaction`.
|
|
|
|
if vmState.cumulativeGasUsed + gasLimit > vmState.blockHeader.gasLimit:
|
|
|
|
return false
|
|
|
|
let balance = vmState.readOnlyStateDB.getBalance(call.source)
|
|
|
|
gasCost = gasLimit.u256 * call.gasPrice.u256
|
|
|
|
if gasCost > balance or call.value > balance - gasCost:
|
|
|
|
return false
|
|
|
|
intrinsicGas = rpcIntrinsicGas(call, fork)
|
|
|
|
if intrinsicGas > gasLimit:
|
|
|
|
return false
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc rpcInitialAccessListEIP2929(call: RpcCallData, vmState: BaseVMState, fork: Fork) =
|
|
|
|
# EIP2929 initial access list.
|
|
|
|
if fork >= FkBerlin:
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
db.accessList(call.source)
|
|
|
|
# For contract creations the EVM will add the contract address to the
|
|
|
|
# access list itself, after calculating the new contract address.
|
|
|
|
if not call.contractCreation:
|
|
|
|
db.accessList(call.to)
|
|
|
|
for c in activePrecompiles():
|
|
|
|
db.accessList(c)
|
|
|
|
|
2021-05-03 08:08:11 +00:00
|
|
|
proc rpcEstimateGas*(call: RpcCallData, header: BlockHeader, chain: BaseChainDB, haveGasLimit: bool): GasInt =
|
|
|
|
# TODO: handle revert and error
|
|
|
|
var
|
|
|
|
# we use current header stateRoot, unlike block validation
|
|
|
|
# which use previous block stateRoot
|
|
|
|
vmState = newBaseVMState(header.stateRoot, header, chain)
|
|
|
|
fork = toFork(chain.config, header.blockNumber)
|
RPC: Change rpcEstimateGas to use the EVM without a fake transaction
Change `rpcEstimateGas` to setup and execute a computation directly, in a
similar way to `rpcDoCall` and `rpcMakeCall`, instead of constructing a fake
transaction and then validating it.
This patch does not (or should not) change any behaviour.
Although this looks a bit messy as it duplicates parts of `validateTransaction`
and `processTransaction`, proc names have been used to hopefully keep the
meanings clear, and it's just a stepping stone as those transaction functions
will be changed next. Also the behaviour of RPC `estimateGas` may not be
correct (although this patch is careful not to change it), so it's good to make
it explicit so we can see how it differs from other RPCs.
Doing this change exposed some interesting behaviour differences between the
`call` RPC and `estimateGas` RPC, which may be bugs, or may be intentional.
These differences are now obvious and explicit.
The unclear areas are not well documented by any of the clients, even Infura
which says a bit more than the others. So to find out if they are intended,
we'll have to run tests against other Ethereum services.
Guessing, on the face of it, it looks likely that RPC `call` should:
- Setup EIP2929 access lists
- Account for intrinsic gas (maybe not because zero-gas transactions are ok)
And it looks likely that RPC `estimateGas` should:
- Not return zero when an account has insufficient balance
- Maybe use a different gas cost estimate when one isn't supplied in the RPC
Signed-off-by: Jamie Lokier <jamie@shareable.org>
2021-05-03 06:58:45 +00:00
|
|
|
gasLimit = if haveGasLimit: call.gas else: header.gasLimit - vmState.cumulativeGasUsed
|
|
|
|
intrinsicGas: GasInt
|
|
|
|
gasCost: UInt256
|
|
|
|
|
|
|
|
# Nimbus `estimateGas` has historically checked against remaining gas in the
|
|
|
|
# current block, balance in the sender account (even if the sender is default
|
|
|
|
# account 0x00), and other limits, and returned 0 as the gas estimate if any
|
|
|
|
# checks failed. This behaviour came from how it used `processTransaction`
|
|
|
|
# which calls `validateTransaction`. For now, keep this behaviour the same.
|
|
|
|
# Compare this code with `validateTransaction`.
|
|
|
|
#
|
|
|
|
# TODO: This historically differs from `rpcDoCall` and `rpcMakeCall`. There
|
|
|
|
# are other differences in rpc_utils.nim `callData` too. Are the different
|
|
|
|
# behaviours intended, and is 0 the correct return value to mean "not enough
|
|
|
|
# gas to start"? Probably not.
|
|
|
|
if not rpcValidateCall(call, vmState, gasLimit, fork, intrinsicGas, gasCost):
|
|
|
|
return 0
|
2021-05-03 08:08:11 +00:00
|
|
|
|
|
|
|
var dbTx = chain.db.beginTransaction()
|
|
|
|
defer: dbTx.dispose()
|
RPC: Change rpcEstimateGas to use the EVM without a fake transaction
Change `rpcEstimateGas` to setup and execute a computation directly, in a
similar way to `rpcDoCall` and `rpcMakeCall`, instead of constructing a fake
transaction and then validating it.
This patch does not (or should not) change any behaviour.
Although this looks a bit messy as it duplicates parts of `validateTransaction`
and `processTransaction`, proc names have been used to hopefully keep the
meanings clear, and it's just a stepping stone as those transaction functions
will be changed next. Also the behaviour of RPC `estimateGas` may not be
correct (although this patch is careful not to change it), so it's good to make
it explicit so we can see how it differs from other RPCs.
Doing this change exposed some interesting behaviour differences between the
`call` RPC and `estimateGas` RPC, which may be bugs, or may be intentional.
These differences are now obvious and explicit.
The unclear areas are not well documented by any of the clients, even Infura
which says a bit more than the others. So to find out if they are intended,
we'll have to run tests against other Ethereum services.
Guessing, on the face of it, it looks likely that RPC `call` should:
- Setup EIP2929 access lists
- Account for intrinsic gas (maybe not because zero-gas transactions are ok)
And it looks likely that RPC `estimateGas` should:
- Not return zero when an account has insufficient balance
- Maybe use a different gas cost estimate when one isn't supplied in the RPC
Signed-off-by: Jamie Lokier <jamie@shareable.org>
2021-05-03 06:58:45 +00:00
|
|
|
|
|
|
|
# TODO: EIP2929 setup also historically differs from `rpcDoCall` and `rpcMakeCall`.
|
|
|
|
rpcInitialAccessListEIP2929(call, vmState, fork)
|
|
|
|
|
|
|
|
# TODO: Deduction of `intrinsicGas` also differs from `rpcDoCall` and `rpcMakeCall`.
|
|
|
|
var c = rpcSetupComputation(vmState, call, fork, gasLimit - intrinsicGas)
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
db.subBalance(call.source, gasCost)
|
|
|
|
|
|
|
|
execComputation(c)
|
|
|
|
|
|
|
|
if c.shouldBurnGas:
|
|
|
|
return gasLimit
|
|
|
|
let maxRefund = (gasLimit - c.gasMeter.gasRemaining) div 2
|
|
|
|
let refund = min(c.getGasRefund(), maxRefund)
|
|
|
|
return gasLimit - c.gasMeter.gasRemaining - refund
|
2021-05-03 16:50:47 +00:00
|
|
|
|
2021-05-03 18:14:54 +00:00
|
|
|
proc txSetupComputation(tx: Transaction, sender: EthAddress, vmState: BaseVMState, fork: Fork): Computation =
|
2021-05-03 16:50:47 +00:00
|
|
|
var gas = tx.gasLimit - tx.intrinsicGas(fork)
|
|
|
|
assert gas >= 0
|
|
|
|
|
|
|
|
vmState.setupTxContext(
|
|
|
|
origin = sender,
|
|
|
|
gasPrice = tx.gasPrice,
|
|
|
|
forkOverride = some(fork)
|
|
|
|
)
|
|
|
|
|
|
|
|
let msg = Message(
|
|
|
|
kind: if tx.isContractCreation: evmcCreate else: evmcCall,
|
|
|
|
depth: 0,
|
|
|
|
gas: gas,
|
|
|
|
sender: sender,
|
2021-05-04 06:27:18 +00:00
|
|
|
contractAddress: tx.getRecipient(sender),
|
2021-05-03 16:50:47 +00:00
|
|
|
codeAddress: tx.to,
|
|
|
|
value: tx.value,
|
|
|
|
data: tx.payload
|
|
|
|
)
|
|
|
|
|
|
|
|
result = newComputation(vmState, msg)
|
|
|
|
doAssert result.isOriginComputation
|
2021-05-03 18:19:34 +00:00
|
|
|
|
2021-05-03 18:14:54 +00:00
|
|
|
proc txRefundgas(tx: Transaction, sender: EthAddress, c: Computation) =
|
2021-05-03 18:19:34 +00:00
|
|
|
let maxRefund = (tx.gasLimit - c.gasMeter.gasRemaining) div 2
|
|
|
|
let refund = min(c.getGasRefund(), maxRefund)
|
|
|
|
c.gasMeter.returnGas(refund)
|
|
|
|
c.vmState.mutateStateDB:
|
|
|
|
db.addBalance(sender, c.gasMeter.gasRemaining.u256 * tx.gasPrice.u256)
|
2021-05-03 18:14:54 +00:00
|
|
|
|
|
|
|
proc txInitialAccessListEIP2929(tx: Transaction, sender: EthAddress, vmState: BaseVMState, fork: Fork) =
|
|
|
|
# EIP2929 initial access list.
|
|
|
|
if fork >= FkBerlin:
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
db.accessList(sender)
|
|
|
|
# For contract creations the EVM will add the contract address to the
|
|
|
|
# access list itself, after calculating the new contract address.
|
|
|
|
if not tx.isContractCreation:
|
2021-05-04 06:27:18 +00:00
|
|
|
db.accessList(tx.getRecipient(sender))
|
2021-05-03 18:14:54 +00:00
|
|
|
for c in activePrecompiles():
|
|
|
|
db.accessList(c)
|
|
|
|
|
|
|
|
proc txCallEvm*(tx: Transaction, sender: EthAddress, vmState: BaseVMState, fork: Fork): GasInt =
|
|
|
|
txInitialAccessListEIP2929(tx, sender, vmState, fork)
|
|
|
|
|
|
|
|
var c = txSetupComputation(tx, sender, vmState, fork)
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
db.subBalance(sender, tx.gasLimit.u256 * tx.gasPrice.u256)
|
|
|
|
|
|
|
|
execComputation(c)
|
|
|
|
|
|
|
|
if c.shouldBurnGas:
|
|
|
|
return tx.gasLimit
|
|
|
|
txRefundGas(tx, sender, c)
|
|
|
|
return tx.gasLimit - c.gasMeter.gasRemaining
|
2021-05-03 19:35:29 +00:00
|
|
|
|
2021-05-03 20:31:45 +00:00
|
|
|
proc asmSetupComputation(tx: Transaction, sender: EthAddress, vmState: BaseVMState, data: seq[byte], forkOverride=none(Fork)): Computation =
|
2021-05-03 19:35:29 +00:00
|
|
|
doAssert tx.isContractCreation
|
|
|
|
|
|
|
|
let fork =
|
|
|
|
if forkOverride.isSome:
|
|
|
|
forkOverride.get
|
|
|
|
else:
|
|
|
|
vmState.chainDB.config.toFork(vmState.blockNumber)
|
|
|
|
|
|
|
|
let gasUsed = 0 #tx.payload.intrinsicGas.GasInt + gasFees[fork][GasTXCreate]
|
|
|
|
|
|
|
|
vmState.setupTxContext(
|
|
|
|
origin = sender,
|
|
|
|
gasPrice = tx.gasPrice,
|
|
|
|
forkOverride = some(fork)
|
|
|
|
)
|
|
|
|
|
|
|
|
let contractAddress = generateAddress(sender, tx.accountNonce)
|
|
|
|
let msg = Message(
|
|
|
|
kind: evmcCall,
|
|
|
|
depth: 0,
|
|
|
|
gas: tx.gasLimit - gasUsed,
|
|
|
|
sender: sender,
|
|
|
|
contractAddress: contractAddress,
|
|
|
|
codeAddress: contractAddress,
|
|
|
|
value: tx.value,
|
|
|
|
data: data
|
|
|
|
)
|
|
|
|
|
|
|
|
vmState.mutateStateDb:
|
|
|
|
db.setCode(contractAddress, tx.payload)
|
|
|
|
|
|
|
|
return newComputation(vmState, msg)
|
2021-05-03 20:31:45 +00:00
|
|
|
|
2021-05-03 23:34:51 +00:00
|
|
|
proc asmSetupComputation(blockNumber: Uint256, chainDB: BaseChainDB, code, data: seq[byte], fork: Fork): Computation =
|
2021-05-03 20:31:45 +00:00
|
|
|
let
|
|
|
|
parentNumber = blockNumber - 1
|
|
|
|
parent = chainDB.getBlockHeader(parentNumber)
|
|
|
|
header = chainDB.getBlockHeader(blockNumber)
|
|
|
|
headerHash = header.blockHash
|
|
|
|
body = chainDB.getBlockBody(headerHash)
|
|
|
|
vmState = newBaseVMState(parent.stateRoot, header, chainDB)
|
|
|
|
|
|
|
|
var
|
|
|
|
tx = body.transactions[0]
|
|
|
|
sender = transaction.getSender(tx)
|
|
|
|
|
|
|
|
tx.payload = code
|
|
|
|
tx.gasLimit = 500000000
|
|
|
|
return asmSetupComputation(tx, sender, vmState, data, some(fork))
|
2021-05-03 23:34:51 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
AsmResult* = object
|
|
|
|
isSuccess*: bool
|
|
|
|
gasUsed*: GasInt
|
|
|
|
output*: seq[byte]
|
|
|
|
stack*: Stack
|
|
|
|
memory*: Memory
|
|
|
|
vmState*: BaseVMState
|
|
|
|
contractAddress*: EthAddress
|
|
|
|
|
|
|
|
proc asmCallEvm*(blockNumber: Uint256, chainDB: BaseChainDB, code, data: seq[byte], fork: Fork): AsmResult =
|
|
|
|
var c = asmSetupComputation(blockNumber, chainDB, code, data, fork)
|
|
|
|
let gas = c.gasMeter.gasRemaining
|
|
|
|
c.execComputation()
|
|
|
|
|
|
|
|
# Some of these are extra returned state, for testing, that a normal EVMC API
|
|
|
|
# computation doesn't return. We'll have to obtain them outside EVMC.
|
|
|
|
result.isSuccess = c.isSuccess
|
|
|
|
result.gasUsed = gas - c.gasMeter.gasRemaining
|
|
|
|
result.output = c.output
|
|
|
|
result.stack = c.stack
|
|
|
|
result.memory = c.memory
|
|
|
|
result.vmState = c.vmState
|
|
|
|
result.contractAddress = c.msg.contractAddress
|