dht.go 14.5 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1 2
package dht

3
import (
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
4
	"bytes"
Jeromy's avatar
Jeromy committed
5
	"context"
6
	"errors"
7
	"fmt"
8 9
	"sync"
	"time"
10

11 12 13 14 15 16 17
	"github.com/libp2p/go-libp2p-core/host"
	"github.com/libp2p/go-libp2p-core/network"
	"github.com/libp2p/go-libp2p-core/peer"
	"github.com/libp2p/go-libp2p-core/peerstore"
	"github.com/libp2p/go-libp2p-core/protocol"
	"github.com/libp2p/go-libp2p-core/routing"

18
	"go.opencensus.io/tag"
19 20
	"golang.org/x/xerrors"

21
	"github.com/libp2p/go-libp2p-kad-dht/metrics"
22 23
	opts "github.com/libp2p/go-libp2p-kad-dht/opts"
	pb "github.com/libp2p/go-libp2p-kad-dht/pb"
Aarsh Shah's avatar
Aarsh Shah committed
24
	"github.com/libp2p/go-libp2p-kad-dht/providers"
25

Aarsh Shah's avatar
Aarsh Shah committed
26
	"github.com/gogo/protobuf/proto"
27 28
	ds "github.com/ipfs/go-datastore"
	logging "github.com/ipfs/go-log"
Aarsh Shah's avatar
Aarsh Shah committed
29
	"github.com/jbenet/goprocess"
Henrique Dias's avatar
Henrique Dias committed
30
	goprocessctx "github.com/jbenet/goprocess/context"
George Antoniadis's avatar
George Antoniadis committed
31
	kb "github.com/libp2p/go-libp2p-kbucket"
Henrique Dias's avatar
Henrique Dias committed
32
	record "github.com/libp2p/go-libp2p-record"
George Antoniadis's avatar
George Antoniadis committed
33
	recpb "github.com/libp2p/go-libp2p-record/pb"
Steven Allen's avatar
Steven Allen committed
34
	"github.com/multiformats/go-base32"
Adin Schmahmann's avatar
Adin Schmahmann committed
35
	"github.com/multiformats/go-multihash"
36 37
)

Matt Joiner's avatar
Matt Joiner committed
38
var logger = logging.Logger("dht")
39

Henrique Dias's avatar
Henrique Dias committed
40 41
const BaseConnMgrScore = 5

42
// IpfsDHT is an implementation of Kademlia with S/Kademlia modifications.
43
// It is used to implement the base Routing module.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
44
type IpfsDHT struct {
45 46 47
	host      host.Host           // the network services we need
	self      peer.ID             // Local peer (yourself)
	peerstore peerstore.Peerstore // Peer Registry
48

49
	datastore ds.Datastore // Local data
50

51
	routingTable *kb.RoutingTable // Array of routing tables for differently distanced nodes
52
	providers    *providers.ProviderManager
53

Jeromy's avatar
Jeromy committed
54
	birth time.Time // When this peer started up
55

56
	Validator record.Validator
57

58 59
	ctx  context.Context
	proc goprocess.Process
60 61 62

	strmap map[peer.ID]*messageSender
	smlk   sync.Mutex
63

Steven Allen's avatar
Steven Allen committed
64
	plk sync.Mutex
65

66 67
	stripedPutLocks [256]sync.Mutex

68
	protocols []protocol.ID // DHT protocols
69 70

	bucketSize int
71

72 73 74
	autoRefresh           bool
	rtRefreshQueryTimeout time.Duration
	rtRefreshPeriod       time.Duration
Steven Allen's avatar
Steven Allen committed
75
	triggerRtRefresh      chan chan<- error
Aarsh Shah's avatar
Aarsh Shah committed
76 77

	maxRecordAge time.Duration
78

79 80 81
	// Allows disabling dht subsystems. These should _only_ be set on
	// "forked" DHTs (e.g., DHTs with custom protocols and/or private
	// networks).
82
	enableProviders, enableValues bool
83 84
}

Matt Joiner's avatar
Matt Joiner committed
85 86 87 88
// Assert that IPFS assumptions about interfaces aren't broken. These aren't a
// guarantee, but we can use them to aid refactoring.
var (
	_ routing.ContentRouting = (*IpfsDHT)(nil)
89
	_ routing.Routing        = (*IpfsDHT)(nil)
Matt Joiner's avatar
Matt Joiner committed
90 91 92 93 94
	_ routing.PeerRouting    = (*IpfsDHT)(nil)
	_ routing.PubKeyFetcher  = (*IpfsDHT)(nil)
	_ routing.ValueStore     = (*IpfsDHT)(nil)
)

95 96 97
// New creates a new DHT with the specified host and options.
func New(ctx context.Context, h host.Host, options ...opts.Option) (*IpfsDHT, error) {
	var cfg opts.Options
98
	cfg.BucketSize = KValue
99 100 101
	if err := cfg.Apply(append([]opts.Option{opts.Defaults}, options...)...); err != nil {
		return nil, err
	}
102
	dht := makeDHT(ctx, h, cfg.Datastore, cfg.Protocols, cfg.BucketSize, cfg.RoutingTable.LatencyTolerance)
103 104 105
	dht.autoRefresh = cfg.RoutingTable.AutoRefresh
	dht.rtRefreshPeriod = cfg.RoutingTable.RefreshPeriod
	dht.rtRefreshQueryTimeout = cfg.RoutingTable.RefreshQueryTimeout
106

Aarsh Shah's avatar
Aarsh Shah committed
107
	dht.maxRecordAge = cfg.MaxRecordAge
108 109
	dht.enableProviders = cfg.EnableProviders
	dht.enableValues = cfg.EnableValues
Aarsh Shah's avatar
Aarsh Shah committed
110

111 112 113 114 115 116 117 118 119 120
	// register for network notifs.
	dht.host.Network().Notify((*netNotifiee)(dht))

	dht.proc = goprocessctx.WithContextAndTeardown(ctx, func() error {
		// remove ourselves from network notifs.
		dht.host.Network().StopNotify((*netNotifiee)(dht))
		return nil
	})

	dht.proc.AddChild(dht.providers.Process())
121 122 123
	dht.Validator = cfg.Validator

	if !cfg.Client {
124 125 126
		for _, p := range cfg.Protocols {
			h.SetStreamHandler(p, dht.handleNewStream)
		}
127
	}
128
	dht.startRefreshing()
129 130
	return dht, nil
}
131

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
// NewDHT creates a new DHT object with the given peer as the 'local' host.
// IpfsDHT's initialized with this function will respond to DHT requests,
// whereas IpfsDHT's initialized with NewDHTClient will not.
func NewDHT(ctx context.Context, h host.Host, dstore ds.Batching) *IpfsDHT {
	dht, err := New(ctx, h, opts.Datastore(dstore))
	if err != nil {
		panic(err)
	}
	return dht
}

// NewDHTClient creates a new DHT object with the given peer as the 'local'
// host. IpfsDHT clients initialized with this function will not respond to DHT
// requests. If you need a peer to respond to DHT requests, use NewDHT instead.
// NewDHTClient creates a new DHT object with the given peer as the 'local' host
func NewDHTClient(ctx context.Context, h host.Host, dstore ds.Batching) *IpfsDHT {
	dht, err := New(ctx, h, opts.Datastore(dstore), opts.Client(true))
	if err != nil {
		panic(err)
	}
152 153 154
	return dht
}

155
func makeDHT(ctx context.Context, h host.Host, dstore ds.Batching, protocols []protocol.ID, bucketSize int, latency time.Duration) *IpfsDHT {
Henrique Dias's avatar
Henrique Dias committed
156
	self := kb.ConvertPeerID(h.ID())
157
	rt := kb.NewRoutingTable(bucketSize, self, latency, h.Peerstore())
158
	cmgr := h.ConnManager()
159

160
	rt.PeerAdded = func(p peer.ID) {
Henrique Dias's avatar
Henrique Dias committed
161
		commonPrefixLen := kb.CommonPrefixLen(self, kb.ConvertPeerID(p))
Henrique Dias's avatar
Henrique Dias committed
162
		cmgr.TagPeer(p, "kbucket", BaseConnMgrScore+commonPrefixLen)
163
	}
164

165 166 167 168
	rt.PeerRemoved = func(p peer.ID) {
		cmgr.UntagPeer(p, "kbucket")
	}

169
	dht := &IpfsDHT{
Aarsh Shah's avatar
Aarsh Shah committed
170 171 172 173 174 175 176 177 178 179 180
		datastore:        dstore,
		self:             h.ID(),
		peerstore:        h.Peerstore(),
		host:             h,
		strmap:           make(map[peer.ID]*messageSender),
		ctx:              ctx,
		providers:        providers.NewProviderManager(ctx, h.ID(), dstore),
		birth:            time.Now(),
		routingTable:     rt,
		protocols:        protocols,
		bucketSize:       bucketSize,
Steven Allen's avatar
Steven Allen committed
181
		triggerRtRefresh: make(chan chan<- error),
Jeromy's avatar
Jeromy committed
182
	}
183 184 185 186

	dht.ctx = dht.newContextWithLocalTags(ctx)

	return dht
Jeromy's avatar
Jeromy committed
187 188
}

Aarsh Shah's avatar
Aarsh Shah committed
189 190 191 192
// TODO Implement RT seeding as described in https://github.com/libp2p/go-libp2p-kad-dht/pull/384#discussion_r320994340 OR
// come up with an alternative solution.
// issue is being tracked at https://github.com/libp2p/go-libp2p-kad-dht/issues/387
/*func (dht *IpfsDHT) rtRecovery(proc goprocess.Process) {
193
	writeResp := func(errorChan chan error, err error) {
194 195
		select {
		case <-proc.Closing():
196
		case errorChan <- errChan:
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
		}
		close(errorChan)
	}

	for {
		select {
		case req := <-dht.rtRecoveryChan:
			if dht.routingTable.Size() == 0 {
				logger.Infof("rt recovery proc: received request with reqID=%s, RT is empty. initiating recovery", req.id)
				// TODO Call Seeder with default bootstrap peers here once #383 is merged
				if dht.routingTable.Size() > 0 {
					logger.Infof("rt recovery proc: successfully recovered RT for reqID=%s, RT size is now %d", req.id, dht.routingTable.Size())
					go writeResp(req.errorChan, nil)
				} else {
					logger.Errorf("rt recovery proc: failed to recover RT for reqID=%s, RT is still empty", req.id)
					go writeResp(req.errorChan, errors.New("RT empty after seed attempt"))
				}
			} else {
				logger.Infof("rt recovery proc: RT is not empty, no need to act on request with reqID=%s", req.id)
				go writeResp(req.errorChan, nil)
			}
		case <-proc.Closing():
			return
		}
	}
Aarsh Shah's avatar
Aarsh Shah committed
222
}*/
223

Jeromy's avatar
Jeromy committed
224
// putValueToPeer stores the given key/value pair at the peer 'p'
225
func (dht *IpfsDHT) putValueToPeer(ctx context.Context, p peer.ID, rec *recpb.Record) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
226

227
	pmes := pb.NewMessage(pb.Message_PUT_VALUE, rec.Key, 0)
228
	pmes.Record = rec
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
229
	rpmes, err := dht.sendRequest(ctx, p, pmes)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
230
	if err != nil {
Matt Joiner's avatar
Matt Joiner committed
231
		logger.Debugf("putValueToPeer: %v. (peer: %s, key: %s)", err, p.Pretty(), loggableKey(string(rec.Key)))
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
232 233
		return err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
234

235
	if !bytes.Equal(rpmes.GetRecord().Value, pmes.GetRecord().Value) {
Matt Joiner's avatar
Matt Joiner committed
236
		logger.Warningf("putValueToPeer: value not put correctly. (%v != %v)", pmes, rpmes)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
237 238
		return errors.New("value not put correctly")
	}
gpestana's avatar
gpestana committed
239

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
240
	return nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
241 242
}

243 244
var errInvalidRecord = errors.New("received invalid record")

245 246
// getValueOrPeers queries a particular peer p for the value for
// key. It returns either the value or a list of closer peers.
247
// NOTE: It will update the dht's peerstore with any new addresses
248
// it finds for the given peer.
249
func (dht *IpfsDHT) getValueOrPeers(ctx context.Context, p peer.ID, key string) (*recpb.Record, []*peer.AddrInfo, error) {
250

251
	pmes, err := dht.getValueSingle(ctx, p, key)
252
	if err != nil {
253
		return nil, nil, err
254 255
	}

256 257 258
	// Perhaps we were given closer peers
	peers := pb.PBPeersToPeerInfos(pmes.GetCloserPeers())

259
	if record := pmes.GetRecord(); record != nil {
260
		// Success! We were given the value
Matt Joiner's avatar
Matt Joiner committed
261
		logger.Debug("getValueOrPeers: got value")
262

263
		// make sure record is valid.
264
		err = dht.Validator.Validate(string(record.GetKey()), record.GetValue())
265
		if err != nil {
Matt Joiner's avatar
Matt Joiner committed
266
			logger.Info("Received invalid record! (discarded)")
267 268
			// return a sentinal to signify an invalid record was received
			err = errInvalidRecord
George Antoniadis's avatar
George Antoniadis committed
269
			record = new(recpb.Record)
270
		}
271
		return record, peers, err
272
	}
273

274
	if len(peers) > 0 {
Matt Joiner's avatar
Matt Joiner committed
275
		logger.Debug("getValueOrPeers: peers")
276 277 278
		return nil, peers, nil
	}

Matt Joiner's avatar
Matt Joiner committed
279
	logger.Warning("getValueOrPeers: routing.ErrNotFound")
280
	return nil, nil, routing.ErrNotFound
281 282
}

283
// getValueSingle simply performs the get value RPC with the given parameters
284 285 286 287 288 289
func (dht *IpfsDHT) getValueSingle(ctx context.Context, p peer.ID, key string) (*pb.Message, error) {
	meta := logging.LoggableMap{
		"key":  key,
		"peer": p,
	}

Matt Joiner's avatar
Matt Joiner committed
290
	eip := logger.EventBegin(ctx, "getValueSingle", meta)
ForrestWeston's avatar
ForrestWeston committed
291
	defer eip.Done()
292

293
	pmes := pb.NewMessage(pb.Message_GET_VALUE, []byte(key), 0)
294 295 296 297 298
	resp, err := dht.sendRequest(ctx, p, pmes)
	switch err {
	case nil:
		return resp, nil
	case ErrReadTimeout:
Matt Joiner's avatar
Matt Joiner committed
299
		logger.Warningf("getValueSingle: read timeout %s %s", p.Pretty(), key)
300 301
		fallthrough
	default:
ForrestWeston's avatar
ForrestWeston committed
302
		eip.SetError(err)
303 304
		return nil, err
	}
Jeromy's avatar
Jeromy committed
305 306
}

307
// getLocal attempts to retrieve the value from the datastore
308
func (dht *IpfsDHT) getLocal(key string) (*recpb.Record, error) {
Matt Joiner's avatar
Matt Joiner committed
309
	logger.Debugf("getLocal %s", key)
310
	rec, err := dht.getRecordFromDatastore(mkDsKey(key))
311
	if err != nil {
Matt Joiner's avatar
Matt Joiner committed
312
		logger.Warningf("getLocal: %s", err)
313 314
		return nil, err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
315

316
	// Double check the key. Can't hurt.
317
	if rec != nil && string(rec.GetKey()) != key {
Matt Joiner's avatar
Matt Joiner committed
318
		logger.Errorf("BUG getLocal: found a DHT record that didn't match it's key: %s != %s", rec.GetKey(), key)
Steven Allen's avatar
Steven Allen committed
319
		return nil, nil
320 321

	}
322
	return rec, nil
323 324
}

325
// putLocal stores the key value pair in the datastore
326
func (dht *IpfsDHT) putLocal(key string, rec *recpb.Record) error {
Matt Joiner's avatar
Matt Joiner committed
327
	logger.Debugf("putLocal: %v %v", key, rec)
328 329
	data, err := proto.Marshal(rec)
	if err != nil {
Matt Joiner's avatar
Matt Joiner committed
330
		logger.Warningf("putLocal: %s", err)
331 332 333
		return err
	}

334
	return dht.datastore.Put(mkDsKey(key), data)
335
}
336

337
// Update signals the routingTable to Update its last-seen status
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
338
// on the given peer.
339
func (dht *IpfsDHT) Update(ctx context.Context, p peer.ID) {
Matt Joiner's avatar
Matt Joiner committed
340
	logger.Event(ctx, "updatePeer", p)
341
	dht.routingTable.Update(p)
342
}
Jeromy's avatar
Jeromy committed
343

Jeromy's avatar
Jeromy committed
344
// FindLocal looks for a peer with a given ID connected to this dht and returns the peer and the table it was found in.
345
func (dht *IpfsDHT) FindLocal(id peer.ID) peer.AddrInfo {
346
	switch dht.host.Network().Connectedness(id) {
347
	case network.Connected, network.CanConnect:
348 349
		return dht.peerstore.PeerInfo(id)
	default:
350
		return peer.AddrInfo{}
Jeromy's avatar
Jeromy committed
351 352
	}
}
353

Jeromy's avatar
Jeromy committed
354
// findPeerSingle asks peer 'p' if they know where the peer with id 'id' is
355
func (dht *IpfsDHT) findPeerSingle(ctx context.Context, p peer.ID, id peer.ID) (*pb.Message, error) {
Matt Joiner's avatar
Matt Joiner committed
356
	eip := logger.EventBegin(ctx, "findPeerSingle",
357 358 359 360
		logging.LoggableMap{
			"peer":   p,
			"target": id,
		})
ForrestWeston's avatar
ForrestWeston committed
361
	defer eip.Done()
362

363
	pmes := pb.NewMessage(pb.Message_FIND_NODE, []byte(id), 0)
364 365 366 367 368
	resp, err := dht.sendRequest(ctx, p, pmes)
	switch err {
	case nil:
		return resp, nil
	case ErrReadTimeout:
Matt Joiner's avatar
Matt Joiner committed
369
		logger.Warningf("read timeout: %s %s", p.Pretty(), id)
370 371
		fallthrough
	default:
ForrestWeston's avatar
ForrestWeston committed
372
		eip.SetError(err)
373 374
		return nil, err
	}
375
}
376

Adin Schmahmann's avatar
Adin Schmahmann committed
377 378
func (dht *IpfsDHT) findProvidersSingle(ctx context.Context, p peer.ID, key multihash.Multihash) (*pb.Message, error) {
	eip := logger.EventBegin(ctx, "findProvidersSingle", p, multihashLoggableKey(key))
ForrestWeston's avatar
ForrestWeston committed
379
	defer eip.Done()
380

Adin Schmahmann's avatar
Adin Schmahmann committed
381
	pmes := pb.NewMessage(pb.Message_GET_PROVIDERS, key, 0)
382 383 384 385 386
	resp, err := dht.sendRequest(ctx, p, pmes)
	switch err {
	case nil:
		return resp, nil
	case ErrReadTimeout:
Adin Schmahmann's avatar
Adin Schmahmann committed
387
		logger.Warningf("read timeout: %s %s", p.Pretty(), key)
388 389
		fallthrough
	default:
ForrestWeston's avatar
ForrestWeston committed
390
		eip.SetError(err)
391 392
		return nil, err
	}
Jeromy's avatar
Jeromy committed
393 394
}

395
// nearestPeersToQuery returns the routing tables closest peers.
396
func (dht *IpfsDHT) nearestPeersToQuery(pmes *pb.Message, count int) []peer.ID {
397
	closer := dht.routingTable.NearestPeers(kb.ConvertKey(string(pmes.GetKey())), count)
398 399 400
	return closer
}

Aarsh Shah's avatar
Aarsh Shah committed
401
// betterPeersToQuery returns nearestPeersToQuery with some additional filtering
402
func (dht *IpfsDHT) betterPeersToQuery(pmes *pb.Message, p peer.ID, count int) []peer.ID {
403
	closer := dht.nearestPeersToQuery(pmes, count)
404 405 406

	// no node? nil
	if closer == nil {
Matt Joiner's avatar
Matt Joiner committed
407
		logger.Warning("betterPeersToQuery: no closer peers to send:", p)
408 409 410
		return nil
	}

Steven Allen's avatar
Steven Allen committed
411
	filtered := make([]peer.ID, 0, len(closer))
Jeromy's avatar
Jeromy committed
412 413 414
	for _, clp := range closer {

		// == to self? thats bad
Jeromy's avatar
Jeromy committed
415
		if clp == dht.self {
Matt Joiner's avatar
Matt Joiner committed
416
			logger.Error("BUG betterPeersToQuery: attempted to return self! this shouldn't happen...")
417 418
			return nil
		}
419
		// Dont send a peer back themselves
Jeromy's avatar
Jeromy committed
420
		if clp == p {
421 422 423
			continue
		}

Jeromy's avatar
Jeromy committed
424
		filtered = append(filtered, clp)
425 426
	}

427 428
	// ok seems like closer nodes
	return filtered
429 430
}

431 432 433 434 435 436 437 438 439 440
// Context return dht's context
func (dht *IpfsDHT) Context() context.Context {
	return dht.ctx
}

// Process return dht's process
func (dht *IpfsDHT) Process() goprocess.Process {
	return dht.proc
}

ZhengQi's avatar
ZhengQi committed
441 442 443 444 445
// RoutingTable return dht's routingTable
func (dht *IpfsDHT) RoutingTable() *kb.RoutingTable {
	return dht.routingTable
}

446 447 448 449
// Close calls Process Close
func (dht *IpfsDHT) Close() error {
	return dht.proc.Close()
}
450

451 452
func (dht *IpfsDHT) protocolStrs() []string {
	pstrs := make([]string, len(dht.protocols))
453 454
	for idx, proto := range dht.protocols {
		pstrs[idx] = string(proto)
455 456 457 458 459
	}

	return pstrs
}

460 461 462
func mkDsKey(s string) ds.Key {
	return ds.NewKey(base32.RawStdEncoding.EncodeToString([]byte(s)))
}
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486

func (dht *IpfsDHT) PeerID() peer.ID {
	return dht.self
}

func (dht *IpfsDHT) PeerKey() []byte {
	return kb.ConvertPeerID(dht.self)
}

func (dht *IpfsDHT) Host() host.Host {
	return dht.host
}

func (dht *IpfsDHT) Ping(ctx context.Context, p peer.ID) error {
	req := pb.NewMessage(pb.Message_PING, nil, 0)
	resp, err := dht.sendRequest(ctx, p, req)
	if err != nil {
		return xerrors.Errorf("sending request: %w", err)
	}
	if resp.Type != pb.Message_PING {
		return xerrors.Errorf("got unexpected response type: %v", resp.Type)
	}
	return nil
}
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502

// newContextWithLocalTags returns a new context.Context with the InstanceID and
// PeerID keys populated. It will also take any extra tags that need adding to
// the context as tag.Mutators.
func (dht *IpfsDHT) newContextWithLocalTags(ctx context.Context, extraTags ...tag.Mutator) context.Context {
	extraTags = append(
		extraTags,
		tag.Upsert(metrics.KeyPeerID, dht.self.Pretty()),
		tag.Upsert(metrics.KeyInstanceID, fmt.Sprintf("%p", dht)),
	)
	ctx, _ = tag.New(
		ctx,
		extraTags...,
	) // ignoring error as it is unrelated to the actual function of this code.
	return ctx
}