engine.go 8.21 KB
Newer Older
Jeromy's avatar
Jeromy committed
1
// package decision implements the decision engine for the bitswap service.
2
package decision
3 4 5 6

import (
	"sync"

7
	context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
8
	blocks "github.com/ipfs/go-ipfs/blocks"
9 10 11 12 13
	bstore "github.com/ipfs/go-ipfs/blocks/blockstore"
	bsmsg "github.com/ipfs/go-ipfs/exchange/bitswap/message"
	wl "github.com/ipfs/go-ipfs/exchange/bitswap/wantlist"
	peer "github.com/ipfs/go-ipfs/p2p/peer"
	eventlog "github.com/ipfs/go-ipfs/thirdparty/eventlog"
14 15
)

16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
// TODO consider taking responsibility for other types of requests. For
// example, there could be a |cancelQueue| for all of the cancellation
// messages that need to go out. There could also be a |wantlistQueue| for
// the local peer's wantlists. Alternatively, these could all be bundled
// into a single, intelligent global queue that efficiently
// batches/combines and takes all of these into consideration.
//
// Right now, messages go onto the network for four reasons:
// 1. an initial `sendwantlist` message to a provider of the first key in a request
// 2. a periodic full sweep of `sendwantlist` messages to all providers
// 3. upon receipt of blocks, a `cancel` message to all peers
// 4. draining the priority queue of `blockrequests` from peers
//
// Presently, only `blockrequests` are handled by the decision engine.
// However, there is an opportunity to give it more responsibility! If the
// decision engine is given responsibility for all of the others, it can
// intelligently decide how to combine requests efficiently.
//
// Some examples of what would be possible:
//
// * when sending out the wantlists, include `cancel` requests
// * when handling `blockrequests`, include `sendwantlist` and `cancel` as appropriate
// * when handling `cancel`, if we recently received a wanted block from a
// 	 peer, include a partial wantlist that contains a few other high priority
//   blocks
//
// In a sense, if we treat the decision engine as a black box, it could do
// whatever it sees fit to produce desired outcomes (get wanted keys
// quickly, maintain good relationships with peers, etc).

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
46
var log = eventlog.Logger("engine")
47

Brian Tiger Chow's avatar
Brian Tiger Chow committed
48
const (
49 50
	// outboxChanBuffer must be 0 to prevent stale messages from being sent
	outboxChanBuffer = 0
Brian Tiger Chow's avatar
Brian Tiger Chow committed
51 52
)

53
// Envelope contains a message for a Peer
54
type Envelope struct {
55
	// Peer is the intended recipient
56
	Peer peer.ID
57 58 59

	// Block is the payload
	Block *blocks.Block
Jeromy's avatar
Jeromy committed
60 61 62

	// A callback to notify the decision queue that the task is complete
	Sent func()
63 64
}

65
type Engine struct {
66 67 68
	// peerRequestQueue is a priority queue of requests received from peers.
	// Requests are popped from the queue, packaged up, and placed in the
	// outbox.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
69
	peerRequestQueue peerRequestQueue
70

71 72 73 74 75
	// FIXME it's a bit odd for the client and the worker to both share memory
	// (both modify the peerRequestQueue) and also to communicate over the
	// workSignal channel. consider sending requests over the channel and
	// allowing the worker to have exclusive access to the peerRequestQueue. In
	// that case, no lock would be required.
Jeromy's avatar
Jeromy committed
76
	workSignal chan struct{}
77

78 79
	// outbox contains outgoing messages to peers. This is owned by the
	// taskWorker goroutine
Brian Tiger Chow's avatar
Brian Tiger Chow committed
80
	outbox chan (<-chan *Envelope)
81 82 83

	bs bstore.Blockstore

84
	lock sync.RWMutex // protects the fields immediatly below
85
	// ledgerMap lists Ledgers by their Partner key.
86
	ledgerMap map[peer.ID]*ledger
87 88
}

89 90
func NewEngine(ctx context.Context, bs bstore.Blockstore) *Engine {
	e := &Engine{
91
		ledgerMap:        make(map[peer.ID]*ledger),
Brian Tiger Chow's avatar
Brian Tiger Chow committed
92
		bs:               bs,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
93
		peerRequestQueue: newPRQ(),
Brian Tiger Chow's avatar
Brian Tiger Chow committed
94
		outbox:           make(chan (<-chan *Envelope), outboxChanBuffer),
95
		workSignal:       make(chan struct{}, 1),
96
	}
97 98
	go e.taskWorker(ctx)
	return e
Jeromy's avatar
Jeromy committed
99 100
}

101 102 103 104 105 106 107 108 109 110
func (e *Engine) WantlistForPeer(p peer.ID) (out []wl.Entry) {
	e.lock.Lock()
	partner, ok := e.ledgerMap[p]
	if ok {
		out = partner.wantList.SortedEntries()
	}
	e.lock.Unlock()
	return out
}

111
func (e *Engine) taskWorker(ctx context.Context) {
112 113
	defer close(e.outbox) // because taskWorker uses the channel exclusively
	for {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
114
		oneTimeUse := make(chan *Envelope, 1) // buffer to prevent blocking
115 116 117 118 119 120 121 122 123 124 125 126
		select {
		case <-ctx.Done():
			return
		case e.outbox <- oneTimeUse:
		}
		// receiver is ready for an outoing envelope. let's prepare one. first,
		// we must acquire a task from the PQ...
		envelope, err := e.nextEnvelope(ctx)
		if err != nil {
			close(oneTimeUse)
			return // ctx cancelled
		}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
127
		oneTimeUse <- envelope // buffered. won't block
128 129 130 131 132 133 134
		close(oneTimeUse)
	}
}

// nextEnvelope runs in the taskWorker goroutine. Returns an error if the
// context is cancelled before the next Envelope can be created.
func (e *Engine) nextEnvelope(ctx context.Context) (*Envelope, error) {
Jeromy's avatar
Jeromy committed
135
	for {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
136
		nextTask := e.peerRequestQueue.Pop()
137
		for nextTask == nil {
Jeromy's avatar
Jeromy committed
138
			select {
139
			case <-ctx.Done():
140
				return nil, ctx.Err()
141
			case <-e.workSignal:
142
				nextTask = e.peerRequestQueue.Pop()
Jeromy's avatar
Jeromy committed
143 144
			}
		}
145 146

		// with a task in hand, we're ready to prepare the envelope...
147

148
		block, err := e.bs.Get(nextTask.Entry.Key)
149
		if err != nil {
Jeromy's avatar
Jeromy committed
150 151 152
			// If we don't have the block, don't hold that against the peer
			// make sure to update that the task has been 'completed'
			nextTask.Done()
Brian Tiger Chow's avatar
Brian Tiger Chow committed
153
			continue
154
		}
155

156
		return &Envelope{
157 158
			Peer:  nextTask.Target,
			Block: block,
159 160 161 162 163 164 165 166 167
			Sent: func() {
				nextTask.Done()
				select {
				case e.workSignal <- struct{}{}:
					// work completing may mean that our queue will provide new
					// work to be done.
				default:
				}
			},
168
		}, nil
Jeromy's avatar
Jeromy committed
169 170 171
	}
}

172
// Outbox returns a channel of one-time use Envelope channels.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
173
func (e *Engine) Outbox() <-chan (<-chan *Envelope) {
174
	return e.outbox
175 176 177
}

// Returns a slice of Peers with whom the local node has active sessions
178
func (e *Engine) Peers() []peer.ID {
179 180
	e.lock.RLock()
	defer e.lock.RUnlock()
181

182
	response := make([]peer.ID, 0)
183
	for _, ledger := range e.ledgerMap {
184 185 186 187 188 189 190
		response = append(response, ledger.Partner)
	}
	return response
}

// MessageReceived performs book-keeping. Returns error if passed invalid
// arguments.
191
func (e *Engine) MessageReceived(p peer.ID, m bsmsg.BitSwapMessage) error {
192 193 194
	e.lock.Lock()
	defer e.lock.Unlock()

195
	if len(m.Wantlist()) == 0 && len(m.Blocks()) == 0 {
196
		log.Debugf("received empty message from %s", p)
197 198
	}

199 200 201
	newWorkExists := false
	defer func() {
		if newWorkExists {
202
			e.signalNewWork()
203 204
		}
	}()
205

206
	l := e.findOrCreate(p)
207 208 209
	if m.Full() {
		l.wantList = wl.New()
	}
210

211 212
	for _, entry := range m.Wantlist() {
		if entry.Cancel {
213
			log.Errorf("cancel %s", entry.Key)
214
			l.CancelWant(entry.Key)
Brian Tiger Chow's avatar
Brian Tiger Chow committed
215
			e.peerRequestQueue.Remove(entry.Key, p)
216
		} else {
217
			log.Errorf("wants %s - %d", entry.Key, entry.Priority)
218
			l.Wants(entry.Key, entry.Priority)
219
			if exists, err := e.bs.Has(entry.Key); err == nil && exists {
220
				e.peerRequestQueue.Push(entry.Entry, p)
Brian Tiger Chow's avatar
Brian Tiger Chow committed
221
				newWorkExists = true
222
			}
223 224
		}
	}
Jeromy's avatar
Jeromy committed
225

226
	for _, block := range m.Blocks() {
227
		log.Debugf("got block %s %d bytes", block.Key(), len(block.Data))
228
		l.ReceivedBytes(len(block.Data))
229
		for _, l := range e.ledgerMap {
230 231
			if entry, ok := l.WantListContains(block.Key()); ok {
				e.peerRequestQueue.Push(entry, l.Partner)
Brian Tiger Chow's avatar
Brian Tiger Chow committed
232
				newWorkExists = true
Jeromy's avatar
Jeromy committed
233 234
			}
		}
235 236 237 238 239 240 241 242 243 244
	}
	return nil
}

// TODO add contents of m.WantList() to my local wantlist? NB: could introduce
// race conditions where I send a message, but MessageSent gets handled after
// MessageReceived. The information in the local wantlist could become
// inconsistent. Would need to ensure that Sends and acknowledgement of the
// send happen atomically

245
func (e *Engine) MessageSent(p peer.ID, m bsmsg.BitSwapMessage) error {
246 247
	e.lock.Lock()
	defer e.lock.Unlock()
248

249
	l := e.findOrCreate(p)
250 251 252
	for _, block := range m.Blocks() {
		l.SentBytes(len(block.Data))
		l.wantList.Remove(block.Key())
Brian Tiger Chow's avatar
Brian Tiger Chow committed
253
		e.peerRequestQueue.Remove(block.Key(), p)
254 255 256 257 258
	}

	return nil
}

259 260 261 262
func (e *Engine) PeerDisconnected(p peer.ID) {
	// TODO: release ledger
}

263
func (e *Engine) numBytesSentTo(p peer.ID) uint64 {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
264
	// NB not threadsafe
265
	return e.findOrCreate(p).Accounting.BytesSent
266 267
}

268
func (e *Engine) numBytesReceivedFrom(p peer.ID) uint64 {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
269
	// NB not threadsafe
270
	return e.findOrCreate(p).Accounting.BytesRecv
271 272 273
}

// ledger lazily instantiates a ledger
274 275
func (e *Engine) findOrCreate(p peer.ID) *ledger {
	l, ok := e.ledgerMap[p]
276 277
	if !ok {
		l = newLedger(p)
278
		e.ledgerMap[p] = l
279 280 281
	}
	return l
}
282 283 284 285 286 287 288 289

func (e *Engine) signalNewWork() {
	// Signal task generation to restart (if stopped!)
	select {
	case e.workSignal <- struct{}{}:
	default:
	}
}