2019-02-06 12:37:17 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package kademlia
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync/atomic"
|
|
|
|
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"storj.io/storj/pkg/pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
// EndpointError defines errors class for Endpoint
|
|
|
|
var EndpointError = errs.Class("kademlia endpoint error")
|
|
|
|
|
|
|
|
// Endpoint implements the kademlia Endpoints
|
|
|
|
type Endpoint struct {
|
2019-03-22 20:06:57 +00:00
|
|
|
log *zap.Logger
|
|
|
|
service *Kademlia
|
|
|
|
routingTable *RoutingTable
|
|
|
|
connected int32
|
2019-02-06 12:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewEndpoint returns a new kademlia endpoint
|
2019-03-22 20:06:57 +00:00
|
|
|
func NewEndpoint(log *zap.Logger, service *Kademlia, routingTable *RoutingTable) *Endpoint {
|
2019-02-06 12:37:17 +00:00
|
|
|
return &Endpoint{
|
2019-03-22 20:06:57 +00:00
|
|
|
service: service,
|
|
|
|
routingTable: routingTable,
|
|
|
|
log: log,
|
2019-02-06 12:37:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query is a node to node communication query
|
2019-06-04 12:36:27 +01:00
|
|
|
func (endpoint *Endpoint) Query(ctx context.Context, req *pb.QueryRequest) (_ *pb.QueryResponse, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
2019-03-22 13:27:59 +00:00
|
|
|
endpoint.service.Queried()
|
2019-03-19 18:30:27 +00:00
|
|
|
|
2019-02-06 12:37:17 +00:00
|
|
|
if req.GetPingback() {
|
2019-03-22 20:06:57 +00:00
|
|
|
endpoint.pingback(ctx, req.Sender)
|
2019-02-06 12:37:17 +00:00
|
|
|
}
|
|
|
|
|
2019-06-13 15:51:50 +01:00
|
|
|
nodes, err := endpoint.routingTable.FindNear(ctx, req.Target.Id, int(req.Limit))
|
2019-02-06 12:37:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return &pb.QueryResponse{}, EndpointError.New("could not find near endpoint: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &pb.QueryResponse{Sender: req.Sender, Response: nodes}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// pingback implements pingback for queries
|
|
|
|
func (endpoint *Endpoint) pingback(ctx context.Context, target *pb.Node) {
|
2019-06-04 12:36:27 +01:00
|
|
|
var err error
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
_, err = endpoint.service.Ping(ctx, *target)
|
2019-02-06 12:37:17 +00:00
|
|
|
if err != nil {
|
2019-06-18 00:37:44 +01:00
|
|
|
endpoint.log.Debug("connection to node failed", zap.Error(err), zap.Stringer("nodeID", target.Id))
|
2019-06-13 15:51:50 +01:00
|
|
|
err = endpoint.routingTable.ConnectionFailed(ctx, target)
|
2019-02-06 12:37:17 +00:00
|
|
|
if err != nil {
|
|
|
|
endpoint.log.Error("could not respond to connection failed", zap.Error(err))
|
|
|
|
}
|
|
|
|
} else {
|
2019-06-13 15:51:50 +01:00
|
|
|
err = endpoint.routingTable.ConnectionSuccess(ctx, target)
|
2019-02-06 12:37:17 +00:00
|
|
|
if err != nil {
|
|
|
|
endpoint.log.Error("could not respond to connection success", zap.Error(err))
|
|
|
|
} else {
|
|
|
|
count := atomic.AddInt32(&endpoint.connected, 1)
|
|
|
|
if count == 1 {
|
|
|
|
endpoint.log.Sugar().Debugf("Successfully connected with %s", target.Address.Address)
|
|
|
|
} else if count%100 == 0 {
|
|
|
|
endpoint.log.Sugar().Debugf("Successfully connected with %s %dx times", target.Address.Address, count)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ping provides an easy way to verify a node is online and accepting requests
|
2019-06-04 12:36:27 +01:00
|
|
|
func (endpoint *Endpoint) Ping(ctx context.Context, req *pb.PingRequest) (_ *pb.PingResponse, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
2019-03-22 13:27:59 +00:00
|
|
|
endpoint.service.Pinged()
|
2019-02-06 12:37:17 +00:00
|
|
|
return &pb.PingResponse{}, nil
|
|
|
|
}
|
2019-02-25 18:41:51 +00:00
|
|
|
|
|
|
|
// RequestInfo returns the node info
|
2019-06-04 12:36:27 +01:00
|
|
|
func (endpoint *Endpoint) RequestInfo(ctx context.Context, req *pb.InfoRequest) (_ *pb.InfoResponse, err error) {
|
|
|
|
defer mon.Task()(&ctx)(&err)
|
2019-02-25 18:41:51 +00:00
|
|
|
self := endpoint.service.Local()
|
|
|
|
|
|
|
|
return &pb.InfoResponse{
|
2019-04-22 10:07:50 +01:00
|
|
|
Type: self.Type,
|
|
|
|
Operator: &self.Operator,
|
|
|
|
Capacity: &self.Capacity,
|
|
|
|
Version: &self.Version,
|
2019-02-25 18:41:51 +00:00
|
|
|
}, nil
|
|
|
|
}
|