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

import (
4 5
	"math/rand"
	"time"
6
	"bytes"
7
	"encoding/json"
8

9 10
	proto "code.google.com/p/goprotobuf/proto"

11 12
	ma "github.com/jbenet/go-multiaddr"

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
13 14 15
	peer "github.com/jbenet/go-ipfs/peer"
	swarm "github.com/jbenet/go-ipfs/swarm"
	u "github.com/jbenet/go-ipfs/util"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
16 17
)

18 19 20
// Pool size is the number of nodes used for group find/set RPC calls
var PoolSize = 6

21 22
// TODO: determine a way of creating and managing message IDs
func GenerateMessageID() uint64 {
23 24
	//return (uint64(rand.Uint32()) << 32) & uint64(rand.Uint32())
	return uint64(rand.Uint32())
25 26
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
27 28 29 30 31
// This file implements the Routing interface for the IpfsDHT struct.

// Basic Put/Get

// PutValue adds value corresponding to given Key.
32
// This is the top level "Store" operation of the DHT
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
33
func (s *IpfsDHT) PutValue(key u.Key, value []byte) error {
34
	var p *peer.Peer
35
	p = s.routes[0].NearestPeer(convertKey(key))
36 37 38
	if p == nil {
		panic("Table returned nil peer!")
	}
39

40
	return s.putValueToPeer(p, string(key), value)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
41 42 43
}

// GetValue searches for the value corresponding to given Key.
Jeromy's avatar
Jeromy committed
44 45
// If the search does not succeed, a multiaddr string of a closer peer is
// returned along with util.ErrSearchIncomplete
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
46
func (s *IpfsDHT) GetValue(key u.Key, timeout time.Duration) ([]byte, error) {
47
	var p *peer.Peer
48
	p = s.routes[0].NearestPeer(convertKey(key))
49 50 51
	if p == nil {
		panic("Table returned nil peer!")
	}
52

53 54 55 56 57
	pmes := pDHTMessage{
		Type: DHTMessage_GET_VALUE,
		Key: string(key),
		Id: GenerateMessageID(),
	}
58
	response_chan := s.ListenFor(pmes.Id, 1, time.Minute)
59

60 61
	mes := swarm.NewMessage(p, pmes.ToProtobuf())
	s.network.Chan.Outgoing <- mes
62

63
	// Wait for either the response or a timeout
64 65
	timeup := time.After(timeout)
	select {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
66
	case <-timeup:
67
		s.Unlisten(pmes.Id)
68
		return nil, u.ErrTimeout
69 70 71 72 73 74 75
	case resp, ok := <-response_chan:
		if !ok {
			panic("Channel was closed...")
		}
		if resp == nil {
			panic("Why the hell is this response nil?")
		}
76 77 78 79 80
		pmes_out := new(DHTMessage)
		err := proto.Unmarshal(resp.Data, pmes_out)
		if err != nil {
			return nil,err
		}
Jeromy's avatar
Jeromy committed
81 82 83 84 85
		if pmes_out.GetSuccess() {
			return pmes_out.GetValue(), nil
		} else {
			return pmes_out.GetValue(), u.ErrSearchIncomplete
		}
86
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
87 88 89 90 91 92
}

// Value provider layer of indirection.
// This is what DSHTs (Coral and MainlineDHT) do to store large values in a DHT.

// Announce that this node can provide value for given key
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
93
func (s *IpfsDHT) Provide(key u.Key) error {
94
	peers := s.routes[0].NearestPeers(convertKey(key), PoolSize)
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
	if len(peers) == 0 {
		//return an error
	}

	pmes := pDHTMessage{
		Type: DHTMessage_ADD_PROVIDER,
		Key: string(key),
	}
	pbmes := pmes.ToProtobuf()

	for _,p := range peers {
		mes := swarm.NewMessage(p, pbmes)
		s.network.Chan.Outgoing <-mes
	}
	return nil
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
110 111 112
}

// FindProviders searches for peers who can provide the value for given key.
113
func (s *IpfsDHT) FindProviders(key u.Key, timeout time.Duration) ([]*peer.Peer, error) {
114
	p := s.routes[0].NearestPeer(convertKey(key))
115 116 117 118 119 120 121 122 123

	pmes := pDHTMessage{
		Type: DHTMessage_GET_PROVIDERS,
		Key: string(key),
		Id: GenerateMessageID(),
	}

	mes := swarm.NewMessage(p, pmes.ToProtobuf())

124
	listen_chan := s.ListenFor(pmes.Id, 1, time.Minute)
125
	u.DOut("Find providers for: '%s'", key)
126 127 128 129 130 131 132
	s.network.Chan.Outgoing <-mes
	after := time.After(timeout)
	select {
	case <-after:
		s.Unlisten(pmes.Id)
		return nil, u.ErrTimeout
	case resp := <-listen_chan:
133
		u.DOut("FindProviders: got response.")
134 135 136 137 138
		pmes_out := new(DHTMessage)
		err := proto.Unmarshal(resp.Data, pmes_out)
		if err != nil {
			return nil, err
		}
139 140
		var addrs map[u.Key]string
		err = json.Unmarshal(pmes_out.GetValue(), &addrs)
141 142 143 144
		if err != nil {
			return nil, err
		}

145 146 147
		var prov_arr []*peer.Peer
		for pid,addr := range addrs {
			p := s.network.Find(pid)
148 149 150 151 152 153
			if p == nil {
				maddr,err := ma.NewMultiaddr(addr)
				if err != nil {
					u.PErr("error connecting to new peer: %s", err)
					continue
				}
154
				p, err = s.Connect(maddr)
155 156 157 158 159
				if err != nil {
					u.PErr("error connecting to new peer: %s", err)
					continue
				}
			}
160 161
			s.addProviderEntry(key, p)
			prov_arr = append(prov_arr, p)
162 163
		}

164
		return prov_arr, nil
165
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
166 167 168 169 170 171
}

// Find specific Peer

// FindPeer searches for a peer with given ID.
func (s *IpfsDHT) FindPeer(id peer.ID, timeout time.Duration) (*peer.Peer, error) {
172
	p := s.routes[0].NearestPeer(convertPeerID(id))
173 174 175 176 177 178 179 180 181

	pmes := pDHTMessage{
		Type: DHTMessage_FIND_NODE,
		Key: string(id),
		Id: GenerateMessageID(),
	}

	mes := swarm.NewMessage(p, pmes.ToProtobuf())

182
	listen_chan := s.ListenFor(pmes.Id, 1, time.Minute)
183 184 185 186 187 188 189 190 191 192 193 194
	s.network.Chan.Outgoing <-mes
	after := time.After(timeout)
	select {
	case <-after:
		s.Unlisten(pmes.Id)
		return nil, u.ErrTimeout
	case resp := <-listen_chan:
		pmes_out := new(DHTMessage)
		err := proto.Unmarshal(resp.Data, pmes_out)
		if err != nil {
			return nil, err
		}
Jeromy's avatar
Jeromy committed
195 196 197 198 199 200
		addr := string(pmes_out.GetValue())
		maddr, err := ma.NewMultiaddr(addr)
		if err != nil {
			return nil, err
		}

Jeromy's avatar
Jeromy committed
201 202 203 204 205 206 207 208 209 210 211 212
		found_peer, err := s.Connect(maddr)
		if err != nil {
			u.POut("Found peer but couldnt connect.")
			return nil, err
		}

		if !found_peer.ID.Equal(id) {
			u.POut("FindPeer: searching for '%s' but found '%s'", id.Pretty(), found_peer.ID.Pretty())
			return found_peer, u.ErrSearchIncomplete
		}

		return found_peer, nil
213
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
214
}
215 216 217 218 219 220 221 222 223 224

// Ping a peer, log the time it took
func (dht *IpfsDHT) Ping(p *peer.Peer, timeout time.Duration) error {
	// Thoughts: maybe this should accept an ID and do a peer lookup?
	u.DOut("Enter Ping.")

	pmes := pDHTMessage{Id: GenerateMessageID(), Type: DHTMessage_PING}
	mes := swarm.NewMessage(p, pmes.ToProtobuf())

	before := time.Now()
225
	response_chan := dht.ListenFor(pmes.Id, 1, time.Minute)
226 227 228 229 230 231
	dht.network.Chan.Outgoing <- mes

	tout := time.After(timeout)
	select {
	case <-response_chan:
		roundtrip := time.Since(before)
Jeromy's avatar
Jeromy committed
232
		p.SetDistance(roundtrip)
233 234 235 236 237 238 239 240 241
		u.POut("Ping took %s.", roundtrip.String())
		return nil
	case <-tout:
		// Timed out, think about removing peer from network
		u.DOut("Ping peer timed out.")
		dht.Unlisten(pmes.Id)
		return u.ErrTimeout
	}
}
242 243 244 245 246 247 248 249 250 251 252 253

func (dht *IpfsDHT) GetDiagnostic(timeout time.Duration) ([]*diagInfo, error) {
	u.DOut("Begin Diagnostic")
	//Send to N closest peers
	targets := dht.routes[0].NearestPeers(convertPeerID(dht.self.ID), 10)

	// TODO: Add timeout to this struct so nodes know when to return
	pmes := pDHTMessage{
		Type: DHTMessage_DIAGNOSTIC,
		Id: GenerateMessageID(),
	}

254
	listen_chan := dht.ListenFor(pmes.Id, len(targets), time.Minute * 2)
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292

	pbmes := pmes.ToProtobuf()
	for _,p := range targets {
		mes := swarm.NewMessage(p, pbmes)
		dht.network.Chan.Outgoing <-mes
	}

	var out []*diagInfo
	after := time.After(timeout)
	for count := len(targets); count > 0; {
		select {
		case <-after:
			u.DOut("Diagnostic request timed out.")
			return out, u.ErrTimeout
		case resp := <-listen_chan:
			pmes_out := new(DHTMessage)
			err := proto.Unmarshal(resp.Data, pmes_out)
			if err != nil {
				// NOTE: here and elsewhere, need to audit error handling,
				//		some errors should be continued on from
				return out, err
			}

			dec := json.NewDecoder(bytes.NewBuffer(pmes_out.GetValue()))
			for {
				di := new(diagInfo)
				err := dec.Decode(di)
				if err != nil {
					break
				}

				out = append(out, di)
			}
		}
	}

	return nil,nil
}