mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
1922416cac
* Update todo strings * Go fmt * add merge specific checks when receiving a block from gossip * Fix beacon chain build * Interop merge beacon state * fix finding Transactions size * Update go commit * Merge union debugging (#9751) * changes test cases per ssz changes * noisy commit, restoring pb field order codegen * get rid of codegen garbage * M2 works with Geth 🎉 * Fix bazel build //... * restoring generated pb field ordering * defensive nil check * separate ExecutionPayload/Header from codegen * tell bazel about this new file * Merge: support terminal difficulty override (#9769) * Fix finding terminal block hash calculation * Update mainnet_config.go * Update beacon_block.pb.go * Various fixes to pass all spec tests for Merge (#9777) * Proper upgrade altair to merge state * Use uint64 for ttd * Correctly upgrade to merge state + object mapping fixes * Use proper receive block path for initial syncing * Disable contract lookback * Disable deposit contract lookback * Go fmt * Merge: switch from go bindings to raw rpc calls (#9803) * Disable genesis ETH1.0 chain header logging * Update htrutils.go * all gossip tests passing * Remove gas validations * Update penalty params for Merge * Fix gossip and tx size limits for the merge part 1 * Remove extraneous p2p condition * Add and use * Add and use TBH_ACTIVATION_EPOCH * Update WORKSPACE * Update Kintsugi engine API (#9865) * Kintsugi ssz (#9867) * All spec tests pass * Update spec test shas * Update Kintsugi consensus implementations (#9872) * Remove secp256k1 * Remove unused merge genesis state gen tool * Manually override nil transaction field. M2 works * Fix bad hex conversion * Change Gossip message size and Chunk SIze from 1 MB t0 10MB (#9860) * change gossip size and chunk size after merge * change ssz to accomodate both changes * gofmt config file * add testcase for merge MsgId * Update beacon-chain/p2p/message_id.go Change MB to Mib in comment Co-authored-by: terence tsao <terence@prysmaticlabs.com> * change function name from altairMsgID to postAltairMsgID Co-authored-by: terence tsao <terence@prysmaticlabs.com> * Sync with develop * Merge branch 'develop' of github.com:prysmaticlabs/prysm into kintsugi * Update state_trie.go * Clean up conflicts * Fix build * Update config to devnet1 * Fix state merge * Handle merge test case for update balance * Fix build * State pkg cleanup * Fix a bug with loading mainnet state * Fix transactions root * Add v2 endpoint for merge blocks (#9802) * Add V2 blocks endpoint for merge blocks * Update beacon-chain/rpc/apimiddleware/structs.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * go mod * fix transactions * Terence's comments * add missing file Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Sync * Go mod tidy * change EP field names * latest kintusgi execution api * fix conflicts * converting base fee to big endian format (#10018) * ReverseByteOrder function does not mess the input * sync with develop * use merge gossip sizes * correct gossip sizes this time * visibility * clean ups * Sync with develop, fix payload nil check bug * Speed up syncing, hide cosmetic errors * Sync with develop * Clean up after sync * Update generate_keys.go * sync with develop * Update mainnet_config.go * Clean ups * Sync optimistically candidate blocks (#10193) * Revert "Sync optimistically candidate blocks (#10193)" This reverts commit f99a0419ef1efc4bda0be77f22165b8fe4377c0d. * Sync optimistically candidate blocks (#10193) * allow optimistic sync * Fix merge transition block validation * Update proposer.go * Sync with develop * delete deprecated client, update testnet flag * Change optimistic logic (#10194) * Logs and err handling * Fix build * Clean ups * Add back get payload * c * Done * Rm uncommented * Optimistic sync: prysm validator rpcs (#10200) * Logs to reproduce * Use pointers * Use pointers * Use pointers * Update json_marshal_unmarshal.go * Fix marshal * Update json_marshal_unmarshal.go * Log * string total diff * str * marshal un * set string * json * gaz * Comment out optimistic status * remove kiln flag here (#10269) * Sync with devleop * Sync with develop * clean ups * refactor engine calls * Update process_block.go * Fix deadlock, uncomment duty opt sync * Update proposer_execution_payload.go * Sync with develop * Rm post state check * Bypass eth1 data checks * Update proposer_execution_payload.go * Return early if ttd is not reached * Sync with devleop * Update process_block.go * Update receive_block.go * Update bzl * Revert "Update receive_block.go" This reverts commit 5b4a87c512325d9f26de4db7f941dcd7303cd0d8. * Fix run time * Update go.mod * Fix AltairCompatible to account for future state version * Update proposer_execution_payload.go * Handle pre state Altair with valid payload * Handle pre state Altair with valid payload * Log bellatrix fields * Update log.go * Friendly fee recipient log * Remove extra SetOptimisticToValid * Fix base fee per gas * Fix notifypayload headroot * clean up with develop branch * Sync with devleop * Fix * Fix * fix * Fix * fix tests * revert some changes * fix tests * Update optimistic_sync_test.go * Simplify IsExecutionEnabledUsingHeader Co-authored-by: Zahoor Mohamed <zahoor@prysmaticlabs.com> Co-authored-by: Zahoor Mohamed <zahoor@zahoor.in> Co-authored-by: kasey <489222+kasey@users.noreply.github.com> Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
330 lines
11 KiB
Go
330 lines
11 KiB
Go
package blocks
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/time"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state"
|
|
fieldparams "github.com/prysmaticlabs/prysm/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/encoding/ssz"
|
|
enginev1 "github.com/prysmaticlabs/prysm/proto/engine/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/block"
|
|
"github.com/prysmaticlabs/prysm/runtime/version"
|
|
"github.com/prysmaticlabs/prysm/time/slots"
|
|
)
|
|
|
|
// MergeTransitionComplete returns true if the transition to Bellatrix has completed.
|
|
// Meaning the payload header in beacon state is not `ExecutionPayloadHeader()` (i.e. not empty).
|
|
//
|
|
// Spec code:
|
|
// def is_merge_transition_complete(state: BeaconState) -> bool:
|
|
// return state.latest_execution_payload_header != ExecutionPayloadHeader()
|
|
//
|
|
// Deprecated: Use `IsMergeTransitionBlockUsingPayloadHeader` instead.
|
|
func MergeTransitionComplete(st state.BeaconState) (bool, error) {
|
|
h, err := st.LatestExecutionPayloadHeader()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return !isEmptyHeader(h), nil
|
|
}
|
|
|
|
// MergeTransitionBlock returns true if the input block is the terminal merge block.
|
|
// Meaning the header in beacon state is `ExecutionPayloadHeader()` (i.e. empty).
|
|
// And the input block has a non-empty header.
|
|
//
|
|
// Spec code:
|
|
// def is_merge_transition_block(state: BeaconState, body: BeaconBlockBody) -> bool:
|
|
// return not is_merge_transition_complete(state) and body.execution_payload != ExecutionPayload()
|
|
func MergeTransitionBlock(st state.BeaconState, body block.BeaconBlockBody) (bool, error) {
|
|
mergeComplete, err := MergeTransitionComplete(st)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if mergeComplete {
|
|
return false, err
|
|
}
|
|
|
|
return ExecutionBlock(body)
|
|
}
|
|
|
|
// IsMergeTransitionBlockUsingPayloadHeader returns true if the input block is the terminal merge block.
|
|
// Terminal merge block must be associated with an empty payload header.
|
|
// This is an optimized version of MergeTransitionComplete where beacon state is not required as an argument.
|
|
func IsMergeTransitionBlockUsingPayloadHeader(h *ethpb.ExecutionPayloadHeader, body block.BeaconBlockBody) (bool, error) {
|
|
if !isEmptyHeader(h) {
|
|
return false, nil
|
|
}
|
|
return ExecutionBlock(body)
|
|
}
|
|
|
|
// ExecutionBlock returns whether the block has a non-empty ExecutionPayload.
|
|
//
|
|
// Spec code:
|
|
// def is_execution_block(block: BeaconBlock) -> bool:
|
|
// return block.body.execution_payload != ExecutionPayload()
|
|
func ExecutionBlock(body block.BeaconBlockBody) (bool, error) {
|
|
payload, err := body.ExecutionPayload()
|
|
if err != nil {
|
|
if strings.HasPrefix(err.Error(), "ExecutionPayload is not supported in") {
|
|
return false, nil
|
|
}
|
|
return false, err
|
|
}
|
|
return !isEmptyPayload(payload), nil
|
|
}
|
|
|
|
// ExecutionEnabled returns true if the beacon chain can begin executing.
|
|
// Meaning the payload header is beacon state is non-empty or the payload in block body is non-empty.
|
|
//
|
|
// Spec code:
|
|
// def is_execution_enabled(state: BeaconState, body: BeaconBlockBody) -> bool:
|
|
// return is_merge_block(state, body) or is_merge_complete(state)
|
|
// Deprecated: Use `IsExecutionEnabledUsingHeader` instead.
|
|
func ExecutionEnabled(st state.BeaconState, body block.BeaconBlockBody) (bool, error) {
|
|
if st.Version() == version.Phase0 || st.Version() == version.Altair {
|
|
return false, nil
|
|
}
|
|
header, err := st.LatestExecutionPayloadHeader()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return IsExecutionEnabledUsingHeader(header, body)
|
|
}
|
|
|
|
// IsExecutionEnabledUsingHeader returns true if the execution is enabled using post processed payload header and block body.
|
|
// This is an optimized version of ExecutionEnabled where beacon state is not required as an argument.
|
|
func IsExecutionEnabledUsingHeader(header *ethpb.ExecutionPayloadHeader, body block.BeaconBlockBody) (bool, error) {
|
|
if !isEmptyHeader(header) {
|
|
return true, nil
|
|
}
|
|
return ExecutionBlock(body)
|
|
}
|
|
|
|
// ValidatePayloadWhenMergeCompletes validates if payload is valid versus input beacon state.
|
|
// These validation steps ONLY apply to post merge.
|
|
//
|
|
// Spec code:
|
|
// # Verify consistency of the parent hash with respect to the previous execution payload header
|
|
// if is_merge_complete(state):
|
|
// assert payload.parent_hash == state.latest_execution_payload_header.block_hash
|
|
func ValidatePayloadWhenMergeCompletes(st state.BeaconState, payload *enginev1.ExecutionPayload) error {
|
|
complete, err := MergeTransitionComplete(st)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !complete {
|
|
return nil
|
|
}
|
|
|
|
header, err := st.LatestExecutionPayloadHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !bytes.Equal(payload.ParentHash, header.BlockHash) {
|
|
return errors.New("incorrect block hash")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ValidatePayload validates if payload is valid versus input beacon state.
|
|
// These validation steps apply to both pre merge and post merge.
|
|
//
|
|
// Spec code:
|
|
// # Verify random
|
|
// assert payload.random == get_randao_mix(state, get_current_epoch(state))
|
|
// # Verify timestamp
|
|
// assert payload.timestamp == compute_timestamp_at_slot(state, state.slot)
|
|
func ValidatePayload(st state.BeaconState, payload *enginev1.ExecutionPayload) error {
|
|
random, err := helpers.RandaoMix(st, time.CurrentEpoch(st))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !bytes.Equal(payload.PrevRandao, random) {
|
|
return errors.New("incorrect prev randao")
|
|
}
|
|
t, err := slots.ToTime(st.GenesisTime(), st.Slot())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if payload.Timestamp != uint64(t.Unix()) {
|
|
return errors.New("incorrect timestamp")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ProcessPayload processes input execution payload using beacon state.
|
|
// ValidatePayloadWhenMergeCompletes validates if payload is valid versus input beacon state.
|
|
// These validation steps ONLY apply to post merge.
|
|
//
|
|
// Spec code:
|
|
// def process_execution_payload(state: BeaconState, payload: ExecutionPayload, execution_engine: ExecutionEngine) -> None:
|
|
// # Verify consistency of the parent hash with respect to the previous execution payload header
|
|
// if is_merge_complete(state):
|
|
// assert payload.parent_hash == state.latest_execution_payload_header.block_hash
|
|
// # Verify random
|
|
// assert payload.random == get_randao_mix(state, get_current_epoch(state))
|
|
// # Verify timestamp
|
|
// assert payload.timestamp == compute_timestamp_at_slot(state, state.slot)
|
|
// # Verify the execution payload is valid
|
|
// assert execution_engine.execute_payload(payload)
|
|
// # Cache execution payload header
|
|
// state.latest_execution_payload_header = ExecutionPayloadHeader(
|
|
// parent_hash=payload.parent_hash,
|
|
// FeeRecipient=payload.FeeRecipient,
|
|
// state_root=payload.state_root,
|
|
// receipt_root=payload.receipt_root,
|
|
// logs_bloom=payload.logs_bloom,
|
|
// random=payload.random,
|
|
// block_number=payload.block_number,
|
|
// gas_limit=payload.gas_limit,
|
|
// gas_used=payload.gas_used,
|
|
// timestamp=payload.timestamp,
|
|
// extra_data=payload.extra_data,
|
|
// base_fee_per_gas=payload.base_fee_per_gas,
|
|
// block_hash=payload.block_hash,
|
|
// transactions_root=hash_tree_root(payload.transactions),
|
|
// )
|
|
func ProcessPayload(st state.BeaconState, payload *enginev1.ExecutionPayload) (state.BeaconState, error) {
|
|
if err := ValidatePayloadWhenMergeCompletes(st, payload); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := ValidatePayload(st, payload); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
header, err := PayloadToHeader(payload)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := st.SetLatestExecutionPayloadHeader(header); err != nil {
|
|
return nil, err
|
|
}
|
|
return st, nil
|
|
}
|
|
|
|
// PayloadToHeader converts `payload` into execution payload header format.
|
|
func PayloadToHeader(payload *enginev1.ExecutionPayload) (*ethpb.ExecutionPayloadHeader, error) {
|
|
txRoot, err := ssz.TransactionsRoot(payload.Transactions)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return ðpb.ExecutionPayloadHeader{
|
|
ParentHash: bytesutil.SafeCopyBytes(payload.ParentHash),
|
|
FeeRecipient: bytesutil.SafeCopyBytes(payload.FeeRecipient),
|
|
StateRoot: bytesutil.SafeCopyBytes(payload.StateRoot),
|
|
ReceiptRoot: bytesutil.SafeCopyBytes(payload.ReceiptsRoot),
|
|
LogsBloom: bytesutil.SafeCopyBytes(payload.LogsBloom),
|
|
PrevRandao: bytesutil.SafeCopyBytes(payload.PrevRandao),
|
|
BlockNumber: payload.BlockNumber,
|
|
GasLimit: payload.GasLimit,
|
|
GasUsed: payload.GasUsed,
|
|
Timestamp: payload.Timestamp,
|
|
ExtraData: bytesutil.SafeCopyBytes(payload.ExtraData),
|
|
BaseFeePerGas: bytesutil.SafeCopyBytes(payload.BaseFeePerGas),
|
|
BlockHash: bytesutil.SafeCopyBytes(payload.BlockHash),
|
|
TransactionsRoot: txRoot[:],
|
|
}, nil
|
|
}
|
|
|
|
func isEmptyPayload(p *enginev1.ExecutionPayload) bool {
|
|
if !bytes.Equal(p.ParentHash, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.FeeRecipient, make([]byte, fieldparams.FeeRecipientLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.StateRoot, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.ReceiptsRoot, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.LogsBloom, make([]byte, fieldparams.LogsBloomLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.PrevRandao, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.BaseFeePerGas, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(p.BlockHash, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if len(p.Transactions) != 0 {
|
|
return false
|
|
}
|
|
if len(p.ExtraData) != 0 {
|
|
return false
|
|
}
|
|
if p.BlockNumber != 0 {
|
|
return false
|
|
}
|
|
if p.GasLimit != 0 {
|
|
return false
|
|
}
|
|
if p.GasUsed != 0 {
|
|
return false
|
|
}
|
|
if p.Timestamp != 0 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func isEmptyHeader(h *ethpb.ExecutionPayloadHeader) bool {
|
|
if !bytes.Equal(h.ParentHash, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.FeeRecipient, make([]byte, fieldparams.FeeRecipientLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.StateRoot, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.ReceiptRoot, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.LogsBloom, make([]byte, fieldparams.LogsBloomLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.PrevRandao, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.BaseFeePerGas, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.BlockHash, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(h.TransactionsRoot, make([]byte, fieldparams.RootLength)) {
|
|
return false
|
|
}
|
|
if len(h.ExtraData) != 0 {
|
|
return false
|
|
}
|
|
if h.BlockNumber != 0 {
|
|
return false
|
|
}
|
|
if h.GasLimit != 0 {
|
|
return false
|
|
}
|
|
if h.GasUsed != 0 {
|
|
return false
|
|
}
|
|
if h.Timestamp != 0 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|