basic_host.go 9.11 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
2
3
package basichost

import (
4
	"io"
5
	"sync"
6

Jeromy's avatar
Jeromy committed
7
	peer "github.com/ipfs/go-libp2p-peer"
Jeromy's avatar
Jeromy committed
8
	pstore "github.com/ipfs/go-libp2p-peerstore"
Jeromy's avatar
Jeromy committed
9
10
11
	logging "github.com/ipfs/go-log"
	ma "github.com/jbenet/go-multiaddr"
	goprocess "github.com/jbenet/goprocess"
12
13
14
15
16
17
	metrics "github.com/libp2p/go-libp2p/p2p/metrics"
	mstream "github.com/libp2p/go-libp2p/p2p/metrics/stream"
	inet "github.com/libp2p/go-libp2p/p2p/net"
	protocol "github.com/libp2p/go-libp2p/p2p/protocol"
	identify "github.com/libp2p/go-libp2p/p2p/protocol/identify"
	relay "github.com/libp2p/go-libp2p/p2p/protocol/relay"
Jeromy's avatar
Jeromy committed
18
	context "golang.org/x/net/context"
Jeromy's avatar
Jeromy committed
19

Jeromy's avatar
Jeromy committed
20
	msmux "github.com/whyrusleeping/go-multistream"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
21
22
)

23
var log = logging.Logger("github.com/libp2p/go-libp2p/p2p/host/basic")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
24

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
25
// Option is a type used to pass in options to the host.
26
27
28
type Option int

const (
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
29
30
31
32
33
	// NATPortMap makes the host attempt to open port-mapping in NAT devices
	// for all its listeners. Pass in this option in the constructor to
	// asynchronously a) find a gateway, b) open port mappings, c) republish
	// port mappings periodically. The NATed addresses are included in the
	// Host's Addrs() list.
34
35
36
	NATPortMap Option = iota
)

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
37
38
39
40
41
42
// BasicHost is the basic implementation of the host.Host interface. This
// particular host implementation:
//  * uses a protocol muxer to mux per-protocol streams
//  * uses an identity service to send + receive node information
//  * uses a relay service to allow hosts to relay conns for each other
//  * uses a nat service to establish NAT port mappings
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
43
44
type BasicHost struct {
	network inet.Network
Jeromy's avatar
Jeromy committed
45
	mux     *msmux.MultistreamMuxer
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
46
47
	ids     *identify.IDService
	relay   *relay.RelayService
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
48
	natmgr  *natManager
49

50
51
52
	protoPrefs map[peer.ID]map[protocol.ID]struct{}
	prefsLk    sync.Mutex

53
	proc goprocess.Process
Jeromy's avatar
Jeromy committed
54
55

	bwc metrics.Reporter
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
56
57
58
}

// New constructs and sets up a new *BasicHost with given Network
Jeromy's avatar
Jeromy committed
59
func New(net inet.Network, opts ...interface{}) *BasicHost {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
60
	h := &BasicHost{
61
62
63
64
		network:    net,
		mux:        msmux.NewMultistreamMuxer(),
		bwc:        metrics.NewBandwidthCounter(),
		protoPrefs: make(map[peer.ID]map[protocol.ID]struct{}),
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
65
66
	}

67
	h.proc = goprocess.WithTeardown(func() error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
68
69
70
71
		if h.natmgr != nil {
			h.natmgr.Close()
		}

72
73
74
		return h.Network().Close()
	})

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
75
76
	// setup host services
	h.ids = identify.NewIDService(h)
Jeromy's avatar
Jeromy committed
77
78
79
80
81
82

	muxh := h.Mux().Handle
	handle := func(s inet.Stream) {
		muxh(s)
	}
	h.relay = relay.NewRelayService(h, handle)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
83

84
	for _, o := range opts {
Jeromy's avatar
Jeromy committed
85
86
87
88
89
90
91
92
		switch o := o.(type) {
		case Option:
			switch o {
			case NATPortMap:
				h.natmgr = newNatManager(h)
			}
		case metrics.Reporter:
			h.bwc = o
93
94
95
		}
	}

Jeromy's avatar
Jeromy committed
96
97
98
	net.SetConnHandler(h.newConnHandler)
	net.SetStreamHandler(h.newStreamHandler)

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
99
100
101
102
103
104
105
106
107
	return h
}

// newConnHandler is the remote-opened conn handler for inet.Network
func (h *BasicHost) newConnHandler(c inet.Conn) {
	h.ids.IdentifyConn(c)
}

// newStreamHandler is the remote-opened stream handler for inet.Network
Jeromy's avatar
Jeromy committed
108
// TODO: this feels a bit wonky
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
109
func (h *BasicHost) newStreamHandler(s inet.Stream) {
Jeromy's avatar
Jeromy committed
110
	protoID, handle, err := h.Mux().Negotiate(s)
Jeromy's avatar
Jeromy committed
111
	if err != nil {
112
		if err == io.EOF {
113
			log.Debugf("protocol EOF: %s", s.Conn().RemotePeer())
114
		} else {
115
			log.Warning("protocol mux failed: %s", err)
116
		}
Jeromy's avatar
Jeromy committed
117
118
119
		return
	}

Jeromy's avatar
Jeromy committed
120
	logStream := mstream.WrapStream(s, protocol.ID(protoID), h.bwc)
Jeromy's avatar
Jeromy committed
121

122
123
	s.SetProtocol(protoID)
	go handle(protoID, logStream)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
124
125
126
127
128
129
130
131
}

// ID returns the (local) peer.ID associated with this Host
func (h *BasicHost) ID() peer.ID {
	return h.Network().LocalPeer()
}

// Peerstore returns the Host's repository of Peer Addresses and Keys.
Jeromy's avatar
Jeromy committed
132
func (h *BasicHost) Peerstore() pstore.Peerstore {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
133
134
135
	return h.Network().Peerstore()
}

136
// Network returns the Network interface of the Host
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
137
138
139
140
141
func (h *BasicHost) Network() inet.Network {
	return h.network
}

// Mux returns the Mux multiplexing incoming streams to protocol handlers
Jeromy's avatar
Jeromy committed
142
func (h *BasicHost) Mux() *msmux.MultistreamMuxer {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
143
	return h.mux
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
144
145
}

146
// IDService returns
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
147
148
149
150
151
152
153
154
155
func (h *BasicHost) IDService() *identify.IDService {
	return h.ids
}

// SetStreamHandler sets the protocol handler on the Host's Mux.
// This is equivalent to:
//   host.Mux().SetHandler(proto, handler)
// (Threadsafe)
func (h *BasicHost) SetStreamHandler(pid protocol.ID, handler inet.StreamHandler) {
156
157
158
159
	h.Mux().AddHandler(string(pid), func(p string, rwc io.ReadWriteCloser) error {
		is := rwc.(inet.Stream)
		is.SetProtocol(p)
		handler(is)
Jeromy's avatar
Jeromy committed
160
161
		return nil
	})
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
162
163
}

164
165
166
167
168
169
170
171
172
173
174
// SetStreamHandlerMatch sets the protocol handler on the Host's Mux
// using a matching function to do protocol comparisons
func (h *BasicHost) SetStreamHandlerMatch(pid protocol.ID, m func(string) bool, handler inet.StreamHandler) {
	h.Mux().AddHandlerWithFunc(string(pid), m, func(p string, rwc io.ReadWriteCloser) error {
		is := rwc.(inet.Stream)
		is.SetProtocol(p)
		handler(is)
		return nil
	})
}

175
// RemoveStreamHandler returns ..
Jeromy's avatar
Jeromy committed
176
func (h *BasicHost) RemoveStreamHandler(pid protocol.ID) {
Jeromy's avatar
Jeromy committed
177
	h.Mux().RemoveHandler(string(pid))
Jeromy's avatar
Jeromy committed
178
179
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
180
181
182
183
// NewStream opens a new stream to given peer p, and writes a p2p/protocol
// header with given protocol.ID. If there is no connection to p, attempts
// to create one. If ProtocolID is "", writes no header.
// (Threadsafe)
184
185
186
187
188
189
190
191
192
func (h *BasicHost) NewStream(ctx context.Context, p peer.ID, pids ...protocol.ID) (inet.Stream, error) {
	pref := h.preferredProtocol(p, pids)
	if pref != "" {
		return h.newStream(ctx, p, pref)
	}

	var lastErr error
	for _, pid := range pids {
		s, err := h.newStream(ctx, p, pid)
193
194
195
196
197
198
199
200
201
202
203
		if err != nil {
			lastErr = err
			log.Infof("NewStream to %s for %s failed: %s", p, pid, err)
			continue
		}

		_, err = s.Read(nil)
		if err != nil {
			lastErr = err
			log.Infof("NewStream to %s for %s failed (on read): %s", p, pid, err)
			continue
204
		}
205
206
207

		h.setPreferredProtocol(p, pid)
		return s, nil
208
209
210
211
212
213
214
215
216
217
218
	}

	return nil, lastErr
}

func (h *BasicHost) preferredProtocol(p peer.ID, pids []protocol.ID) protocol.ID {
	h.prefsLk.Lock()
	defer h.prefsLk.Unlock()

	prefs, ok := h.protoPrefs[p]
	if !ok {
219
220
221
222
223
224
225
226
227
228
229
		supported, err := h.Peerstore().GetProtocols(p)
		if err != nil {
			log.Warningf("error getting protocol for peer %s: %s", p, err)
			return ""
		}

		prefs = make(map[protocol.ID]struct{})
		for _, proto := range supported {
			prefs[protocol.ID(proto)] = struct{}{}
		}
		h.protoPrefs[p] = prefs
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
	}

	for _, pid := range pids {
		if _, ok := prefs[pid]; ok {
			return pid
		}
	}

	return ""
}

func (h *BasicHost) setPreferredProtocol(p peer.ID, proto protocol.ID) {
	h.prefsLk.Lock()
	defer h.prefsLk.Unlock()

	prefs, ok := h.protoPrefs[p]
	if !ok {
		prefs = make(map[protocol.ID]struct{})
		h.protoPrefs[p] = prefs
	}

	prefs[proto] = struct{}{}
}

func (h *BasicHost) newStream(ctx context.Context, p peer.ID, pid protocol.ID) (inet.Stream, error) {
255
	s, err := h.Network().NewStream(ctx, p)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
256
257
258
259
	if err != nil {
		return nil, err
	}

260
261
	s.SetProtocol(string(pid))

Jeromy's avatar
Jeromy committed
262
263
	logStream := mstream.WrapStream(s, pid, h.bwc)

Jeromy's avatar
Jeromy committed
264
265
266
267
268
	lzcon := msmux.NewMSSelect(logStream, string(pid))
	return &streamWrapper{
		Stream: logStream,
		rw:     lzcon,
	}, nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
269
270
271
272
273
274
275
}

// Connect ensures there is a connection between this host and the peer with
// given peer.ID. Connect will absorb the addresses in pi into its internal
// peerstore. If there is not an active connection, Connect will issue a
// h.Network.Dial, and block until a connection is open, or an error is
// returned. // TODO: Relay + NAT.
Jeromy's avatar
Jeromy committed
276
func (h *BasicHost) Connect(ctx context.Context, pi pstore.PeerInfo) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
277
278

	// absorb addresses into peerstore
Jeromy's avatar
Jeromy committed
279
	h.Peerstore().AddAddrs(pi.ID, pi.Addrs, pstore.TempAddrTTL)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315

	cs := h.Network().ConnsToPeer(pi.ID)
	if len(cs) > 0 {
		return nil
	}

	return h.dialPeer(ctx, pi.ID)
}

// dialPeer opens a connection to peer, and makes sure to identify
// the connection once it has been opened.
func (h *BasicHost) dialPeer(ctx context.Context, p peer.ID) error {
	log.Debugf("host %s dialing %s", h.ID, p)
	c, err := h.Network().DialPeer(ctx, p)
	if err != nil {
		return err
	}

	// identify the connection before returning.
	done := make(chan struct{})
	go func() {
		h.ids.IdentifyConn(c)
		close(done)
	}()

	// respect don contexteone
	select {
	case <-done:
	case <-ctx.Done():
		return ctx.Err()
	}

	log.Debugf("host %s finished dialing %s", h.ID, p)
	return nil
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
316
317
// Addrs returns all the addresses of BasicHost at this moment in time.
// It's ok to not include addresses if they're not available to be used now.
318
319
320
321
322
323
func (h *BasicHost) Addrs() []ma.Multiaddr {
	addrs, err := h.Network().InterfaceListenAddresses()
	if err != nil {
		log.Debug("error retrieving network interface addrs")
	}

324
325
326
327
	if h.ids != nil { // add external observed addresses
		addrs = append(addrs, h.ids.OwnObservedAddrs()...)
	}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
328
329
330
331
332
	if h.natmgr != nil { // natmgr is nil if we do not use nat option.
		nat := h.natmgr.NAT()
		if nat != nil { // nat is nil if not ready, or no nat is available.
			addrs = append(addrs, nat.ExternalAddrs()...)
		}
333
334
335
336
337
	}

	return addrs
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
338
339
// Close shuts down the Host's services (network, etc).
func (h *BasicHost) Close() error {
340
	return h.proc.Close()
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
341
}
Jeromy's avatar
Jeromy committed
342

343
// GetBandwidthReporter exposes the Host's bandiwth metrics reporter
Jeromy's avatar
Jeromy committed
344
345
346
func (h *BasicHost) GetBandwidthReporter() metrics.Reporter {
	return h.bwc
}
Jeromy's avatar
Jeromy committed
347
348
349
350
351
352
353
354
355
356
357
358
359

type streamWrapper struct {
	inet.Stream
	rw io.ReadWriter
}

func (s *streamWrapper) Read(b []byte) (int, error) {
	return s.rw.Read(b)
}

func (s *streamWrapper) Write(b []byte) (int, error) {
	return s.rw.Write(b)
}