2019-01-10 13:13:27 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package storagenode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
|
|
|
"storj.io/storj/pkg/identity"
|
|
|
|
"storj.io/storj/pkg/kademlia"
|
|
|
|
"storj.io/storj/pkg/node"
|
|
|
|
"storj.io/storj/pkg/pb"
|
2019-01-11 11:26:39 +00:00
|
|
|
pstore "storj.io/storj/pkg/piecestore"
|
2019-01-10 13:13:27 +00:00
|
|
|
"storj.io/storj/pkg/piecestore/psserver"
|
2019-01-23 10:39:03 +00:00
|
|
|
"storj.io/storj/pkg/piecestore/psserver/agreementsender"
|
2019-01-10 13:13:27 +00:00
|
|
|
"storj.io/storj/pkg/piecestore/psserver/psdb"
|
|
|
|
"storj.io/storj/pkg/server"
|
|
|
|
"storj.io/storj/pkg/storj"
|
|
|
|
"storj.io/storj/storage"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DB is the master database for Storage Node
|
|
|
|
type DB interface {
|
|
|
|
// TODO: use better interfaces
|
2019-01-11 11:26:39 +00:00
|
|
|
Storage() *pstore.Storage
|
2019-01-10 13:13:27 +00:00
|
|
|
PSDB() *psdb.DB
|
|
|
|
RoutingTable() (kdb, ndb storage.KeyValueStore)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config is all the configuration parameters for a Storage Node
|
|
|
|
type Config struct {
|
2019-01-23 10:39:03 +00:00
|
|
|
Server server.Config
|
|
|
|
Kademlia kademlia.Config
|
|
|
|
Storage psserver.Config
|
2019-01-10 13:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify verifies whether configuration is consistent and acceptable.
|
2019-01-23 10:39:03 +00:00
|
|
|
func (config *Config) Verify(log *zap.Logger) error {
|
|
|
|
return config.Kademlia.Verify(log)
|
2019-01-10 13:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Peer is the representation of a Storage Node.
|
|
|
|
type Peer struct {
|
|
|
|
// core dependencies
|
|
|
|
Log *zap.Logger
|
|
|
|
Identity *identity.FullIdentity
|
|
|
|
DB DB
|
|
|
|
|
2019-01-23 10:39:03 +00:00
|
|
|
// TODO: add transport
|
|
|
|
|
2019-01-10 13:13:27 +00:00
|
|
|
// servers
|
|
|
|
Public struct {
|
|
|
|
Listener net.Listener
|
|
|
|
Server *server.Server
|
|
|
|
}
|
|
|
|
|
|
|
|
// services and endpoints
|
2019-01-23 10:39:03 +00:00
|
|
|
// TODO: similar grouping to satellite.Peer
|
|
|
|
RoutingTable *kademlia.RoutingTable
|
|
|
|
Kademlia *kademlia.Kademlia
|
|
|
|
KademliaEndpoint *node.Server
|
|
|
|
KademliaInspector *kademlia.Inspector
|
2019-01-10 13:13:27 +00:00
|
|
|
|
|
|
|
Piecestore *psserver.Server // TODO: separate into endpoint and service
|
2019-01-23 10:39:03 +00:00
|
|
|
Monitor *psserver.Monitor
|
|
|
|
|
|
|
|
Agreements struct {
|
|
|
|
Sender *agreementsender.AgreementSender
|
|
|
|
}
|
2019-01-10 13:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a new Storage Node.
|
|
|
|
func New(log *zap.Logger, full *identity.FullIdentity, db DB, config Config) (*Peer, error) {
|
|
|
|
peer := &Peer{
|
|
|
|
Log: log,
|
|
|
|
Identity: full,
|
|
|
|
DB: db,
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
{ // setup listener and server
|
2019-01-23 10:39:03 +00:00
|
|
|
peer.Public.Listener, err = net.Listen("tcp", config.Server.Address)
|
2019-01-10 13:13:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
|
|
|
|
publicConfig := server.Config{Address: peer.Public.Listener.Addr().String()}
|
|
|
|
publicOptions, err := server.NewOptions(peer.Identity, publicConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
|
|
|
|
peer.Public.Server, err = server.NewServer(publicOptions, peer.Public.Listener, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // setup kademlia
|
|
|
|
config := config.Kademlia
|
|
|
|
// TODO: move this setup logic into kademlia package
|
|
|
|
if config.ExternalAddress == "" {
|
|
|
|
config.ExternalAddress = peer.Public.Server.Addr().String()
|
|
|
|
}
|
|
|
|
|
|
|
|
self := pb.Node{
|
|
|
|
Id: peer.ID(),
|
|
|
|
Type: pb.NodeType_STORAGE,
|
|
|
|
Address: &pb.NodeAddress{
|
2019-01-23 10:39:03 +00:00
|
|
|
Transport: pb.NodeTransport_TCP_TLS_GRPC,
|
|
|
|
Address: config.ExternalAddress,
|
2019-01-10 13:13:27 +00:00
|
|
|
},
|
|
|
|
Metadata: &pb.NodeMetadata{
|
|
|
|
Email: config.Operator.Email,
|
|
|
|
Wallet: config.Operator.Wallet,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-01-23 10:39:03 +00:00
|
|
|
// TODO(coyle): I'm thinking we just remove this function and grab from the config.
|
|
|
|
in, err := kademlia.GetIntroNode(config.BootstrapAddr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
|
2019-01-10 13:13:27 +00:00
|
|
|
kdb, ndb := peer.DB.RoutingTable()
|
|
|
|
peer.RoutingTable, err = kademlia.NewRoutingTable(peer.Log.Named("routing"), self, kdb, ndb)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: reduce number of arguments
|
2019-01-23 10:39:03 +00:00
|
|
|
peer.Kademlia, err = kademlia.NewWith(peer.Log.Named("kademlia"), self, []pb.Node{*in}, peer.Identity, config.Alpha, peer.RoutingTable)
|
2019-01-10 13:13:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
|
|
|
|
|
|
|
peer.KademliaEndpoint = node.NewServer(peer.Log.Named("kademlia:endpoint"), peer.Kademlia)
|
|
|
|
pb.RegisterNodesServer(peer.Public.Server.GRPC(), peer.KademliaEndpoint)
|
2019-01-23 10:39:03 +00:00
|
|
|
|
|
|
|
peer.KademliaInspector = kademlia.NewInspector(peer.Kademlia, peer.Identity)
|
|
|
|
pb.RegisterKadInspectorServer(peer.Public.Server.GRPC(), peer.KademliaInspector)
|
2019-01-10 13:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{ // setup piecestore
|
|
|
|
// TODO: move this setup logic into psstore package
|
|
|
|
config := config.Storage
|
|
|
|
|
|
|
|
// TODO: psserver shouldn't need the private key
|
2019-01-23 10:39:03 +00:00
|
|
|
peer.Piecestore, err = psserver.NewEndpoint(peer.Log.Named("piecestore"), config, peer.DB.Storage(), peer.DB.PSDB(), peer.Identity.Key, peer.Kademlia)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errs.Combine(err, peer.Close())
|
|
|
|
}
|
2019-01-10 13:13:27 +00:00
|
|
|
pb.RegisterPieceStoreRoutesServer(peer.Public.Server.GRPC(), peer.Piecestore)
|
2019-01-23 10:39:03 +00:00
|
|
|
|
|
|
|
// TODO: organize better
|
|
|
|
peer.Monitor = psserver.NewMonitor(peer.Log.Named("piecestore:monitor"), config.KBucketRefreshInterval, peer.RoutingTable, peer.Piecestore)
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // agreements
|
|
|
|
config := config.Storage // TODO: separate config
|
|
|
|
peer.Agreements.Sender = agreementsender.New(
|
|
|
|
peer.Log.Named("agreements"),
|
|
|
|
peer.DB.PSDB(), peer.Identity, peer.Kademlia,
|
|
|
|
config.AgreementSenderCheckInterval,
|
|
|
|
)
|
2019-01-10 13:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return peer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run runs storage node until it's either closed or it errors.
|
|
|
|
func (peer *Peer) Run(ctx context.Context) error {
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
var group errgroup.Group
|
|
|
|
group.Go(func() error {
|
2019-01-23 10:39:03 +00:00
|
|
|
return ignoreCancel(peer.Kademlia.Bootstrap(ctx))
|
2019-01-10 13:13:27 +00:00
|
|
|
})
|
|
|
|
group.Go(func() error {
|
2019-01-23 10:39:03 +00:00
|
|
|
return ignoreCancel(peer.Kademlia.RunRefresh(ctx))
|
2019-01-10 13:13:27 +00:00
|
|
|
})
|
|
|
|
group.Go(func() error {
|
2019-01-23 10:39:03 +00:00
|
|
|
return ignoreCancel(peer.Agreements.Sender.Run(ctx))
|
|
|
|
})
|
|
|
|
group.Go(func() error {
|
|
|
|
return ignoreCancel(peer.Monitor.Run(ctx))
|
|
|
|
})
|
|
|
|
group.Go(func() error {
|
|
|
|
// TODO: move the message into Server instead
|
|
|
|
peer.Log.Sugar().Infof("Node %s started on %s", peer.Identity.ID, peer.Public.Server.Addr().String())
|
|
|
|
return ignoreCancel(peer.Public.Server.Run(ctx))
|
2019-01-10 13:13:27 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return group.Wait()
|
|
|
|
}
|
|
|
|
|
2019-01-23 10:39:03 +00:00
|
|
|
func ignoreCancel(err error) error {
|
|
|
|
if err == context.Canceled || err == grpc.ErrServerStopped {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-01-10 13:13:27 +00:00
|
|
|
// Close closes all the resources.
|
|
|
|
func (peer *Peer) Close() error {
|
|
|
|
var errlist errs.Group
|
|
|
|
|
|
|
|
// TODO: ensure that Close can be called on nil-s that way this code won't need the checks.
|
|
|
|
|
|
|
|
// close services in reverse initialization order
|
|
|
|
if peer.Piecestore != nil {
|
|
|
|
errlist.Add(peer.Piecestore.Close())
|
|
|
|
}
|
|
|
|
if peer.Kademlia != nil {
|
|
|
|
errlist.Add(peer.Kademlia.Close())
|
|
|
|
}
|
|
|
|
if peer.RoutingTable != nil {
|
|
|
|
errlist.Add(peer.RoutingTable.SelfClose())
|
|
|
|
}
|
|
|
|
|
|
|
|
// close servers
|
|
|
|
if peer.Public.Server != nil {
|
|
|
|
errlist.Add(peer.Public.Server.Close())
|
|
|
|
} else {
|
|
|
|
// peer.Public.Server automatically closes listener
|
|
|
|
if peer.Public.Listener != nil {
|
|
|
|
errlist.Add(peer.Public.Listener.Close())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return errlist.Err()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the peer ID.
|
|
|
|
func (peer *Peer) ID() storj.NodeID { return peer.Identity.ID }
|
|
|
|
|
|
|
|
// Local returns the peer local node info.
|
|
|
|
func (peer *Peer) Local() pb.Node { return peer.RoutingTable.Local() }
|
|
|
|
|
|
|
|
// Addr returns the public address.
|
|
|
|
func (peer *Peer) Addr() string { return peer.Public.Server.Addr().String() }
|