package sync import ( "context" "fmt" "time" libp2pcore "github.com/libp2p/go-libp2p-core" "github.com/libp2p/go-libp2p-core/peer" "github.com/prysmaticlabs/prysm/beacon-chain/p2p" "github.com/sirupsen/logrus" ) const ( codeClientShutdown uint64 = iota codeWrongNetwork codeGenericError ) var goodByes = map[uint64]string{ codeClientShutdown: "client shutdown", codeWrongNetwork: "irrelevant network", codeGenericError: "fault/error", } // goodbyeRPCHandler reads the incoming goodbye rpc message from the peer. func (r *Service) goodbyeRPCHandler(ctx context.Context, msg interface{}, stream libp2pcore.Stream) error { defer func() { if err := stream.Close(); err != nil { log.WithError(err).Error("Failed to close stream") } }() ctx, cancel := context.WithTimeout(ctx, 5*time.Second) defer cancel() setRPCStreamDeadlines(stream) m, ok := msg.(*uint64) if !ok { return fmt.Errorf("wrong message type for goodbye, got %T, wanted *uint64", msg) } log := log.WithField("Reason", goodbyeMessage(*m)) log.WithField("peer", stream.Conn().RemotePeer()).Debug("Peer has sent a goodbye message") // closes all streams with the peer return r.p2p.Disconnect(stream.Conn().RemotePeer()) } func (r *Service) sendGoodByeAndDisconnect(ctx context.Context, code uint64, id peer.ID) error { if err := r.sendGoodByeMessage(ctx, code, id); err != nil { log.WithFields(logrus.Fields{ "error": err, "peer": id, }).Debug("Could not send goodbye message to peer") } // Add a short delay to allow the stream to flush before closing the connection. // There is still a chance that the peer won't receive the message. time.Sleep(50 * time.Millisecond) if err := r.p2p.Disconnect(id); err != nil { return err } return nil } func (r *Service) sendGoodByeMessage(ctx context.Context, code uint64, id peer.ID) error { ctx, cancel := context.WithTimeout(ctx, 10*time.Second) defer cancel() stream, err := r.p2p.Send(ctx, &code, p2p.RPCGoodByeTopic, id) if err != nil { return err } log := log.WithField("Reason", goodbyeMessage(code)) log.WithField("peer", stream.Conn().RemotePeer()).Debug("Sending Goodbye message to peer") return nil } // sends a goodbye message for a generic error func (r *Service) sendGenericGoodbyeMessage(ctx context.Context, id peer.ID) error { return r.sendGoodByeMessage(ctx, codeGenericError, id) } func goodbyeMessage(num uint64) string { reason, ok := goodByes[num] if ok { return reason } return fmt.Sprintf("unknown goodbye value of %d Received", num) }