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

import (
4
	"context"
5
	"io"
6
	"time"
7

Jeromy's avatar
Jeromy committed
8
9
	identify "github.com/libp2p/go-libp2p/p2p/protocol/identify"

Jeromy's avatar
Jeromy committed
10
11
	logging "github.com/ipfs/go-log"
	goprocess "github.com/jbenet/goprocess"
Jeromy's avatar
Jeromy committed
12
	connmgr "github.com/libp2p/go-libp2p-connmgr"
Jeromy's avatar
Jeromy committed
13
14
15
	metrics "github.com/libp2p/go-libp2p-metrics"
	mstream "github.com/libp2p/go-libp2p-metrics/stream"
	inet "github.com/libp2p/go-libp2p-net"
Jeromy's avatar
Jeromy committed
16
17
	peer "github.com/libp2p/go-libp2p-peer"
	pstore "github.com/libp2p/go-libp2p-peerstore"
Jeromy's avatar
Jeromy committed
18
	protocol "github.com/libp2p/go-libp2p-protocol"
Jeromy's avatar
Jeromy committed
19
	ma "github.com/multiformats/go-multiaddr"
Jeromy's avatar
Jeromy committed
20
	msmux "github.com/multiformats/go-multistream"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
21
22
)

23
var log = logging.Logger("basichost")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
24

25
26
27
28
29
30
31
var (
	// DefaultNegotiationTimeout is the default value for HostOpts.NegotiationTimeout.
	DefaultNegotiationTimeout = time.Second * 60

	// DefaultAddrsFactory is the default value for HostOpts.AddrsFactory.
	DefaultAddrsFactory = func(addrs []ma.Multiaddr) []ma.Multiaddr { return addrs }
)
32

33
34
35
36
// AddrsFactory functions can be passed to New in order to override
// addresses returned by Addrs.
type AddrsFactory func([]ma.Multiaddr) []ma.Multiaddr

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
37
// Option is a type used to pass in options to the host.
38
39
//
// Deprecated in favor of HostOpts and NewHost.
40
41
type Option int

42
43
44
45
46
47
48
49
// 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.
//
// This option is deprecated in favor of HostOpts and NewHost.
const NATPortMap Option = iota
50

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
51
52
53
54
55
// 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 nat service to establish NAT port mappings
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
56
57
type BasicHost struct {
	network inet.Network
Jeromy's avatar
Jeromy committed
58
	mux     *msmux.MultistreamMuxer
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
59
	ids     *identify.IDService
60
	natmgr  NATManager
61
	addrs   AddrsFactory
Jeromy's avatar
Jeromy committed
62
	cmgr    connmgr.ConnManager
63

64
	negtimeout time.Duration
65

66
	proc goprocess.Process
Jeromy's avatar
Jeromy committed
67
68

	bwc metrics.Reporter
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
69
70
}

71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// HostOpts holds options that can be passed to NewHost in order to
// customize construction of the *BasicHost.
type HostOpts struct {

	// MultistreamMuxer is essential for the *BasicHost and will use a sensible default value if omitted.
	MultistreamMuxer *msmux.MultistreamMuxer

	// NegotiationTimeout determines the read and write timeouts on streams.
	// If 0 or omitted, it will use DefaultNegotiationTimeout.
	// If below 0, timeouts on streams will be deactivated.
	NegotiationTimeout time.Duration

	// IdentifyService holds an implementation of the /ipfs/id/ protocol.
	// If omitted, a new *identify.IDService will be used.
	IdentifyService *identify.IDService

	// AddrsFactory holds a function which can be used to override or filter the result of Addrs.
	// If omitted, there's no override or filtering, and the results of Addrs and AllAddrs are the same.
	AddrsFactory AddrsFactory

	// NATManager takes care of setting NAT port mappings, and discovering external addresses.
	// If omitted, this will simply be disabled.
93
	NATManager NATManager
94
95
96

	//
	BandwidthReporter metrics.Reporter
Jeromy's avatar
Jeromy committed
97
98
99

	// ConnManager is a libp2p connection manager
	ConnManager connmgr.ConnManager
100
101
102
103
}

// NewHost constructs a new *BasicHost and activates it by attaching its stream and connection handlers to the given inet.Network.
func NewHost(net inet.Network, opts *HostOpts) *BasicHost {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
104
	h := &BasicHost{
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
		network:    net,
		mux:        msmux.NewMultistreamMuxer(),
		negtimeout: DefaultNegotiationTimeout,
		addrs:      DefaultAddrsFactory,
	}

	if opts.MultistreamMuxer != nil {
		h.mux = opts.MultistreamMuxer
	}

	if opts.IdentifyService != nil {
		h.ids = opts.IdentifyService
	} else {
		// we can't set this as a default above because it depends on the *BasicHost.
		h.ids = identify.NewIDService(h)
	}

	if uint64(opts.NegotiationTimeout) != 0 {
		h.negtimeout = opts.NegotiationTimeout
	}

	if opts.AddrsFactory != nil {
		h.addrs = opts.AddrsFactory
	}

	if opts.NATManager != nil {
		h.natmgr = opts.NATManager
	}

	if opts.BandwidthReporter != nil {
		h.bwc = opts.BandwidthReporter
		h.ids.Reporter = opts.BandwidthReporter
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
137
138
	}

Jeromy's avatar
Jeromy committed
139
140
141
142
143
144
145
	if opts.ConnManager == nil {
		// create 'disabled' conn manager for now
		h.cmgr = connmgr.NewConnManager(0, 0, 0)
	} else {
		h.cmgr = opts.ConnManager
	}

146
	h.proc = goprocess.WithTeardown(func() error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
147
148
149
		if h.natmgr != nil {
			h.natmgr.Close()
		}
150
151
152
		return h.Network().Close()
	})

153
154
155
156
157
	net.SetConnHandler(h.newConnHandler)
	net.SetStreamHandler(h.newStreamHandler)

	return h
}
Jeromy's avatar
Jeromy committed
158

159
160
161
162
163
// New constructs and sets up a new *BasicHost with given Network and options.
// Three options can be passed: NATPortMap, AddrsFactory, and metrics.Reporter.
// This function is deprecated in favor of NewHost and HostOpts.
func New(net inet.Network, opts ...interface{}) *BasicHost {
	hostopts := &HostOpts{}
164

165
	for _, o := range opts {
Jeromy's avatar
Jeromy committed
166
167
168
169
		switch o := o.(type) {
		case Option:
			switch o {
			case NATPortMap:
170
				hostopts.NATManager = newNatManager(net)
Jeromy's avatar
Jeromy committed
171
172
			}
		case metrics.Reporter:
173
			hostopts.BandwidthReporter = o
174
		case AddrsFactory:
175
			hostopts.AddrsFactory = AddrsFactory(o)
Jeromy's avatar
Jeromy committed
176
177
		case connmgr.ConnManager:
			hostopts.ConnManager = o
178
179
180
		}
	}

181
	return NewHost(net, hostopts)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
182
183
184
185
}

// newConnHandler is the remote-opened conn handler for inet.Network
func (h *BasicHost) newConnHandler(c inet.Conn) {
186
187
188
	// Clear protocols on connecting to new peer to avoid issues caused
	// by misremembering protocols between reconnects
	h.Peerstore().SetProtocols(c.RemotePeer())
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
189
190
191
192
	h.ids.IdentifyConn(c)
}

// newStreamHandler is the remote-opened stream handler for inet.Network
Jeromy's avatar
Jeromy committed
193
// TODO: this feels a bit wonky
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
194
func (h *BasicHost) newStreamHandler(s inet.Stream) {
195
	before := time.Now()
196

197
198
	if h.negtimeout > 0 {
		if err := s.SetDeadline(time.Now().Add(h.negtimeout)); err != nil {
199
200
201
202
203
204
			log.Error("setting stream deadline: ", err)
			s.Close()
			return
		}
	}

205
	lzc, protoID, handle, err := h.Mux().NegotiateLazy(s)
206
	took := time.Now().Sub(before)
Jeromy's avatar
Jeromy committed
207
	if err != nil {
208
		if err == io.EOF {
209
210
211
212
213
			logf := log.Debugf
			if took > time.Second*10 {
				logf = log.Warningf
			}
			logf("protocol EOF: %s (took %s)", s.Conn().RemotePeer(), took)
214
		} else {
215
			log.Warning("protocol mux failed: %s (took %s)", err, took)
216
		}
217
		s.Close()
Jeromy's avatar
Jeromy committed
218
219
		return
	}
220

221
222
223
224
225
	s = &streamWrapper{
		Stream: s,
		rw:     lzc,
	}

226
	if h.negtimeout > 0 {
227
228
229
230
231
232
233
		if err := s.SetDeadline(time.Time{}); err != nil {
			log.Error("resetting stream deadline: ", err)
			s.Close()
			return
		}
	}

234
	s.SetProtocol(protocol.ID(protoID))
Jeromy's avatar
Jeromy committed
235

236
237
238
239
	if h.bwc != nil {
		s = mstream.WrapStream(s, h.bwc)
	}
	log.Debugf("protocol negotiation took %s", took)
Jeromy's avatar
Jeromy committed
240

241
	go handle(protoID, s)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
242
243
244
245
246
247
248
249
}

// 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
250
func (h *BasicHost) Peerstore() pstore.Peerstore {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
251
252
253
	return h.Network().Peerstore()
}

254
// Network returns the Network interface of the Host
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
255
256
257
258
259
func (h *BasicHost) Network() inet.Network {
	return h.network
}

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

264
// IDService returns
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
265
266
267
268
269
270
271
272
273
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) {
274
275
	h.Mux().AddHandler(string(pid), func(p string, rwc io.ReadWriteCloser) error {
		is := rwc.(inet.Stream)
276
		is.SetProtocol(protocol.ID(p))
277
		handler(is)
Jeromy's avatar
Jeromy committed
278
279
		return nil
	})
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
280
281
}

282
283
284
285
286
// 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)
287
		is.SetProtocol(protocol.ID(p))
288
289
290
291
292
		handler(is)
		return nil
	})
}

293
// RemoveStreamHandler returns ..
Jeromy's avatar
Jeromy committed
294
func (h *BasicHost) RemoveStreamHandler(pid protocol.ID) {
Jeromy's avatar
Jeromy committed
295
	h.Mux().RemoveHandler(string(pid))
Jeromy's avatar
Jeromy committed
296
297
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
298
299
300
301
// 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)
302
func (h *BasicHost) NewStream(ctx context.Context, p peer.ID, pids ...protocol.ID) (inet.Stream, error) {
303
304
305
306
307
	pref, err := h.preferredProtocol(p, pids)
	if err != nil {
		return nil, err
	}

308
309
310
311
	if pref != "" {
		return h.newStream(ctx, p, pref)
	}

312
	var protoStrs []string
313
	for _, pid := range pids {
314
315
		protoStrs = append(protoStrs, string(pid))
	}
316

317
318
319
320
	s, err := h.Network().NewStream(ctx, p)
	if err != nil {
		return nil, err
	}
321

322
323
324
325
	selected, err := msmux.SelectOneOf(protoStrs, s)
	if err != nil {
		s.Close()
		return nil, err
326
	}
327
328
	selpid := protocol.ID(selected)
	s.SetProtocol(selpid)
329
	h.Peerstore().AddProtocols(p, selected)
330

Jeromy's avatar
Jeromy committed
331
332
333
334
335
	if h.bwc != nil {
		s = mstream.WrapStream(s, h.bwc)
	}

	return s, nil
336
337
}

338
339
340
341
func pidsToStrings(pids []protocol.ID) []string {
	out := make([]string, len(pids))
	for i, p := range pids {
		out[i] = string(p)
342
	}
343
	return out
344
345
}

346
347
348
349
350
func (h *BasicHost) preferredProtocol(p peer.ID, pids []protocol.ID) (protocol.ID, error) {
	pidstrs := pidsToStrings(pids)
	supported, err := h.Peerstore().SupportsProtocols(p, pidstrs...)
	if err != nil {
		return "", err
351
352
	}

353
354
355
356
357
	var out protocol.ID
	if len(supported) > 0 {
		out = protocol.ID(supported[0])
	}
	return out, nil
358
359
360
}

func (h *BasicHost) newStream(ctx context.Context, p peer.ID, pid protocol.ID) (inet.Stream, error) {
361
	s, err := h.Network().NewStream(ctx, p)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
362
363
364
365
	if err != nil {
		return nil, err
	}

366
	s.SetProtocol(pid)
367

Jeromy's avatar
Jeromy committed
368
369
370
	if h.bwc != nil {
		s = mstream.WrapStream(s, h.bwc)
	}
Jeromy's avatar
Jeromy committed
371

Jeromy's avatar
Jeromy committed
372
	lzcon := msmux.NewMSSelect(s, string(pid))
Jeromy's avatar
Jeromy committed
373
	return &streamWrapper{
Jeromy's avatar
Jeromy committed
374
		Stream: s,
Jeromy's avatar
Jeromy committed
375
376
		rw:     lzcon,
	}, nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
377
378
379
380
381
382
}

// 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
383
// returned.
Jeromy's avatar
Jeromy committed
384
func (h *BasicHost) Connect(ctx context.Context, pi pstore.PeerInfo) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
385
386

	// absorb addresses into peerstore
Jeromy's avatar
Jeromy committed
387
	h.Peerstore().AddAddrs(pi.ID, pi.Addrs, pstore.TempAddrTTL)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405

	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
	}

406
407
408
409
	// Clear protocols on connecting to new peer to avoid issues caused
	// by misremembering protocols between reconnects
	h.Peerstore().SetProtocols(p)

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
410
411
412
413
414
415
416
417
418
419
420
421
422
423
	// 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()
	}

Jeromy's avatar
Jeromy committed
424
	log.Debugf("host %s finished dialing %s", h.ID(), p)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
425
426
427
	return nil
}

Jeromy's avatar
Jeromy committed
428
429
430
431
func (h *BasicHost) ConnManager() connmgr.ConnManager {
	return h.cmgr
}

432
433
// Addrs returns listening addresses that are safe to announce to the network.
// The output is the same as AllAddrs, but processed by AddrsFactory.
434
func (h *BasicHost) Addrs() []ma.Multiaddr {
435
436
437
438
439
440
	return h.addrs(h.AllAddrs())
}

// AllAddrs 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.
func (h *BasicHost) AllAddrs() []ma.Multiaddr {
441
442
443
444
445
	addrs, err := h.Network().InterfaceListenAddresses()
	if err != nil {
		log.Debug("error retrieving network interface addrs")
	}

446
447
448
449
	if h.ids != nil { // add external observed addresses
		addrs = append(addrs, h.ids.OwnObservedAddrs()...)
	}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
450
451
452
453
454
	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()...)
		}
455
456
457
458
459
	}

	return addrs
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
460
461
// Close shuts down the Host's services (network, etc).
func (h *BasicHost) Close() error {
462
	return h.proc.Close()
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
463
}
Jeromy's avatar
Jeromy committed
464

465
// GetBandwidthReporter exposes the Host's bandiwth metrics reporter
Jeromy's avatar
Jeromy committed
466
467
468
func (h *BasicHost) GetBandwidthReporter() metrics.Reporter {
	return h.bwc
}
Jeromy's avatar
Jeromy committed
469
470
471
472
473
474
475
476
477
478
479
480
481

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)
}