2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-17 20:14:16 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package satellitedb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
2019-01-29 19:42:43 +00:00
|
|
|
"strings"
|
2018-12-17 20:14:16 +00:00
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
"github.com/zeebo/errs"
|
2019-03-25 22:25:09 +00:00
|
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
2019-01-15 16:08:45 +00:00
|
|
|
|
|
|
|
"storj.io/storj/pkg/overlay"
|
|
|
|
"storj.io/storj/pkg/pb"
|
|
|
|
"storj.io/storj/pkg/storj"
|
2019-03-25 22:25:09 +00:00
|
|
|
"storj.io/storj/pkg/utils"
|
2018-12-17 20:14:16 +00:00
|
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
|
|
"storj.io/storj/storage"
|
|
|
|
)
|
|
|
|
|
2019-03-25 22:25:09 +00:00
|
|
|
var (
|
|
|
|
mon = monkit.Package()
|
|
|
|
errAuditSuccess = errs.Class("overlay audit success error")
|
|
|
|
errUptime = errs.Class("overlay uptime error")
|
|
|
|
|
|
|
|
// ErrNodeNotFound may be returned when a node is not found in the overlay.
|
|
|
|
ErrNodeNotFound = errs.New("overlay node not found")
|
|
|
|
)
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
var _ overlay.DB = (*overlaycache)(nil)
|
|
|
|
|
2018-12-17 20:14:16 +00:00
|
|
|
type overlaycache struct {
|
2018-12-27 09:56:25 +00:00
|
|
|
db *dbx.DB
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-02-11 19:24:51 +00:00
|
|
|
func (cache *overlaycache) SelectStorageNodes(ctx context.Context, count int, criteria *overlay.NodeCriteria) ([]*pb.Node, error) {
|
2019-02-11 16:35:28 +00:00
|
|
|
nodeType := int(pb.NodeType_STORAGE)
|
2019-01-31 18:49:00 +00:00
|
|
|
return cache.queryFilteredNodes(ctx, criteria.Excluded, count, `
|
2019-01-31 20:45:37 +00:00
|
|
|
WHERE node_type = ? AND free_bandwidth >= ? AND free_disk >= ?
|
2019-01-31 18:49:00 +00:00
|
|
|
AND audit_count >= ?
|
|
|
|
AND audit_success_ratio >= ?
|
|
|
|
AND uptime_count >= ?
|
|
|
|
AND audit_uptime_ratio >= ?
|
2019-02-11 16:35:28 +00:00
|
|
|
`, nodeType, criteria.FreeBandwidth, criteria.FreeDisk,
|
2019-01-31 18:49:00 +00:00
|
|
|
criteria.AuditCount, criteria.AuditSuccessRatio, criteria.UptimeCount, criteria.UptimeSuccessRatio,
|
|
|
|
)
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
|
|
|
|
2019-02-11 19:24:51 +00:00
|
|
|
func (cache *overlaycache) SelectNewStorageNodes(ctx context.Context, count int, criteria *overlay.NewNodeCriteria) ([]*pb.Node, error) {
|
2019-02-11 16:35:28 +00:00
|
|
|
nodeType := int(pb.NodeType_STORAGE)
|
2019-01-31 18:49:00 +00:00
|
|
|
return cache.queryFilteredNodes(ctx, criteria.Excluded, count, `
|
2019-02-01 14:09:34 +00:00
|
|
|
WHERE node_type = ? AND free_bandwidth >= ? AND free_disk >= ?
|
2019-01-31 18:49:00 +00:00
|
|
|
AND audit_count < ?
|
2019-02-11 16:35:28 +00:00
|
|
|
`, nodeType, criteria.FreeBandwidth, criteria.FreeDisk,
|
2019-01-31 18:49:00 +00:00
|
|
|
criteria.AuditThreshold,
|
|
|
|
)
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 18:49:00 +00:00
|
|
|
func (cache *overlaycache) queryFilteredNodes(ctx context.Context, excluded []storj.NodeID, count int, safeQuery string, args ...interface{}) (_ []*pb.Node, err error) {
|
|
|
|
if count == 0 {
|
|
|
|
return nil, nil
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 18:49:00 +00:00
|
|
|
safeExcludeNodes := ""
|
|
|
|
if len(excluded) > 0 {
|
|
|
|
safeExcludeNodes = ` AND node_id NOT IN (?` + strings.Repeat(", ?", len(excluded)-1) + `)`
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
2019-01-31 18:49:00 +00:00
|
|
|
for _, id := range excluded {
|
|
|
|
args = append(args, id.Bytes())
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
2019-01-31 18:49:00 +00:00
|
|
|
args = append(args, count)
|
2019-01-29 19:42:43 +00:00
|
|
|
|
2019-01-31 18:49:00 +00:00
|
|
|
rows, err := cache.db.Query(cache.db.Rebind(`SELECT node_id,
|
|
|
|
node_type, address, free_bandwidth, free_disk, audit_success_ratio,
|
|
|
|
audit_uptime_ratio, audit_count, audit_success_count, uptime_count,
|
|
|
|
uptime_success_count
|
|
|
|
FROM overlay_cache_nodes
|
2019-01-31 19:33:07 +00:00
|
|
|
`+safeQuery+safeExcludeNodes+`
|
|
|
|
ORDER BY RANDOM()
|
|
|
|
LIMIT ?`), args...)
|
2019-01-29 19:42:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-01-31 18:49:00 +00:00
|
|
|
defer func() { err = errs.Combine(err, rows.Close()) }()
|
2019-01-29 19:42:43 +00:00
|
|
|
|
2019-01-31 18:49:00 +00:00
|
|
|
var nodes []*pb.Node
|
2019-01-29 19:42:43 +00:00
|
|
|
for rows.Next() {
|
|
|
|
overlayNode := &dbx.OverlayCacheNode{}
|
|
|
|
err = rows.Scan(&overlayNode.NodeId, &overlayNode.NodeType,
|
|
|
|
&overlayNode.Address, &overlayNode.FreeBandwidth, &overlayNode.FreeDisk,
|
|
|
|
&overlayNode.AuditSuccessRatio, &overlayNode.AuditUptimeRatio,
|
|
|
|
&overlayNode.AuditCount, &overlayNode.AuditSuccessCount,
|
|
|
|
&overlayNode.UptimeCount, &overlayNode.UptimeSuccessCount)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
node, err := convertOverlayNode(overlayNode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
nodes = append(nodes, node)
|
|
|
|
}
|
|
|
|
|
2019-01-31 18:49:00 +00:00
|
|
|
return nodes, rows.Err()
|
2019-01-29 19:42:43 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
// Get looks up the node by nodeID
|
|
|
|
func (cache *overlaycache) Get(ctx context.Context, id storj.NodeID) (*pb.Node, error) {
|
|
|
|
if id.IsZero() {
|
|
|
|
return nil, overlay.ErrEmptyNode
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
node, err := cache.db.Get_OverlayCacheNode_By_NodeId(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(id.Bytes()),
|
|
|
|
)
|
|
|
|
if err == sql.ErrNoRows {
|
2019-03-26 18:09:44 +00:00
|
|
|
return nil, overlay.ErrNodeNotFound.New("couldn't find nodeID: %s", id.String())
|
2019-01-15 16:08:45 +00:00
|
|
|
}
|
2018-12-17 20:14:16 +00:00
|
|
|
if err != nil {
|
2019-01-15 16:08:45 +00:00
|
|
|
return nil, err
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
return convertOverlayNode(node)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAll looks up nodes based on the ids from the overlay cache
|
|
|
|
func (cache *overlaycache) GetAll(ctx context.Context, ids storj.NodeIDList) ([]*pb.Node, error) {
|
|
|
|
infos := make([]*pb.Node, len(ids))
|
|
|
|
for i, id := range ids {
|
|
|
|
// TODO: abort on canceled context
|
|
|
|
info, err := cache.Get(ctx, id)
|
2018-12-17 20:14:16 +00:00
|
|
|
if err != nil {
|
2019-01-15 16:08:45 +00:00
|
|
|
continue
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
2019-01-15 16:08:45 +00:00
|
|
|
infos[i] = info
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
2019-01-15 16:08:45 +00:00
|
|
|
return infos, nil
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
// List lists nodes starting from cursor
|
|
|
|
func (cache *overlaycache) List(ctx context.Context, cursor storj.NodeID, limit int) ([]*pb.Node, error) {
|
|
|
|
// TODO: handle this nicer
|
|
|
|
if limit <= 0 || limit > storage.LookupLimit {
|
|
|
|
limit = storage.LookupLimit
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
dbxInfos, err := cache.db.Limited_OverlayCacheNode_By_NodeId_GreaterOrEqual(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(cursor.Bytes()),
|
|
|
|
limit, 0,
|
|
|
|
)
|
2018-12-17 20:14:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
infos := make([]*pb.Node, len(dbxInfos))
|
|
|
|
for i, dbxInfo := range dbxInfos {
|
|
|
|
infos[i], err = convertOverlayNode(dbxInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-15 16:08:45 +00:00
|
|
|
return infos, nil
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:29:18 +00:00
|
|
|
// Paginate will run through
|
|
|
|
func (cache *overlaycache) Paginate(ctx context.Context, offset int64, limit int) ([]*pb.Node, bool, error) {
|
|
|
|
cursor := storj.NodeID{}
|
|
|
|
|
|
|
|
// more represents end of table. If there are more rows in the database, more will be true.
|
|
|
|
more := true
|
|
|
|
|
|
|
|
if limit <= 0 || limit > storage.LookupLimit {
|
|
|
|
limit = storage.LookupLimit
|
|
|
|
}
|
|
|
|
|
|
|
|
dbxInfos, err := cache.db.Limited_OverlayCacheNode_By_NodeId_GreaterOrEqual(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(cursor.Bytes()),
|
|
|
|
limit, offset,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(dbxInfos) < limit {
|
|
|
|
more = false
|
|
|
|
}
|
|
|
|
|
|
|
|
infos := make([]*pb.Node, len(dbxInfos))
|
|
|
|
for i, dbxInfo := range dbxInfos {
|
|
|
|
infos[i], err = convertOverlayNode(dbxInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return infos, more, nil
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
// Update updates node information
|
|
|
|
func (cache *overlaycache) Update(ctx context.Context, info *pb.Node) (err error) {
|
|
|
|
if info == nil || info.Id.IsZero() {
|
|
|
|
return overlay.ErrEmptyNode
|
|
|
|
}
|
2018-12-17 20:14:16 +00:00
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
tx, err := cache.db.Open(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(err)
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
// TODO: use upsert
|
|
|
|
_, err = tx.Get_OverlayCacheNode_By_NodeId(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(info.Id.Bytes()),
|
|
|
|
)
|
|
|
|
|
|
|
|
address := info.Address
|
|
|
|
if address == nil {
|
|
|
|
address = &pb.NodeAddress{}
|
2018-12-18 20:41:31 +00:00
|
|
|
}
|
2019-01-15 16:08:45 +00:00
|
|
|
|
|
|
|
metadata := info.Metadata
|
|
|
|
if metadata == nil {
|
|
|
|
metadata = &pb.NodeMetadata{}
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
restrictions := info.Restrictions
|
|
|
|
if restrictions == nil {
|
|
|
|
restrictions = &pb.NodeRestrictions{
|
|
|
|
FreeBandwidth: -1,
|
|
|
|
FreeDisk: -1,
|
|
|
|
}
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
reputation := info.Reputation
|
|
|
|
if reputation == nil {
|
|
|
|
reputation = &pb.NodeStats{}
|
|
|
|
}
|
2018-12-17 20:14:16 +00:00
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
if err != nil {
|
|
|
|
_, err = tx.Create_OverlayCacheNode(
|
|
|
|
ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(info.Id.Bytes()),
|
|
|
|
|
|
|
|
dbx.OverlayCacheNode_NodeType(int(info.Type)),
|
|
|
|
dbx.OverlayCacheNode_Address(address.Address),
|
|
|
|
dbx.OverlayCacheNode_Protocol(int(address.Transport)),
|
|
|
|
|
|
|
|
dbx.OverlayCacheNode_OperatorEmail(metadata.Email),
|
|
|
|
dbx.OverlayCacheNode_OperatorWallet(metadata.Wallet),
|
|
|
|
|
|
|
|
dbx.OverlayCacheNode_FreeBandwidth(restrictions.FreeBandwidth),
|
|
|
|
dbx.OverlayCacheNode_FreeDisk(restrictions.FreeDisk),
|
|
|
|
|
|
|
|
dbx.OverlayCacheNode_Latency90(reputation.Latency_90),
|
|
|
|
dbx.OverlayCacheNode_AuditSuccessRatio(reputation.AuditSuccessRatio),
|
|
|
|
dbx.OverlayCacheNode_AuditUptimeRatio(reputation.UptimeRatio),
|
|
|
|
dbx.OverlayCacheNode_AuditCount(reputation.AuditCount),
|
|
|
|
dbx.OverlayCacheNode_AuditSuccessCount(reputation.AuditSuccessCount),
|
|
|
|
|
|
|
|
dbx.OverlayCacheNode_UptimeCount(reputation.UptimeCount),
|
|
|
|
dbx.OverlayCacheNode_UptimeSuccessCount(reputation.UptimeSuccessCount),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(errs.Combine(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
update := dbx.OverlayCacheNode_Update_Fields{
|
|
|
|
// TODO: should we be able to update node type?
|
|
|
|
Address: dbx.OverlayCacheNode_Address(address.Address),
|
|
|
|
Protocol: dbx.OverlayCacheNode_Protocol(int(address.Transport)),
|
|
|
|
|
|
|
|
Latency90: dbx.OverlayCacheNode_Latency90(info.Reputation.Latency_90),
|
|
|
|
AuditSuccessRatio: dbx.OverlayCacheNode_AuditSuccessRatio(info.Reputation.AuditSuccessRatio),
|
|
|
|
AuditUptimeRatio: dbx.OverlayCacheNode_AuditUptimeRatio(info.Reputation.UptimeRatio),
|
|
|
|
AuditCount: dbx.OverlayCacheNode_AuditCount(info.Reputation.AuditCount),
|
|
|
|
AuditSuccessCount: dbx.OverlayCacheNode_AuditSuccessCount(info.Reputation.AuditSuccessCount),
|
|
|
|
UptimeCount: dbx.OverlayCacheNode_UptimeCount(info.Reputation.UptimeCount),
|
|
|
|
UptimeSuccessCount: dbx.OverlayCacheNode_UptimeSuccessCount(info.Reputation.UptimeSuccessCount),
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.Metadata != nil {
|
|
|
|
update.OperatorEmail = dbx.OverlayCacheNode_OperatorEmail(info.Metadata.Email)
|
|
|
|
update.OperatorWallet = dbx.OverlayCacheNode_OperatorWallet(info.Metadata.Wallet)
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.Restrictions != nil {
|
|
|
|
update.FreeBandwidth = dbx.OverlayCacheNode_FreeBandwidth(restrictions.FreeBandwidth)
|
|
|
|
update.FreeDisk = dbx.OverlayCacheNode_FreeDisk(restrictions.FreeDisk)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := tx.Update_OverlayCacheNode_By_NodeId(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(info.Id.Bytes()),
|
|
|
|
update,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return Error.Wrap(errs.Combine(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Error.Wrap(tx.Commit())
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
// Delete deletes node based on id
|
|
|
|
func (cache *overlaycache) Delete(ctx context.Context, id storj.NodeID) error {
|
|
|
|
_, err := cache.db.Delete_OverlayCacheNode_By_NodeId(ctx,
|
|
|
|
dbx.OverlayCacheNode_NodeId(id.Bytes()),
|
|
|
|
)
|
|
|
|
return err
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 22:25:09 +00:00
|
|
|
// Create a db entry for the provided storagenode
|
|
|
|
func (cache *overlaycache) Create(ctx context.Context, nodeID storj.NodeID, startingStats *overlay.NodeStats) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
var (
|
|
|
|
totalAuditCount int64
|
|
|
|
auditSuccessCount int64
|
|
|
|
auditSuccessRatio float64
|
|
|
|
totalUptimeCount int64
|
|
|
|
uptimeSuccessCount int64
|
|
|
|
uptimeRatio float64
|
|
|
|
wallet string
|
|
|
|
email string
|
|
|
|
)
|
|
|
|
|
|
|
|
if startingStats != nil {
|
|
|
|
totalAuditCount = startingStats.AuditCount
|
|
|
|
auditSuccessCount = startingStats.AuditSuccessCount
|
|
|
|
auditSuccessRatio, err = checkRatioVars(auditSuccessCount, totalAuditCount)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errAuditSuccess.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
totalUptimeCount = startingStats.UptimeCount
|
|
|
|
uptimeSuccessCount = startingStats.UptimeSuccessCount
|
|
|
|
uptimeRatio, err = checkRatioVars(uptimeSuccessCount, totalUptimeCount)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errUptime.Wrap(err)
|
|
|
|
}
|
|
|
|
wallet = startingStats.Operator.Wallet
|
|
|
|
email = startingStats.Operator.Email
|
|
|
|
}
|
|
|
|
|
|
|
|
dbNode, err := cache.db.Create_Node(
|
|
|
|
ctx,
|
|
|
|
dbx.Node_Id(nodeID.Bytes()),
|
|
|
|
dbx.Node_AuditSuccessCount(auditSuccessCount),
|
|
|
|
dbx.Node_TotalAuditCount(totalAuditCount),
|
|
|
|
dbx.Node_AuditSuccessRatio(auditSuccessRatio),
|
|
|
|
dbx.Node_UptimeSuccessCount(uptimeSuccessCount),
|
|
|
|
dbx.Node_TotalUptimeCount(totalUptimeCount),
|
|
|
|
dbx.Node_UptimeRatio(uptimeRatio),
|
|
|
|
dbx.Node_Wallet(wallet),
|
|
|
|
dbx.Node_Email(email),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeStats := getNodeStats(nodeID, dbNode)
|
|
|
|
return nodeStats, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStats a storagenode's stats from the db
|
|
|
|
func (cache *overlaycache) GetStats(ctx context.Context, nodeID storj.NodeID) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
dbNode, err := cache.db.Find_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
if dbNode == nil {
|
|
|
|
return nil, ErrNodeNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeStats := getNodeStats(nodeID, dbNode)
|
|
|
|
return nodeStats, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindInvalidNodes finds a subset of storagenodes that fail to meet minimum reputation requirements
|
|
|
|
func (cache *overlaycache) FindInvalidNodes(ctx context.Context, nodeIDs storj.NodeIDList, maxStats *overlay.NodeStats) (invalidIDs storj.NodeIDList, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
var invalidIds storj.NodeIDList
|
|
|
|
|
|
|
|
maxAuditSuccess := maxStats.AuditSuccessRatio
|
|
|
|
maxUptime := maxStats.UptimeRatio
|
|
|
|
|
|
|
|
rows, err := cache.findInvalidNodesQuery(nodeIDs, maxAuditSuccess, maxUptime)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = utils.CombineErrors(err, rows.Close())
|
|
|
|
}()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
node := &dbx.Node{}
|
|
|
|
err = rows.Scan(&node.Id, &node.TotalAuditCount, &node.TotalUptimeCount, &node.AuditSuccessRatio, &node.UptimeRatio)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
id, err := storj.NodeIDFromBytes(node.Id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
invalidIds = append(invalidIds, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
return invalidIds, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cache *overlaycache) findInvalidNodesQuery(nodeIds storj.NodeIDList, auditSuccess, uptime float64) (*sql.Rows, error) {
|
|
|
|
args := make([]interface{}, len(nodeIds))
|
|
|
|
for i, id := range nodeIds {
|
|
|
|
args[i] = id.Bytes()
|
|
|
|
}
|
|
|
|
args = append(args, auditSuccess, uptime)
|
|
|
|
|
|
|
|
rows, err := cache.db.Query(cache.db.Rebind(`SELECT nodes.id, nodes.total_audit_count,
|
|
|
|
nodes.total_uptime_count, nodes.audit_success_ratio,
|
|
|
|
nodes.uptime_ratio
|
|
|
|
FROM nodes
|
|
|
|
WHERE nodes.id IN (?`+strings.Repeat(", ?", len(nodeIds)-1)+`)
|
|
|
|
AND nodes.total_audit_count > 0
|
|
|
|
AND nodes.total_uptime_count > 0
|
|
|
|
AND (
|
|
|
|
nodes.audit_success_ratio < ?
|
|
|
|
OR nodes.uptime_ratio < ?
|
|
|
|
)`), args...)
|
|
|
|
|
|
|
|
return rows, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateStats a single storagenode's stats in the db
|
|
|
|
func (cache *overlaycache) UpdateStats(ctx context.Context, updateReq *overlay.UpdateRequest) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
nodeID := updateReq.NodeID
|
|
|
|
|
|
|
|
tx, err := cache.db.Open(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
dbNode, err := tx.Get_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
auditSuccessCount := dbNode.AuditSuccessCount
|
|
|
|
totalAuditCount := dbNode.TotalAuditCount
|
|
|
|
var auditSuccessRatio float64
|
|
|
|
uptimeSuccessCount := dbNode.UptimeSuccessCount
|
|
|
|
totalUptimeCount := dbNode.TotalUptimeCount
|
|
|
|
var uptimeRatio float64
|
|
|
|
|
|
|
|
auditSuccessCount, totalAuditCount, auditSuccessRatio = updateRatioVars(
|
|
|
|
updateReq.AuditSuccess,
|
|
|
|
auditSuccessCount,
|
|
|
|
totalAuditCount,
|
|
|
|
)
|
|
|
|
|
|
|
|
uptimeSuccessCount, totalUptimeCount, uptimeRatio = updateRatioVars(
|
|
|
|
updateReq.IsUp,
|
|
|
|
uptimeSuccessCount,
|
|
|
|
totalUptimeCount,
|
|
|
|
)
|
|
|
|
|
|
|
|
updateFields := dbx.Node_Update_Fields{
|
|
|
|
AuditSuccessCount: dbx.Node_AuditSuccessCount(auditSuccessCount),
|
|
|
|
TotalAuditCount: dbx.Node_TotalAuditCount(totalAuditCount),
|
|
|
|
AuditSuccessRatio: dbx.Node_AuditSuccessRatio(auditSuccessRatio),
|
|
|
|
UptimeSuccessCount: dbx.Node_UptimeSuccessCount(uptimeSuccessCount),
|
|
|
|
TotalUptimeCount: dbx.Node_TotalUptimeCount(totalUptimeCount),
|
|
|
|
UptimeRatio: dbx.Node_UptimeRatio(uptimeRatio),
|
|
|
|
}
|
|
|
|
|
|
|
|
updateFields.UptimeSuccessCount = dbx.Node_UptimeSuccessCount(uptimeSuccessCount)
|
|
|
|
updateFields.TotalUptimeCount = dbx.Node_TotalUptimeCount(totalUptimeCount)
|
|
|
|
updateFields.UptimeRatio = dbx.Node_UptimeRatio(uptimeRatio)
|
|
|
|
|
|
|
|
dbNode, err = tx.Update_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()), updateFields)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeStats := getNodeStats(nodeID, dbNode)
|
|
|
|
return nodeStats, Error.Wrap(tx.Commit())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateOperator updates the email and wallet for a given node ID for satellite payments.
|
|
|
|
func (cache *overlaycache) UpdateOperator(ctx context.Context, nodeID storj.NodeID, operator pb.NodeOperator) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
tx, err := cache.db.Open(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
updateFields := dbx.Node_Update_Fields{
|
|
|
|
Wallet: dbx.Node_Wallet(operator.GetWallet()),
|
|
|
|
Email: dbx.Node_Email(operator.GetEmail()),
|
|
|
|
}
|
|
|
|
|
|
|
|
updatedDBNode, err := tx.Update_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()), updateFields)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(tx.Rollback())
|
|
|
|
}
|
|
|
|
|
|
|
|
updated := getNodeStats(nodeID, updatedDBNode)
|
|
|
|
|
|
|
|
return updated, utils.CombineErrors(err, tx.Commit())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateUptime updates a single storagenode's uptime stats in the db
|
|
|
|
func (cache *overlaycache) UpdateUptime(ctx context.Context, nodeID storj.NodeID, isUp bool) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
tx, err := cache.db.Open(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
dbNode, err := tx.Get_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
uptimeSuccessCount := dbNode.UptimeSuccessCount
|
|
|
|
totalUptimeCount := dbNode.TotalUptimeCount
|
|
|
|
var uptimeRatio float64
|
|
|
|
|
|
|
|
updateFields := dbx.Node_Update_Fields{}
|
|
|
|
|
|
|
|
uptimeSuccessCount, totalUptimeCount, uptimeRatio = updateRatioVars(
|
|
|
|
isUp,
|
|
|
|
uptimeSuccessCount,
|
|
|
|
totalUptimeCount,
|
|
|
|
)
|
|
|
|
|
|
|
|
updateFields.UptimeSuccessCount = dbx.Node_UptimeSuccessCount(uptimeSuccessCount)
|
|
|
|
updateFields.TotalUptimeCount = dbx.Node_TotalUptimeCount(totalUptimeCount)
|
|
|
|
updateFields.UptimeRatio = dbx.Node_UptimeRatio(uptimeRatio)
|
|
|
|
|
|
|
|
dbNode, err = tx.Update_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()), updateFields)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeStats := getNodeStats(nodeID, dbNode)
|
|
|
|
return nodeStats, Error.Wrap(tx.Commit())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateAuditSuccess updates a single storagenode's uptime stats in the db
|
|
|
|
func (cache *overlaycache) UpdateAuditSuccess(ctx context.Context, nodeID storj.NodeID, auditSuccess bool) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
tx, err := cache.db.Open(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(err)
|
|
|
|
}
|
|
|
|
dbNode, err := tx.Get_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
auditSuccessCount := dbNode.AuditSuccessCount
|
|
|
|
totalAuditCount := dbNode.TotalAuditCount
|
|
|
|
var auditRatio float64
|
|
|
|
|
|
|
|
updateFields := dbx.Node_Update_Fields{}
|
|
|
|
|
|
|
|
auditSuccessCount, totalAuditCount, auditRatio = updateRatioVars(
|
|
|
|
auditSuccess,
|
|
|
|
auditSuccessCount,
|
|
|
|
totalAuditCount,
|
|
|
|
)
|
|
|
|
|
|
|
|
updateFields.AuditSuccessCount = dbx.Node_AuditSuccessCount(auditSuccessCount)
|
|
|
|
updateFields.TotalAuditCount = dbx.Node_TotalAuditCount(totalAuditCount)
|
|
|
|
updateFields.AuditSuccessRatio = dbx.Node_AuditSuccessRatio(auditRatio)
|
|
|
|
|
|
|
|
dbNode, err = tx.Update_Node_By_Id(ctx, dbx.Node_Id(nodeID.Bytes()), updateFields)
|
|
|
|
if err != nil {
|
|
|
|
return nil, Error.Wrap(utils.CombineErrors(err, tx.Rollback()))
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeStats := getNodeStats(nodeID, dbNode)
|
|
|
|
return nodeStats, Error.Wrap(tx.Commit())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateBatch for updating multiple storage nodes' stats in the db
|
|
|
|
func (cache *overlaycache) UpdateBatch(ctx context.Context, updateReqList []*overlay.UpdateRequest) (
|
|
|
|
statsList []*overlay.NodeStats, failedUpdateReqs []*overlay.UpdateRequest, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
var nodeStatsList []*overlay.NodeStats
|
|
|
|
var allErrors []error
|
|
|
|
failedUpdateReqs = []*overlay.UpdateRequest{}
|
|
|
|
for _, updateReq := range updateReqList {
|
|
|
|
|
|
|
|
nodeStats, err := cache.UpdateStats(ctx, updateReq)
|
|
|
|
if err != nil {
|
|
|
|
allErrors = append(allErrors, err)
|
|
|
|
failedUpdateReqs = append(failedUpdateReqs, updateReq)
|
|
|
|
} else {
|
|
|
|
nodeStatsList = append(nodeStatsList, nodeStats)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(allErrors) > 0 {
|
|
|
|
return nodeStatsList, failedUpdateReqs, Error.Wrap(utils.CombineErrors(allErrors...))
|
|
|
|
}
|
|
|
|
return nodeStatsList, nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateEntryIfNotExists creates a overlay node entry and saves to overlay if it didn't already exist
|
|
|
|
func (cache *overlaycache) CreateEntryIfNotExists(ctx context.Context, nodeID storj.NodeID) (stats *overlay.NodeStats, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
|
|
|
|
getStats, err := cache.GetStats(ctx, nodeID)
|
|
|
|
if err == ErrNodeNotFound {
|
|
|
|
return cache.Create(ctx, nodeID, nil)
|
|
|
|
}
|
|
|
|
return getStats, err
|
|
|
|
}
|
|
|
|
|
2019-01-15 16:08:45 +00:00
|
|
|
func convertOverlayNode(info *dbx.OverlayCacheNode) (*pb.Node, error) {
|
|
|
|
if info == nil {
|
|
|
|
return nil, Error.New("missing info")
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := storj.NodeIDFromBytes(info.NodeId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
node := &pb.Node{
|
|
|
|
Id: id,
|
|
|
|
Type: pb.NodeType(info.NodeType),
|
|
|
|
Address: &pb.NodeAddress{
|
|
|
|
Address: info.Address,
|
|
|
|
Transport: pb.NodeTransport(info.Protocol),
|
|
|
|
},
|
|
|
|
Metadata: &pb.NodeMetadata{
|
|
|
|
Email: info.OperatorEmail,
|
|
|
|
Wallet: info.OperatorWallet,
|
|
|
|
},
|
|
|
|
Restrictions: &pb.NodeRestrictions{
|
|
|
|
FreeBandwidth: info.FreeBandwidth,
|
|
|
|
FreeDisk: info.FreeDisk,
|
|
|
|
},
|
|
|
|
Reputation: &pb.NodeStats{
|
|
|
|
NodeId: id,
|
|
|
|
Latency_90: info.Latency90,
|
|
|
|
AuditSuccessRatio: info.AuditSuccessRatio,
|
|
|
|
UptimeRatio: info.AuditUptimeRatio,
|
|
|
|
AuditCount: info.AuditCount,
|
|
|
|
AuditSuccessCount: info.AuditSuccessCount,
|
|
|
|
UptimeCount: info.UptimeCount,
|
|
|
|
UptimeSuccessCount: info.UptimeSuccessCount,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if node.Address.Address == "" {
|
|
|
|
node.Address = nil
|
|
|
|
}
|
|
|
|
if node.Metadata.Email == "" && node.Metadata.Wallet == "" {
|
|
|
|
node.Metadata = nil
|
|
|
|
}
|
|
|
|
if node.Restrictions.FreeBandwidth < 0 && node.Restrictions.FreeDisk < 0 {
|
|
|
|
node.Restrictions = nil
|
|
|
|
}
|
|
|
|
if node.Reputation.Latency_90 < 0 {
|
|
|
|
node.Reputation = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return node, nil
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
2019-03-25 22:25:09 +00:00
|
|
|
|
|
|
|
func getNodeStats(nodeID storj.NodeID, dbNode *dbx.Node) *overlay.NodeStats {
|
|
|
|
nodeStats := &overlay.NodeStats{
|
|
|
|
NodeID: nodeID,
|
|
|
|
AuditSuccessRatio: dbNode.AuditSuccessRatio,
|
|
|
|
AuditSuccessCount: dbNode.AuditSuccessCount,
|
|
|
|
AuditCount: dbNode.TotalAuditCount,
|
|
|
|
UptimeRatio: dbNode.UptimeRatio,
|
|
|
|
UptimeSuccessCount: dbNode.UptimeSuccessCount,
|
|
|
|
UptimeCount: dbNode.TotalUptimeCount,
|
|
|
|
Operator: pb.NodeOperator{
|
|
|
|
Email: dbNode.Email,
|
|
|
|
Wallet: dbNode.Wallet,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return nodeStats
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateRatioVars(newStatus bool, successCount, totalCount int64) (int64, int64, float64) {
|
|
|
|
totalCount++
|
|
|
|
if newStatus {
|
|
|
|
successCount++
|
|
|
|
}
|
|
|
|
newRatio := float64(successCount) / float64(totalCount)
|
|
|
|
return successCount, totalCount, newRatio
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkRatioVars(successCount, totalCount int64) (ratio float64, err error) {
|
|
|
|
if successCount < 0 {
|
|
|
|
return 0, errs.New("success count less than 0")
|
|
|
|
}
|
|
|
|
if totalCount < 0 {
|
|
|
|
return 0, errs.New("total count less than 0")
|
|
|
|
}
|
|
|
|
if successCount > totalCount {
|
|
|
|
return 0, errs.New("success count greater than total count")
|
|
|
|
}
|
|
|
|
if totalCount == 0 {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
ratio = float64(successCount) / float64(totalCount)
|
|
|
|
return ratio, nil
|
|
|
|
}
|