2021-05-30 02:53:30 +00:00
|
|
|
package remote
|
2021-01-15 10:58:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-05-30 02:53:30 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
2021-01-15 10:58:04 +00:00
|
|
|
|
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
2021-07-01 21:31:14 +00:00
|
|
|
proto_sentry "github.com/ledgerwatch/erigon-lib/gointerfaces/sentry"
|
2021-05-30 02:53:30 +00:00
|
|
|
"github.com/ledgerwatch/erigon/eth/protocols/eth"
|
2021-05-20 18:25:53 +00:00
|
|
|
"github.com/ledgerwatch/erigon/log"
|
2021-01-15 10:58:04 +00:00
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
2021-05-30 02:53:30 +00:00
|
|
|
type SentryClient interface {
|
|
|
|
proto_sentry.SentryClient
|
|
|
|
Protocol() uint
|
|
|
|
Ready() bool
|
|
|
|
MarkDisconnected()
|
|
|
|
}
|
|
|
|
|
|
|
|
type SentryClientRemote struct {
|
|
|
|
proto_sentry.SentryClient
|
|
|
|
sync.RWMutex
|
|
|
|
protocol uint
|
|
|
|
ready bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSentryClientRemote - app code must use this class
|
|
|
|
// to avoid concurrency - it accepts protocol (which received async by SetStatus) in constructor,
|
|
|
|
// means app can't use client which protocol unknown yet
|
|
|
|
func NewSentryClientRemote(client proto_sentry.SentryClient) *SentryClientRemote {
|
|
|
|
return &SentryClientRemote{SentryClient: client}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryClientRemote) Protocol() uint {
|
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
|
|
|
return c.protocol
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryClientRemote) Ready() bool {
|
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
|
|
|
return c.ready
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryClientRemote) MarkDisconnected() {
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
c.ready = false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryClientRemote) SetStatus(ctx context.Context, in *proto_sentry.StatusData, opts ...grpc.CallOption) (*proto_sentry.SetStatusReply, error) {
|
|
|
|
reply, err := c.SentryClient.SetStatus(ctx, in, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
switch reply.Protocol {
|
|
|
|
case proto_sentry.Protocol_ETH65:
|
|
|
|
c.protocol = eth.ETH65
|
|
|
|
case proto_sentry.Protocol_ETH66:
|
|
|
|
c.protocol = eth.ETH66
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unexpected protocol: %d", reply.Protocol)
|
|
|
|
}
|
|
|
|
c.ready = true
|
|
|
|
return reply, nil
|
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientRemote) Messages(ctx context.Context, in *proto_sentry.MessagesRequest, opts ...grpc.CallOption) (proto_sentry.Sentry_MessagesClient, error) {
|
|
|
|
in.Ids = filterIds(in.Ids, c.Protocol())
|
|
|
|
return c.SentryClient.Messages(ctx, in, opts...)
|
|
|
|
}
|
|
|
|
|
2021-06-18 13:34:15 +00:00
|
|
|
func (c *SentryClientRemote) PeerCount(ctx context.Context, in *proto_sentry.PeerCountRequest, opts ...grpc.CallOption) (*proto_sentry.PeerCountReply, error) {
|
|
|
|
return c.SentryClient.PeerCount(ctx, in)
|
|
|
|
}
|
|
|
|
|
2021-01-15 10:58:04 +00:00
|
|
|
// Contains implementations of SentryServer, SentryClient, ControlClient, and ControlServer, that may be linked to each other
|
|
|
|
// SentryClient is linked directly to the SentryServer, for example, so any function call on the instance of the SentryClient
|
|
|
|
// cause invocations directly on the corresponding instance of the SentryServer. However, the link between SentryClient and
|
|
|
|
// SentryServer is established outside of the constructor. This means that the reference from the SentyClient to the corresponding
|
|
|
|
// SentryServer can be injected at any point in time.
|
|
|
|
|
|
|
|
// SentryClientDirect implements SentryClient interface by connecting the instance of the client directly with the corresponding
|
|
|
|
// instance of SentryServer
|
|
|
|
type SentryClientDirect struct {
|
2021-05-30 02:53:30 +00:00
|
|
|
protocol uint
|
|
|
|
server proto_sentry.SentryServer
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-05-30 02:53:30 +00:00
|
|
|
func NewSentryClientDirect(protocol uint, sentryServer proto_sentry.SentryServer) *SentryClientDirect {
|
|
|
|
return &SentryClientDirect{protocol: protocol, server: sentryServer}
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) Protocol() uint { return c.protocol }
|
|
|
|
func (c *SentryClientDirect) Ready() bool { return true }
|
|
|
|
func (c *SentryClientDirect) MarkDisconnected() {}
|
2021-05-30 02:53:30 +00:00
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) PenalizePeer(ctx context.Context, in *proto_sentry.PenalizePeerRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
|
|
return c.server.PenalizePeer(ctx, in)
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) PeerMinBlock(ctx context.Context, in *proto_sentry.PeerMinBlockRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
|
|
return c.server.PeerMinBlock(ctx, in)
|
2021-02-15 18:54:45 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) SendMessageByMinBlock(ctx context.Context, in *proto_sentry.SendMessageByMinBlockRequest, opts ...grpc.CallOption) (*proto_sentry.SentPeers, error) {
|
|
|
|
return c.server.SendMessageByMinBlock(ctx, in)
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) SendMessageById(ctx context.Context, in *proto_sentry.SendMessageByIdRequest, opts ...grpc.CallOption) (*proto_sentry.SentPeers, error) {
|
|
|
|
return c.server.SendMessageById(ctx, in)
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) SendMessageToRandomPeers(ctx context.Context, in *proto_sentry.SendMessageToRandomPeersRequest, opts ...grpc.CallOption) (*proto_sentry.SentPeers, error) {
|
|
|
|
return c.server.SendMessageToRandomPeers(ctx, in)
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) SendMessageToAll(ctx context.Context, in *proto_sentry.OutboundMessageData, opts ...grpc.CallOption) (*proto_sentry.SentPeers, error) {
|
|
|
|
return c.server.SendMessageToAll(ctx, in)
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) SetStatus(ctx context.Context, in *proto_sentry.StatusData, opts ...grpc.CallOption) (*proto_sentry.SetStatusReply, error) {
|
|
|
|
return c.server.SetStatus(ctx, in)
|
2021-02-15 18:54:45 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 13:34:15 +00:00
|
|
|
func (c *SentryClientDirect) PeerCount(ctx context.Context, in *proto_sentry.PeerCountRequest, opts ...grpc.CallOption) (*proto_sentry.PeerCountReply, error) {
|
|
|
|
return c.server.PeerCount(ctx, in)
|
|
|
|
}
|
|
|
|
|
2021-02-15 18:54:45 +00:00
|
|
|
// implements proto_sentry.Sentry_ReceiveMessagesServer
|
|
|
|
type SentryReceiveServerDirect struct {
|
|
|
|
messageCh chan *proto_sentry.InboundMessage
|
2021-05-29 09:56:37 +00:00
|
|
|
ctx context.Context
|
2021-02-15 18:54:45 +00:00
|
|
|
grpc.ServerStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SentryReceiveServerDirect) Send(m *proto_sentry.InboundMessage) error {
|
|
|
|
s.messageCh <- m
|
|
|
|
return nil
|
|
|
|
}
|
2021-05-29 09:56:37 +00:00
|
|
|
func (s *SentryReceiveServerDirect) Context() context.Context {
|
|
|
|
return s.ctx
|
|
|
|
}
|
2021-02-15 18:54:45 +00:00
|
|
|
|
|
|
|
type SentryReceiveClientDirect struct {
|
|
|
|
messageCh chan *proto_sentry.InboundMessage
|
2021-05-29 09:56:37 +00:00
|
|
|
ctx context.Context
|
2021-02-15 18:54:45 +00:00
|
|
|
grpc.ClientStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryReceiveClientDirect) Recv() (*proto_sentry.InboundMessage, error) {
|
|
|
|
m := <-c.messageCh
|
|
|
|
return m, nil
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
2021-05-29 09:56:37 +00:00
|
|
|
func (c *SentryReceiveClientDirect) Context() context.Context {
|
|
|
|
return c.ctx
|
|
|
|
}
|
2021-01-15 10:58:04 +00:00
|
|
|
|
2021-07-11 07:01:16 +00:00
|
|
|
// implements proto_sentry.Sentry_ReceivePeersServer
|
|
|
|
type SentryReceivePeersServerDirect struct {
|
|
|
|
ch chan *proto_sentry.PeersReply
|
|
|
|
ctx context.Context
|
|
|
|
grpc.ServerStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *SentryReceivePeersServerDirect) Send(m *proto_sentry.PeersReply) error {
|
|
|
|
s.ch <- m
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (s *SentryReceivePeersServerDirect) Context() context.Context {
|
|
|
|
return s.ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
type SentryReceivePeersClientDirect struct {
|
|
|
|
ch chan *proto_sentry.PeersReply
|
|
|
|
ctx context.Context
|
|
|
|
grpc.ClientStream
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *SentryReceivePeersClientDirect) Recv() (*proto_sentry.PeersReply, error) {
|
|
|
|
m := <-c.ch
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
func (c *SentryReceivePeersClientDirect) Context() context.Context {
|
|
|
|
return c.ctx
|
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func (c *SentryClientDirect) Messages(ctx context.Context, in *proto_sentry.MessagesRequest, opts ...grpc.CallOption) (proto_sentry.Sentry_MessagesClient, error) {
|
|
|
|
in.Ids = filterIds(in.Ids, c.Protocol())
|
2021-02-15 18:54:45 +00:00
|
|
|
messageCh := make(chan *proto_sentry.InboundMessage, 16384)
|
2021-05-29 09:56:37 +00:00
|
|
|
streamServer := &SentryReceiveServerDirect{messageCh: messageCh, ctx: ctx}
|
2021-02-24 14:51:50 +00:00
|
|
|
go func() {
|
2021-06-01 10:41:10 +00:00
|
|
|
if err := c.server.Messages(in, streamServer); err != nil {
|
2021-02-24 14:51:50 +00:00
|
|
|
log.Error("ReceiveMessages returned", "error", err)
|
|
|
|
}
|
|
|
|
close(messageCh)
|
|
|
|
}()
|
2021-05-29 09:56:37 +00:00
|
|
|
return &SentryReceiveClientDirect{messageCh: messageCh, ctx: ctx}, nil
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|
|
|
|
|
2021-07-11 07:01:16 +00:00
|
|
|
func (c *SentryClientDirect) Peers(ctx context.Context, in *proto_sentry.PeersRequest, opts ...grpc.CallOption) (proto_sentry.Sentry_PeersClient, error) {
|
|
|
|
messageCh := make(chan *proto_sentry.PeersReply, 16384)
|
|
|
|
streamServer := &SentryReceivePeersServerDirect{ch: messageCh, ctx: ctx}
|
|
|
|
go func() {
|
|
|
|
if err := c.server.Peers(in, streamServer); err != nil {
|
|
|
|
log.Error("ReceiveMessages returned", "error", err)
|
|
|
|
}
|
|
|
|
close(messageCh)
|
|
|
|
}()
|
|
|
|
return &SentryReceivePeersClientDirect{ch: messageCh, ctx: ctx}, nil
|
|
|
|
}
|
|
|
|
|
2021-06-01 10:41:10 +00:00
|
|
|
func filterIds(in []proto_sentry.MessageId, protocol uint) (filtered []proto_sentry.MessageId) {
|
|
|
|
for _, id := range in {
|
|
|
|
if _, ok := eth.FromProto[protocol][id]; ok {
|
|
|
|
filtered = append(filtered, id)
|
2021-02-24 14:51:50 +00:00
|
|
|
}
|
2021-06-01 10:41:10 +00:00
|
|
|
}
|
|
|
|
return filtered
|
2021-01-15 10:58:04 +00:00
|
|
|
}
|