2021-07-06 13:14:45 +00:00
|
|
|
# Nimbus
|
2024-05-22 21:01:19 +00:00
|
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
2021-07-06 13:14:45 +00:00
|
|
|
# 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.
|
|
|
|
|
2023-02-14 20:27:17 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
2021-07-06 13:14:45 +00:00
|
|
|
import
|
2024-07-26 05:32:01 +00:00
|
|
|
std/strformat,
|
2024-05-30 12:54:03 +00:00
|
|
|
results,
|
2022-12-02 04:35:41 +00:00
|
|
|
../../common/common,
|
2023-12-12 19:12:56 +00:00
|
|
|
../../db/ledger,
|
2021-07-06 13:14:45 +00:00
|
|
|
../../transaction/call_evm,
|
2023-08-30 16:29:48 +00:00
|
|
|
../../transaction/call_common,
|
2022-04-05 10:22:46 +00:00
|
|
|
../../transaction,
|
2024-06-17 07:56:39 +00:00
|
|
|
../../evm/state,
|
|
|
|
../../evm/types,
|
2023-08-30 16:29:48 +00:00
|
|
|
../../constants,
|
2024-06-24 05:56:24 +00:00
|
|
|
../eip4844,
|
2024-05-22 21:01:19 +00:00
|
|
|
../validate
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private functions
|
|
|
|
# ------------------------------------------------------------------------------
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2022-12-02 04:35:41 +00:00
|
|
|
proc eip1559BaseFee(header: BlockHeader; fork: EVMFork): UInt256 =
|
2022-01-10 09:04:06 +00:00
|
|
|
## Actually, `baseFee` should be 0 for pre-London headers already. But this
|
|
|
|
## function just plays safe. In particular, the `test_general_state_json.nim`
|
|
|
|
## module modifies this block header `baseFee` field unconditionally :(.
|
|
|
|
if FkLondon <= fork:
|
2024-06-14 07:31:08 +00:00
|
|
|
result = header.baseFeePerGas.get(0.u256)
|
2022-01-10 09:04:06 +00:00
|
|
|
|
2023-05-10 16:04:35 +00:00
|
|
|
proc commitOrRollbackDependingOnGasUsed(
|
2024-05-22 21:01:19 +00:00
|
|
|
vmState: BaseVMState;
|
|
|
|
accTx: LedgerSpRef;
|
|
|
|
header: BlockHeader;
|
|
|
|
tx: Transaction;
|
|
|
|
gasBurned: GasInt;
|
|
|
|
priorityFee: GasInt;
|
|
|
|
): Result[GasInt, string] =
|
2023-04-12 12:39:11 +00:00
|
|
|
# Make sure that the tx does not exceed the maximum cumulative limit as
|
|
|
|
# set in the block header. Again, the eip-1559 reference does not mention
|
|
|
|
# an early stop. It would rather detect differing values for the block
|
|
|
|
# header `gasUsed` and the `vmState.cumulativeGasUsed` at a later stage.
|
2023-04-11 08:28:45 +00:00
|
|
|
if header.gasLimit < vmState.cumulativeGasUsed + gasBurned:
|
2024-07-26 05:32:01 +00:00
|
|
|
vmState.stateDB.rollback(accTx)
|
2024-08-19 07:42:07 +00:00
|
|
|
err(&"invalid tx: block header gasLimit reached. gasLimit={header.gasLimit}, gasUsed={vmState.cumulativeGasUsed}, addition={gasBurned}")
|
2023-04-12 12:39:11 +00:00
|
|
|
else:
|
|
|
|
# Accept transaction and collect mining fee.
|
|
|
|
vmState.stateDB.commit(accTx)
|
|
|
|
vmState.stateDB.addBalance(vmState.coinbase(), gasBurned.u256 * priorityFee.u256)
|
|
|
|
vmState.cumulativeGasUsed += gasBurned
|
2023-04-11 08:28:45 +00:00
|
|
|
|
|
|
|
# Return remaining gas to the block gas counter so it is
|
|
|
|
# available for the next transaction.
|
|
|
|
vmState.gasPool += tx.gasLimit - gasBurned
|
2024-08-19 07:42:07 +00:00
|
|
|
ok(gasBurned)
|
2023-04-12 12:39:11 +00:00
|
|
|
|
2024-05-22 21:01:19 +00:00
|
|
|
proc processTransactionImpl(
|
2022-01-10 09:04:06 +00:00
|
|
|
vmState: BaseVMState; ## Parent accounts environment for transaction
|
|
|
|
tx: Transaction; ## Transaction to validate
|
|
|
|
sender: EthAddress; ## tx.getSender or tx.ecRecover
|
|
|
|
header: BlockHeader; ## Header for the block containing the current tx
|
2024-06-07 08:24:32 +00:00
|
|
|
): Result[GasInt, string] =
|
2022-01-10 09:04:06 +00:00
|
|
|
## Modelled after `https://eips.ethereum.org/EIPS/eip-1559#specification`_
|
|
|
|
## which provides a backward compatible framwork for EIP1559.
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2022-01-10 09:04:06 +00:00
|
|
|
let
|
2024-07-04 13:48:36 +00:00
|
|
|
fork = vmState.fork
|
2022-01-10 09:04:06 +00:00
|
|
|
roDB = vmState.readOnlyStateDB
|
|
|
|
baseFee256 = header.eip1559BaseFee(fork)
|
2022-04-05 10:22:46 +00:00
|
|
|
baseFee = baseFee256.truncate(GasInt)
|
2024-08-19 07:42:07 +00:00
|
|
|
priorityFee = min(tx.maxPriorityFeePerGasNorm(), tx.maxFeePerGasNorm() - baseFee)
|
2023-09-24 15:25:41 +00:00
|
|
|
excessBlobGas = header.excessBlobGas.get(0'u64)
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2023-04-11 08:28:45 +00:00
|
|
|
# buy gas, then the gas goes into gasMeter
|
|
|
|
if vmState.gasPool < tx.gasLimit:
|
2024-05-22 21:01:19 +00:00
|
|
|
return err("gas limit reached. gasLimit=" & $vmState.gasPool &
|
|
|
|
", gasNeeded=" & $tx.gasLimit)
|
2023-06-12 05:01:48 +00:00
|
|
|
|
2023-04-11 08:28:45 +00:00
|
|
|
vmState.gasPool -= tx.gasLimit
|
|
|
|
|
2024-06-24 05:56:24 +00:00
|
|
|
let blobGasUsed = tx.getTotalBlobGas
|
|
|
|
if vmState.blobGasUsed + blobGasUsed > MAX_BLOB_GAS_PER_BLOCK:
|
|
|
|
return err("blobGasUsed " & $blobGasUsed &
|
|
|
|
" exceeds maximum allowance " & $MAX_BLOB_GAS_PER_BLOCK)
|
|
|
|
vmState.blobGasUsed += blobGasUsed
|
|
|
|
|
2022-01-10 09:04:06 +00:00
|
|
|
# Actually, the eip-1559 reference does not mention an early exit.
|
|
|
|
#
|
|
|
|
# Even though database was not changed yet but, a `persist()` directive
|
|
|
|
# before leaving is crucial for some unit tests that us a direct/deep call
|
|
|
|
# of the `processTransaction()` function. So there is no `return err()`
|
|
|
|
# statement, here.
|
2024-08-19 07:42:07 +00:00
|
|
|
let
|
|
|
|
txRes = roDB.validateTransaction(tx, sender, header.gasLimit, baseFee256, excessBlobGas, fork)
|
|
|
|
res = if txRes.isOk:
|
|
|
|
# EIP-1153
|
|
|
|
vmState.stateDB.clearTransientStorage()
|
|
|
|
|
|
|
|
# Execute the transaction.
|
|
|
|
vmState.captureTxStart(tx.gasLimit)
|
|
|
|
let
|
|
|
|
accTx = vmState.stateDB.beginSavepoint
|
|
|
|
gasBurned = tx.txCallEvm(sender, vmState, baseFee)
|
|
|
|
vmState.captureTxEnd(tx.gasLimit - gasBurned)
|
|
|
|
|
|
|
|
commitOrRollbackDependingOnGasUsed(vmState, accTx, header, tx, gasBurned, priorityFee)
|
|
|
|
else:
|
|
|
|
err(txRes.error)
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2024-06-08 08:05:00 +00:00
|
|
|
if vmState.collectWitnessData:
|
2021-10-28 09:42:39 +00:00
|
|
|
vmState.stateDB.collectWitnessData()
|
2024-08-19 07:42:07 +00:00
|
|
|
|
2024-06-02 19:21:29 +00:00
|
|
|
vmState.stateDB.persist(clearEmptyAccount = fork >= FkSpurious)
|
2021-07-06 13:14:45 +00:00
|
|
|
|
2024-08-19 07:42:07 +00:00
|
|
|
res
|
2023-04-12 12:39:11 +00:00
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-08-30 16:29:48 +00:00
|
|
|
proc processBeaconBlockRoot*(vmState: BaseVMState, beaconRoot: Hash256):
|
2024-06-07 08:24:32 +00:00
|
|
|
Result[void, string] =
|
2023-08-30 16:29:48 +00:00
|
|
|
## processBeaconBlockRoot applies the EIP-4788 system call to the
|
|
|
|
## beacon block root contract. This method is exported to be used in tests.
|
|
|
|
## If EIP-4788 is enabled, we need to invoke the beaconroot storage
|
|
|
|
## contract with the new root.
|
|
|
|
let
|
|
|
|
statedb = vmState.stateDB
|
|
|
|
call = CallParams(
|
2023-09-20 13:10:16 +00:00
|
|
|
vmState : vmState,
|
2023-10-19 00:50:07 +00:00
|
|
|
sender : SYSTEM_ADDRESS,
|
2023-09-20 13:10:16 +00:00
|
|
|
gasLimit : 30_000_000.GasInt,
|
|
|
|
gasPrice : 0.GasInt,
|
2023-10-19 00:50:07 +00:00
|
|
|
to : BEACON_ROOTS_ADDRESS,
|
2023-09-20 13:10:16 +00:00
|
|
|
input : @(beaconRoot.data),
|
|
|
|
|
|
|
|
# It's a systemCall, no need for other knicks knacks
|
|
|
|
sysCall : true,
|
|
|
|
noAccessList: true,
|
|
|
|
noIntrinsic : true,
|
|
|
|
noGasCharge : true,
|
|
|
|
noRefund : true,
|
2023-08-30 16:29:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# runComputation a.k.a syscall/evm.call
|
2024-07-13 18:42:49 +00:00
|
|
|
let res = call.runComputation(string)
|
|
|
|
if res.len > 0:
|
|
|
|
return err("processBeaconBlockRoot: " & res)
|
2023-08-30 16:29:48 +00:00
|
|
|
|
2024-06-02 19:21:29 +00:00
|
|
|
statedb.persist(clearEmptyAccount = true)
|
2023-08-30 16:29:48 +00:00
|
|
|
ok()
|
|
|
|
|
2024-09-10 09:52:03 +00:00
|
|
|
proc processParentBlockHash*(vmState: BaseVMState, prevHash: Hash256):
|
|
|
|
Result[void, string] =
|
|
|
|
## processParentBlockHash stores the parent block hash in the
|
|
|
|
## history storage contract as per EIP-2935.
|
|
|
|
let
|
|
|
|
statedb = vmState.stateDB
|
|
|
|
call = CallParams(
|
|
|
|
vmState : vmState,
|
|
|
|
sender : SYSTEM_ADDRESS,
|
|
|
|
gasLimit : 30_000_000.GasInt,
|
|
|
|
gasPrice : 0.GasInt,
|
|
|
|
to : HISTORY_STORAGE_ADDRESS,
|
|
|
|
input : @(prevHash.data),
|
|
|
|
|
|
|
|
# It's a systemCall, no need for other knicks knacks
|
|
|
|
sysCall : true,
|
|
|
|
noAccessList: true,
|
|
|
|
noIntrinsic : true,
|
|
|
|
noGasCharge : true,
|
|
|
|
noRefund : true,
|
|
|
|
)
|
|
|
|
|
|
|
|
# runComputation a.k.a syscall/evm.call
|
|
|
|
let res = call.runComputation(string)
|
|
|
|
if res.len > 0:
|
|
|
|
return err("processParentBlockHash: " & res)
|
|
|
|
|
|
|
|
statedb.persist(clearEmptyAccount = true)
|
|
|
|
ok()
|
|
|
|
|
2022-01-10 09:04:06 +00:00
|
|
|
proc processTransaction*(
|
|
|
|
vmState: BaseVMState; ## Parent accounts environment for transaction
|
|
|
|
tx: Transaction; ## Transaction to validate
|
|
|
|
sender: EthAddress; ## tx.getSender or tx.ecRecover
|
|
|
|
header: BlockHeader; ## Header for the block containing the current tx
|
2024-06-07 08:24:32 +00:00
|
|
|
): Result[GasInt,string] =
|
2024-07-04 13:48:36 +00:00
|
|
|
vmState.processTransactionImpl(tx, sender, header)
|
2022-01-10 09:04:06 +00:00
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
2021-07-06 13:14:45 +00:00
|
|
|
# End
|
2021-07-14 15:13:27 +00:00
|
|
|
# ------------------------------------------------------------------------------
|