2021-10-06 17:05:06 +00:00
|
|
|
# beacon_chain
|
2023-01-31 12:35:01 +00:00
|
|
|
# Copyright (c) 2021-2023 Status Research & Development GmbH
|
2021-10-06 17:05:06 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2021-08-23 10:41:48 +00:00
|
|
|
import std/sequtils
|
2021-08-27 09:00:06 +00:00
|
|
|
import chronicles
|
2022-06-21 19:01:45 +00:00
|
|
|
import ".."/beacon_node,
|
2021-08-23 10:41:48 +00:00
|
|
|
".."/spec/forks,
|
2022-01-05 14:49:10 +00:00
|
|
|
"."/[rest_utils, state_ttl_cache]
|
2021-03-17 18:46:45 +00:00
|
|
|
|
2022-08-29 22:02:29 +00:00
|
|
|
from ../fork_choice/proto_array import ProtoArrayItem, items
|
|
|
|
|
2021-10-27 12:01:11 +00:00
|
|
|
export rest_utils
|
|
|
|
|
2021-03-17 18:46:45 +00:00
|
|
|
logScope: topics = "rest_debug"
|
|
|
|
|
|
|
|
proc installDebugApiHandlers*(router: var RestRouter, node: BeaconNode) =
|
2021-08-23 10:41:48 +00:00
|
|
|
# https://ethereum.github.io/beacon-APIs/#/Debug/getState
|
2021-03-17 18:46:45 +00:00
|
|
|
router.api(MethodGet,
|
2022-01-06 07:38:40 +00:00
|
|
|
"/eth/v1/debug/beacon/states/{state_id}") do (
|
2021-03-17 18:46:45 +00:00
|
|
|
state_id: StateIdent) -> RestApiResponse:
|
2022-11-02 10:56:55 +00:00
|
|
|
return RestApiResponse.jsonError(
|
|
|
|
Http410, DeprecatedRemovalBeaconBlocksDebugStateV1)
|
2021-03-17 18:46:45 +00:00
|
|
|
|
2021-08-23 10:41:48 +00:00
|
|
|
# https://ethereum.github.io/beacon-APIs/#/Debug/getStateV2
|
|
|
|
router.api(MethodGet,
|
2022-01-06 07:38:40 +00:00
|
|
|
"/eth/v2/debug/beacon/states/{state_id}") do (
|
2021-08-23 10:41:48 +00:00
|
|
|
state_id: StateIdent) -> RestApiResponse:
|
|
|
|
let bslot =
|
|
|
|
block:
|
|
|
|
if state_id.isErr():
|
|
|
|
return RestApiResponse.jsonError(Http400, InvalidStateIdValueError,
|
|
|
|
$state_id.error())
|
Prune `BlockRef` on finalization (#3513)
Up til now, the block dag has been using `BlockRef`, a structure adapted
for a full DAG, to represent all of chain history. This is a correct and
simple design, but does not exploit the linearity of the chain once
parts of it finalize.
By pruning the in-memory `BlockRef` structure at finalization, we save,
at the time of writing, a cool ~250mb (or 25%:ish) chunk of memory
landing us at a steady state of ~750mb normal memory usage for a
validating node.
Above all though, we prevent memory usage from growing proportionally
with the length of the chain, something that would not be sustainable
over time - instead, the steady state memory usage is roughly
determined by the validator set size which grows much more slowly. With
these changes, the core should remain sustainable memory-wise post-merge
all the way to withdrawals (when the validator set is expected to grow).
In-memory indices are still used for the "hot" unfinalized portion of
the chain - this ensure that consensus performance remains unchanged.
What changes is that for historical access, we use a db-based linear
slot index which is cache-and-disk-friendly, keeping the cost for
accessing historical data at a similar level as before, achieving the
savings at no percievable cost to functionality or performance.
A nice collateral benefit is the almost-instant startup since we no
longer load any large indicies at dag init.
The cost of this functionality instead can be found in the complexity of
having to deal with two ways of traversing the chain - by `BlockRef` and
by slot.
* use `BlockId` instead of `BlockRef` where finalized / historical data
may be required
* simplify clearance pre-advancement
* remove dag.finalizedBlocks (~50:ish mb)
* remove `getBlockAtSlot` - use `getBlockIdAtSlot` instead
* `parent` and `atSlot` for `BlockId` now require a `ChainDAGRef`
instance, unlike `BlockRef` traversal
* prune `BlockRef` parents on finality (~200:ish mb)
* speed up ChainDAG init by not loading finalized history index
* mess up light client server error handling - this need revisiting :)
2022-03-17 17:42:56 +00:00
|
|
|
let bres = node.getBlockSlotId(state_id.get())
|
2021-08-23 10:41:48 +00:00
|
|
|
if bres.isErr():
|
|
|
|
return RestApiResponse.jsonError(Http404, StateNotFoundError,
|
|
|
|
$bres.error())
|
|
|
|
bres.get()
|
2021-09-16 13:32:32 +00:00
|
|
|
let contentType =
|
|
|
|
block:
|
2022-01-21 16:52:34 +00:00
|
|
|
let res = preferredContentType(jsonMediaType,
|
|
|
|
sszMediaType)
|
2021-09-16 13:32:32 +00:00
|
|
|
if res.isErr():
|
|
|
|
return RestApiResponse.jsonError(Http406, ContentNotAcceptableError)
|
|
|
|
res.get()
|
Prune `BlockRef` on finalization (#3513)
Up til now, the block dag has been using `BlockRef`, a structure adapted
for a full DAG, to represent all of chain history. This is a correct and
simple design, but does not exploit the linearity of the chain once
parts of it finalize.
By pruning the in-memory `BlockRef` structure at finalization, we save,
at the time of writing, a cool ~250mb (or 25%:ish) chunk of memory
landing us at a steady state of ~750mb normal memory usage for a
validating node.
Above all though, we prevent memory usage from growing proportionally
with the length of the chain, something that would not be sustainable
over time - instead, the steady state memory usage is roughly
determined by the validator set size which grows much more slowly. With
these changes, the core should remain sustainable memory-wise post-merge
all the way to withdrawals (when the validator set is expected to grow).
In-memory indices are still used for the "hot" unfinalized portion of
the chain - this ensure that consensus performance remains unchanged.
What changes is that for historical access, we use a db-based linear
slot index which is cache-and-disk-friendly, keeping the cost for
accessing historical data at a similar level as before, achieving the
savings at no percievable cost to functionality or performance.
A nice collateral benefit is the almost-instant startup since we no
longer load any large indicies at dag init.
The cost of this functionality instead can be found in the complexity of
having to deal with two ways of traversing the chain - by `BlockRef` and
by slot.
* use `BlockId` instead of `BlockRef` where finalized / historical data
may be required
* simplify clearance pre-advancement
* remove dag.finalizedBlocks (~50:ish mb)
* remove `getBlockAtSlot` - use `getBlockIdAtSlot` instead
* `parent` and `atSlot` for `BlockId` now require a `ChainDAGRef`
instance, unlike `BlockRef` traversal
* prune `BlockRef` parents on finality (~200:ish mb)
* speed up ChainDAG init by not loading finalized history index
* mess up light client server error handling - this need revisiting :)
2022-03-17 17:42:56 +00:00
|
|
|
node.withStateForBlockSlotId(bslot):
|
2021-09-16 13:32:32 +00:00
|
|
|
return
|
2022-01-21 16:52:34 +00:00
|
|
|
if contentType == jsonMediaType:
|
2022-06-20 05:53:39 +00:00
|
|
|
RestApiResponse.jsonResponseState(
|
|
|
|
state,
|
|
|
|
node.getStateOptimistic(state)
|
|
|
|
)
|
2022-01-21 16:52:34 +00:00
|
|
|
elif contentType == sszMediaType:
|
2022-06-20 05:53:39 +00:00
|
|
|
let headers = [("eth-consensus-version", state.kind.toString())]
|
2022-03-16 07:20:40 +00:00
|
|
|
withState(state):
|
2022-09-13 11:53:12 +00:00
|
|
|
RestApiResponse.sszResponse(forkyState.data, headers)
|
2021-09-16 13:32:32 +00:00
|
|
|
else:
|
|
|
|
RestApiResponse.jsonError(Http500, InvalidAcceptError)
|
|
|
|
return RestApiResponse.jsonError(Http404, StateNotFoundError)
|
2021-08-23 10:41:48 +00:00
|
|
|
|
|
|
|
# https://ethereum.github.io/beacon-APIs/#/Debug/getDebugChainHeads
|
2021-03-17 18:46:45 +00:00
|
|
|
router.api(MethodGet,
|
2022-01-06 07:38:40 +00:00
|
|
|
"/eth/v1/debug/beacon/heads") do () -> RestApiResponse:
|
2021-03-17 18:46:45 +00:00
|
|
|
return RestApiResponse.jsonResponse(
|
2021-06-01 11:13:40 +00:00
|
|
|
node.dag.heads.mapIt((root: it.root, slot: it.slot))
|
2021-03-17 18:46:45 +00:00
|
|
|
)
|
2021-04-13 10:19:31 +00:00
|
|
|
|
2022-06-20 05:53:39 +00:00
|
|
|
# https://ethereum.github.io/beacon-APIs/#/Debug/getDebugChainHeadsV2
|
|
|
|
router.api(MethodGet,
|
|
|
|
"/eth/v2/debug/beacon/heads") do () -> RestApiResponse:
|
|
|
|
return RestApiResponse.jsonResponse(
|
|
|
|
node.dag.heads.mapIt(
|
|
|
|
(
|
|
|
|
root: it.root,
|
|
|
|
slot: it.slot,
|
|
|
|
execution_optimistic: node.getBlockRefOptimistic(it)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2022-08-29 22:02:29 +00:00
|
|
|
# https://github.com/ethereum/beacon-APIs/pull/232
|
2023-01-31 12:35:01 +00:00
|
|
|
if node.config.debugForkChoice or experimental in node.dag.updateFlags:
|
2022-08-29 22:02:29 +00:00
|
|
|
router.api(MethodGet,
|
|
|
|
"/eth/v1/debug/fork_choice") do () -> RestApiResponse:
|
|
|
|
type
|
|
|
|
ForkChoiceResponseExtraData = object
|
|
|
|
justified_root: Eth2Digest
|
|
|
|
finalized_root: Eth2Digest
|
|
|
|
u_justified_checkpoint: Option[Checkpoint]
|
|
|
|
u_finalized_checkpoint: Option[Checkpoint]
|
|
|
|
best_child: Eth2Digest
|
|
|
|
best_descendant: Eth2Digest
|
2022-09-06 18:05:57 +00:00
|
|
|
invalid: bool
|
2022-08-29 22:02:29 +00:00
|
|
|
|
|
|
|
ForkChoiceResponse = object
|
|
|
|
slot: Slot
|
|
|
|
block_root: Eth2Digest
|
|
|
|
parent_root: Eth2Digest
|
|
|
|
justified_epoch: Epoch
|
|
|
|
finalized_epoch: Epoch
|
|
|
|
weight: uint64
|
|
|
|
execution_optimistic: bool
|
|
|
|
execution_payload_root: Eth2Digest
|
|
|
|
extra_data: Option[ForkChoiceResponseExtraData]
|
|
|
|
|
|
|
|
var responses: seq[ForkChoiceResponse]
|
|
|
|
for item in node.attestationPool[].forkChoice.backend.proto_array:
|
|
|
|
let
|
|
|
|
unrealized = item.unrealized.get(item.checkpoints)
|
|
|
|
u_justified_checkpoint =
|
|
|
|
if unrealized.justified != item.checkpoints.justified:
|
|
|
|
some unrealized.justified
|
|
|
|
else:
|
|
|
|
none(Checkpoint)
|
|
|
|
u_finalized_checkpoint =
|
|
|
|
if unrealized.finalized != item.checkpoints.finalized:
|
|
|
|
some unrealized.finalized
|
|
|
|
else:
|
|
|
|
none(Checkpoint)
|
|
|
|
|
|
|
|
responses.add ForkChoiceResponse(
|
2023-01-31 12:35:01 +00:00
|
|
|
slot: item.bid.slot,
|
|
|
|
block_root: item.bid.root,
|
2022-08-29 22:02:29 +00:00
|
|
|
parent_root: item.parent,
|
|
|
|
justified_epoch: item.checkpoints.justified.epoch,
|
|
|
|
finalized_epoch: item.checkpoints.finalized.epoch,
|
|
|
|
weight: cast[uint64](item.weight),
|
2023-01-31 12:35:01 +00:00
|
|
|
execution_optimistic: node.dag.is_optimistic(item.bid.root),
|
|
|
|
execution_payload_root: node.dag.loadExecutionBlockRoot(item.bid),
|
2022-08-29 22:02:29 +00:00
|
|
|
extra_data: some ForkChoiceResponseExtraData(
|
|
|
|
justified_root: item.checkpoints.justified.root,
|
|
|
|
finalized_root: item.checkpoints.finalized.root,
|
|
|
|
u_justified_checkpoint: u_justified_checkpoint,
|
|
|
|
u_finalized_checkpoint: u_finalized_checkpoint,
|
|
|
|
best_child: item.bestChild,
|
2022-09-06 18:05:57 +00:00
|
|
|
bestDescendant: item.bestDescendant,
|
|
|
|
invalid: item.invalid))
|
2022-08-29 22:02:29 +00:00
|
|
|
return RestApiResponse.jsonResponse(responses)
|