-
Notifications
You must be signed in to change notification settings - Fork 0
/
peer.js
475 lines (397 loc) · 14.7 KB
/
peer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
// Copyright (c) 2015 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
'use strict';
var assert = require('assert');
var inherits = require('util').inherits;
var EventEmitter = require('./lib/event_emitter');
var net = require('net');
var TChannelConnection = require('./connection');
var errors = require('./errors');
var Request = require('./request');
var PreferOutgoing = require('./peer_score_strategies.js').PreferOutgoing;
var NoPreference = require('./peer_score_strategies.js').NoPreference;
var PreferIncoming = require('./peer_score_strategies.js').PreferIncoming;
var DEFAULT_REPORT_INTERVAL = 1000;
function TChannelPeer(channel, hostPort, options) {
if (!(this instanceof TChannelPeer)) {
return new TChannelPeer(channel, hostPort, options);
}
var self = this;
EventEmitter.call(self);
self.stateChangedEvent = self.defineEvent('stateChanged');
self.allocConnectionEvent = self.defineEvent('allocConnection');
self.removeConnectionEvent = self.defineEvent('removeConnection');
assert(hostPort !== '0.0.0.0:0', 'Cannot create ephemeral peer');
self.channel = channel;
self.logger = self.channel.logger;
self.timers = self.channel.timers;
self.random = self.channel.random;
self.options = options || {};
self.hostPort = hostPort;
self.connections = [];
self.pendingIdentified = 0;
self.heapElements = [];
self.handler = null;
self.reportInterval = self.options.reportInterval || DEFAULT_REPORT_INTERVAL;
if (self.reportInterval > 0 && self.channel.emitConnectionMetrics) {
self.reportTimer = self.timers.setTimeout(
onReport, self.reportInterval
);
}
var direction = self.options.preferConnectionDirection || 'any';
self.setPreferConnectionDirection(direction);
function onReport() {
if (!self.hostPort) {
return;
}
var count = self.countConnections('out');
if (self.channel.emitConnectionMetrics) {
self.channel.connectionsActiveStat.update(count, {
'host-port': self.channel.hostPort,
'peer-host-port': self.hostPort
});
}
self.reportTimer = self.timers.setTimeout(
onReport, self.reportInterval
);
}
}
inherits(TChannelPeer, EventEmitter);
TChannelPeer.prototype.extendLogInfo =
function extendLogInfo(info) {
var self = this;
info.hostPort = self.hostPort;
return info;
};
TChannelPeer.prototype.setPreferConnectionDirection = function setPreferConnectionDirection(direction) {
var self = this;
if (self.preferConnectionDirection === direction) {
return;
}
self.preferConnectionDirection = direction;
if (self.preferConnectionDirection === 'out') {
self.setScoreStrategy(PreferOutgoing);
} else if (self.preferConnectionDirection === 'in') {
self.setScoreStrategy(PreferIncoming);
} else {
self.setScoreStrategy(NoPreference);
}
self.invalidateScore();
};
TChannelPeer.prototype.setScoreStrategy = function setScoreStrategy(ScoreStrategy) {
var self = this;
self.handler = new ScoreStrategy(self);
};
TChannelPeer.prototype.invalidateScore = function invalidateScore() {
var self = this;
if (!self.heapElements.length) {
return;
}
var score = self.handler.getScore();
for (var i = 0; i < self.heapElements.length; i++) {
var el = self.heapElements[i];
el.rescore(score);
}
};
TChannelPeer.prototype.isConnected = function isConnected(direction, identified) {
var self = this;
if (identified === undefined) identified = true;
for (var i = 0; i < self.connections.length; i++) {
var conn = self.connections[i];
if (direction && conn.direction !== direction) {
continue;
} else if (conn.closing) {
continue;
} else if (conn.remoteName !== null || !identified) {
return true;
}
}
return false;
};
TChannelPeer.prototype.close = function close(callback) {
var self = this;
if (self.reportTimer) {
self.timers.clearTimeout(self.reportTimer);
self.reportTimer = null;
}
var counter = self.connections.length;
if (counter) {
for (var i = counter - 1; i >= 0; i--) {
self.connections[i].close(onClose);
}
} else {
callback(null);
}
function onClose() {
if (--counter <= 0) {
if (counter < 0) {
self.logger.error('closed more peer sockets than expected', {
counter: counter
});
}
callback(null);
}
}
};
TChannelPeer.prototype.getInConnection = function getInConnection(preferIdentified) {
var self = this;
var candidate = null;
for (var i = 0; i < self.connections.length; i++) {
var conn = self.connections[i];
if (conn.closing) continue;
if (!preferIdentified) return conn; // user doesn't care, take first incoming
if (conn.remoteName) return conn; // user wanted an identified channel, and we found one
if (!candidate) candidate = conn; // we'll fallback to returning this if we can't find an identified one
}
return candidate;
};
TChannelPeer.prototype.getIdentifiedInConnection = function getIdentifiedInConnection() {
var self = this;
return self.getInConnection(true);
};
TChannelPeer.prototype.getOutConnection = function getOutConnection(preferIdentified) {
var self = this;
var candidate = null;
for (var i = self.connections.length - 1; i >= 0; i--) {
var conn = self.connections[i];
if (conn.closing) continue;
if (!preferIdentified) return conn; // user doesn't care, take last outgoing
if (conn.remoteName) return conn; // user wanted an identified channel, and we found one
if (!candidate) candidate = conn; // we'll fallback to returning this if we can't find an identified one
}
return candidate;
};
TChannelPeer.prototype.getIdentifiedOutConnection = function getIdentifiedOutConnection() {
var self = this;
return self.getOutConnection(true);
};
TChannelPeer.prototype.countConnections = function countConnections(direction) {
var self = this;
if (!direction) {
return self.connections.length;
}
var count = 0;
for (var i = 0; i < self.connections.length; i++) {
var conn = self.connections[i];
if (conn.direction === direction) {
count++;
}
}
return count;
};
// ensures that a connection exists
TChannelPeer.prototype.connect = function connect(outOnly) {
var self = this;
var conn = null;
if (self.preferConnectionDirection === 'in' && !outOnly) {
conn = self.getIdentifiedInConnection();
} else {
conn = self.getIdentifiedOutConnection();
}
if (!conn || (outOnly && conn.direction !== 'out')) {
var socket = self.makeOutSocket();
conn = self.makeOutConnection(socket);
self.addConnection(conn);
}
return conn;
};
// ensures that an outbound connection exists
TChannelPeer.prototype.connectTo = function connectTo() {
var self = this;
self.connect(true);
};
TChannelPeer.prototype.waitForIdentified =
function waitForIdentified(callback) {
var self = this;
var conn = self.connect();
if (conn.closing) {
callback(conn.closeError);
} else if (conn.remoteName) {
callback(null);
} else {
self._waitForIdentified(conn, callback);
}
};
TChannelPeer.prototype._waitForIdentified =
function _waitForIdentified(conn, callback) {
var self = this;
self.pendingIdentified++;
conn.errorEvent.on(onConnectionError);
conn.closeEvent.on(onConnectionClose);
conn.identifiedEvent.on(onIdentified);
self.invalidateScore();
function onConnectionError(err) {
finish(err);
}
function onConnectionClose(err) {
finish(err);
}
function onIdentified() {
finish(null);
}
function finish(err) {
self.pendingIdentified = 0;
conn.errorEvent.removeListener(onConnectionError);
conn.closeEvent.removeListener(onConnectionClose);
conn.identifiedEvent.removeListener(onIdentified);
self.invalidateScore();
callback(err);
}
};
TChannelPeer.prototype.request = function peerRequest(options) {
var self = this;
options.timeout = options.timeout || Request.defaultTimeout;
return self.connect().request(options);
};
TChannelPeer.prototype.addConnection = function addConnection(conn) {
var self = this;
// TODO: first approx alert for self.connections.length > 2
// TODO: second approx support pruning
if (conn.direction === 'out') {
self.connections.push(conn);
} else {
self.connections.unshift(conn);
}
conn.errorEvent.on(onConnectionError);
conn.closeEvent.on(onConnectionClose);
self._maybeInvalidateScore();
if (!conn.remoteName) {
// TODO: could optimize if handler had a way of saying "would a new
// identified connection change your Tier?"
conn.identifiedEvent.on(onIdentified);
}
return conn;
function onIdentified() {
conn.identifiedEvent.removeListener(onIdentified);
self._maybeInvalidateScore();
}
function onConnectionError(err) {
removeConnection(err);
}
function onConnectionClose() {
removeConnection(null);
}
function removeConnection(err) {
conn.closeEvent.removeListener(onConnectionClose);
conn.errorEvent.removeListener(onConnectionError);
conn.identifiedEvent.removeListener(onIdentified);
if (err) {
var loggerInfo = {
error: err,
direction: conn.direction,
remoteName: conn.remoteName,
socketRemoteAddr: conn.socketRemoteAddr
};
var codeName = errors.classify(err);
if (codeName === 'Timeout') {
self.logger.warn('Got a connection error', loggerInfo);
} else {
self.logger.error('Got an unexpected connection error', loggerInfo);
}
}
self.removeConnection(conn);
}
};
TChannelPeer.prototype.removeConnection = function removeConnection(conn) {
var self = this;
var ret = null;
var index = self.connections ? self.connections.indexOf(conn) : -1;
if (index !== -1) {
ret = self.connections.splice(index, 1)[0];
}
self._maybeInvalidateScore();
self.removeConnectionEvent.emit(self, conn);
return ret;
};
TChannelPeer.prototype.makeOutSocket = function makeOutSocket() {
var self = this;
var parts = self.hostPort.split(':');
assert(parts.length === 2, 'invalid destination');
var host = parts[0];
var port = parts[1];
assert(host !== '0.0.0.0', 'cannot connect to ephemeral peer');
assert(port !== '0', 'cannot connect to dynamic port');
var socket = net.createConnection({host: host, port: port});
return socket;
};
TChannelPeer.prototype.makeOutConnection = function makeOutConnection(socket) {
var self = this;
var chan = self.channel.topChannel || self.channel;
var conn = new TChannelConnection(chan, socket, 'out', self.hostPort);
if (chan.draining) {
conn.drain(chan.drainReason, null);
}
self.allocConnectionEvent.emit(self, conn);
return conn;
};
TChannelPeer.prototype.pendingWeightedRandom = function pendingWeightedRandom() {
// Returns a score in the range from 0 to 1, where it is preferable to use
// a peer with a higher score over one with a lower score.
// This range is divided among an infinite set of subranges corresponding
// to peers with the same number of pending requests.
// So, the range (1/2, 1) is reserved for peers with 0 pending connections.
// The range (1/4, 1/2) is reserved for peers with 1 pending connections.
// The range (1/8, 1/4) is reserved for peers with 2 pending connections.
// Ad nauseam.
// Within each equivalence class, each peer receives a uniform random
// value.
//
// The previous score was a weighted random variable:
// random() ** (1 + pending)
// This had the attribute that a less loaded peer was merely more likely to
// be chosen over a more loaded peer.
// We observed with the introduction of a heap, that a less favored peer
// would have its score less frequently re-evaluated.
// An emergent behavior was that scores would, over time, be squeezed
// toward zero and the least favored peer would remain the least favored
// for ever increasing durations.
//
// This remains true with this algorithm, within each equivalence class.
var self = this;
var pending = self.pendingIdentified + self.countPending();
var max = Math.pow(0.5, pending);
var min = max / 2;
var diff = max - min;
return min + diff * self.random();
};
TChannelPeer.prototype.countPending = function countPending() {
var self = this;
var pending = 0;
for (var index = 0; index < self.connections.length; index++) {
var connPending = self.connections[index].ops.getPending();
pending += connPending.out;
pending += connPending.errors;
}
return pending;
};
// TODO: on connection #getScore impacting event
// - on identified
// Called on connection change event
TChannelPeer.prototype._maybeInvalidateScore = function _maybeInvalidateScore() {
var self = this;
if (self.handler.getTier() !== self.handler.lastTier) {
self.invalidateScore();
}
};
TChannelPeer.prototype.getScore = function getScore() {
var self = this;
return self.handler.getScore();
};
module.exports = TChannelPeer;