2021-09-18 17:57:04 +00:00
|
|
|
package rand
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/binary"
|
|
|
|
|
2021-12-17 05:58:20 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/network"
|
|
|
|
|
2021-09-18 17:57:04 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/beacon"
|
|
|
|
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/minio/blake2b-simd"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/crypto"
|
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.Logger("rand")
|
|
|
|
|
|
|
|
func DrawRandomness(rbase []byte, pers crypto.DomainSeparationTag, round abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
|
|
|
h := blake2b.New256()
|
|
|
|
if err := binary.Write(h, binary.BigEndian, int64(pers)); err != nil {
|
|
|
|
return nil, xerrors.Errorf("deriving randomness: %w", err)
|
|
|
|
}
|
|
|
|
VRFDigest := blake2b.Sum256(rbase)
|
|
|
|
_, err := h.Write(VRFDigest[:])
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("hashing VRFDigest: %w", err)
|
|
|
|
}
|
|
|
|
if err := binary.Write(h, binary.BigEndian, round); err != nil {
|
|
|
|
return nil, xerrors.Errorf("deriving randomness: %w", err)
|
|
|
|
}
|
|
|
|
_, err = h.Write(entropy)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("hashing entropy: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return h.Sum(nil), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sr *stateRand) GetBeaconRandomnessTipset(ctx context.Context, round abi.ChainEpoch, lookback bool) (*types.TipSet, error) {
|
|
|
|
_, span := trace.StartSpan(ctx, "store.GetBeaconRandomness")
|
|
|
|
defer span.End()
|
|
|
|
span.AddAttributes(trace.Int64Attribute("round", int64(round)))
|
|
|
|
|
2021-12-11 21:03:00 +00:00
|
|
|
ts, err := sr.cs.LoadTipSet(ctx, types.NewTipSetKey(sr.blks...))
|
2021-09-18 17:57:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if round > ts.Height() {
|
|
|
|
return nil, xerrors.Errorf("cannot draw randomness from the future")
|
|
|
|
}
|
|
|
|
|
|
|
|
searchHeight := round
|
|
|
|
if searchHeight < 0 {
|
|
|
|
searchHeight = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
randTs, err := sr.cs.GetTipsetByHeight(ctx, searchHeight, ts, lookback)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return randTs, nil
|
|
|
|
}
|
|
|
|
|
2021-12-17 05:58:20 +00:00
|
|
|
func (sr *stateRand) getChainRandomness(ctx context.Context, pers crypto.DomainSeparationTag, round abi.ChainEpoch, entropy []byte, lookback bool) ([]byte, error) {
|
2021-09-18 17:57:04 +00:00
|
|
|
_, span := trace.StartSpan(ctx, "store.GetChainRandomness")
|
|
|
|
defer span.End()
|
|
|
|
span.AddAttributes(trace.Int64Attribute("round", int64(round)))
|
|
|
|
|
2021-12-11 21:03:00 +00:00
|
|
|
ts, err := sr.cs.LoadTipSet(ctx, types.NewTipSetKey(sr.blks...))
|
2021-09-18 17:57:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if round > ts.Height() {
|
|
|
|
return nil, xerrors.Errorf("cannot draw randomness from the future")
|
|
|
|
}
|
|
|
|
|
|
|
|
searchHeight := round
|
|
|
|
if searchHeight < 0 {
|
|
|
|
searchHeight = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
randTs, err := sr.cs.GetTipsetByHeight(ctx, searchHeight, ts, lookback)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mtb := randTs.MinTicketBlock()
|
|
|
|
|
|
|
|
// if at (or just past -- for null epochs) appropriate epoch
|
|
|
|
// or at genesis (works for negative epochs)
|
|
|
|
return DrawRandomness(mtb.Ticket.VRFProof, pers, round, entropy)
|
|
|
|
}
|
|
|
|
|
2021-12-17 23:54:17 +00:00
|
|
|
type NetworkVersionGetter func(context.Context, abi.ChainEpoch) network.Version
|
|
|
|
|
2021-09-18 17:57:04 +00:00
|
|
|
type stateRand struct {
|
2021-12-17 23:54:17 +00:00
|
|
|
cs *store.ChainStore
|
|
|
|
blks []cid.Cid
|
|
|
|
beacon beacon.Schedule
|
|
|
|
networkVersionGetter NetworkVersionGetter
|
2021-09-18 17:57:04 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 23:54:17 +00:00
|
|
|
func NewStateRand(cs *store.ChainStore, blks []cid.Cid, b beacon.Schedule, networkVersionGetter NetworkVersionGetter) vm.Rand {
|
2021-09-18 17:57:04 +00:00
|
|
|
return &stateRand{
|
2021-12-17 23:54:17 +00:00
|
|
|
cs: cs,
|
|
|
|
blks: blks,
|
|
|
|
beacon: b,
|
|
|
|
networkVersionGetter: networkVersionGetter,
|
2021-09-18 17:57:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// network v0-12
|
2021-12-17 05:58:20 +00:00
|
|
|
func (sr *stateRand) getBeaconRandomnessV1(ctx context.Context, pers crypto.DomainSeparationTag, round abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
2021-09-18 17:57:04 +00:00
|
|
|
randTs, err := sr.GetBeaconRandomnessTipset(ctx, round, true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-12-11 21:03:00 +00:00
|
|
|
be, err := sr.cs.GetLatestBeaconEntry(ctx, randTs)
|
2021-09-18 17:57:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// if at (or just past -- for null epochs) appropriate epoch
|
|
|
|
// or at genesis (works for negative epochs)
|
|
|
|
return DrawRandomness(be.Data, pers, round, entropy)
|
|
|
|
}
|
|
|
|
|
|
|
|
// network v13
|
2021-12-17 05:58:20 +00:00
|
|
|
func (sr *stateRand) getBeaconRandomnessV2(ctx context.Context, pers crypto.DomainSeparationTag, round abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
2021-09-18 17:57:04 +00:00
|
|
|
randTs, err := sr.GetBeaconRandomnessTipset(ctx, round, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-12-11 21:03:00 +00:00
|
|
|
be, err := sr.cs.GetLatestBeaconEntry(ctx, randTs)
|
2021-09-18 17:57:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// if at (or just past -- for null epochs) appropriate epoch
|
|
|
|
// or at genesis (works for negative epochs)
|
|
|
|
return DrawRandomness(be.Data, pers, round, entropy)
|
|
|
|
}
|
|
|
|
|
|
|
|
// network v14 and on
|
2021-12-17 05:58:20 +00:00
|
|
|
func (sr *stateRand) getBeaconRandomnessV3(ctx context.Context, pers crypto.DomainSeparationTag, filecoinEpoch abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
2021-09-18 17:57:04 +00:00
|
|
|
if filecoinEpoch < 0 {
|
2021-12-17 05:58:20 +00:00
|
|
|
return sr.getBeaconRandomnessV2(ctx, pers, filecoinEpoch, entropy)
|
2021-09-18 17:57:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
be, err := sr.extractBeaconEntryForEpoch(ctx, filecoinEpoch)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("failed to get beacon entry as expected: %w", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return DrawRandomness(be.Data, pers, filecoinEpoch, entropy)
|
|
|
|
}
|
|
|
|
|
2021-12-17 23:54:17 +00:00
|
|
|
func (sr *stateRand) GetChainRandomness(ctx context.Context, pers crypto.DomainSeparationTag, filecoinEpoch abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
|
|
|
nv := sr.networkVersionGetter(ctx, filecoinEpoch)
|
|
|
|
|
2021-12-17 05:58:20 +00:00
|
|
|
if nv >= network.Version13 {
|
|
|
|
return sr.getChainRandomness(ctx, pers, filecoinEpoch, entropy, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sr.getChainRandomness(ctx, pers, filecoinEpoch, entropy, true)
|
|
|
|
}
|
|
|
|
|
2021-12-17 23:54:17 +00:00
|
|
|
func (sr *stateRand) GetBeaconRandomness(ctx context.Context, pers crypto.DomainSeparationTag, filecoinEpoch abi.ChainEpoch, entropy []byte) ([]byte, error) {
|
|
|
|
nv := sr.networkVersionGetter(ctx, filecoinEpoch)
|
|
|
|
|
2021-12-17 05:58:20 +00:00
|
|
|
if nv >= network.Version14 {
|
|
|
|
return sr.getBeaconRandomnessV3(ctx, pers, filecoinEpoch, entropy)
|
|
|
|
} else if nv == network.Version13 {
|
|
|
|
return sr.getBeaconRandomnessV2(ctx, pers, filecoinEpoch, entropy)
|
|
|
|
} else {
|
|
|
|
return sr.getBeaconRandomnessV1(ctx, pers, filecoinEpoch, entropy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-18 17:57:04 +00:00
|
|
|
func (sr *stateRand) extractBeaconEntryForEpoch(ctx context.Context, filecoinEpoch abi.ChainEpoch) (*types.BeaconEntry, error) {
|
|
|
|
randTs, err := sr.GetBeaconRandomnessTipset(ctx, filecoinEpoch, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
round := sr.beacon.BeaconForEpoch(filecoinEpoch).MaxBeaconRoundForEpoch(filecoinEpoch)
|
|
|
|
|
|
|
|
for i := 0; i < 20; i++ {
|
|
|
|
cbe := randTs.Blocks()[0].BeaconEntries
|
|
|
|
for _, v := range cbe {
|
|
|
|
if v.Round == round {
|
|
|
|
return &v, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-11 21:03:00 +00:00
|
|
|
next, err := sr.cs.LoadTipSet(ctx, randTs.Parents())
|
2021-09-18 17:57:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to load parents when searching back for beacon entry: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
randTs = next
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, xerrors.Errorf("didn't find beacon for round %d (epoch %d)", round, filecoinEpoch)
|
|
|
|
}
|