-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.js
716 lines (641 loc) · 24.8 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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
'use strict';
// Don't require these until we've hooked certain builtins
var ChildProcess,
dgramSocket,
HttpServer,
HttpsServer,
child_process,
cluster,
path,
Server,
Socket,
Timer,
TlsServer,
async_hooks;
var NODE_VERSION = process.version.slice(1).split('.').map(function (v) { return parseInt(v, 10); });
var DONT_INSTRUMENT = {
'ChildProcess': NODE_VERSION[0] === 0 && NODE_VERSION[1] <= 10
};
var _console_log = console.log.bind(console),
_console_warn = console.warn.bind(console),
_console_error = console.error.bind(console);
function timerCallback(thing) {
if (typeof thing._repeat === 'function') { return '_repeat'; }
if (typeof thing._onTimeout === 'function') { return '_onTimeout'; }
if (typeof thing._onImmediate === 'function') { return '_onImmediate'; }
}
function setPrototypeOf(obj, proto) {
if (Object.setPrototypeOf) {
return Object.setPrototypeOf(obj, proto);
} else {
obj.__proto__ = proto;
return obj;
}
}
var log = (function () {
var util;
var fns = { };
function log(/*type, args...*/) {
// lazy load so we can define this early but don't cause any requires
// until after we've hooked things or don't care
util = util || require('util');
var i = arguments.length, args = new Array(i);
while (i--) { args[i] = arguments[i]; }
var type = args.shift(), str = util.format.apply(util, args);
return fns[type](str);
}
log.setLogger = function setLogger(type, fn) {
fns[type] = fn;
};
log.resetLoggers = function resetLoggers() {
fns = {
'info': _console_log,
'warn': _console_warn,
'error': _console_error
};
};
log.resetLoggers();
return log;
})();
var trackedAsyncResources = null, refSymbol = null;
function getRefSymbol() {
function _noop() { }
function _getRefSymbol(asyncId, type, triggerAsyncId, resource) {
var symbols = Object.getOwnPropertySymbols(resource);
symbols.forEach(function (sym) {
if (sym.description === 'refed') {
refSymbol = sym;
}
});
}
var hook = async_hooks.createHook({
init: _getRefSymbol
});
hook.enable();
var timer = setTimeout(_noop, 1000);
hook.disable();
clearTimeout(timer);
}
function setupAsyncHooks() {
async_hooks = require('async_hooks');
getRefSymbol();
trackedAsyncResources = new Map();
function init(asyncId, type, triggerAsyncId, resource) {
if (type === 'Timeout') {
trackedAsyncResources.set(asyncId, {
resource: resource,
type: type
});
}
}
function destroy(asyncId) {
if (trackedAsyncResources.has(asyncId)) {
trackedAsyncResources.delete(asyncId);
}
}
var hook = async_hooks.createHook({
init: init,
destroy: destroy
});
hook.enable();
}
// hook stuff
(function () {
var hooked = function (_, stack) { return stack; };
function getStack() {
var _Error_prepareStackTrace = Error.prepareStackTrace;
Error.prepareStackTrace = hooked;
var err = new Error();
var stack = err.stack.map(function (item) {
if (item.isEval()) {
var matched = item.getEvalOrigin().match(/\((.*):(\d*):(\d*)\)/) || {};
return {
name: '<eval>',
file: matched[1],
line: matched[2]
};
}
return {
name: item.getFunctionName(),
file: item.getFileName(),
line: item.getLineNumber()
};
});
Error.prepareStackTrace = _Error_prepareStackTrace;
return stack;
}
function findCallsite(stack) {
for (var i = 0; i < stack.length; i++) {
// Ignore frames from:
// - null/undefined values
// - wtfnode by excluding __filename
// - builtins by excluding files with no path separator
// - internal builtins by excluding files beginning with 'internal/'
// (even on windows, the stack trace uses unix separators for these)
if (stack[i].file &&
stack[i].file !== __filename &&
stack[i].file.indexOf(path.sep) !== -1 &&
stack[i].file.slice(0, 9) !== 'internal/'
) {
return stack[i];
}
}
return null;
}
function copyProperties(source, target) {
// this should inherit 'name' and 'length' and any other properties that have been assigned
Object.getOwnPropertyNames(source).forEach(function (key) {
try {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
} catch (e) {
// some properties cannot be redefined, not much we can do about it
}
});
if (!Object.getOwnPropertySymbols) { return; }
Object.getOwnPropertySymbols(source).forEach(function (sym) {
try {
Object.defineProperty(target, sym, Object.getOwnPropertyDescriptor(source, sym));
} catch (e) {
// some properties cannot be redefined, not much we can do about it
}
});
}
// wraps a function with a proxy function holding the first userland call
// site in the stack and some other information, for later display
// this will probably screw up any code that depends on the callbacks having
// a 'name' or 'length' property that is accurate, but there doesn't appear
// to be a way around that :(
function wrapFn(fn, name, isInterval, callback) {
if (typeof fn !== 'function') { return fn; }
var wrapped = (
typeof callback === 'function' ?
function () {
callback.call(this, wrapped);
return fn.apply(this, arguments);
}
:
function () {
return fn.apply(this, arguments);
}
);
var stack = getStack();
// this should inherit 'name' and 'length' and any other properties that have been assigned
// also inherits prototype, and symbols like the promisify value!
copyProperties(fn, wrapped);
// we use these later to identify the source information about an open handle
if (!wrapped.hasOwnProperty('__callSite')) {
Object.defineProperties(wrapped, {
__fullStack: {
enumerable: false,
configurable: false,
writable: false,
value: stack
},
__name: {
enumerable: false,
configurable: false,
writable: false,
value: name || '(anonymous)'
},
__callSite: {
enumerable: false,
configurable: false,
writable: false,
value: findCallsite(stack)
},
__isInterval: {
enumerable: false,
configurable: false,
writable: false,
value: isInterval
}
});
}
return wrapped;
}
var GLOBALS = { };
function wrapTimer(type, isInterval) {
GLOBALS[type] = global[type];
global[type] = function () {
var args = [ ], i = arguments.length;
while (i--) { args[i] = arguments[i]; }
var ret = GLOBALS[type].apply(this, args);
var cbkey = timerCallback(ret);
if (ret[cbkey]) {
ret[cbkey] = wrapFn(ret[cbkey], args[0].name, isInterval);
}
return ret;
};
copyProperties(GLOBALS[type], global[type]);
};
wrapTimer('setTimeout', false);
wrapTimer('setInterval', true);
var EventEmitter = require('events').EventEmitter,
Readable = require('stream').Readable;
var _EventEmitter_init = EventEmitter.init;
var _EventEmitter_listeners = EventEmitter.prototype.listeners;
if (!DONT_INSTRUMENT['ChildProcess']) {
// this will conveniently be run on new child processes
EventEmitter.init = function () {
var callSite = findCallsite(getStack());
if (callSite && !this.hasOwnProperty('__callSite')) {
Object.defineProperties(this, {
__callSite: {
enumerable: false,
configurable: false,
writable: false,
value: findCallsite(getStack())
}
});
}
return _EventEmitter_init.apply(this, arguments);
};
}
function addListener(emitter, origMethod, type, cb) {
var before = _EventEmitter_listeners.call(emitter, type);
var ret = origMethod.call(emitter, type, cb);
var after = _EventEmitter_listeners.call(emitter, type);
var newListeners = after.filter(function(handler) {
return before.indexOf(handler) === -1;
});
return [ret, newListeners];
}
// Readable streams have their own handling of the "on data" event
// which must be wrapped separately; if we call EventEmitter's handler
// on a readable stream, it will do the wrong thing
[EventEmitter, Readable].forEach(function (Cls) {
['on', 'addListener', 'once'].forEach(function (method) {
var origMethod = Cls.prototype[method];
Cls.prototype[method] = function (/*type, listener*/) {
var args = [ ], i = arguments.length, fn;
while (i--) { args[i] = arguments[i]; }
var type = args[0], fn = args[1];
var callSite = wrapFn(args[1], args[1].name, null).__callSite;
var res = addListener(this, origMethod, type, fn);
var ret = res[0], newListeners = res[1];
newListeners.forEach(function (listener) {
// I've tried to avoid mutating anything that's not mine, however
// the possibilities across Node versions, wrapping behavior, and
// so on made this complex. So instead, we just tag all possible
// wrappers and functions with the callsite and move on with our
// life. this lets node behave however it would behave, and whatever
// we wind up with a reference to (wrapped or unwrapped, etc.)
// in getActiveHandles, it should have the info we want.
while (listener && !listener.hasOwnProperty('__callSite')) {
Object.defineProperties(listener, {
__callSite: {
enumerable: false,
configurable: false,
writable: false,
value: callSite
}
});
listener = listener.listener;
}
});
return ret;
};
});
});
// path must be required before the rest of these
// as some of them invoke our hooks on load which
// requires path to be available to the above code
path = require('path');
dgramSocket = require('dgram').Socket;
HttpServer = require('http').Server;
HttpsServer = require('https').Server;
Server = require('net').Server;
Socket = require('net').Socket;
if (NODE_VERSION[0] < 11) {
Timer = process.binding('timer_wrap').Timer;
} else {
setupAsyncHooks();
}
TlsServer = require('tls').Server;
ChildProcess = (function () {
var ChildProcess = require('child_process').ChildProcess;
if (typeof ChildProcess !== 'function') {
// node 0.10 doesn't expose the ChildProcess constructor, so we have to get it on the sly
var cp = require('child_process').spawn('true', [], { stdio: 'ignore' });
ChildProcess = cp.constructor;
}
return ChildProcess;
})();
cluster = require('cluster');
var _cluster_fork = cluster.fork;
cluster.fork = function (/*env*/) {
var worker = _cluster_fork.apply(this, arguments);
// we get an open handle for a pipe, but no reference to the
// worker itself, so we add one, as well as the call site info
if (worker && worker.process && worker.process._channel) {
Object.defineProperties(worker.process._channel, {
__callSite: {
enumerable: false,
configurable: false,
writable: false,
value: findCallsite(getStack())
},
__worker: {
enumerable: false,
configurable: false,
writable: false,
value: worker
}
});
}
return worker;
};
})();
function formatTime(t) {
var labels = ['ms', 's', 'min', 'hr'],
units = [1, 1000, 60, 60],
i = 0;
while (i < units.length && t / units[i] > 1) { t /= units[i++]; }
return Math.floor(t) + ' ' + labels[i-1];
};
var count = 0;
function getCallsite(thing) {
if (!thing.__callSite) {
var name = ((thing.name ? thing.name : thing.constructor.name) || '(anonymous)').trim();
if (!DONT_INSTRUMENT[name]) {
log('warn', 'Unable to determine callsite for "'+name+'". Did you require `wtfnode` at the top of your entry point?');
}
return { name: '(anonymous)', file: 'unknown', line: 0 };
}
return thing.__callSite;
};
function dump() {
log('info', '[WTF Node?] open handles:');
// sort the active handles into different types for logging
var sockets = [ ], fds = [ ], servers = [ ], _timers = [ ], processes = [ ], clusterWorkers = [ ], other = [ ];
process._getActiveHandles().forEach(function (h) {
// handles can be null now? early exit to guard against this
if (!h) { return; }
if (h instanceof Socket) {
// stdin, stdout, etc. are now instances of socket and get listed in open handles
// todo: a more specific/better way to identify them than the 'fd' property
if ((h.fd != null)) { fds.push(h); }
else { sockets.push(h); }
}
else if (h instanceof Server) { servers.push(h); }
else if (h instanceof dgramSocket) { servers.push(h); }
else if (NODE_VERSION[0] < 11 && h instanceof Timer) { _timers.push(h); }
else if (h instanceof ChildProcess) { processes.push(h); }
else if (h.hasOwnProperty('__worker')) { clusterWorkers.push(h); }
// catchall
else { other.push(h); }
});
if (trackedAsyncResources !== null) {
trackedAsyncResources.forEach(function (obj) {
if (obj.type === 'Timeout') {
if (obj.resource[refSymbol] === true) {
_timers.push(obj.resource);
}
}
});
}
if (fds.length) {
log('info', '- File descriptors: (note: stdio always exists)');
fds.forEach(function (s) {
var str = ' - fd '+s.fd;
if (s.isTTY) { str += ' (tty)'; }
if (s._isStdio) { str += ' (stdio)'; }
if (s.destroyed) { str += ' (destroyed)'; }
log('info', str);
// this event will source the origin of a readline instance, kind of indirectly
var keypressListeners = s.listeners('keypress');
if (keypressListeners && keypressListeners.length) {
log('info', ' - Listeners:');
keypressListeners.forEach(function (fn) {
var callSite = getCallsite(fn);
log('info', ' - %s: %s @ %s:%d', 'keypress', fn.name || fn.__name || callSite.name || '(anonymous)', callSite.file, callSite.line);
});
}
});
}
// remove cluster workers from child process list
clusterWorkers.forEach(function (p) {
if (!p.__worker || !p.__worker.process) { return; }
var cw = p.__worker.process,
idx = processes.indexOf(cw);
if (idx > -1) { processes.splice(idx, 1); }
});
if (processes.length) {
log('info', '- Child processes');
processes.forEach(function (cp) {
var fds = [ ];
log('info', ' - PID %s', cp.pid);
if (!DONT_INSTRUMENT['ChildProcess']) {
var callSite = getCallsite(cp);
log('info', ' - Entry point: %s:%d', callSite.file, callSite.line);
}
if (cp.stdio && cp.stdio.length) {
cp.stdio.forEach(function (s) {
if (s && s._handle && (s._handle.fd != null)) { fds.push(s._handle.fd); }
var idx = sockets.indexOf(s);
if (idx > -1) {
sockets.splice(idx, 1);
}
});
if (fds && fds.length) {
log('info', ' - STDIO file descriptors:', fds.join(', '));
}
}
});
}
if (clusterWorkers.length) {
log('info', '- Cluster workers');
clusterWorkers.forEach(function (cw) {
var fds = [ ], cp = cw.__worker.process;
log('info', ' - PID %s', cp.pid);
var callSite = getCallsite(cw);
log('info', ' - Entry point: %s:%d', callSite.file, callSite.line);
});
}
if (sockets.length) {
log('info', '- Sockets:');
sockets.forEach(function (s) {
if (s.destroyed) {
log('info', ' - (?:?) -> %s:? (destroyed)', s._host);
} else if (s.localAddress) {
log('info', ' - %s:%s -> %s:%s', s.localAddress, s.localPort, s.remoteAddress, s.remotePort);
} else if (s._handle && (s._handle.fd != null)) {
log('info', ' - fd %s', s._handle.fd);
} else {
log('info', ' - unknown socket');
}
var connectListeners = s.listeners('connect');
if (connectListeners && connectListeners.length) {
log('info', ' - Listeners:');
connectListeners.forEach(function (fn) {
var callSite = getCallsite(fn);
log('info', ' - %s: %s @ %s:%d', 'connect', fn.name || fn.__name || callSite.name || '(anonymous)', callSite.file, callSite.line);
});
}
});
}
if (servers.length) {
log('info', '- Servers:');
servers.forEach(function (s) {
var type = 'unknown type';
if (s instanceof HttpServer) { type = 'HTTP'; }
else if (s instanceof HttpsServer) { type = 'HTTPS'; }
else if (s instanceof TlsServer) { type = 'TLS'; }
else if (s instanceof Server) { type = 'TCP'; }
else if (s instanceof dgramSocket) { type = 'UDP'; }
try {
var a = s.address();
} catch (e) {
if (type === 'UDP') {
// udp sockets that haven't been bound will throw, but won't prevent exit
return;
}
throw e;
}
if (a) {
if (typeof a === "string") {
// IPC Socket
log('info', ' - %s (%s)', a, type);
} else {
log('info', ' - %s:%s (%s)', a.address, a.port, type);
}
} else {
log('info', ' - <unknown address>'); // closed / race condition?
}
var eventType = (
type === 'HTTP' || type === 'HTTPS' ? 'request' :
type === 'TCP' || type === 'TLS' ? 'connection' :
type === 'UDP' ? 'message' :
'connection'
);
var listeners = s.listeners(eventType);
if (listeners && listeners.length) {
log('info', ' - Listeners:');
listeners.forEach(function (fn) {
var callSite = getCallsite(fn);
log('info', ' - %s: %s @ %s:%d', eventType, fn.name || fn.__name || callSite.name || '(anonymous)', callSite.file, callSite.line);
});
}
});
}
var timers = [ ], intervals = [ ];
_timers.forEach(function (t) {
var timer = t._list, cb, cbkey;
if (NODE_VERSION[0] > 10) {
timer = t;
cbkey = timerCallback(timer);
if (cbkey && timers.indexOf(timer) === -1) {
cb = timer[cbkey];
if (cb.__isInterval) {
intervals.push(timer);
} else {
timers.push(timer);
}
}
} else if (t._list) {
// node v5ish behavior
do {
cbkey = timerCallback(timer);
if (cbkey && timers.indexOf(timer) === -1) {
cb = timer[cbkey];
if (cb.__isInterval || cbkey === '_repeat') {
intervals.push(timer);
} else {
timers.push(timer);
}
}
timer = timer._idleNext;
} while (!timer.constructor || timer !== t._list);
} else {
// node 0.12ish behavior
_timers.forEach(function (t) {
var timer = t;
while ((timer = timer._idleNext)) {
if (timer === t) {
break;
}
cbkey = timerCallback(timer);
if (cbkey && timers.indexOf(timer) === -1) {
cb = timer[cbkey];
if (cb.__isInterval) {
intervals.push(timer);
} else {
timers.push(timer);
}
}
}
});
}
});
if (timers.length) {
log('info', '- Timers:');
timers.forEach(function (t) {
var fn = t[timerCallback(t)],
callSite = getCallsite(fn);
log('info', ' - (%d ~ %s) %s @ %s:%d', t._idleTimeout, formatTime(t._idleTimeout), fn.name || fn.__name || callSite.name || '(anonymous)', callSite.file, callSite.line);
});
}
if (intervals.length) {
log('info', '- Intervals:');
intervals.forEach(function (t) {
var fn = t[timerCallback(t)],
callSite = getCallsite(fn);
log('info', ' - (%d ~ %s) %s @ %s:%d', t._idleTimeout, formatTime(t._idleTimeout), fn.name || fn.__name || callSite.name, callSite.file, callSite.line);
});
}
if (other.length) {
log('info', '- Others:');
other.forEach(function (o) {
if (!o) { return; }
if (isChannel(o)) {
log('info', ' - %s', 'IPC channel to parent (see readme)');
}
else if (o.constructor) { log('info', ' - %s', o.constructor.name); }
else { log('info', ' - %s', o); }
});
}
}
function isChannel(obj) {
// node docs state process.channel added in 7.10, but _channel
// seems to exist prior to that
var ch = process.channel || process._channel;
return ch && obj === ch;
}
function dumpAndExit() {
// let other potential handlers run before exiting
process.nextTick(function () {
try { dump(); }
catch (e) { log('error', e); }
process.exit();
});
}
function init() {
process.on('SIGINT', dumpAndExit);
process.on('SIGTERM', dumpAndExit);
}
module.exports = {
dump: dump,
init: init,
setLogger: log.setLogger,
resetLoggers: log.resetLoggers
};
function parseArgs() {
if (process.argv.length < 3) {
log('error', 'Usage: wtfnode <yourscript> <yourargs> ...');
process.exit(1);
}
var moduleParams = process.argv.slice(3);
var modulePath = path.resolve(process.cwd(), process.argv[2]);
return [].concat(process.argv[0], modulePath, moduleParams);
}
if (module === require.main) {
init();
// The goal here is to invoke the given module in a form that is as
// identical as possible to invoking `node <the_module>` directly.
// This means massaging process.argv and using Module.runMain to convince
// the module that it is the 'main' module.
var newArgv = parseArgs(process.argv);
var Module = require('module');
process.argv = newArgv;
Module.runMain();
}