routed.go 3.55 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
2
3
4
5
6
package routedhost

import (
	"fmt"
	"time"

Jeromy's avatar
Jeromy committed
7
	lgbl "github.com/ipfs/go-libp2p/loggables"
Jeromy's avatar
Jeromy committed
8
9
10
	ma "gx/QmVUi2ncqnU48zsPgR1rQosDGwY3SSZ1Ndp33j33YjXdsj/go-multiaddr"
	context "gx/QmacZi9WygGK7Me8mH53pypyscHzU386aUZXpr28GZgUct/context"
	logging "gx/QmfZZB1aVXWA4kaR5R4e9NifERT366TTCSagkfhmAbYLsu/go-log"
11

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
12
	host "github.com/ipfs/go-libp2p/p2p/host"
Jeromy's avatar
Jeromy committed
13
	metrics "github.com/ipfs/go-libp2p/p2p/metrics"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
14
15
16
	inet "github.com/ipfs/go-libp2p/p2p/net"
	peer "github.com/ipfs/go-libp2p/p2p/peer"
	protocol "github.com/ipfs/go-libp2p/p2p/protocol"
Jeromy's avatar
Jeromy committed
17

Jeromy's avatar
Jeromy committed
18
	msmux "gx/QmdrbcnPVM2FnZQQM7p2GU91XhpuyYyd1tzPouEyh1phyD/go-multistream"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
19
20
)

Jeromy's avatar
Jeromy committed
21
var log = logging.Logger("github.com/ipfs/go-libp2p/p2p/host/routed")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
22
23
24
25
26
27
28
29
30
31

// AddressTTL is the expiry time for our addresses.
// We expire them quickly.
const AddressTTL = time.Second * 10

// RoutedHost is a p2p Host that includes a routing system.
// This allows the Host to find the addresses for peers when
// it does not have them.
type RoutedHost struct {
	host  host.Host // embedded other host.
Jeromy's avatar
Jeromy committed
32
33
34
35
36
	route Routing
}

type Routing interface {
	FindPeer(context.Context, peer.ID) (peer.PeerInfo, error)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
37
38
}

Jeromy's avatar
Jeromy committed
39
func Wrap(h host.Host, r Routing) *RoutedHost {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
	return &RoutedHost{h, r}
}

// Connect ensures there is a connection between this host and the peer with
// given peer.ID. See (host.Host).Connect for more information.
//
// RoutedHost's Connect differs in that if the host has no addresses for a
// given peer, it will use its routing system to try to find some.
func (rh *RoutedHost) Connect(ctx context.Context, pi peer.PeerInfo) error {
	// first, check if we're already connected.
	if len(rh.Network().ConnsToPeer(pi.ID)) > 0 {
		return nil
	}

	// if we were given some addresses, keep + use them.
	if len(pi.Addrs) > 0 {
		rh.Peerstore().AddAddrs(pi.ID, pi.Addrs, peer.TempAddrTTL)
	}

	// Check if we have some addresses in our recent memory.
	addrs := rh.Peerstore().Addrs(pi.ID)
	if len(addrs) < 1 {

		// no addrs? find some with the routing system.
		pi2, err := rh.route.FindPeer(ctx, pi.ID)
		if err != nil {
			return err // couldnt find any :(
		}
		if pi2.ID != pi.ID {
			err = fmt.Errorf("routing failure: provided addrs for different peer")
			logRoutingErrDifferentPeers(ctx, pi.ID, pi2.ID, err)
			return err
		}
		addrs = pi2.Addrs
	}

	// if we're here, we got some addrs. let's use our wrapped host to connect.
	pi.Addrs = addrs
	return rh.host.Connect(ctx, pi)
}

func logRoutingErrDifferentPeers(ctx context.Context, wanted, got peer.ID, err error) {
	lm := make(lgbl.DeferredMap)
	lm["error"] = err
	lm["wantedPeer"] = func() interface{} { return wanted.Pretty() }
	lm["gotPeer"] = func() interface{} { return got.Pretty() }
	log.Event(ctx, "routingError", lm)
}

func (rh *RoutedHost) ID() peer.ID {
	return rh.host.ID()
}
Jeromy's avatar
Jeromy committed
92

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
93
94
95
func (rh *RoutedHost) Peerstore() peer.Peerstore {
	return rh.host.Peerstore()
}
Jeromy's avatar
Jeromy committed
96

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97
98
99
func (rh *RoutedHost) Addrs() []ma.Multiaddr {
	return rh.host.Addrs()
}
Jeromy's avatar
Jeromy committed
100

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
101
102
103
func (rh *RoutedHost) Network() inet.Network {
	return rh.host.Network()
}
Jeromy's avatar
Jeromy committed
104

Jeromy's avatar
Jeromy committed
105
func (rh *RoutedHost) Mux() *msmux.MultistreamMuxer {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
106
107
	return rh.host.Mux()
}
Jeromy's avatar
Jeromy committed
108

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
109
110
111
func (rh *RoutedHost) SetStreamHandler(pid protocol.ID, handler inet.StreamHandler) {
	rh.host.SetStreamHandler(pid, handler)
}
Jeromy's avatar
Jeromy committed
112
113
114
115
116

func (rh *RoutedHost) RemoveStreamHandler(pid protocol.ID) {
	rh.host.RemoveStreamHandler(pid)
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
117
118
119
120
121
122
123
func (rh *RoutedHost) NewStream(pid protocol.ID, p peer.ID) (inet.Stream, error) {
	return rh.host.NewStream(pid, p)
}
func (rh *RoutedHost) Close() error {
	// no need to close IpfsRouting. we dont own it.
	return rh.host.Close()
}
Jeromy's avatar
Jeromy committed
124
125
126
127

func (rh *RoutedHost) GetBandwidthReporter() metrics.Reporter {
	return rh.host.GetBandwidthReporter()
}