2018-04-18 17:55:28 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-06-13 19:22:32 +01:00
|
|
|
package overlay
|
2018-04-18 16:34:15 +01:00
|
|
|
|
|
|
|
import (
|
2018-05-16 19:47:59 +01:00
|
|
|
"context"
|
2018-04-18 16:34:15 +01:00
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
2018-06-13 19:22:32 +01:00
|
|
|
"github.com/zeebo/errs"
|
2018-11-16 16:31:14 +00:00
|
|
|
|
2018-06-22 14:33:57 +01:00
|
|
|
"storj.io/storj/pkg/dht"
|
2018-09-18 05:39:06 +01:00
|
|
|
"storj.io/storj/pkg/pb"
|
2018-11-27 17:46:12 +00:00
|
|
|
"storj.io/storj/pkg/statdb"
|
2018-12-04 20:18:26 +00:00
|
|
|
statproto "storj.io/storj/pkg/statdb/proto"
|
2018-11-30 13:40:13 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
2018-06-13 19:22:32 +01:00
|
|
|
"storj.io/storj/storage"
|
2018-04-18 16:34:15 +01:00
|
|
|
)
|
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
const (
|
|
|
|
// OverlayBucket is the string representing the bucket used for a bolt-backed overlay dht cache
|
|
|
|
OverlayBucket = "overlay"
|
|
|
|
)
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
// ErrNodeNotFound error standardization
|
|
|
|
var ErrNodeNotFound = errs.New("Node not found")
|
|
|
|
|
|
|
|
// ErrBucketNotFound returns if a bucket is unable to be found in the routing table
|
|
|
|
var ErrBucketNotFound = errs.New("Bucket not found")
|
|
|
|
|
2018-07-09 23:43:32 +01:00
|
|
|
// OverlayError creates class of errors for stack traces
|
|
|
|
var OverlayError = errs.Class("Overlay Error")
|
2018-06-05 22:06:37 +01:00
|
|
|
|
2018-06-13 19:22:32 +01:00
|
|
|
// Cache is used to store overlay data in Redis
|
|
|
|
type Cache struct {
|
2018-11-27 17:46:12 +00:00
|
|
|
DB storage.KeyValueStore
|
|
|
|
DHT dht.DHT
|
2018-12-04 18:47:58 +00:00
|
|
|
StatDB *statdb.StatDB
|
2018-04-18 16:34:15 +01:00
|
|
|
}
|
|
|
|
|
2018-10-26 17:54:00 +01:00
|
|
|
// NewOverlayCache returns a new Cache
|
2018-12-04 18:47:58 +00:00
|
|
|
func NewOverlayCache(db storage.KeyValueStore, dht dht.DHT, sdb *statdb.StatDB) *Cache {
|
2018-11-27 17:46:12 +00:00
|
|
|
return &Cache{DB: db, DHT: dht, StatDB: sdb}
|
2018-06-13 19:22:32 +01:00
|
|
|
}
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
// Get looks up the provided nodeID from the overlay cache
|
2018-11-29 18:39:27 +00:00
|
|
|
func (o *Cache) Get(ctx context.Context, nodeID storj.NodeID) (*pb.Node, error) {
|
|
|
|
b, err := o.DB.Get(nodeID.Bytes())
|
2018-04-18 16:34:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-29 21:06:25 +01:00
|
|
|
if b.IsZero() {
|
|
|
|
// TODO: log? return an error?
|
|
|
|
return nil, nil
|
|
|
|
}
|
2018-09-18 05:39:06 +01:00
|
|
|
na := &pb.Node{}
|
2018-06-05 22:06:37 +01:00
|
|
|
if err := proto.Unmarshal(b, na); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return na, nil
|
2018-04-18 16:34:15 +01:00
|
|
|
}
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
// GetAll looks up the provided nodeIDs from the overlay cache
|
2018-11-29 18:39:27 +00:00
|
|
|
func (o *Cache) GetAll(ctx context.Context, nodeIDs storj.NodeIDList) ([]*pb.Node, error) {
|
|
|
|
if len(nodeIDs) == 0 {
|
|
|
|
return nil, OverlayError.New("no nodeIDs provided")
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
var ks storage.Keys
|
2018-11-29 18:39:27 +00:00
|
|
|
for _, v := range nodeIDs {
|
|
|
|
ks = append(ks, v.Bytes())
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
vs, err := o.DB.GetAll(ks)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-09-18 05:39:06 +01:00
|
|
|
var ns []*pb.Node
|
2018-09-11 05:52:14 +01:00
|
|
|
for _, v := range vs {
|
|
|
|
if v == nil {
|
|
|
|
ns = append(ns, nil)
|
|
|
|
continue
|
|
|
|
}
|
2018-09-18 05:39:06 +01:00
|
|
|
na := &pb.Node{}
|
2018-09-11 05:52:14 +01:00
|
|
|
err := proto.Unmarshal(v, na)
|
|
|
|
if err != nil {
|
|
|
|
return nil, OverlayError.New("could not unmarshal non-nil node: %v", err)
|
|
|
|
}
|
|
|
|
ns = append(ns, na)
|
|
|
|
}
|
|
|
|
return ns, nil
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:15:38 +01:00
|
|
|
// Put adds a nodeID to the redis cache with a binary representation of proto defined Node
|
2018-12-04 20:18:26 +00:00
|
|
|
func (o *Cache) Put(ctx context.Context, nodeID storj.NodeID, value pb.Node) error {
|
2018-11-20 16:54:52 +00:00
|
|
|
// If we get a Node without an ID (i.e. bootstrap node)
|
|
|
|
// we don't want to add to the routing tbale
|
2018-11-29 18:39:27 +00:00
|
|
|
if nodeID == (storj.NodeID{}) {
|
2018-11-20 16:54:52 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
// get existing node rep, or create a new statdb node with 0 rep
|
|
|
|
res, err := o.StatDB.CreateEntryIfNotExists(ctx, &statproto.CreateEntryIfNotExistsRequest{
|
|
|
|
Node: &pb.Node{
|
|
|
|
Id: nodeID,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stats := res.Stats
|
|
|
|
value.Reputation = &pb.NodeStats{
|
|
|
|
AuditSuccessRatio: stats.AuditSuccessRatio,
|
|
|
|
AuditCount: stats.AuditCount,
|
|
|
|
UptimeRatio: stats.UptimeRatio,
|
|
|
|
UptimeCount: stats.UptimeCount,
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:34:15 +01:00
|
|
|
data, err := proto.Marshal(&value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-20 16:54:52 +00:00
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
return o.DB.Put(nodeID.Bytes(), data)
|
2018-04-18 16:34:15 +01:00
|
|
|
}
|
2018-05-16 19:47:59 +01:00
|
|
|
|
|
|
|
// Bootstrap walks the initialized network and populates the cache
|
2018-06-13 19:22:32 +01:00
|
|
|
func (o *Cache) Bootstrap(ctx context.Context) error {
|
2018-11-20 16:54:52 +00:00
|
|
|
// 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-05-16 19:47:59 +01:00
|
|
|
}
|
|
|
|
|
2018-08-07 00:32:47 +01:00
|
|
|
// Refresh updates the cache db with the current DHT.
|
|
|
|
// We currently do not penalize nodes that are unresponsive,
|
|
|
|
// but should in the future.
|
2018-06-13 19:22:32 +01:00
|
|
|
func (o *Cache) Refresh(ctx context.Context) error {
|
2018-11-20 16:54:52 +00:00
|
|
|
// TODO(coyle): make refresh work by looking on the network for new ndoes
|
|
|
|
nodes := o.DHT.Seen()
|
2018-11-19 14:40:01 +00:00
|
|
|
|
2018-11-20 16:54:52 +00:00
|
|
|
for _, v := range nodes {
|
2018-12-04 20:18:26 +00:00
|
|
|
if err := o.Put(ctx, v.Id, *v); err != nil {
|
2018-11-20 16:54:52 +00:00
|
|
|
return err
|
2018-08-09 20:20:39 +01:00
|
|
|
}
|
2018-06-05 22:06:37 +01:00
|
|
|
}
|
2018-11-14 21:30:07 +00:00
|
|
|
|
2018-11-12 19:53:20 +00:00
|
|
|
return nil
|
2018-08-07 00:32:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Walk iterates over each node in each bucket to traverse the network
|
|
|
|
func (o *Cache) Walk(ctx context.Context) error {
|
|
|
|
// TODO: This should walk the cache, rather than be a duplicate of refresh
|
2018-06-05 22:06:37 +01:00
|
|
|
return nil
|
2018-05-16 19:47:59 +01:00
|
|
|
}
|