2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-14 19:23:54 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package discovery
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-12-17 16:31:14 +00:00
|
|
|
"crypto/rand"
|
2019-01-18 13:54:08 +00:00
|
|
|
"time"
|
2018-12-14 19:23:54 +00:00
|
|
|
|
2018-12-17 16:31:14 +00:00
|
|
|
"github.com/zeebo/errs"
|
2018-12-22 00:48:53 +00:00
|
|
|
"go.uber.org/zap"
|
2018-12-20 21:45:06 +00:00
|
|
|
|
2018-12-14 19:23:54 +00:00
|
|
|
"storj.io/storj/pkg/kademlia"
|
|
|
|
"storj.io/storj/pkg/overlay"
|
|
|
|
"storj.io/storj/pkg/statdb"
|
2018-12-17 16:31:14 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-01-23 19:58:44 +00:00
|
|
|
// mon = monkit.Package() //TODO: check whether this needs monitoring
|
|
|
|
|
|
|
|
// Error is a general error class of this package
|
|
|
|
Error = errs.Class("discovery error")
|
2018-12-14 19:23:54 +00:00
|
|
|
)
|
|
|
|
|
2019-01-30 16:29:18 +00:00
|
|
|
// Config loads on the configuration values for the cache
|
2019-01-23 19:58:44 +00:00
|
|
|
type Config struct {
|
|
|
|
RefreshInterval time.Duration `help:"the interval at which the cache refreshes itself in seconds" default:"1s"`
|
2019-01-30 16:29:18 +00:00
|
|
|
RefreshLimit int `help:"the amount of nodes refreshed at each interval" default:"100"`
|
|
|
|
}
|
|
|
|
|
2018-12-14 19:23:54 +00:00
|
|
|
// Discovery struct loads on cache, kad, and statdb
|
|
|
|
type Discovery struct {
|
2019-01-30 20:29:33 +00:00
|
|
|
log *zap.Logger
|
|
|
|
cache *overlay.Cache
|
|
|
|
kad *kademlia.Kademlia
|
|
|
|
statdb statdb.DB
|
|
|
|
config Config
|
|
|
|
|
|
|
|
// refreshOffset tracks the offset of the current refresh cycle
|
|
|
|
refreshOffset int64
|
2019-01-18 13:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new discovery service.
|
2019-01-30 16:29:18 +00:00
|
|
|
func New(logger *zap.Logger, ol *overlay.Cache, kad *kademlia.Kademlia, stat statdb.DB, config Config) *Discovery {
|
2019-01-18 13:54:08 +00:00
|
|
|
return &Discovery{
|
2019-01-30 16:29:18 +00:00
|
|
|
log: logger,
|
|
|
|
cache: ol,
|
|
|
|
kad: kad,
|
|
|
|
statdb: stat,
|
|
|
|
config: config,
|
2019-01-30 20:29:33 +00:00
|
|
|
|
|
|
|
refreshOffset: 0,
|
2019-01-18 13:54:08 +00:00
|
|
|
}
|
2018-12-14 19:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDiscovery Returns a new Discovery instance with cache, kad, and statdb loaded on
|
2019-01-30 16:29:18 +00:00
|
|
|
func NewDiscovery(logger *zap.Logger, ol *overlay.Cache, kad *kademlia.Kademlia, stat statdb.DB, config Config) *Discovery {
|
2018-12-14 19:23:54 +00:00
|
|
|
return &Discovery{
|
2018-12-22 04:51:42 +00:00
|
|
|
log: logger,
|
2018-12-14 19:23:54 +00:00
|
|
|
cache: ol,
|
|
|
|
kad: kad,
|
|
|
|
statdb: stat,
|
2019-01-30 16:29:18 +00:00
|
|
|
config: config,
|
2018-12-14 19:23:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-18 13:54:08 +00:00
|
|
|
// Close closes resources
|
|
|
|
func (discovery *Discovery) Close() error { return nil }
|
|
|
|
|
|
|
|
// Run runs the discovery service
|
|
|
|
func (discovery *Discovery) Run(ctx context.Context) error {
|
2019-01-30 16:29:18 +00:00
|
|
|
ticker := time.NewTicker(discovery.config.RefreshInterval)
|
2019-01-18 13:54:08 +00:00
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for {
|
2019-01-30 20:29:33 +00:00
|
|
|
err := discovery.refresh(ctx)
|
2019-01-18 13:54:08 +00:00
|
|
|
if err != nil {
|
|
|
|
discovery.log.Error("Error with cache refresh: ", zap.Error(err))
|
|
|
|
}
|
|
|
|
|
2019-01-30 20:29:33 +00:00
|
|
|
err = discovery.discover(ctx)
|
2019-01-18 13:54:08 +00:00
|
|
|
if err != nil {
|
|
|
|
discovery.log.Error("Error with cache discovery: ", zap.Error(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ticker.C: // redo
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 20:29:33 +00:00
|
|
|
// refresh updates the cache db with the current DHT.
|
2018-12-14 19:23:54 +00:00
|
|
|
// We currently do not penalize nodes that are unresponsive,
|
|
|
|
// but should in the future.
|
2019-01-30 20:29:33 +00:00
|
|
|
func (discovery *Discovery) refresh(ctx context.Context) error {
|
2019-01-18 13:54:08 +00:00
|
|
|
nodes := discovery.kad.Seen()
|
2018-12-14 19:23:54 +00:00
|
|
|
for _, v := range nodes {
|
2019-01-18 13:54:08 +00:00
|
|
|
if err := discovery.cache.Put(ctx, v.Id, *v); err != nil {
|
2018-12-14 19:23:54 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 20:29:33 +00:00
|
|
|
list, more, err := discovery.cache.Paginate(ctx, discovery.refreshOffset, discovery.config.RefreshLimit)
|
2019-01-30 16:29:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// more means there are more rows to page through in the cache
|
|
|
|
if more == false {
|
2019-01-30 20:29:33 +00:00
|
|
|
discovery.refreshOffset = 0
|
2019-01-30 16:29:18 +00:00
|
|
|
} else {
|
2019-01-30 20:29:33 +00:00
|
|
|
discovery.refreshOffset = discovery.refreshOffset + int64(len(list))
|
2019-01-30 16:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, node := range list {
|
|
|
|
ping, err := discovery.kad.Ping(ctx, *node)
|
|
|
|
if err != nil {
|
|
|
|
discovery.log.Info("could not pinging node")
|
|
|
|
_, err := discovery.statdb.UpdateUptime(ctx, ping.Id, false)
|
|
|
|
if err != nil {
|
|
|
|
discovery.log.Error("error updating node uptime in statdb")
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = discovery.statdb.UpdateUptime(ctx, ping.Id, true)
|
|
|
|
if err != nil {
|
|
|
|
discovery.log.Error("error updating node uptime in statdb")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = discovery.cache.Put(ctx, ping.Id, ping)
|
|
|
|
if err != nil {
|
|
|
|
discovery.log.Error("error putting node into cache")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 19:23:54 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bootstrap walks the initialized network and populates the cache
|
2019-01-18 13:54:08 +00:00
|
|
|
func (discovery *Discovery) Bootstrap(ctx context.Context) error {
|
2018-12-14 19:23:54 +00:00
|
|
|
// o := overlay.LoadFromContext(ctx)
|
|
|
|
// kad := kademlia.LoadFromContext(ctx)
|
|
|
|
// TODO(coyle): make Bootstrap work
|
|
|
|
// look in our routing table
|
|
|
|
// get every node we know about
|
|
|
|
// ask every node for every node they know about
|
|
|
|
// for each newly known node, ask those nodes for every node they know about
|
|
|
|
// continue until no new nodes are found
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-17 16:31:14 +00:00
|
|
|
|
|
|
|
// Discovery runs lookups for random node ID's to find new nodes in the network
|
2019-01-30 20:29:33 +00:00
|
|
|
func (discovery *Discovery) discover(ctx context.Context) error {
|
2018-12-17 16:31:14 +00:00
|
|
|
r, err := randomID()
|
|
|
|
if err != nil {
|
2019-01-23 19:58:44 +00:00
|
|
|
return Error.Wrap(err)
|
2018-12-17 16:31:14 +00:00
|
|
|
}
|
2019-01-18 13:54:08 +00:00
|
|
|
_, err = discovery.kad.FindNode(ctx, r)
|
2018-12-18 20:01:15 +00:00
|
|
|
if err != nil && !kademlia.NodeNotFound.Has(err) {
|
2019-01-23 19:58:44 +00:00
|
|
|
return Error.Wrap(err)
|
2018-12-17 16:31:14 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Walk iterates over each node in each bucket to traverse the network
|
2019-01-30 20:29:33 +00:00
|
|
|
func (discovery *Discovery) walk(ctx context.Context) error {
|
2018-12-17 16:31:14 +00:00
|
|
|
// TODO: This should walk the cache, rather than be a duplicate of refresh
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func randomID() (storj.NodeID, error) {
|
|
|
|
b := make([]byte, 32)
|
|
|
|
_, err := rand.Read(b)
|
|
|
|
if err != nil {
|
2019-01-23 19:58:44 +00:00
|
|
|
return storj.NodeID{}, Error.Wrap(err)
|
2018-12-17 16:31:14 +00:00
|
|
|
}
|
|
|
|
return storj.NodeIDFromBytes(b)
|
|
|
|
}
|