2020-04-09 02:55:17 +00:00
|
|
|
package drand
|
|
|
|
|
|
|
|
import (
|
2020-05-22 14:07:38 +00:00
|
|
|
"bytes"
|
2020-04-09 02:55:17 +00:00
|
|
|
"context"
|
2020-04-09 12:39:51 +00:00
|
|
|
"sync"
|
2020-04-14 03:05:19 +00:00
|
|
|
"time"
|
2020-04-09 02:55:17 +00:00
|
|
|
|
2020-05-29 13:46:05 +00:00
|
|
|
dchain "github.com/drand/drand/chain"
|
|
|
|
dclient "github.com/drand/drand/client"
|
2020-06-10 18:17:03 +00:00
|
|
|
hclient "github.com/drand/drand/client/http"
|
2020-05-29 13:46:05 +00:00
|
|
|
dlog "github.com/drand/drand/log"
|
2020-06-10 18:17:03 +00:00
|
|
|
gclient "github.com/drand/drand/lp2p/client"
|
2020-05-22 14:07:38 +00:00
|
|
|
"github.com/drand/kyber"
|
2020-05-29 13:46:05 +00:00
|
|
|
kzap "github.com/go-kit/kit/log/zap"
|
|
|
|
"go.uber.org/zap/zapcore"
|
2020-04-14 03:05:19 +00:00
|
|
|
"golang.org/x/xerrors"
|
2020-04-09 02:55:17 +00:00
|
|
|
|
2020-04-14 03:05:19 +00:00
|
|
|
logging "github.com/ipfs/go-log"
|
2020-05-29 13:46:05 +00:00
|
|
|
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
2020-04-14 03:05:19 +00:00
|
|
|
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-06-23 19:56:03 +00:00
|
|
|
|
2020-07-10 14:43:14 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-05-29 13:46:05 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/beacon"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-06-23 20:23:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
2020-04-09 02:55:17 +00:00
|
|
|
)
|
|
|
|
|
2020-04-14 03:05:19 +00:00
|
|
|
var log = logging.Logger("drand")
|
|
|
|
|
|
|
|
type drandPeer struct {
|
|
|
|
addr string
|
|
|
|
tls bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dp *drandPeer) Address() string {
|
|
|
|
return dp.addr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dp *drandPeer) IsTLS() bool {
|
|
|
|
return dp.tls
|
|
|
|
}
|
|
|
|
|
2020-06-23 21:51:25 +00:00
|
|
|
// DrandBeacon connects Lotus with a drand network in order to provide
|
|
|
|
// randomness to the system in a way that's aligned with Filecoin rounds/epochs.
|
|
|
|
//
|
|
|
|
// We connect to drand peers via their public HTTP endpoints. The peers are
|
|
|
|
// enumerated in the drandServers variable.
|
|
|
|
//
|
|
|
|
// The root trust for the Drand chain is configured from build.DrandChain.
|
2020-04-09 02:55:17 +00:00
|
|
|
type DrandBeacon struct {
|
2020-05-22 14:07:38 +00:00
|
|
|
client dclient.Client
|
2020-04-14 03:05:19 +00:00
|
|
|
|
2020-05-22 14:07:38 +00:00
|
|
|
pubkey kyber.Point
|
2020-04-14 03:05:19 +00:00
|
|
|
|
|
|
|
// seconds
|
|
|
|
interval time.Duration
|
|
|
|
|
|
|
|
drandGenTime uint64
|
|
|
|
filGenTime uint64
|
|
|
|
filRoundTime uint64
|
2020-04-09 02:55:17 +00:00
|
|
|
|
2020-04-09 12:39:51 +00:00
|
|
|
cacheLk sync.Mutex
|
2020-04-14 03:05:19 +00:00
|
|
|
localCache map[uint64]types.BeaconEntry
|
2020-04-09 02:55:17 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 23:49:59 +00:00
|
|
|
// DrandHTTPClient interface overrides the user agent used by drand
|
|
|
|
type DrandHTTPClient interface {
|
|
|
|
SetUserAgent(string)
|
|
|
|
}
|
|
|
|
|
2020-06-23 20:23:06 +00:00
|
|
|
func NewDrandBeacon(genesisTs, interval uint64, ps *pubsub.PubSub, config dtypes.DrandConfig) (*DrandBeacon, error) {
|
2020-04-14 03:05:19 +00:00
|
|
|
if genesisTs == 0 {
|
|
|
|
panic("what are you doing this cant be zero")
|
|
|
|
}
|
2020-05-29 15:21:10 +00:00
|
|
|
|
2020-06-23 19:56:03 +00:00
|
|
|
drandChain, err := dchain.InfoFromJSON(bytes.NewReader([]byte(config.ChainInfoJSON)))
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("unable to unmarshal drand chain info: %w", err)
|
2020-06-23 17:23:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 15:21:10 +00:00
|
|
|
dlogger := dlog.NewKitLoggerFrom(kzap.NewZapSugarLogger(
|
|
|
|
log.SugaredLogger.Desugar(), zapcore.InfoLevel))
|
2020-06-10 18:17:03 +00:00
|
|
|
|
|
|
|
var clients []dclient.Client
|
2020-06-23 17:23:04 +00:00
|
|
|
for _, url := range config.Servers {
|
2020-06-10 18:17:03 +00:00
|
|
|
hc, err := hclient.NewWithInfo(url, drandChain, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("could not create http drand client: %w", err)
|
|
|
|
}
|
2020-10-21 23:49:59 +00:00
|
|
|
hc.(DrandHTTPClient).SetUserAgent("drand-client-lotus/" + build.BuildVersion)
|
2020-06-10 18:17:03 +00:00
|
|
|
clients = append(clients, hc)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-29 13:46:05 +00:00
|
|
|
opts := []dclient.Option{
|
2020-05-22 14:07:38 +00:00
|
|
|
dclient.WithChainInfo(drandChain),
|
|
|
|
dclient.WithCacheSize(1024),
|
2020-05-29 15:21:10 +00:00
|
|
|
dclient.WithLogger(dlogger),
|
2020-05-29 13:46:05 +00:00
|
|
|
}
|
2020-05-29 15:21:10 +00:00
|
|
|
|
2020-05-29 13:46:05 +00:00
|
|
|
if ps != nil {
|
|
|
|
opts = append(opts, gclient.WithPubsub(ps))
|
|
|
|
} else {
|
|
|
|
log.Info("drand beacon without pubsub")
|
|
|
|
}
|
|
|
|
|
2020-06-10 18:17:03 +00:00
|
|
|
client, err := dclient.Wrap(clients, opts...)
|
2020-04-14 03:05:19 +00:00
|
|
|
if err != nil {
|
2020-05-22 14:07:38 +00:00
|
|
|
return nil, xerrors.Errorf("creating drand client")
|
2020-04-14 03:05:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-22 14:07:38 +00:00
|
|
|
db := &DrandBeacon{
|
|
|
|
client: client,
|
|
|
|
localCache: make(map[uint64]types.BeaconEntry),
|
2020-04-09 12:39:51 +00:00
|
|
|
}
|
2020-04-14 03:05:19 +00:00
|
|
|
|
2020-05-22 14:07:38 +00:00
|
|
|
db.pubkey = drandChain.PublicKey
|
|
|
|
db.interval = drandChain.Period
|
|
|
|
db.drandGenTime = uint64(drandChain.GenesisTime)
|
2020-04-14 03:05:19 +00:00
|
|
|
db.filRoundTime = interval
|
|
|
|
db.filGenTime = genesisTs
|
|
|
|
|
|
|
|
return db, nil
|
2020-04-09 02:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (db *DrandBeacon) Entry(ctx context.Context, round uint64) <-chan beacon.Response {
|
2020-04-09 17:13:09 +00:00
|
|
|
out := make(chan beacon.Response, 1)
|
2020-05-22 14:07:38 +00:00
|
|
|
if round != 0 {
|
|
|
|
be := db.getCachedValue(round)
|
|
|
|
if be != nil {
|
|
|
|
out <- beacon.Response{Entry: *be}
|
|
|
|
close(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
}
|
2020-04-14 17:55:53 +00:00
|
|
|
|
|
|
|
go func() {
|
2020-07-10 14:43:14 +00:00
|
|
|
start := build.Clock.Now()
|
2020-05-27 18:24:26 +00:00
|
|
|
log.Infow("start fetching randomness", "round", round)
|
2020-05-22 14:07:38 +00:00
|
|
|
resp, err := db.client.Get(ctx, round)
|
2020-04-14 17:55:53 +00:00
|
|
|
|
|
|
|
var br beacon.Response
|
|
|
|
if err != nil {
|
2020-05-22 14:07:38 +00:00
|
|
|
br.Err = xerrors.Errorf("drand failed Get request: %w", err)
|
2020-04-14 17:55:53 +00:00
|
|
|
} else {
|
2020-05-22 14:07:38 +00:00
|
|
|
br.Entry.Round = resp.Round()
|
|
|
|
br.Entry.Data = resp.Signature()
|
2020-04-14 17:55:53 +00:00
|
|
|
}
|
2020-07-10 14:43:14 +00:00
|
|
|
log.Infow("done fetching randomness", "round", round, "took", build.Clock.Since(start))
|
2020-04-14 17:55:53 +00:00
|
|
|
out <- br
|
|
|
|
close(out)
|
|
|
|
}()
|
2020-04-09 17:13:09 +00:00
|
|
|
|
|
|
|
return out
|
2020-04-09 02:55:17 +00:00
|
|
|
}
|
2020-04-14 17:55:53 +00:00
|
|
|
func (db *DrandBeacon) cacheValue(e types.BeaconEntry) {
|
2020-04-14 03:05:19 +00:00
|
|
|
db.cacheLk.Lock()
|
|
|
|
defer db.cacheLk.Unlock()
|
2020-04-14 17:55:53 +00:00
|
|
|
db.localCache[e.Round] = e
|
2020-04-14 03:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (db *DrandBeacon) getCachedValue(round uint64) *types.BeaconEntry {
|
|
|
|
db.cacheLk.Lock()
|
|
|
|
defer db.cacheLk.Unlock()
|
|
|
|
v, ok := db.localCache[round]
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &v
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:52:18 +00:00
|
|
|
func (db *DrandBeacon) VerifyEntry(curr types.BeaconEntry, prev types.BeaconEntry) error {
|
|
|
|
if prev.Round == 0 {
|
|
|
|
// TODO handle genesis better
|
|
|
|
return nil
|
|
|
|
}
|
2020-08-11 11:58:27 +00:00
|
|
|
if be := db.getCachedValue(curr.Round); be != nil {
|
2020-08-11 12:00:23 +00:00
|
|
|
// return no error if the value is in the cache already
|
|
|
|
return nil
|
2020-08-11 11:58:27 +00:00
|
|
|
}
|
2020-05-22 14:07:38 +00:00
|
|
|
b := &dchain.Beacon{
|
2020-04-30 02:53:24 +00:00
|
|
|
PreviousSig: prev.Data,
|
|
|
|
Round: curr.Round,
|
|
|
|
Signature: curr.Data,
|
2020-04-14 14:52:18 +00:00
|
|
|
}
|
2020-05-22 14:07:38 +00:00
|
|
|
err := dchain.VerifyBeacon(db.pubkey, b)
|
2020-04-14 17:55:53 +00:00
|
|
|
if err == nil {
|
|
|
|
db.cacheValue(curr)
|
|
|
|
}
|
|
|
|
return err
|
2020-04-09 02:55:17 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 18:37:12 +00:00
|
|
|
func (db *DrandBeacon) MaxBeaconRoundForEpoch(filEpoch abi.ChainEpoch) uint64 {
|
2020-04-14 03:05:19 +00:00
|
|
|
// TODO: sometimes the genesis time for filecoin is zero and this goes negative
|
|
|
|
latestTs := ((uint64(filEpoch) * db.filRoundTime) + db.filGenTime) - db.filRoundTime
|
|
|
|
dround := (latestTs - db.drandGenTime) / uint64(db.interval.Seconds())
|
|
|
|
return dround
|
2020-04-09 02:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ beacon.RandomBeacon = (*DrandBeacon)(nil)
|