mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 20:20:05 +00:00
923d5fc903
* First wave of changes * More changes * More renames, changes * Fix errors * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into cleanup-slasher * Fix errors, more cleaning * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into cleanup-slasher * Merge branch 'master' into cleanup-slasher * fix err * Merge branch 'cleanup-slasher' of https://github.com/0xKiwi/Prysm into cleanup-slasher * Fix strings * More cleanup * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into cleanup-slasher * Fix interface * Fix * Merge branch 'master' into cleanup-slasher * Merge branch 'master' into cleanup-slasher * Merge branch 'master' into cleanup-slasher * Address comments * Merge branch 'master' of https://github.com/prysmaticlabs/Prysm into cleanup-slasher * Merge branch 'cleanup-slasher' of https://github.com/0xKiwi/Prysm into cleanup-slasher
184 lines
5.1 KiB
Go
184 lines
5.1 KiB
Go
package db
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/boltdb/bolt"
|
|
"github.com/gogo/protobuf/proto"
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/hashutil"
|
|
)
|
|
|
|
// SlashingStatus enum like structure.
|
|
type SlashingStatus uint8
|
|
|
|
const (
|
|
// Unknown default status in case it is not set
|
|
Unknown = iota
|
|
// Active slashing proof hasn't been included yet.
|
|
Active
|
|
// Included slashing proof that has been included in a block.
|
|
Included
|
|
// Reverted slashing proof that has been reverted and therefore is relevant again.
|
|
Reverted //relevant again
|
|
)
|
|
|
|
func (status SlashingStatus) String() string {
|
|
names := [...]string{
|
|
"Unknown",
|
|
"Active",
|
|
"Included",
|
|
"Reverted"}
|
|
|
|
if status < Active || status > Reverted {
|
|
return "Unknown"
|
|
}
|
|
// return the name of a SlashingStatus
|
|
// constant from the names array
|
|
// above.
|
|
return names[status]
|
|
}
|
|
|
|
// SlashingType enum like type of slashing proof.
|
|
type SlashingType uint8
|
|
|
|
const (
|
|
// Proposal enum value.
|
|
Proposal = iota
|
|
// Attestation enum value.
|
|
Attestation
|
|
)
|
|
|
|
// String returns the string representation of the status SlashingType .
|
|
func (status SlashingType) String() string {
|
|
names := [...]string{
|
|
"Proposal",
|
|
"Attestation",
|
|
}
|
|
|
|
if status < Active || status > Reverted {
|
|
return "Unknown"
|
|
}
|
|
return names[status]
|
|
}
|
|
|
|
func unmarshalProposerSlashing(enc []byte) (*ethpb.ProposerSlashing, error) {
|
|
protoSlashing := ðpb.ProposerSlashing{}
|
|
if err := proto.Unmarshal(enc, protoSlashing); err != nil {
|
|
return nil, errors.Wrap(err, "failed to unmarshal encoded proposer slashing")
|
|
}
|
|
return protoSlashing, nil
|
|
}
|
|
|
|
func unmarshalProposerSlashingArray(encoded [][]byte) ([]*ethpb.ProposerSlashing, error) {
|
|
proposerSlashings := make([]*ethpb.ProposerSlashing, len(encoded))
|
|
for i, enc := range encoded {
|
|
ps, err := unmarshalProposerSlashing(enc)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
proposerSlashings[i] = ps
|
|
}
|
|
return proposerSlashings, nil
|
|
}
|
|
|
|
// ProposalSlashingsByStatus returns all the proposal slashing proofs with a certain status.
|
|
func (db *Store) ProposalSlashingsByStatus(status SlashingStatus) ([]*ethpb.ProposerSlashing, error) {
|
|
encoded := make([][]byte, 0)
|
|
err := db.view(func(tx *bolt.Tx) error {
|
|
c := tx.Bucket(slashingBucket).Cursor()
|
|
prefix := encodeType(SlashingType(Proposal))
|
|
for k, v := c.Seek(prefix); k != nil && bytes.HasPrefix(k, prefix); k, v = c.Next() {
|
|
if v[0] == byte(status) {
|
|
encoded = append(encoded, v[1:])
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return unmarshalProposerSlashingArray(encoded)
|
|
}
|
|
|
|
// DeleteProposerSlashing deletes a proposer slashing proof.
|
|
func (db *Store) DeleteProposerSlashing(slashing *ethpb.ProposerSlashing) error {
|
|
root, err := hashutil.HashProto(slashing)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get hash root of proposerSlashing")
|
|
}
|
|
err = db.update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(slashingBucket)
|
|
k := encodeTypeRoot(SlashingType(Proposal), root)
|
|
if err := bucket.Delete(k); err != nil {
|
|
return errors.Wrap(err, "failed to delete the slashing proof from slashing bucket")
|
|
}
|
|
return nil
|
|
})
|
|
return err
|
|
}
|
|
|
|
// HasProposerSlashing returns the slashing key if it is found in db.
|
|
func (db *Store) HasProposerSlashing(slashing *ethpb.ProposerSlashing) (bool, SlashingStatus, error) {
|
|
var status SlashingStatus
|
|
var found bool
|
|
root, err := hashutil.HashProto(slashing)
|
|
if err != nil {
|
|
return found, status, errors.Wrap(err, "failed to get hash root of proposerSlashing")
|
|
}
|
|
key := encodeTypeRoot(SlashingType(Proposal), root)
|
|
|
|
err = db.view(func(tx *bolt.Tx) error {
|
|
b := tx.Bucket(slashingBucket)
|
|
enc := b.Get(key)
|
|
if enc != nil {
|
|
found = true
|
|
status = SlashingStatus(enc[0])
|
|
}
|
|
return nil
|
|
})
|
|
return found, status, err
|
|
}
|
|
|
|
// SaveProposerSlashing accepts a proposer slashing and its status header and writes it to disk.
|
|
func (db *Store) SaveProposerSlashing(status SlashingStatus, slashing *ethpb.ProposerSlashing) error {
|
|
enc, err := proto.Marshal(slashing)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to marshal")
|
|
}
|
|
root := hashutil.Hash(enc)
|
|
key := encodeTypeRoot(SlashingType(Proposal), root)
|
|
return db.update(func(tx *bolt.Tx) error {
|
|
b := tx.Bucket(slashingBucket)
|
|
e := b.Put(key, append([]byte{byte(status)}, enc...))
|
|
return e
|
|
})
|
|
}
|
|
|
|
// SaveProposerSlashings accepts a slice of slashing proof and its status and writes it to disk.
|
|
func (db *Store) SaveProposerSlashings(status SlashingStatus, slashings []*ethpb.ProposerSlashing) error {
|
|
encSlashings := make([][]byte, len(slashings))
|
|
keys := make([][]byte, len(slashings))
|
|
var err error
|
|
for i, slashing := range slashings {
|
|
encSlashings[i], err = proto.Marshal(slashing)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to marshal")
|
|
}
|
|
root := hashutil.Hash(encSlashings[i])
|
|
keys[i] = encodeTypeRoot(SlashingType(Proposal), root)
|
|
}
|
|
|
|
return db.update(func(tx *bolt.Tx) error {
|
|
b := tx.Bucket(slashingBucket)
|
|
for i := 0; i < len(keys); i++ {
|
|
err := b.Put(keys[i], append([]byte{byte(status)}, encSlashings[i]...))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|