status-go/vendor/github.com/libp2p/go-libp2p-autonat/client.go

103 lines
2.5 KiB
Go
Raw Normal View History

2019-06-09 07:24:20 +00:00
package autonat
import (
"context"
"fmt"
"github.com/libp2p/go-libp2p-core/host"
"github.com/libp2p/go-libp2p-core/network"
"github.com/libp2p/go-libp2p-core/peer"
pb "github.com/libp2p/go-libp2p-autonat/pb"
protoio "github.com/libp2p/go-msgio/protoio"
2019-06-09 07:24:20 +00:00
ma "github.com/multiformats/go-multiaddr"
)
// Error wraps errors signalled by AutoNAT services
type Error struct {
2019-06-09 07:24:20 +00:00
Status pb.Message_ResponseStatus
Text string
}
// NewAutoNATClient creates a fresh instance of an AutoNATClient
// If addrFunc is nil, h.Addrs will be used
func NewAutoNATClient(h host.Host, addrFunc AddrFunc) Client {
if addrFunc == nil {
addrFunc = h.Addrs
2019-06-09 07:24:20 +00:00
}
return &client{h: h, addrFunc: addrFunc}
2019-06-09 07:24:20 +00:00
}
type client struct {
h host.Host
addrFunc AddrFunc
2019-06-09 07:24:20 +00:00
}
func (c *client) DialBack(ctx context.Context, p peer.ID) (ma.Multiaddr, error) {
s, err := c.h.NewStream(ctx, p, AutoNATProto)
if err != nil {
return nil, err
}
// Might as well just reset the stream. Once we get to this point, we
// don't care about being nice.
defer s.Close()
2019-06-09 07:24:20 +00:00
r := protoio.NewDelimitedReader(s, network.MessageSizeMax)
w := protoio.NewDelimitedWriter(s)
2019-06-09 07:24:20 +00:00
req := newDialMessage(peer.AddrInfo{ID: c.h.ID(), Addrs: c.addrFunc()})
2019-06-09 07:24:20 +00:00
err = w.WriteMsg(req)
if err != nil {
s.Reset()
return nil, err
}
var res pb.Message
err = r.ReadMsg(&res)
if err != nil {
s.Reset()
return nil, err
}
if res.GetType() != pb.Message_DIAL_RESPONSE {
return nil, fmt.Errorf("Unexpected response: %s", res.GetType().String())
}
status := res.GetDialResponse().GetStatus()
switch status {
case pb.Message_OK:
addr := res.GetDialResponse().GetAddr()
return ma.NewMultiaddrBytes(addr)
default:
return nil, Error{Status: status, Text: res.GetDialResponse().GetStatusText()}
2019-06-09 07:24:20 +00:00
}
}
func (e Error) Error() string {
2019-06-09 07:24:20 +00:00
return fmt.Sprintf("AutoNAT error: %s (%s)", e.Text, e.Status.String())
}
// IsDialError returns true if the error was due to a dial back failure
func (e Error) IsDialError() bool {
2019-06-09 07:24:20 +00:00
return e.Status == pb.Message_E_DIAL_ERROR
}
// IsDialRefused returns true if the error was due to a refusal to dial back
func (e Error) IsDialRefused() bool {
2019-06-09 07:24:20 +00:00
return e.Status == pb.Message_E_DIAL_REFUSED
}
// IsDialError returns true if the AutoNAT peer signalled an error dialing back
func IsDialError(e error) bool {
ae, ok := e.(Error)
2019-06-09 07:24:20 +00:00
return ok && ae.IsDialError()
}
// IsDialRefused returns true if the AutoNAT peer signalled refusal to dial back
func IsDialRefused(e error) bool {
ae, ok := e.(Error)
2019-06-09 07:24:20 +00:00
return ok && ae.IsDialRefused()
}