2021-06-29 07:41:01 +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.
|
|
|
|
|
|
|
|
import
|
2022-12-02 04:35:41 +00:00
|
|
|
../common/common,
|
2021-06-29 07:41:01 +00:00
|
|
|
std/strformat,
|
|
|
|
stew/results,
|
2022-12-02 04:35:41 +00:00
|
|
|
eth/[eip1559]
|
2021-06-29 07:41:01 +00:00
|
|
|
|
2022-08-18 20:41:03 +00:00
|
|
|
export
|
|
|
|
eip1559
|
2022-10-20 02:44:16 +00:00
|
|
|
|
2023-01-30 22:10:23 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
2021-06-29 07:41:01 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Pre Eip 1559 gas limit validation
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2023-01-30 22:10:23 +00:00
|
|
|
proc validateGasLimit(header: BlockHeader; limit: GasInt): Result[void,string] =
|
2021-06-29 07:41:01 +00:00
|
|
|
let diff = if limit > header.gasLimit:
|
|
|
|
limit - header.gasLimit
|
|
|
|
else:
|
|
|
|
header.gasLimit - limit
|
|
|
|
|
|
|
|
let upperLimit = limit div GAS_LIMIT_ADJUSTMENT_FACTOR
|
|
|
|
|
|
|
|
if diff >= upperLimit:
|
2021-10-05 23:31:35 +00:00
|
|
|
try:
|
|
|
|
return err(&"invalid gas limit: have {header.gasLimit}, want {limit} +-= {upperLimit-1}")
|
|
|
|
except ValueError:
|
|
|
|
# TODO deprecate-strformat
|
|
|
|
raiseAssert "strformat cannot fail"
|
2021-06-29 07:41:01 +00:00
|
|
|
if header.gasLimit < GAS_LIMIT_MINIMUM:
|
|
|
|
return err("invalid gas limit below 5000")
|
|
|
|
ok()
|
|
|
|
|
2023-01-30 22:10:23 +00:00
|
|
|
proc validateGasLimit(com: CommonRef; header: BlockHeader): Result[void, string] =
|
2021-10-05 23:31:35 +00:00
|
|
|
let parent = try:
|
2022-12-02 04:35:41 +00:00
|
|
|
com.db.getBlockHeader(header.parentHash)
|
2021-10-05 23:31:35 +00:00
|
|
|
except CatchableError:
|
|
|
|
return err "Parent block not in database"
|
2021-06-29 07:41:01 +00:00
|
|
|
header.validateGasLimit(parent.gasLimit)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Eip 1559 support
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# consensus/misc/eip1559.go(55): func CalcBaseFee(config [..]
|
2022-12-02 04:35:41 +00:00
|
|
|
proc calcEip1599BaseFee*(com: CommonRef; parent: BlockHeader): UInt256 =
|
2021-06-29 07:41:01 +00:00
|
|
|
## calculates the basefee of the header.
|
|
|
|
|
|
|
|
# If the current block is the first EIP-1559 block, return the
|
|
|
|
# initial base fee.
|
2022-12-02 04:35:41 +00:00
|
|
|
if com.isLondon(parent.blockNumber):
|
2022-08-18 20:41:03 +00:00
|
|
|
eip1559.calcEip1599BaseFee(parent.gasLimit, parent.gasUsed, parent.baseFee)
|
2021-06-29 07:41:01 +00:00
|
|
|
else:
|
2022-08-18 20:41:03 +00:00
|
|
|
EIP1559_INITIAL_BASE_FEE
|
2021-06-29 07:41:01 +00:00
|
|
|
|
|
|
|
# consensus/misc/eip1559.go(32): func VerifyEip1559Header(config [..]
|
2022-12-02 04:35:41 +00:00
|
|
|
proc verifyEip1559Header(com: CommonRef;
|
2021-10-05 23:31:35 +00:00
|
|
|
parent, header: BlockHeader): Result[void, string]
|
2023-01-30 22:10:23 +00:00
|
|
|
{.raises: [].} =
|
2021-06-29 07:41:01 +00:00
|
|
|
## Verify that the gas limit remains within allowed bounds
|
2022-12-02 04:35:41 +00:00
|
|
|
let limit = if com.isLondon(parent.blockNumber):
|
2021-06-29 07:41:01 +00:00
|
|
|
parent.gasLimit
|
|
|
|
else:
|
|
|
|
parent.gasLimit * EIP1559_ELASTICITY_MULTIPLIER
|
|
|
|
let rc = header.validateGasLimit(limit)
|
|
|
|
if rc.isErr:
|
|
|
|
return rc
|
|
|
|
|
|
|
|
let headerBaseFee = header.baseFee
|
|
|
|
# Verify the header is not malformed
|
|
|
|
if headerBaseFee.isZero:
|
|
|
|
return err("Post EIP-1559 header expected to have base fee")
|
|
|
|
|
|
|
|
# Verify the baseFee is correct based on the parent header.
|
2022-12-02 04:35:41 +00:00
|
|
|
var expectedBaseFee = com.calcEip1599BaseFee(parent)
|
2021-06-29 07:41:01 +00:00
|
|
|
if headerBaseFee != expectedBaseFee:
|
2021-10-05 23:31:35 +00:00
|
|
|
try:
|
|
|
|
return err(&"invalid baseFee: have {expectedBaseFee}, "&
|
|
|
|
&"want {header.baseFee}, " &
|
|
|
|
&"parent.baseFee {parent.baseFee}, "&
|
|
|
|
&"parent.gasUsed {parent.gasUsed}")
|
|
|
|
except ValueError:
|
|
|
|
# TODO deprecate-strformat
|
|
|
|
raiseAssert "strformat cannot fail"
|
2021-06-29 07:41:01 +00:00
|
|
|
|
|
|
|
return ok()
|
|
|
|
|
2022-12-02 04:35:41 +00:00
|
|
|
proc validateGasLimitOrBaseFee*(com: CommonRef;
|
2023-01-30 22:10:23 +00:00
|
|
|
header, parent: BlockHeader): Result[void, string] =
|
2021-06-29 07:41:01 +00:00
|
|
|
|
2022-12-02 04:35:41 +00:00
|
|
|
if not com.isLondon(header.blockNumber):
|
2021-06-29 07:41:01 +00:00
|
|
|
# Verify BaseFee not present before EIP-1559 fork.
|
|
|
|
if not header.baseFee.isZero:
|
2021-10-05 23:31:35 +00:00
|
|
|
return err("invalid baseFee before London fork: have " & $header.baseFee & ", want <0>")
|
2022-12-02 04:35:41 +00:00
|
|
|
let rc = com.validateGasLimit(header)
|
2021-06-29 07:41:01 +00:00
|
|
|
if rc.isErr:
|
|
|
|
return rc
|
|
|
|
else:
|
2022-12-02 04:35:41 +00:00
|
|
|
let rc = com.verifyEip1559Header(parent = parent,
|
|
|
|
header = header)
|
2021-06-29 07:41:01 +00:00
|
|
|
if rc.isErr:
|
|
|
|
return rc
|
|
|
|
|
|
|
|
return ok()
|