mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
0b35743d2c
* Merge branch 'master' of github.com:prysmaticlabs/prysm into update_validators # Conflicts: # slasher/flags/flags.go # slasher/main.go # slasher/service/data_update.go # slasher/service/service.go # slasher/service/service_test.go * proposal and attester store * day to status * comment change * one bucket * Merge branch 'master' of github.com:prysmaticlabs/prysm into attester_proposer_slashing_store # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. added comments * comment * typo fix * raul review fix * raul review fix full * nishant feedback * test fix * fix tests and remove update gofmt goimports * remove blank line in imports * nishant fixes * comment and fir delete proposer slashings * avoid marshal twice * remove space * Update slasher/db/attester_slashings.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * terence feedback Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
115 lines
3.4 KiB
Go
115 lines
3.4 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"
|
|
)
|
|
|
|
func createAttesterSlashing(enc []byte) (*ethpb.AttesterSlashing, error) {
|
|
protoSlashing := ðpb.AttesterSlashing{}
|
|
err := proto.Unmarshal(enc, protoSlashing)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to unmarshal encoding")
|
|
}
|
|
return protoSlashing, nil
|
|
}
|
|
|
|
func toAttesterSlashings(encoded [][]byte) ([]*ethpb.AttesterSlashing, error) {
|
|
attesterSlashings := make([]*ethpb.AttesterSlashing, len(encoded))
|
|
for i, enc := range encoded {
|
|
ps, err := createAttesterSlashing(enc)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
attesterSlashings[i] = ps
|
|
}
|
|
return attesterSlashings, nil
|
|
}
|
|
|
|
// AttesterSlashings accepts a status and returns all slashings with this status.
|
|
// returns empty []*ethpb.AttesterSlashing if no slashing has been found with this status.
|
|
func (db *Store) AttesterSlashings(status SlashingStatus) ([]*ethpb.AttesterSlashing, error) {
|
|
encoded := make([][]byte, 0)
|
|
err := db.view(func(tx *bolt.Tx) error {
|
|
c := tx.Bucket(slashingBucket).Cursor()
|
|
prefix := encodeType(SlashingType(Attestation))
|
|
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 toAttesterSlashings(encoded)
|
|
}
|
|
|
|
// DeleteAttesterSlashing deletes an attester slashing proof from db.
|
|
func (db *Store) DeleteAttesterSlashing(attesterSlashing *ethpb.AttesterSlashing) error {
|
|
root, err := hashutil.HashProto(attesterSlashing)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get hash root of attesterSlashing")
|
|
}
|
|
return db.update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(slashingBucket)
|
|
k := encodeTypeRoot(SlashingType(Attestation), root)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get key for for attester slashing.")
|
|
}
|
|
if err := bucket.Delete(k); err != nil {
|
|
return errors.Wrap(err, "failed to delete the slashing proof from slashing bucket")
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// HasAttesterSlashing returns true and slashing status if slashing is found in db.
|
|
func (db *Store) HasAttesterSlashing(slashing *ethpb.AttesterSlashing) (bool, SlashingStatus, error) {
|
|
root, err := hashutil.HashProto(slashing)
|
|
var status SlashingStatus
|
|
var found bool
|
|
key := encodeTypeRoot(SlashingType(Attestation), root)
|
|
if err != nil {
|
|
return found, status, errors.Wrap(err, "failed to get hash root of attesterSlashing")
|
|
}
|
|
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
|
|
}
|
|
|
|
// SaveAttesterSlashing accepts a slashing proof and its status and writes it to disk.
|
|
func (db *Store) SaveAttesterSlashing(status SlashingStatus, slashing *ethpb.AttesterSlashing) error {
|
|
enc, err := proto.Marshal(slashing)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to marshal")
|
|
}
|
|
root := hashutil.Hash(enc)
|
|
key := encodeTypeRoot(SlashingType(Attestation), root)
|
|
err = db.update(func(tx *bolt.Tx) error {
|
|
b := tx.Bucket(slashingBucket)
|
|
e := b.Put(key, append([]byte{byte(status)}, enc...))
|
|
if e != nil {
|
|
return nil
|
|
}
|
|
return err
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return err
|
|
}
|