2022-04-11 10:00:39 +00:00
|
|
|
import
|
|
|
|
std/[times, tables],
|
|
|
|
chronicles,
|
2022-09-03 18:15:35 +00:00
|
|
|
nimcrypto/sysrand,
|
2022-04-11 10:00:39 +00:00
|
|
|
stew/byteutils,
|
|
|
|
eth/common, chronos,
|
|
|
|
web3/engine_api_types,
|
|
|
|
json_rpc/rpcclient,
|
|
|
|
../../../nimbus/merge/mergeutils,
|
2022-07-18 04:34:42 +00:00
|
|
|
../../../nimbus/[constants],
|
2022-04-11 10:00:39 +00:00
|
|
|
./engine_client
|
|
|
|
|
|
|
|
# Consensus Layer Client Mock used to sync the Execution Clients once the TTD has been reached
|
|
|
|
type
|
|
|
|
CLMocker* = ref object
|
|
|
|
nextFeeRecipient*: EthAddress
|
|
|
|
nextPayloadID: PayloadID
|
|
|
|
|
|
|
|
# PoS Chain History Information
|
|
|
|
prevRandaoHistory*: Table[uint64, Hash256]
|
|
|
|
executedPayloadHistory*: Table[uint64, ExecutionPayloadV1]
|
|
|
|
|
|
|
|
# Latest broadcasted data using the PoS Engine API
|
2022-06-01 13:32:07 +00:00
|
|
|
latestHeadNumber*: uint64
|
|
|
|
latestHeader*: common.BlockHeader
|
2022-04-11 10:00:39 +00:00
|
|
|
latestPayloadBuilt* : ExecutionPayloadV1
|
|
|
|
latestExecutedPayload*: ExecutionPayloadV1
|
|
|
|
latestForkchoice* : ForkchoiceStateV1
|
|
|
|
|
|
|
|
# Merge related
|
|
|
|
firstPoSBlockNumber : Option[uint64]
|
2022-05-29 04:23:03 +00:00
|
|
|
ttdReached* : bool
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
client : RpcClient
|
|
|
|
ttd : DifficultyInt
|
|
|
|
|
2022-06-27 13:18:54 +00:00
|
|
|
slotsToSafe* : int
|
|
|
|
slotsToFinalized* : int
|
2022-06-27 04:15:23 +00:00
|
|
|
headHashHistory : seq[BlockHash]
|
|
|
|
|
2022-04-11 10:00:39 +00:00
|
|
|
BlockProcessCallbacks* = object
|
2022-06-01 13:32:07 +00:00
|
|
|
onPayloadProducerSelected* : proc(): bool {.gcsafe.}
|
|
|
|
onGetPayloadID* : proc(): bool {.gcsafe.}
|
|
|
|
onGetPayload* : proc(): bool {.gcsafe.}
|
|
|
|
onNewPayloadBroadcast* : proc(): bool {.gcsafe.}
|
|
|
|
onForkchoiceBroadcast* : proc(): bool {.gcsafe.}
|
|
|
|
onSafeBlockChange * : proc(): bool {.gcsafe.}
|
|
|
|
onFinalizedBlockChange* : proc(): bool {.gcsafe.}
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
proc init*(cl: CLMocker, client: RpcClient, ttd: DifficultyInt) =
|
|
|
|
cl.client = client
|
|
|
|
cl.ttd = ttd
|
2022-06-27 04:15:23 +00:00
|
|
|
cl.slotsToSafe = 1
|
|
|
|
cl.slotsToFinalized = 2
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
proc newClMocker*(client: RpcClient, ttd: DifficultyInt): CLMocker =
|
|
|
|
new result
|
|
|
|
result.init(client, ttd)
|
|
|
|
|
|
|
|
proc waitForTTD*(cl: CLMocker): Future[bool] {.async.} =
|
|
|
|
let (header, waitRes) = await cl.client.waitForTTD(cl.ttd)
|
|
|
|
if not waitRes:
|
|
|
|
error "timeout while waiting for TTD"
|
|
|
|
return false
|
|
|
|
|
2022-06-01 13:32:07 +00:00
|
|
|
cl.latestHeader = header
|
2022-04-11 10:00:39 +00:00
|
|
|
cl.ttdReached = true
|
|
|
|
|
2022-06-01 13:32:07 +00:00
|
|
|
let headerHash = BlockHash(common.blockHash(cl.latestHeader).data)
|
2022-04-11 10:00:39 +00:00
|
|
|
cl.latestForkchoice.headBlockHash = headerHash
|
2022-06-27 04:15:23 +00:00
|
|
|
|
|
|
|
if cl.slotsToSafe == 0:
|
|
|
|
cl.latestForkchoice.safeBlockHash = headerHash
|
|
|
|
|
|
|
|
if cl.slotsToFinalized == 0:
|
|
|
|
cl.latestForkchoice.finalizedBlockHash = headerHash
|
|
|
|
|
2022-06-01 13:32:07 +00:00
|
|
|
cl.latestHeadNumber = cl.latestHeader.blockNumber.truncate(uint64)
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
let res = cl.client.forkchoiceUpdatedV1(cl.latestForkchoice)
|
|
|
|
if res.isErr:
|
2022-07-04 12:31:41 +00:00
|
|
|
error "waitForTTD: forkchoiceUpdated error", msg=res.error
|
2022-04-11 10:00:39 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
let s = res.get()
|
|
|
|
if s.payloadStatus.status != PayloadExecutionStatus.valid:
|
2022-07-04 12:31:41 +00:00
|
|
|
error "waitForTTD: forkchoiceUpdated response unexpected",
|
|
|
|
expect = PayloadExecutionStatus.valid,
|
|
|
|
get = s.payloadStatus.status
|
2022-04-11 10:00:39 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc pickNextPayloadProducer(cl: CLMocker): bool =
|
|
|
|
let nRes = cl.client.blockNumber()
|
|
|
|
if nRes.isErr:
|
|
|
|
error "CLMocker: could not get block number", msg=nRes.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let lastBlockNumber = nRes.get
|
2022-06-01 13:32:07 +00:00
|
|
|
if cl.latestHeadNumber != lastBlockNumber:
|
2022-06-27 09:49:51 +00:00
|
|
|
error "CLMocker: unexpected lastBlockNumber",
|
|
|
|
get = lastBlockNumber,
|
|
|
|
expect = cl.latestHeadNumber
|
2022-04-11 10:00:39 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
var header: common.BlockHeader
|
|
|
|
let hRes = cl.client.headerByNumber(lastBlockNumber, header)
|
|
|
|
if hRes.isErr:
|
|
|
|
error "CLMocker: Could not get block header", msg=hRes.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let lastBlockHash = header.blockHash
|
2022-06-01 13:32:07 +00:00
|
|
|
if cl.latestHeader.blockHash != lastBlockHash:
|
2022-04-11 10:00:39 +00:00
|
|
|
error "CLMocker: Failed to obtain a client on the latest block number"
|
|
|
|
return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
2022-06-27 05:26:03 +00:00
|
|
|
proc getNextPayloadID*(cl: CLMocker): bool =
|
2022-04-11 10:00:39 +00:00
|
|
|
# Generate a random value for the PrevRandao field
|
|
|
|
var nextPrevRandao: Hash256
|
2022-09-03 18:15:35 +00:00
|
|
|
doAssert randomBytes(nextPrevRandao.data) == 32
|
2022-04-11 10:00:39 +00:00
|
|
|
|
2022-06-01 13:32:07 +00:00
|
|
|
let timestamp = Quantity toUnix(cl.latestHeader.timestamp + 1.seconds)
|
2022-04-11 10:00:39 +00:00
|
|
|
let payloadAttributes = PayloadAttributesV1(
|
|
|
|
timestamp: timestamp,
|
|
|
|
prevRandao: FixedBytes[32] nextPrevRandao.data,
|
|
|
|
suggestedFeeRecipient: Address cl.nextFeeRecipient,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Save random value
|
2022-06-01 13:32:07 +00:00
|
|
|
let number = cl.latestHeader.blockNumber.truncate(uint64) + 1
|
2022-04-11 10:00:39 +00:00
|
|
|
cl.prevRandaoHistory[number] = nextPrevRandao
|
|
|
|
|
|
|
|
let res = cl.client.forkchoiceUpdatedV1(cl.latestForkchoice, some(payloadAttributes))
|
|
|
|
if res.isErr:
|
|
|
|
error "CLMocker: Could not send forkchoiceUpdatedV1", msg=res.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let s = res.get()
|
|
|
|
if s.payloadStatus.status != PayloadExecutionStatus.valid:
|
|
|
|
error "CLMocker: Unexpected forkchoiceUpdated Response from Payload builder",
|
|
|
|
status=s.payloadStatus.status
|
|
|
|
|
|
|
|
doAssert s.payLoadID.isSome
|
|
|
|
cl.nextPayloadID = s.payloadID.get()
|
|
|
|
return true
|
|
|
|
|
2022-06-27 05:26:03 +00:00
|
|
|
proc getNextPayload*(cl: CLMocker): bool =
|
2022-04-11 10:00:39 +00:00
|
|
|
let res = cl.client.getPayloadV1(cl.nextPayloadID)
|
|
|
|
if res.isErr:
|
|
|
|
error "CLMocker: Could not getPayload",
|
|
|
|
payloadID=toHex(cl.nextPayloadID)
|
|
|
|
return false
|
|
|
|
|
|
|
|
cl.latestPayloadBuilt = res.get()
|
|
|
|
let header = toBlockHeader(cl.latestPayloadBuilt)
|
|
|
|
let blockHash = BlockHash header.blockHash.data
|
|
|
|
if blockHash != cl.latestPayloadBuilt.blockHash:
|
|
|
|
error "getNextPayload blockHash mismatch",
|
|
|
|
expected=cl.latestPayloadBuilt.blockHash.toHex,
|
|
|
|
get=blockHash.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc broadcastNewPayload(cl: CLMocker, payload: ExecutionPayloadV1): Result[PayloadStatusV1, string] =
|
|
|
|
let res = cl.client.newPayloadV1(payload)
|
|
|
|
return res
|
|
|
|
|
|
|
|
proc broadcastNextNewPayload(cl: CLMocker): bool =
|
|
|
|
let res = cl.broadcastNewPayload(cl.latestPayloadBuilt)
|
|
|
|
if res.isErr:
|
|
|
|
error "CLMocker: broadcastNewPayload Error", msg=res.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let s = res.get()
|
|
|
|
if s.status == PayloadExecutionStatus.valid:
|
|
|
|
# The client is synced and the payload was immediately validated
|
|
|
|
# https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md:
|
|
|
|
# - If validation succeeds, the response MUST contain {status: VALID, latestValidHash: payload.blockHash}
|
|
|
|
let blockHash = cl.latestPayloadBuilt.blockHash
|
|
|
|
if s.latestValidHash.isNone:
|
|
|
|
error "CLMocker: NewPayload returned VALID status with nil LatestValidHash",
|
|
|
|
expected=blockHash.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
let latestValidHash = s.latestValidHash.get()
|
|
|
|
if latestValidHash != BlockHash(blockHash):
|
|
|
|
error "CLMocker: NewPayload returned VALID status with incorrect LatestValidHash",
|
|
|
|
get=latestValidHash.toHex, expected=blockHash.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
elif s.status == PayloadExecutionStatus.accepted:
|
|
|
|
# The client is not synced but the payload was accepted
|
|
|
|
# https://github.com/ethereum/execution-apis/blob/main/src/engine/specification.md:
|
|
|
|
# - {status: ACCEPTED, latestValidHash: null, validationError: null} if the following conditions are met:
|
|
|
|
# the blockHash of the payload is valid
|
|
|
|
# the payload doesn't extend the canonical chain
|
|
|
|
# the payload hasn't been fully validated.
|
|
|
|
let nullHash = BlockHash Hash256().data
|
|
|
|
let latestValidHash = s.latestValidHash.get(nullHash)
|
|
|
|
if s.latestValidHash.isSome and latestValidHash != nullHash:
|
|
|
|
error "CLMocker: NewPayload returned ACCEPTED status with incorrect LatestValidHash",
|
|
|
|
hash=latestValidHash.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
else:
|
|
|
|
error "CLMocker: broadcastNewPayload Response",
|
|
|
|
status=s.status
|
|
|
|
return false
|
|
|
|
|
|
|
|
cl.latestExecutedPayload = cl.latestPayloadBuilt
|
|
|
|
let number = uint64 cl.latestPayloadBuilt.blockNumber
|
|
|
|
cl.executedPayloadHistory[number] = cl.latestPayloadBuilt
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc broadcastForkchoiceUpdated*(cl: CLMocker,
|
|
|
|
update: ForkchoiceStateV1): Result[ForkchoiceUpdatedResponse, string] =
|
|
|
|
let res = cl.client.forkchoiceUpdatedV1(update)
|
|
|
|
return res
|
|
|
|
|
|
|
|
proc broadcastLatestForkchoice(cl: CLMocker): bool =
|
|
|
|
let res = cl.broadcastForkchoiceUpdated(cl.latestForkchoice)
|
|
|
|
if res.isErr:
|
|
|
|
error "CLMocker: broadcastForkchoiceUpdated Error", msg=res.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let s = res.get()
|
|
|
|
if s.payloadStatus.status != PayloadExecutionStatus.valid:
|
|
|
|
error "CLMocker: broadcastForkchoiceUpdated Response",
|
|
|
|
status=s.payloadStatus.status
|
|
|
|
return false
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc produceSingleBlock*(cl: CLMocker, cb: BlockProcessCallbacks): bool {.gcsafe.} =
|
|
|
|
doAssert(cl.ttdReached)
|
|
|
|
|
|
|
|
if not cl.pickNextPayloadProducer():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if cb.onPayloadProducerSelected != nil:
|
|
|
|
if not cb.onPayloadProducerSelected():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if not cl.getNextPayloadID():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if cb.onGetPayloadID != nil:
|
|
|
|
if not cb.onGetPayloadID():
|
|
|
|
return false
|
|
|
|
|
|
|
|
# Give the client a delay between getting the payload ID and actually retrieving the payload
|
|
|
|
#time.Sleep(PayloadProductionClientDelay)
|
|
|
|
|
|
|
|
if not cl.getNextPayload():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if cb.onGetPayload != nil:
|
|
|
|
if not cb.onGetPayload():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if not cl.broadcastNextNewPayload():
|
|
|
|
return false
|
|
|
|
|
|
|
|
if cb.onNewPayloadBroadcast != nil:
|
|
|
|
if not cb.onNewPayloadBroadcast():
|
|
|
|
return false
|
|
|
|
|
|
|
|
# Broadcast forkchoice updated with new HeadBlock to all clients
|
2022-06-27 04:15:23 +00:00
|
|
|
let previousForkchoice = cl.latestForkchoice
|
|
|
|
cl.headHashHistory.add cl.latestPayloadBuilt.blockHash
|
|
|
|
|
|
|
|
cl.latestForkchoice = ForkchoiceStateV1()
|
|
|
|
cl.latestForkchoice.headBlockHash = cl.latestPayloadBuilt.blockHash
|
|
|
|
|
|
|
|
let hhLen = cl.headHashHistory.len
|
|
|
|
if hhLen > cl.slotsToSafe:
|
|
|
|
cl.latestForkchoice.safeBlockHash = cl.headHashHistory[hhLen - cl.slotsToSafe - 1]
|
|
|
|
|
|
|
|
if hhLen > cl.slotsToFinalized:
|
|
|
|
cl.latestForkchoice.finalizedBlockHash = cl.headHashHistory[hhLen - cl.slotsToFinalized - 1]
|
|
|
|
|
2022-04-11 10:00:39 +00:00
|
|
|
if not cl.broadcastLatestForkchoice():
|
|
|
|
return false
|
|
|
|
|
2022-06-01 13:32:07 +00:00
|
|
|
if cb.onForkchoiceBroadcast != nil:
|
|
|
|
if not cb.onForkchoiceBroadcast():
|
2022-04-11 10:00:39 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
# Broadcast forkchoice updated with new SafeBlock to all clients
|
2022-06-27 04:15:23 +00:00
|
|
|
if cb.onSafeBlockChange != nil and cl.latestForkchoice.safeBlockHash != previousForkchoice.safeBlockHash:
|
2022-06-01 13:32:07 +00:00
|
|
|
if not cb.onSafeBlockChange():
|
2022-04-11 10:00:39 +00:00
|
|
|
return false
|
|
|
|
|
|
|
|
# Broadcast forkchoice updated with new FinalizedBlock to all clients
|
2022-06-27 04:15:23 +00:00
|
|
|
if cb.onFinalizedBlockChange != nil and cl.latestForkchoice.finalizedBlockHash != previousForkchoice.finalizedBlockHash:
|
|
|
|
if not cb.onFinalizedBlockChange():
|
|
|
|
return false
|
2022-04-11 10:00:39 +00:00
|
|
|
|
2022-06-27 04:15:23 +00:00
|
|
|
# Broadcast forkchoice updated with new FinalizedBlock to all clients
|
2022-04-11 10:00:39 +00:00
|
|
|
# Save the number of the first PoS block
|
|
|
|
if cl.firstPoSBlockNumber.isNone:
|
2022-06-01 13:32:07 +00:00
|
|
|
let number = cl.latestHeader.blockNumber.truncate(uint64) + 1
|
2022-04-11 10:00:39 +00:00
|
|
|
cl.firstPoSBlockNumber = some(number)
|
|
|
|
|
|
|
|
# Save the header of the latest block in the PoS chain
|
2022-06-01 13:32:07 +00:00
|
|
|
cl.latestHeadNumber = cl.latestHeadNumber + 1
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
# Check if any of the clients accepted the new payload
|
|
|
|
var newHeader: common.BlockHeader
|
2022-06-01 13:32:07 +00:00
|
|
|
let res = cl.client.headerByNumber(cl.latestHeadNumber, newHeader)
|
2022-04-11 10:00:39 +00:00
|
|
|
if res.isErr:
|
|
|
|
error "CLMock ProduceSingleBlock", msg=res.error
|
|
|
|
return false
|
|
|
|
|
|
|
|
let newHash = BlockHash newHeader.blockHash.data
|
|
|
|
if newHash != cl.latestPayloadBuilt.blockHash:
|
|
|
|
error "CLMocker: None of the clients accepted the newly constructed payload",
|
|
|
|
hash=newHash.toHex
|
|
|
|
return false
|
|
|
|
|
2022-06-27 04:15:23 +00:00
|
|
|
# Check that the new finalized header has the correct properties
|
|
|
|
# ommersHash == 0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347
|
|
|
|
if newHeader.ommersHash != EMPTY_UNCLE_HASH:
|
|
|
|
error "CLMocker: Client produced a new header with incorrect ommersHash", ommersHash = newHeader.ommersHash
|
|
|
|
return false
|
2022-04-11 10:00:39 +00:00
|
|
|
|
2022-06-27 04:15:23 +00:00
|
|
|
# difficulty == 0
|
|
|
|
if newHeader.difficulty != 0.u256:
|
|
|
|
error "CLMocker: Client produced a new header with incorrect difficulty", difficulty = newHeader.difficulty
|
|
|
|
return false
|
|
|
|
|
|
|
|
# mixHash == prevRandao
|
|
|
|
if newHeader.mixDigest != cl.prevRandaoHistory[cl.latestHeadNumber]:
|
|
|
|
error "CLMocker: Client produced a new header with incorrect mixHash",
|
|
|
|
get = newHeader.mixDigest.data.toHex,
|
|
|
|
expect = cl.prevRandaoHistory[cl.latestHeadNumber].data.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
# nonce == 0x0000000000000000
|
|
|
|
if newHeader.nonce != default(BlockNonce):
|
|
|
|
error "CLMocker: Client produced a new header with incorrect nonce",
|
|
|
|
nonce = newHeader.nonce.toHex
|
|
|
|
return false
|
|
|
|
|
|
|
|
if newHeader.extraData.len > 32:
|
|
|
|
error "CLMocker: Client produced a new header with incorrect extraData (len > 32)",
|
|
|
|
len = newHeader.extraData.len
|
|
|
|
return false
|
|
|
|
|
|
|
|
cl.latestHeader = newHeader
|
2022-04-11 10:00:39 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
|
|
|
|
# Loop produce PoS blocks by using the Engine API
|
|
|
|
proc produceBlocks*(cl: CLMocker, blockCount: int, cb: BlockProcessCallbacks): bool {.gcsafe.} =
|
|
|
|
# Produce requested amount of blocks
|
|
|
|
for i in 0..<blockCount:
|
|
|
|
if not cl.produceSingleBlock(cb):
|
|
|
|
return false
|
|
|
|
return true
|
|
|
|
|
|
|
|
# Check whether a block number is a PoS block
|
|
|
|
proc isBlockPoS*(cl: CLMocker, bn: common.BlockNumber): bool =
|
|
|
|
if cl.firstPoSBlockNumber.isNone:
|
|
|
|
return false
|
|
|
|
|
|
|
|
let number = cl.firstPoSBlockNumber.get()
|
|
|
|
let bn = bn.truncate(uint64)
|
|
|
|
if number > bn:
|
|
|
|
return false
|
|
|
|
|
|
|
|
return true
|
2022-06-17 00:53:33 +00:00
|
|
|
|
|
|
|
proc posBlockNumber*(cl: CLMocker): uint64 =
|
|
|
|
cl.firstPoSBlockNumber.get(0'u64)
|