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" ma "github.com/multiformats/go-multiaddr" ) // Error wraps errors signalled by AutoNAT services type Error struct { 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 } return &client{h: h, addrFunc: addrFunc} } type client struct { h host.Host addrFunc AddrFunc } 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() r := protoio.NewDelimitedReader(s, network.MessageSizeMax) w := protoio.NewDelimitedWriter(s) req := newDialMessage(peer.AddrInfo{ID: c.h.ID(), Addrs: c.addrFunc()}) 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()} } } func (e Error) Error() string { 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 { 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 { 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) 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) return ok && ae.IsDialRefused() }