-
Notifications
You must be signed in to change notification settings - Fork 52
/
index.js
674 lines (608 loc) · 20 KB
/
index.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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
'use strict';
if (process.addAsyncListener) throw new Error("Don't require polyfill unless needed");
var shimmer = require('shimmer')
, semver = require('semver')
, wrap = shimmer.wrap
, massWrap = shimmer.massWrap
, wrapCallback = require('./glue.js')
, util = require('util')
;
var v6plus = semver.gte(process.version, '6.0.0');
var v7plus = semver.gte(process.version, '7.0.0');
var v8plus = semver.gte(process.version, '8.0.0');
var v11plus = semver.gte(process.version, '11.0.0');
var net = require('net');
// From Node.js v7.0.0, net._normalizeConnectArgs have been renamed net._normalizeArgs
if (v7plus && !net._normalizeArgs) {
// a polyfill in our polyfill etc so forth -- taken from node master on 2017/03/09
net._normalizeArgs = function (args) {
if (args.length === 0) {
return [{}, null];
}
var arg0 = args[0];
var options = {};
if (typeof arg0 === 'object' && arg0 !== null) {
// (options[...][, cb])
options = arg0;
} else if (isPipeName(arg0)) {
// (path[...][, cb])
options.path = arg0;
} else {
// ([port][, host][...][, cb])
options.port = arg0;
if (args.length > 1 && typeof args[1] === 'string') {
options.host = args[1];
}
}
var cb = args[args.length - 1];
if (typeof cb !== 'function')
return [options, null];
else
return [options, cb];
}
} else if (!v7plus && !net._normalizeConnectArgs) {
// a polyfill in our polyfill etc so forth -- taken from node master on 2013/10/30
net._normalizeConnectArgs = function (args) {
var options = {};
function toNumber(x) { return (x = Number(x)) >= 0 ? x : false; }
if (typeof args[0] === 'object' && args[0] !== null) {
// connect(options, [cb])
options = args[0];
}
else if (typeof args[0] === 'string' && toNumber(args[0]) === false) {
// connect(path, [cb]);
options.path = args[0];
}
else {
// connect(port, [host], [cb])
options.port = args[0];
if (typeof args[1] === 'string') {
options.host = args[1];
}
}
var cb = args[args.length - 1];
return typeof cb === 'function' ? [options, cb] : [options];
};
}
// In https://github.com/nodejs/node/pull/11796 `_listen2` was renamed
// `_setUpListenHandle`. It's still aliased as `_listen2`, and currently the
// Node internals still call the alias - but who knows for how long. So better
// make sure we use the new name instead if available.
if ('_setUpListenHandle' in net.Server.prototype) {
wrap(net.Server.prototype, '_setUpListenHandle', wrapSetUpListenHandle);
} else {
wrap(net.Server.prototype, '_listen2', wrapSetUpListenHandle);
}
function wrapSetUpListenHandle(original) {
return function () {
this.on('connection', function (socket) {
if (socket._handle) {
socket._handle.onread = wrapCallback(socket._handle.onread);
}
});
try {
return original.apply(this, arguments);
}
finally {
// the handle will only not be set in cases where there has been an error
if (this._handle && this._handle.onconnection) {
this._handle.onconnection = wrapCallback(this._handle.onconnection);
}
}
};
}
function patchOnRead(ctx) {
if (ctx && ctx._handle) {
var handle = ctx._handle;
if (!handle._originalOnread) {
handle._originalOnread = handle.onread;
}
handle.onread = wrapCallback(handle._originalOnread);
}
}
wrap(net.Socket.prototype, 'connect', function (original) {
return function () {
var args;
// Node core uses an internal Symbol here to guard against the edge-case
// where the user accidentally passes in an array. As we don't have access
// to this Symbol we resort to this hack where we just detect if there is a
// symbol or not. Checking for the number of Symbols is by no means a fool
// proof solution, but it catches the most basic cases.
if (v8plus &&
Array.isArray(arguments[0]) &&
Object.getOwnPropertySymbols(arguments[0]).length > 0) {
// already normalized
args = arguments[0];
} else {
// From Node.js v7.0.0, net._normalizeConnectArgs have been renamed net._normalizeArgs
args = v7plus
? net._normalizeArgs(arguments)
: net._normalizeConnectArgs(arguments);
}
if (args[1]) args[1] = wrapCallback(args[1]);
var result = original.apply(this, args);
patchOnRead(this);
return result;
};
});
var http = require('http');
// NOTE: A rewrite occurred in 0.11 that changed the addRequest signature
// from (req, host, port, localAddress) to (req, options)
// Here, I use the longer signature to maintain 0.10 support, even though
// the rest of the arguments aren't actually used
wrap(http.Agent.prototype, 'addRequest', function (original) {
return function (req) {
var onSocket = req.onSocket;
req.onSocket = wrapCallback(function (socket) {
patchOnRead(socket);
return onSocket.apply(this, arguments);
});
return original.apply(this, arguments);
};
});
var childProcess = require('child_process');
function wrapChildProcess(child) {
if (Array.isArray(child.stdio)) {
child.stdio.forEach(function (socket) {
if (socket && socket._handle) {
socket._handle.onread = wrapCallback(socket._handle.onread);
wrap(socket._handle, 'close', activatorFirst);
}
});
}
if (child._handle) {
child._handle.onexit = wrapCallback(child._handle.onexit);
}
}
// iojs v2.0.0+
if (childProcess.ChildProcess) {
wrap(childProcess.ChildProcess.prototype, 'spawn', function (original) {
return function () {
var result = original.apply(this, arguments);
wrapChildProcess(this);
return result;
};
});
} else {
massWrap(childProcess, [
'execFile', // exec is implemented in terms of execFile
'fork',
'spawn'
], function (original) {
return function () {
var result = original.apply(this, arguments);
wrapChildProcess(result);
return result;
};
});
}
// need unwrapped nextTick for use within < 0.9 async error handling
if (!process._fatalException) {
process._originalNextTick = process.nextTick;
}
var processors = [];
if (process._nextDomainTick) processors.push('_nextDomainTick');
if (process._tickDomainCallback) processors.push('_tickDomainCallback');
massWrap(
process,
processors,
activator
);
wrap(process, 'nextTick', activatorFirst);
var asynchronizers = [
'setTimeout',
'setInterval'
];
if (global.setImmediate) asynchronizers.push('setImmediate');
var timers = require('timers');
var patchGlobalTimers = global.setTimeout === timers.setTimeout;
massWrap(
timers,
asynchronizers,
activatorFirst
);
if (patchGlobalTimers) {
massWrap(
global,
asynchronizers,
activatorFirst
);
}
var dns = require('dns');
massWrap(
dns,
[
'lookup',
'resolve',
'resolve4',
'resolve6',
'resolveCname',
'resolveMx',
'resolveNs',
'resolveTxt',
'resolveSrv',
'reverse'
],
activator
);
if (dns.resolveNaptr) wrap(dns, 'resolveNaptr', activator);
var fs = require('fs');
massWrap(
fs,
[
'watch',
'rename',
'truncate',
'chown',
'fchown',
'chmod',
'fchmod',
'stat',
'lstat',
'fstat',
'link',
'symlink',
'readlink',
'realpath',
'unlink',
'rmdir',
'mkdir',
'readdir',
'close',
'open',
'utimes',
'futimes',
'fsync',
'write',
'read',
'readFile',
'writeFile',
'appendFile',
'watchFile',
'unwatchFile',
"exists",
],
activator
);
// only wrap lchown and lchmod on systems that have them.
if (fs.lchown) wrap(fs, 'lchown', activator);
if (fs.lchmod) wrap(fs, 'lchmod', activator);
// only wrap ftruncate in versions of node that have it
if (fs.ftruncate) wrap(fs, 'ftruncate', activator);
// Wrap zlib streams
var zlib;
try { zlib = require('zlib'); } catch (err) { }
if (zlib && zlib.Deflate && zlib.Deflate.prototype) {
var proto = Object.getPrototypeOf(zlib.Deflate.prototype);
if (proto._transform) {
// streams2
wrap(proto, "_transform", activator);
}
else if (proto.write && proto.flush && proto.end) {
// plain ol' streams
massWrap(
proto,
[
'write',
'flush',
'end'
],
activator
);
}
}
// Wrap Crypto
var crypto;
try { crypto = require('crypto'); } catch (err) { }
if (crypto) {
var toWrap = [
'pbkdf2',
'randomBytes',
];
if (!v11plus) {
toWrap.push('pseudoRandomBytes');
}
massWrap(crypto, toWrap, activator);
}
// It is unlikely that any userspace promise implementations have a native
// implementation of both Promise and Promise.toString.
var instrumentPromise = !!global.Promise &&
Promise.toString() === 'function Promise() { [native code] }' &&
Promise.toString.toString() === 'function toString() { [native code] }';
// Check that global Promise is native
if (instrumentPromise) {
// shoult not use any methods that have already been wrapped
var promiseListener = process.addAsyncListener({
create: function create() {
instrumentPromise = false;
}
});
// should not resolve synchronously
global.Promise.resolve(true).then(function notSync() {
instrumentPromise = false;
});
process.removeAsyncListener(promiseListener);
}
/*
* Native promises use the microtask queue to make all callbacks run
* asynchronously to avoid Zalgo issues. Since the microtask queue is not
* exposed externally, promises need to be modified in a fairly invasive and
* complex way.
*
* The async boundary in promises that must be patched is between the
* fulfillment of the promise and the execution of any callback that is waiting
* for that fulfillment to happen. This means that we need to trigger a create
* when resolve or reject is called and trigger before, after and error handlers
* around the callback execution. There may be multiple callbacks for each
* fulfilled promise, so handlers will behave similar to setInterval where
* there may be multiple before after and error calls for each create call.
*
* async-listener monkeypatching has one basic entry point: `wrapCallback`.
* `wrapCallback` should be called when create should be triggered and be
* passed a function to wrap, which will execute the body of the async work.
* The resolve and reject calls can be modified fairly easily to call
* `wrapCallback`, but at the time of resolve and reject all the work to be done
* on fulfillment may not be defined, since a call to then, chain or fetch can
* be made even after the promise has been fulfilled. To get around this, we
* create a placeholder function which will call a function passed into it,
* since the call to the main work is being made from within the wrapped
* function, async-listener will work correctly.
*
* There is another complication with monkeypatching Promises. Calls to then,
* chain and catch each create new Promises that are fulfilled internally in
* different ways depending on the return value of the callback. When the
* callback return a Promise, the new Promise is resolved asynchronously after
* the returned Promise has been also been resolved. When something other than
* a promise is resolved the resolve call for the new Promise is put in the
* microtask queue and asynchronously resolved.
*
* Then must be wrapped so that its returned promise has a wrapper that can be
* used to invoke further continuations. This wrapper cannot be created until
* after the callback has run, since the callback may return either a promise
* or another value. Fortunately we already have a wrapper function around the
* callback we can use (the wrapper created by resolve or reject).
*
* By adding an additional argument to this wrapper, we can pass in the
* returned promise so it can have its own wrapper appended. the wrapper
* function can the call the callback, and take action based on the return
* value. If a promise is returned, the new Promise can proxy the returned
* Promise's wrapper (this wrapper may not exist yet, but will by the time the
* wrapper needs to be invoked). Otherwise, a new wrapper can be create the
* same way as in resolve and reject. Since this wrapper is created
* synchronously within another wrapper, it will properly appear as a
* continuation from within the callback.
*/
if (instrumentPromise) {
wrapPromise();
}
function wrapPromise() {
var Promise = global.Promise;
// Updates to this class should also be applied to the the ES6 version
// in es6-wrapped-promise.js.
function wrappedPromise(executor) {
if (!(this instanceof wrappedPromise)) {
return Promise(executor);
}
if (typeof executor !== 'function') {
return new Promise(executor);
}
var context, args;
var promise = new Promise(wrappedExecutor);
promise.__proto__ = wrappedPromise.prototype;
try {
executor.apply(context, args);
} catch (err) {
args[1](err);
}
return promise;
function wrappedExecutor(resolve, reject) {
context = this;
args = [wrappedResolve, wrappedReject];
// These wrappers create a function that can be passed a function and an argument to
// call as a continuation from the resolve or reject.
function wrappedResolve(val) {
ensureAslWrapper(promise, false);
return resolve(val);
}
function wrappedReject(val) {
ensureAslWrapper(promise, false);
return reject(val);
}
}
}
util.inherits(wrappedPromise, Promise);
wrap(Promise.prototype, 'then', wrapThen);
// Node.js <v7 only, alias for .then
if (Promise.prototype.chain) {
wrap(Promise.prototype, 'chain', wrapThen);
}
if (v6plus) {
global.Promise = require('./es6-wrapped-promise.js')(Promise, ensureAslWrapper);
} else {
var PromiseFunctions = [
'all',
'race',
'reject',
'resolve',
'accept', // Node.js <v7 only
'defer' // Node.js <v7 only
];
PromiseFunctions.forEach(function(key) {
// don't break `in` by creating a key for undefined entries
if (typeof Promise[key] === 'function') {
wrappedPromise[key] = Promise[key];
}
});
global.Promise = wrappedPromise
}
function ensureAslWrapper(promise, overwrite) {
if (!promise.__asl_wrapper || overwrite) {
promise.__asl_wrapper = wrapCallback(propagateAslWrapper);
}
}
function propagateAslWrapper(ctx, fn, result, next) {
var nextResult;
try {
nextResult = fn.call(ctx, result);
return {returnVal: nextResult, error: false}
} catch (err) {
return {errorVal: err, error: true}
} finally {
// Wrap any resulting futures as continuations.
if (nextResult instanceof Promise) {
next.__asl_wrapper = function proxyWrapper() {
var aslWrapper = nextResult.__asl_wrapper || propagateAslWrapper;
return aslWrapper.apply(this, arguments);
}
} else {
ensureAslWrapper(next, true);
}
}
}
function wrapThen(original) {
return function wrappedThen() {
var promise = this;
var next = original.apply(promise, Array.prototype.map.call(arguments, bind));
next.__asl_wrapper = function proxyWrapper(ctx, fn, val, last) {
if (promise.__asl_wrapper) {
promise.__asl_wrapper(ctx, function () {}, null, next);
return next.__asl_wrapper(ctx, fn, val, last);
}
return propagateAslWrapper(ctx, fn, val, last);
}
return next;
// wrap callbacks (success, error) so that the callbacks will be called as a
// continuations of the resolve or reject call using the __asl_wrapper created above.
function bind(fn) {
if (typeof fn !== 'function') return fn;
return wrapCallback(function (val) {
var result = (promise.__asl_wrapper || propagateAslWrapper)(this, fn, val, next);
if (result.error) {
throw result.errorVal
} else {
return result.returnVal
}
});
}
}
}
}
// Shim activator for functions that have callback last
function activator(fn) {
var fallback = function () {
var args;
var cbIdx = arguments.length - 1;
if (typeof arguments[cbIdx] === "function") {
args = Array(arguments.length)
for (var i = 0; i < arguments.length - 1; i++) {
args[i] = arguments[i];
}
args[cbIdx] = wrapCallback(arguments[cbIdx]);
}
return fn.apply(this, args || arguments);
};
// Preserve function length for small arg count functions.
switch (fn.length) {
case 1:
return function (cb) {
if (arguments.length !== 1) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb);
};
case 2:
return function (a, cb) {
if (arguments.length !== 2) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, a, cb);
};
case 3:
return function (a, b, cb) {
if (arguments.length !== 3) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, a, b, cb);
};
case 4:
return function (a, b, c, cb) {
if (arguments.length !== 4) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, a, b, c, cb);
};
case 5:
return function (a, b, c, d, cb) {
if (arguments.length !== 5) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, a, b, c, d, cb);
};
case 6:
return function (a, b, c, d, e, cb) {
if (arguments.length !== 6) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, a, b, c, d, e, cb);
};
default:
return fallback;
}
}
// Shim activator for functions that have callback first
function activatorFirst(fn) {
var fallback = function () {
var args;
if (typeof arguments[0] === "function") {
args = Array(arguments.length)
args[0] = wrapCallback(arguments[0]);
for (var i = 1; i < arguments.length; i++) {
args[i] = arguments[i];
}
}
return fn.apply(this, args || arguments);
};
// Preserve function length for small arg count functions.
switch (fn.length) {
case 1:
return function (cb) {
if (arguments.length !== 1) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb);
};
case 2:
return function (cb, a) {
if (arguments.length !== 2) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb, a);
};
case 3:
return function (cb, a, b) {
if (arguments.length !== 3) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb, a, b);
};
case 4:
return function (cb, a, b, c) {
if (arguments.length !== 4) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb, a, b, c);
};
case 5:
return function (cb, a, b, c, d) {
if (arguments.length !== 5) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb, a, b, c, d);
};
case 6:
return function (cb, a, b, c, d, e) {
if (arguments.length !== 6) return fallback.apply(this, arguments);
if (typeof cb === "function") cb = wrapCallback(cb);
return fn.call(this, cb, a, b, c, d, e);
};
default:
return fallback;
}
}
// taken from node master on 2017/03/09
function toNumber(x) {
return (x = Number(x)) >= 0 ? x : false;
}
// taken from node master on 2017/03/09
function isPipeName(s) {
return typeof s === 'string' && toNumber(s) === false;
}