mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
562db195cd
Former-commit-id: 89be5b180c196bc4b965de200b4494abd5692f33 [formerly 9027cf7a563279b1fa6992732a3c2b2b5ca4c83b] Former-commit-id: 1303c98eca9ab5da08990c3371208ac4b6217cd3
243 lines
7.4 KiB
Go
243 lines
7.4 KiB
Go
package sharding
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
)
|
|
|
|
// ShardBackend defines an interface for a shardDB's necessary method
|
|
// signatures.
|
|
type ShardBackend interface {
|
|
Get(k common.Hash) (*[]byte, error)
|
|
Has(k common.Hash) bool
|
|
Put(k common.Hash, val []byte) error
|
|
Delete(k common.Hash) error
|
|
}
|
|
|
|
// Shard base struct.
|
|
type Shard struct {
|
|
shardDB ShardBackend
|
|
shardID *big.Int
|
|
}
|
|
|
|
// NewShard creates an instance of a Shard struct given a shardID.
|
|
func NewShard(shardID *big.Int, shardDB ShardBackend) *Shard {
|
|
return &Shard{
|
|
shardID: shardID,
|
|
shardDB: shardDB,
|
|
}
|
|
}
|
|
|
|
// ShardID gets the shard's identifier.
|
|
func (s *Shard) ShardID() *big.Int {
|
|
return s.shardID
|
|
}
|
|
|
|
// ValidateShardID checks if header belongs to shard.
|
|
func (s *Shard) ValidateShardID(h *CollationHeader) error {
|
|
if s.ShardID().Cmp(h.ShardID()) != 0 {
|
|
return fmt.Errorf("collation does not belong to shard %d but instead has shardID %d", h.ShardID().Int64(), s.ShardID().Int64())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// HeaderByHash looks up a collation header from the shardDB using the header's hash.
|
|
func (s *Shard) HeaderByHash(hash *common.Hash) (*CollationHeader, error) {
|
|
encoded, err := s.shardDB.Get(*hash)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("get failed: %v", err)
|
|
}
|
|
if encoded == nil {
|
|
return nil, fmt.Errorf("no value set for header hash: %vs", hash.Hex())
|
|
}
|
|
|
|
var header CollationHeader
|
|
|
|
stream := rlp.NewStream(bytes.NewReader(*encoded), uint64(len(*encoded)))
|
|
if err := header.DecodeRLP(stream); err != nil {
|
|
return nil, fmt.Errorf("could not decode RLP header: %v", err)
|
|
}
|
|
|
|
return &header, nil
|
|
}
|
|
|
|
// CollationByHash fetches full collation.
|
|
func (s *Shard) CollationByHash(headerHash *common.Hash) (*Collation, error) {
|
|
header, err := s.HeaderByHash(headerHash)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot fetch header by hash: %v", err)
|
|
}
|
|
|
|
body, err := s.BodyByChunkRoot(header.ChunkRoot())
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot fetch body by chunk root: %v", err)
|
|
}
|
|
// TODO: deserializes the body into a txs slice instead of using
|
|
// nil as the third arg to MakeCollation.
|
|
col := NewCollation(header, body, nil)
|
|
return col, nil
|
|
}
|
|
|
|
// CanonicalHeaderHash gets a collation header hash that has been set as
|
|
// canonical for shardID/period pair.
|
|
func (s *Shard) CanonicalHeaderHash(shardID *big.Int, period *big.Int) (*common.Hash, error) {
|
|
key := canonicalCollationLookupKey(shardID, period)
|
|
|
|
// fetches the RLP encoded collation header corresponding to the key.
|
|
encoded, err := s.shardDB.Get(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if encoded == nil {
|
|
return nil, fmt.Errorf("no canonical collation header set for period=%v, shardID=%v pair: %v", shardID, period, err)
|
|
}
|
|
|
|
// RLP decodes the header, computes its hash.
|
|
var header CollationHeader
|
|
|
|
stream := rlp.NewStream(bytes.NewReader(*encoded), uint64(len(*encoded)))
|
|
if err := header.DecodeRLP(stream); err != nil {
|
|
return nil, fmt.Errorf("could not decode RLP header: %v", err)
|
|
}
|
|
|
|
collationHash := header.Hash()
|
|
return &collationHash, nil
|
|
}
|
|
|
|
// CanonicalCollation fetches the collation set as canonical in the shardDB.
|
|
func (s *Shard) CanonicalCollation(shardID *big.Int, period *big.Int) (*Collation, error) {
|
|
h, err := s.CanonicalHeaderHash(shardID, period)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error while getting canonical header hash: %v", err)
|
|
}
|
|
|
|
return s.CollationByHash(h)
|
|
}
|
|
|
|
// BodyByChunkRoot fetches a collation body.
|
|
func (s *Shard) BodyByChunkRoot(chunkRoot *common.Hash) ([]byte, error) {
|
|
body, err := s.shardDB.Get(*chunkRoot)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if body == nil {
|
|
return nil, fmt.Errorf("no corresponding body with chunk root found: %s", chunkRoot)
|
|
}
|
|
return *body, nil
|
|
}
|
|
|
|
// CheckAvailability is used by notaries to confirm a header's data availability.
|
|
func (s *Shard) CheckAvailability(header *CollationHeader) (bool, error) {
|
|
key := dataAvailabilityLookupKey(header.ChunkRoot())
|
|
val, err := s.shardDB.Get(key)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if val == nil {
|
|
return false, fmt.Errorf("availability not set for header")
|
|
}
|
|
availability := *val
|
|
// availability is a byte array of length 1.
|
|
return availability[0] != 0, nil
|
|
}
|
|
|
|
// SetAvailability saves the availability of the chunk root in the shardDB.
|
|
func (s *Shard) SetAvailability(chunkRoot *common.Hash, availability bool) error {
|
|
key := dataAvailabilityLookupKey(chunkRoot)
|
|
var encoded []byte
|
|
if availability {
|
|
encoded = []byte{1}
|
|
} else {
|
|
encoded = []byte{0}
|
|
}
|
|
return s.shardDB.Put(key, encoded)
|
|
}
|
|
|
|
// SaveHeader adds the collation header to shardDB.
|
|
func (s *Shard) SaveHeader(header *CollationHeader) error {
|
|
// checks if the header has a chunk root set before saving.
|
|
if header.ChunkRoot() == nil {
|
|
return fmt.Errorf("header needs to have a chunk root set before saving")
|
|
}
|
|
|
|
encoded, err := header.EncodeRLP()
|
|
if err != nil {
|
|
return fmt.Errorf("cannot encode header: %v", err)
|
|
}
|
|
|
|
// uses the hash of the header as the key.
|
|
return s.shardDB.Put(header.Hash(), encoded)
|
|
}
|
|
|
|
// SaveBody adds the collation body to the shardDB and sets availability.
|
|
func (s *Shard) SaveBody(body []byte) error {
|
|
// TODO: check if body is empty and throw error.
|
|
// TODO: dependent on blob serialization.
|
|
// chunkRoot := getChunkRoot(body) using the blob algorithm utils.
|
|
// right now we will just take the raw keccak256 of the body until #92 is merged.
|
|
chunkRoot := common.BytesToHash(body)
|
|
s.SetAvailability(&chunkRoot, true)
|
|
return s.shardDB.Put(chunkRoot, body)
|
|
}
|
|
|
|
// SaveCollation adds the collation's header and body to shardDB.
|
|
func (s *Shard) SaveCollation(collation *Collation) error {
|
|
if err := s.ValidateShardID(collation.Header()); err != nil {
|
|
return err
|
|
}
|
|
if err := s.SaveHeader(collation.Header()); err != nil {
|
|
return err
|
|
}
|
|
return s.SaveBody(collation.Body())
|
|
}
|
|
|
|
// SetCanonical sets the collation header as canonical in the shardDB. This is called
|
|
// after the period is over and over 2/3 notaries voted on the header.
|
|
func (s *Shard) SetCanonical(header *CollationHeader) error {
|
|
if err := s.ValidateShardID(header); err != nil {
|
|
return err
|
|
}
|
|
// the header needs to have been stored in the DB previously, so we
|
|
// fetch it from the shardDB.
|
|
hash := header.Hash()
|
|
dbHeader, err := s.HeaderByHash(&hash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// checks if the header has a corresponding body in the DB.
|
|
body, err := s.BodyByChunkRoot(dbHeader.ChunkRoot())
|
|
if err != nil {
|
|
return fmt.Errorf("no corresponding collation body saved in shardDB: %v", body)
|
|
}
|
|
|
|
key := canonicalCollationLookupKey(dbHeader.ShardID(), dbHeader.Period())
|
|
encoded, err := dbHeader.EncodeRLP()
|
|
if err != nil {
|
|
return fmt.Errorf("cannot encode header: %v", err)
|
|
}
|
|
// sets the key to be the canonical collation lookup key and val as RLP encoded
|
|
// collation header.
|
|
return s.shardDB.Put(key, encoded)
|
|
}
|
|
|
|
// dataAvailabilityLookupKey formats a string that will become a lookup
|
|
// key in the shardDB.
|
|
func dataAvailabilityLookupKey(chunkRoot *common.Hash) common.Hash {
|
|
key := fmt.Sprintf("availability-lookup:%s", chunkRoot.Hex())
|
|
return common.BytesToHash([]byte(key))
|
|
}
|
|
|
|
// canonicalCollationLookupKey formats a string that will become a lookup key
|
|
// in the shardDB that takes into account the shardID and the period
|
|
// of the shard for ease of use.
|
|
func canonicalCollationLookupKey(shardID *big.Int, period *big.Int) common.Hash {
|
|
str := "canonical-collation-lookup:shardID=%s,period=%s"
|
|
key := fmt.Sprintf(str, shardID, period)
|
|
return common.BytesToHash([]byte(key))
|
|
}
|