dht.go 12.1 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
// Package dht implements a distributed hash table that satisfies the ipfs routing
2
// interface. This DHT is modeled after kademlia with Coral and S/Kademlia modifications.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
3 4
package dht

5
import (
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
6
	"bytes"
7
	"crypto/rand"
8
	"errors"
9
	"fmt"
10 11
	"sync"
	"time"
12

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
13
	host "github.com/jbenet/go-ipfs/p2p/host"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
14
	peer "github.com/jbenet/go-ipfs/p2p/peer"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
15
	protocol "github.com/jbenet/go-ipfs/p2p/protocol"
16
	routing "github.com/jbenet/go-ipfs/routing"
17
	pb "github.com/jbenet/go-ipfs/routing/dht/pb"
Jeromy's avatar
Jeromy committed
18
	kb "github.com/jbenet/go-ipfs/routing/kbucket"
19
	u "github.com/jbenet/go-ipfs/util"
Brian Tiger Chow's avatar
Brian Tiger Chow committed
20
	"github.com/jbenet/go-ipfs/util/eventlog"
21

22
	context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
23
	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto"
24 25
	ctxgroup "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-ctxgroup"
	ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
26 27
)

28
var log = eventlog.Logger("dht")
29

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
30 31
var ProtocolDHT protocol.ID = "/ipfs/dht"

32
const doPinging = false
33

34 35 36 37
// NumBootstrapQueries defines the number of random dht queries to do to
// collect members of the routing table.
const NumBootstrapQueries = 5

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
38 39 40 41 42
// TODO. SEE https://github.com/jbenet/node-ipfs/blob/master/submodules/ipfs-dht/index.js

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

47
	datastore ds.ThreadSafeDatastore // Local data
48

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

52 53
	birth    time.Time  // When this peer started up
	diaglock sync.Mutex // lock to make diagnostics work better
54

55 56 57
	// record validator funcs
	Validators map[string]ValidatorFunc

58
	ctxgroup.ContextGroup
59 60
}

Jeromy's avatar
Jeromy committed
61
// NewDHT creates a new DHT object with the given peer as the 'local' host
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
62
func NewDHT(ctx context.Context, h host.Host, dstore ds.ThreadSafeDatastore) *IpfsDHT {
63
	dht := new(IpfsDHT)
Jeromy's avatar
Jeromy committed
64
	dht.datastore = dstore
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
65 66
	dht.self = h.ID()
	dht.peerstore = h.Peerstore()
67
	dht.ContextGroup = ctxgroup.WithContext(ctx)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
68
	dht.host = h
69

70 71 72 73 74 75
	// sanity check. this should **never** happen
	if len(dht.peerstore.Addresses(dht.self)) < 1 {
		panic("attempt to initialize dht without addresses for self")
	}

	h.SetStreamHandler(ProtocolDHT, dht.handleNewStream)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
76
	dht.providers = NewProviderManager(dht.Context(), dht.self)
77
	dht.AddChildGroup(dht.providers)
78

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
79
	dht.routingTable = kb.NewRoutingTable(20, kb.ConvertPeerID(dht.self), time.Minute, dht.peerstore)
80
	dht.birth = time.Now()
81

82
	dht.Validators = make(map[string]ValidatorFunc)
83
	dht.Validators["pk"] = ValidatePublicKeyRecord
84

85
	if doPinging {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
86
		dht.Children().Add(1)
87 88
		go dht.PingRoutine(time.Second * 10)
	}
Jeromy's avatar
Jeromy committed
89
	return dht
90 91
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
92 93 94 95 96
// LocalPeer returns the peer.Peer of the dht.
func (dht *IpfsDHT) LocalPeer() peer.ID {
	return dht.self
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97 98 99 100 101
// log returns the dht's logger
func (dht *IpfsDHT) log() eventlog.EventLogger {
	return log.Prefix("dht(%s)", dht.self)
}

102
// Connect to a new peer at the given address, ping and add to the routing table
103
func (dht *IpfsDHT) Connect(ctx context.Context, npeer peer.ID) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
104 105
	// TODO: change interface to accept a PeerInfo as well.
	if err := dht.host.Connect(ctx, peer.PeerInfo{ID: npeer}); err != nil {
106
		return err
107 108
	}

Jeromy's avatar
Jeromy committed
109 110
	// Ping new peer to register in their routing table
	// NOTE: this should be done better...
111 112
	if _, err := dht.Ping(ctx, npeer); err != nil {
		return fmt.Errorf("failed to ping newly connected peer: %s", err)
Jeromy's avatar
Jeromy committed
113
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
114
	log.Event(ctx, "connect", dht.self, npeer)
115
	dht.Update(ctx, npeer)
116
	return nil
Jeromy's avatar
Jeromy committed
117 118
}

Jeromy's avatar
Jeromy committed
119 120
// putValueToPeer stores the given key/value pair at the peer 'p'
func (dht *IpfsDHT) putValueToPeer(ctx context.Context, p peer.ID,
121
	key u.Key, rec *pb.Record) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
122

123
	pmes := pb.NewMessage(pb.Message_PUT_VALUE, string(key), 0)
124
	pmes.Record = rec
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
125
	rpmes, err := dht.sendRequest(ctx, p, pmes)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
126 127 128
	if err != nil {
		return err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
129

130
	if !bytes.Equal(rpmes.GetRecord().Value, pmes.GetRecord().Value) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
131 132 133
		return errors.New("value not put correctly")
	}
	return nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
134 135
}

Jeromy's avatar
Jeromy committed
136 137
// putProvider sends a message to peer 'p' saying that the local node
// can provide the value of 'key'
138
func (dht *IpfsDHT) putProvider(ctx context.Context, p peer.ID, key string) error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
139

140
	// add self as the provider
141
	pi := dht.peerstore.PeerInfo(dht.self)
142 143 144 145 146 147
	// // only share WAN-friendly addresses ??
	// pi.Addrs = addrutil.WANShareableAddrs(pi.Addrs)
	if len(pi.Addrs) < 1 {
		log.Errorf("%s putProvider: %s for %s error: no wan-friendly addresses", dht.self, p, u.Key(key), pi.Addrs)
		return fmt.Errorf("no known addresses for self. cannot put provider.")
	}
148

149 150
	pmes := pb.NewMessage(pb.Message_ADD_PROVIDER, string(key), 0)
	pmes.ProviderPeers = pb.PeerInfosToPBPeers(dht.host.Network(), []peer.PeerInfo{pi})
151
	err := dht.sendMessage(ctx, p, pmes)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
152 153 154
	if err != nil {
		return err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
155

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
156
	log.Debugf("%s putProvider: %s for %s (%s)", dht.self, p, u.Key(key), pi.Addrs)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
157
	return nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
158 159
}

160 161 162 163 164 165
// getValueOrPeers queries a particular peer p for the value for
// key. It returns either the value or a list of closer peers.
// NOTE: it will update the dht's peerstore with any new addresses
// it finds for the given peer.
func (dht *IpfsDHT) getValueOrPeers(ctx context.Context, p peer.ID,
	key u.Key) ([]byte, []peer.PeerInfo, error) {
166

167
	pmes, err := dht.getValueSingle(ctx, p, key)
168
	if err != nil {
169
		return nil, nil, err
170 171
	}

172
	if record := pmes.GetRecord(); record != nil {
173
		// Success! We were given the value
Jeromy's avatar
Jeromy committed
174
		log.Debug("getValueOrPeers: got value")
175

176 177
		// make sure record is valid.
		err = dht.verifyRecordOnline(ctx, record)
178
		if err != nil {
Jeromy's avatar
Jeromy committed
179
			log.Error("Received invalid record!")
180 181 182
			return nil, nil, err
		}
		return record.GetValue(), nil, nil
183
	}
184

185
	// Perhaps we were given closer peers
186
	peers := pb.PBPeersToPeerInfos(pmes.GetCloserPeers())
187
	if len(peers) > 0 {
188
		log.Debug("getValueOrPeers: peers")
189 190 191
		return nil, peers, nil
	}

192 193
	log.Warning("getValueOrPeers: routing.ErrNotFound")
	return nil, nil, routing.ErrNotFound
194 195
}

196
// getValueSingle simply performs the get value RPC with the given parameters
197
func (dht *IpfsDHT) getValueSingle(ctx context.Context, p peer.ID,
198
	key u.Key) (*pb.Message, error) {
199 200
	e := log.EventBegin(ctx, "getValueSingle", p, &key)
	defer e.Done()
201

202
	pmes := pb.NewMessage(pb.Message_GET_VALUE, string(key), 0)
203
	return dht.sendRequest(ctx, p, pmes)
Jeromy's avatar
Jeromy committed
204 205
}

206
// getLocal attempts to retrieve the value from the datastore
207
func (dht *IpfsDHT) getLocal(key u.Key) ([]byte, error) {
208

Jeromy's avatar
Jeromy committed
209
	log.Debug("getLocal %s", key)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
210
	v, err := dht.datastore.Get(key.DsKey())
211 212 213
	if err != nil {
		return nil, err
	}
Jeromy's avatar
Jeromy committed
214
	log.Debug("found in db")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
215 216 217

	byt, ok := v.([]byte)
	if !ok {
218
		return nil, errors.New("value stored in datastore not []byte")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
219
	}
220 221 222 223 224 225 226 227
	rec := new(pb.Record)
	err = proto.Unmarshal(byt, rec)
	if err != nil {
		return nil, err
	}

	// TODO: 'if paranoid'
	if u.Debug {
228
		err = dht.verifyRecordLocally(rec)
229
		if err != nil {
Jeromy's avatar
Jeromy committed
230
			log.Errorf("local record verify failed: %s", err)
231 232 233 234 235
			return nil, err
		}
	}

	return rec.GetValue(), nil
236 237
}

238
// putLocal stores the key value pair in the datastore
239
func (dht *IpfsDHT) putLocal(key u.Key, value []byte) error {
240 241 242 243 244 245 246 247 248 249
	rec, err := dht.makePutRecord(key, value)
	if err != nil {
		return err
	}
	data, err := proto.Marshal(rec)
	if err != nil {
		return err
	}

	return dht.datastore.Put(key.DsKey(), data)
250
}
251

252
// Update signals the routingTable to Update its last-seen status
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
253
// on the given peer.
254
func (dht *IpfsDHT) Update(ctx context.Context, p peer.ID) {
255
	log.Event(ctx, "updatePeer", p)
256
	dht.routingTable.Update(p)
257
}
Jeromy's avatar
Jeromy committed
258

Jeromy's avatar
Jeromy committed
259
// FindLocal looks for a peer with a given ID connected to this dht and returns the peer and the table it was found in.
Jeromy's avatar
Jeromy committed
260
func (dht *IpfsDHT) FindLocal(id peer.ID) peer.PeerInfo {
261
	p := dht.routingTable.Find(id)
262
	if p != "" {
Jeromy's avatar
Jeromy committed
263
		return dht.peerstore.PeerInfo(p)
Jeromy's avatar
Jeromy committed
264
	}
Jeromy's avatar
Jeromy committed
265
	return peer.PeerInfo{}
Jeromy's avatar
Jeromy committed
266
}
267

Jeromy's avatar
Jeromy committed
268
// findPeerSingle asks peer 'p' if they know where the peer with id 'id' is
269
func (dht *IpfsDHT) findPeerSingle(ctx context.Context, p peer.ID, id peer.ID) (*pb.Message, error) {
270 271 272
	e := log.EventBegin(ctx, "findPeerSingle", p, id)
	defer e.Done()

273
	pmes := pb.NewMessage(pb.Message_FIND_NODE, string(id), 0)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
274
	return dht.sendRequest(ctx, p, pmes)
275
}
276

277
func (dht *IpfsDHT) findProvidersSingle(ctx context.Context, p peer.ID, key u.Key) (*pb.Message, error) {
278 279 280
	e := log.EventBegin(ctx, "findProvidersSingle", p, &key)
	defer e.Done()

281
	pmes := pb.NewMessage(pb.Message_GET_PROVIDERS, string(key), 0)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
282
	return dht.sendRequest(ctx, p, pmes)
Jeromy's avatar
Jeromy committed
283 284
}

285
// nearestPeersToQuery returns the routing tables closest peers.
286
func (dht *IpfsDHT) nearestPeersToQuery(pmes *pb.Message, count int) []peer.ID {
287
	key := u.Key(pmes.GetKey())
288
	closer := dht.routingTable.NearestPeers(kb.ConvertKey(key), count)
289 290 291
	return closer
}

292
// betterPeerToQuery returns nearestPeersToQuery, but iff closer than self.
293
func (dht *IpfsDHT) betterPeersToQuery(pmes *pb.Message, p peer.ID, count int) []peer.ID {
294
	closer := dht.nearestPeersToQuery(pmes, count)
295 296 297 298 299 300

	// no node? nil
	if closer == nil {
		return nil
	}

301 302
	// == to self? thats bad
	for _, p := range closer {
303
		if p == dht.self {
304 305 306
			log.Error("Attempted to return self! this shouldnt happen...")
			return nil
		}
307 308
	}

309
	var filtered []peer.ID
310 311 312 313 314 315
	for _, clp := range closer {
		// Dont send a peer back themselves
		if p == clp {
			continue
		}

316 317
		// must all be closer than self
		key := u.Key(pmes.GetKey())
318 319
		if !kb.Closer(dht.self, clp, key) {
			filtered = append(filtered, clp)
320
		}
321 322
	}

323 324
	// ok seems like closer nodes
	return filtered
325 326
}

327 328 329
func (dht *IpfsDHT) ensureConnectedToPeer(ctx context.Context, p peer.ID) error {
	if p == dht.self {
		return errors.New("attempting to ensure connection to self")
Jeromy's avatar
Jeromy committed
330 331
	}

332
	// dial connection
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
333
	return dht.host.Connect(ctx, peer.PeerInfo{ID: p})
Jeromy's avatar
Jeromy committed
334
}
335

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
336
// PingRoutine periodically pings nearest neighbors.
337
func (dht *IpfsDHT) PingRoutine(t time.Duration) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
338 339
	defer dht.Children().Done()

340 341 342 343 344 345
	tick := time.Tick(t)
	for {
		select {
		case <-tick:
			id := make([]byte, 16)
			rand.Read(id)
346
			peers := dht.routingTable.NearestPeers(kb.ConvertKey(u.Key(id)), 5)
347
			for _, p := range peers {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
348
				ctx, _ := context.WithTimeout(dht.Context(), time.Second*5)
349
				_, err := dht.Ping(ctx, p)
350
				if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
351
					log.Errorf("Ping error: %s", err)
352 353
				}
			}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
354
		case <-dht.Closing():
355 356 357 358 359
			return
		}
	}
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
360
// Bootstrap builds up list of peers by requesting random peer IDs
Brian Tiger Chow's avatar
Brian Tiger Chow committed
361
func (dht *IpfsDHT) Bootstrap(ctx context.Context, queries int) error {
362
	var merr u.MultiErr
363

364 365 366
	randomID := func() peer.ID {
		// 16 random bytes is not a valid peer id. it may be fine becuase
		// the dht will rehash to its own keyspace anyway.
367 368
		id := make([]byte, 16)
		rand.Read(id)
369 370 371 372
		return peer.ID(id)
	}

	// bootstrap sequentially, as results will compound
373
	runQuery := func(ctx context.Context, id peer.ID) {
374
		p, err := dht.FindPeer(ctx, id)
375 376 377
		if err == routing.ErrNotFound {
			// this isn't an error. this is precisely what we expect.
		} else if err != nil {
378
			merr = append(merr, err)
379
		} else {
380 381 382 383 384
			// woah, actually found a peer with that ID? this shouldn't happen normally
			// (as the ID we use is not a real ID). this is an odd error worth logging.
			err := fmt.Errorf("Bootstrap peer error: Actually FOUND peer. (%s, %s)", id, p)
			log.Errorf("%s", err)
			merr = append(merr, err)
385
		}
386
	}
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419

	sequential := true
	if sequential {
		// these should be parallel normally. but can make them sequential for debugging.
		// note that the core/bootstrap context deadline should be extended too for that.
		for i := 0; i < queries; i++ {
			id := randomID()
			log.Debugf("Bootstrapping query (%d/%d) to random ID: %s", i+1, queries, id)
			runQuery(ctx, id)
		}

	} else {
		// note on parallelism here: the context is passed in to the queries, so they
		// **should** exit when it exceeds, making this function exit on ctx cancel.
		// normally, we should be selecting on ctx.Done() here too, but this gets
		// complicated to do with WaitGroup, and doesnt wait for the children to exit.
		var wg sync.WaitGroup
		for i := 0; i < queries; i++ {
			wg.Add(1)
			go func() {
				defer wg.Done()

				id := randomID()
				log.Debugf("Bootstrapping query (%d/%d) to random ID: %s", i+1, queries, id)
				runQuery(ctx, id)
			}()
		}
		wg.Wait()
	}

	if len(merr) > 0 {
		return merr
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
420
	return nil
421
}