2017-01-04 00:16:48 +03:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2014-11-22 18:59:48 +03:00
|
|
|
'use strict';
|
|
|
|
|
2015-09-17 01:45:29 +03:00
|
|
|
const EventEmitter = require('events');
|
2015-01-21 19:36:59 +03:00
|
|
|
const stream = require('stream');
|
|
|
|
const util = require('util');
|
2015-06-13 19:44:39 +03:00
|
|
|
const internalUtil = require('internal/util');
|
2017-12-31 02:27:56 +03:00
|
|
|
const {
|
2018-01-26 20:39:10 +03:00
|
|
|
isIP,
|
|
|
|
isIPv4,
|
|
|
|
isIPv6,
|
2017-12-31 02:27:56 +03:00
|
|
|
isLegalPort,
|
|
|
|
normalizedArgsSymbol,
|
|
|
|
makeSyncWrite
|
|
|
|
} = require('internal/net');
|
2015-01-21 19:36:59 +03:00
|
|
|
const assert = require('assert');
|
2017-08-19 01:37:35 +03:00
|
|
|
const {
|
|
|
|
UV_EADDRINUSE,
|
|
|
|
UV_EINVAL,
|
|
|
|
UV_EOF
|
|
|
|
} = process.binding('uv');
|
2014-02-26 18:03:59 +04:00
|
|
|
|
2017-10-07 17:50:42 +03:00
|
|
|
const { Buffer } = require('buffer');
|
2015-04-07 11:37:13 +03:00
|
|
|
const TTYWrap = process.binding('tty_wrap');
|
2017-11-20 19:18:40 +03:00
|
|
|
const { TCP, constants: TCPConstants } = process.binding('tcp_wrap');
|
|
|
|
const { Pipe, constants: PipeConstants } = process.binding('pipe_wrap');
|
2017-10-07 17:50:42 +03:00
|
|
|
const { TCPConnectWrap } = process.binding('tcp_wrap');
|
|
|
|
const { PipeConnectWrap } = process.binding('pipe_wrap');
|
|
|
|
const { ShutdownWrap, WriteWrap } = process.binding('stream_wrap');
|
|
|
|
const { async_id_symbol } = process.binding('async_wrap');
|
2017-11-22 20:41:00 +03:00
|
|
|
const { newUid, defaultTriggerAsyncIdScope } = require('internal/async_hooks');
|
2017-10-07 17:50:42 +03:00
|
|
|
const { nextTick } = require('internal/process/next_tick');
|
2017-06-16 22:47:48 +03:00
|
|
|
const errors = require('internal/errors');
|
2017-07-11 16:23:38 +03:00
|
|
|
const dns = require('dns');
|
2014-12-09 07:29:47 +03:00
|
|
|
|
2017-12-12 01:55:17 +03:00
|
|
|
const kLastWriteQueueSize = Symbol('lastWriteQueueSize');
|
|
|
|
|
2017-07-11 16:23:38 +03:00
|
|
|
// `cluster` is only used by `listenInCluster` so for startup performance
|
|
|
|
// reasons it's lazy loaded.
|
|
|
|
var cluster = null;
|
2017-04-11 19:15:11 +03:00
|
|
|
|
2015-01-21 19:36:59 +03:00
|
|
|
const errnoException = util._errnoException;
|
|
|
|
const exceptionWithHostPort = util._exceptionWithHostPort;
|
2011-08-01 02:58:10 +04:00
|
|
|
|
2017-12-16 21:05:38 +03:00
|
|
|
const {
|
|
|
|
kTimeout,
|
|
|
|
setUnrefTimeout,
|
2018-01-09 21:12:06 +03:00
|
|
|
validateTimerDuration,
|
|
|
|
refreshFnSymbol
|
2017-12-16 21:05:38 +03:00
|
|
|
} = require('internal/timers');
|
2017-02-04 00:05:59 +03:00
|
|
|
|
2012-02-19 03:01:35 +04:00
|
|
|
function noop() {}
|
2011-10-07 21:00:48 +04:00
|
|
|
|
2017-11-20 19:18:40 +03:00
|
|
|
function createHandle(fd, is_server) {
|
2017-08-12 00:02:15 +03:00
|
|
|
const type = TTYWrap.guessHandleType(fd);
|
2017-11-20 19:18:40 +03:00
|
|
|
if (type === 'PIPE') {
|
|
|
|
return new Pipe(
|
|
|
|
is_server ? PipeConstants.SERVER : PipeConstants.SOCKET
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === 'TCP') {
|
|
|
|
return new TCP(
|
|
|
|
is_server ? TCPConstants.SERVER : TCPConstants.SOCKET
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_FD_TYPE', type);
|
2013-03-14 18:13:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-10 16:17:42 +03:00
|
|
|
function getNewAsyncId(handle) {
|
|
|
|
return (!handle || typeof handle.getAsyncId !== 'function') ?
|
2017-07-15 07:00:36 +03:00
|
|
|
newUid() : handle.getAsyncId();
|
2017-03-10 16:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-21 19:36:59 +03:00
|
|
|
const debug = util.debuglog('net');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
function isPipeName(s) {
|
2015-01-29 04:05:53 +03:00
|
|
|
return typeof s === 'string' && toNumber(s) === false;
|
2011-07-20 00:49:42 +04:00
|
|
|
}
|
|
|
|
|
2017-03-05 20:15:38 +03:00
|
|
|
function createServer(options, connectionListener) {
|
2014-09-24 07:08:35 +04:00
|
|
|
return new Server(options, connectionListener);
|
2017-03-05 20:15:38 +03:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
// Target API:
|
|
|
|
//
|
|
|
|
// var s = net.connect({port: 80, host: 'google.com'}, function() {
|
|
|
|
// ...
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// There are various forms:
|
|
|
|
//
|
|
|
|
// connect(options, [cb])
|
|
|
|
// connect(port, [host], [cb])
|
|
|
|
// connect(path, [cb]);
|
|
|
|
//
|
2017-06-05 15:05:36 +03:00
|
|
|
function connect(...args) {
|
2017-04-24 09:21:25 +03:00
|
|
|
var normalized = normalizeArgs(args);
|
|
|
|
var options = normalized[0];
|
2017-03-03 19:52:12 +03:00
|
|
|
debug('createConnection', normalized);
|
2017-04-24 09:21:25 +03:00
|
|
|
var socket = new Socket(options);
|
2016-08-31 03:00:41 +03:00
|
|
|
|
2017-03-03 19:52:12 +03:00
|
|
|
if (options.timeout) {
|
|
|
|
socket.setTimeout(options.timeout);
|
2016-08-31 03:00:41 +03:00
|
|
|
}
|
|
|
|
|
2017-05-05 17:02:14 +03:00
|
|
|
return Socket.prototype.connect.call(socket, normalized);
|
2017-03-05 20:15:38 +03:00
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
|
2017-03-03 19:52:12 +03:00
|
|
|
// Returns an array [options, cb], where options is an object,
|
2017-06-16 18:49:20 +03:00
|
|
|
// cb is either a function or null.
|
2017-03-03 19:52:12 +03:00
|
|
|
// Used to normalize arguments of Socket.prototype.connect() and
|
2017-06-16 18:49:20 +03:00
|
|
|
// Server.prototype.listen(). Possible combinations of parameters:
|
2017-03-03 19:52:12 +03:00
|
|
|
// (options[...][, cb])
|
|
|
|
// (path[...][, cb])
|
|
|
|
// ([port][, host][...][, cb])
|
|
|
|
// For Socket.prototype.connect(), the [...] part is ignored
|
|
|
|
// For Server.prototype.listen(), the [...] part is [, backlog]
|
|
|
|
// but will not be handled here (handled in listen())
|
|
|
|
function normalizeArgs(args) {
|
2017-05-18 21:19:21 +03:00
|
|
|
var arr;
|
|
|
|
|
2016-08-15 20:46:39 +03:00
|
|
|
if (args.length === 0) {
|
2017-05-18 21:19:21 +03:00
|
|
|
arr = [{}, null];
|
|
|
|
arr[normalizedArgsSymbol] = true;
|
|
|
|
return arr;
|
2017-03-03 19:52:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const arg0 = args[0];
|
|
|
|
var options = {};
|
|
|
|
if (typeof arg0 === 'object' && arg0 !== null) {
|
|
|
|
// (options[...][, cb])
|
|
|
|
options = arg0;
|
|
|
|
} else if (isPipeName(arg0)) {
|
|
|
|
// (path[...][, cb])
|
|
|
|
options.path = arg0;
|
2011-07-20 00:49:42 +04:00
|
|
|
} else {
|
2017-03-03 19:52:12 +03:00
|
|
|
// ([port][, host][...][, cb])
|
|
|
|
options.port = arg0;
|
2016-08-15 20:46:39 +03:00
|
|
|
if (args.length > 1 && typeof args[1] === 'string') {
|
2012-01-09 05:18:39 +04:00
|
|
|
options.host = args[1];
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
}
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
var cb = args[args.length - 1];
|
2016-08-12 19:22:22 +03:00
|
|
|
if (typeof cb !== 'function')
|
2017-05-18 21:19:21 +03:00
|
|
|
arr = [options, null];
|
2017-03-03 19:52:12 +03:00
|
|
|
else
|
2017-05-18 21:19:21 +03:00
|
|
|
arr = [options, cb];
|
|
|
|
|
|
|
|
arr[normalizedArgsSymbol] = true;
|
|
|
|
return arr;
|
2012-01-09 05:18:39 +04:00
|
|
|
}
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// called when creating new Socket, or when re-using a closed Socket
|
2011-07-01 03:37:30 +04:00
|
|
|
function initSocketHandle(self) {
|
2017-05-06 15:20:52 +03:00
|
|
|
self._undestroy();
|
2012-05-08 22:19:38 +04:00
|
|
|
self._bytesDispatched = 0;
|
2015-07-03 01:26:21 +03:00
|
|
|
self._sockname = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
|
|
|
|
// Handle creation may be deferred to bind() or connect() time.
|
|
|
|
if (self._handle) {
|
2012-04-27 06:42:10 +04:00
|
|
|
self._handle.owner = self;
|
2011-07-22 01:00:47 +04:00
|
|
|
self._handle.onread = onread;
|
2017-03-10 16:17:42 +03:00
|
|
|
self[async_id_symbol] = getNewAsyncId(self._handle);
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
// If handle doesn't support writev - neither do we
|
|
|
|
if (!self._handle.writev)
|
|
|
|
self._writev = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
}
|
2011-07-01 03:37:30 +04:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2016-04-19 21:46:53 +03:00
|
|
|
|
|
|
|
const BYTES_READ = Symbol('bytesRead');
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
2016-04-26 23:27:08 +03:00
|
|
|
this.connecting = false;
|
2017-03-10 16:17:42 +03:00
|
|
|
// Problem with this is that users can supply their own handle, that may not
|
|
|
|
// have _handle.getAsyncId(). In this case an[async_id_symbol] should
|
|
|
|
// probably be supplied by async_hooks.
|
|
|
|
this[async_id_symbol] = -1;
|
2013-06-13 23:47:31 +04:00
|
|
|
this._hadError = false;
|
2013-01-28 20:54:27 +04:00
|
|
|
this._handle = null;
|
2015-02-19 16:14:36 +03:00
|
|
|
this._parent = null;
|
2013-10-28 14:25:27 +04:00
|
|
|
this._host = null;
|
2017-12-12 01:55:17 +03:00
|
|
|
this[kLastWriteQueueSize] = 0;
|
2017-02-04 00:05:59 +03:00
|
|
|
this[kTimeout] = null;
|
2013-01-28 20:54:27 +04:00
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof options === 'number')
|
2013-07-24 20:03:53 +04:00
|
|
|
options = { fd: options }; // Legacy interface.
|
2015-01-29 04:05:53 +03:00
|
|
|
else if (options === undefined)
|
2013-07-24 20:03:53 +04:00
|
|
|
options = {};
|
2012-07-17 17:16:23 +04:00
|
|
|
|
2012-12-27 18:57:19 +04:00
|
|
|
stream.Duplex.call(this, options);
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (options.handle) {
|
|
|
|
this._handle = options.handle; // private
|
2017-03-10 16:17:42 +03:00
|
|
|
this[async_id_symbol] = getNewAsyncId(this._handle);
|
2015-01-29 04:05:53 +03:00
|
|
|
} else if (options.fd !== undefined) {
|
2017-12-31 02:27:56 +03:00
|
|
|
const fd = options.fd;
|
|
|
|
this._handle = createHandle(fd, false);
|
|
|
|
this._handle.open(fd);
|
2017-03-10 16:17:42 +03:00
|
|
|
this[async_id_symbol] = this._handle.getAsyncId();
|
2017-04-16 21:29:35 +03:00
|
|
|
// options.fd can be string (since it is user-defined),
|
2017-02-23 02:46:32 +03:00
|
|
|
// so changing this to === would be semver-major
|
|
|
|
// See: https://github.com/nodejs/node/pull/11513
|
2017-04-16 21:29:35 +03:00
|
|
|
// eslint-disable-next-line eqeqeq
|
2017-12-31 02:27:56 +03:00
|
|
|
if ((fd == 1 || fd == 2) &&
|
2014-02-26 18:03:59 +04:00
|
|
|
(this._handle instanceof Pipe) &&
|
|
|
|
process.platform === 'win32') {
|
|
|
|
// Make stdout and stderr blocking on Windows
|
|
|
|
var err = this._handle.setBlocking(true);
|
|
|
|
if (err)
|
|
|
|
throw errnoException(err, 'setBlocking');
|
2017-12-31 02:27:56 +03:00
|
|
|
|
|
|
|
this._writev = null;
|
|
|
|
this._write = makeSyncWrite(fd);
|
2014-02-26 18:03:59 +04:00
|
|
|
}
|
2012-12-21 06:08:40 +04:00
|
|
|
this.readable = options.readable !== false;
|
|
|
|
this.writable = options.writable !== false;
|
2013-01-17 21:52:48 +04:00
|
|
|
} else {
|
|
|
|
// these will be set once there is a connection
|
|
|
|
this.readable = this.writable = false;
|
2011-09-13 01:59:51 +04:00
|
|
|
}
|
2012-07-17 17:16:23 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// shut down the socket when we're finished with it.
|
|
|
|
this.on('finish', onSocketFinish);
|
|
|
|
this.on('_socketEnd', onSocketEnd);
|
|
|
|
|
2012-07-17 17:16:23 +04:00
|
|
|
initSocketHandle(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2012-12-13 09:18:57 +04:00
|
|
|
|
|
|
|
// handle strings directly
|
|
|
|
this._writableState.decodeStrings = false;
|
|
|
|
|
|
|
|
// default to *not* allowing half open sockets
|
|
|
|
this.allowHalfOpen = options && options.allowHalfOpen || false;
|
|
|
|
|
|
|
|
// if we have a handle, then start the flow of data into the
|
|
|
|
// buffer. if not, then this will happen when we connect
|
2014-10-18 05:45:40 +04:00
|
|
|
if (this._handle && options.readable !== false) {
|
|
|
|
if (options.pauseOnCreate) {
|
|
|
|
// stop the handle from reading and pause the stream
|
|
|
|
this._handle.reading = false;
|
|
|
|
this._handle.readStop();
|
2017-05-16 18:08:49 +03:00
|
|
|
this.readableFlowing = false;
|
2017-10-12 08:57:45 +03:00
|
|
|
} else if (!options.manualStart) {
|
2014-10-18 05:45:40 +04:00
|
|
|
this.read(0);
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 23:09:31 +03:00
|
|
|
|
|
|
|
// Reserve properties
|
|
|
|
this.server = null;
|
|
|
|
this._server = null;
|
2016-04-19 21:46:53 +03:00
|
|
|
|
|
|
|
// Used after `.destroy()`
|
|
|
|
this[BYTES_READ] = 0;
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
|
|
|
util.inherits(Socket, stream.Duplex);
|
|
|
|
|
2017-02-04 00:05:59 +03:00
|
|
|
// Refresh existing timeouts.
|
2016-10-16 01:02:43 +03:00
|
|
|
Socket.prototype._unrefTimer = function _unrefTimer() {
|
2017-02-04 00:05:59 +03:00
|
|
|
for (var s = this; s !== null; s = s._parent) {
|
|
|
|
if (s[kTimeout])
|
2018-01-09 21:12:06 +03:00
|
|
|
s[kTimeout][refreshFnSymbol]();
|
2017-02-04 00:05:59 +03:00
|
|
|
}
|
2015-02-19 16:14:36 +03:00
|
|
|
};
|
|
|
|
|
2017-11-22 20:41:00 +03:00
|
|
|
|
|
|
|
function shutdownSocket(self, callback) {
|
|
|
|
var req = new ShutdownWrap();
|
|
|
|
req.oncomplete = callback;
|
|
|
|
req.handle = self._handle;
|
|
|
|
return self._handle.shutdown(req);
|
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// the user has called .end(), and all the bytes have been
|
|
|
|
// sent out to the other side.
|
|
|
|
function onSocketFinish() {
|
2013-03-13 16:53:27 +04:00
|
|
|
// If still connecting - defer handling 'finish' until 'connect' will happen
|
2016-04-26 23:27:08 +03:00
|
|
|
if (this.connecting) {
|
2013-03-13 16:53:27 +04:00
|
|
|
debug('osF: not yet connected');
|
|
|
|
return this.once('connect', onSocketFinish);
|
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('onSocketFinish');
|
2013-02-12 21:08:50 +04:00
|
|
|
if (!this.readable || this._readableState.ended) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('oSF: ended, destroy', this._readableState);
|
|
|
|
return this.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
debug('oSF: not ended, call shutdown()');
|
|
|
|
|
|
|
|
// otherwise, just shutdown, or destroy() if not possible
|
2012-12-25 05:35:52 +04:00
|
|
|
if (!this._handle || !this._handle.shutdown)
|
2012-12-13 09:18:57 +04:00
|
|
|
return this.destroy();
|
|
|
|
|
2017-11-22 20:41:00 +03:00
|
|
|
var err = defaultTriggerAsyncIdScope(
|
2018-01-05 17:03:10 +03:00
|
|
|
this[async_id_symbol], shutdownSocket, this, afterShutdown
|
2017-11-22 20:41:00 +03:00
|
|
|
);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err)
|
2017-05-06 15:20:52 +03:00
|
|
|
return this.destroy(errnoException(err, 'shutdown'));
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function afterShutdown(status, handle, req) {
|
|
|
|
var self = handle.owner;
|
|
|
|
|
|
|
|
debug('afterShutdown destroyed=%j', self.destroyed,
|
|
|
|
self._readableState);
|
|
|
|
|
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self._readableState.ended) {
|
|
|
|
debug('readableState ended, destroying');
|
|
|
|
self.destroy();
|
|
|
|
} else {
|
|
|
|
self.once('_socketEnd', self.destroy);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// the EOF has been received, and no more bytes are coming.
|
|
|
|
// if the writable side has ended already, then clean everything
|
|
|
|
// up.
|
|
|
|
function onSocketEnd() {
|
2017-10-30 05:54:45 +03:00
|
|
|
// XXX Should not have to do as much in this function.
|
2012-12-13 09:18:57 +04:00
|
|
|
// ended should already be true, since this is called *after*
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
// the EOF errno and onread has eof'ed
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('onSocketEnd', this._readableState);
|
|
|
|
this._readableState.ended = true;
|
|
|
|
if (this._readableState.endEmitted) {
|
|
|
|
this.readable = false;
|
2013-06-05 10:43:29 +04:00
|
|
|
maybeDestroy(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
} else {
|
2016-10-29 18:39:53 +03:00
|
|
|
this.once('end', function end() {
|
2012-12-13 09:18:57 +04:00
|
|
|
this.readable = false;
|
2013-06-05 10:43:29 +04:00
|
|
|
maybeDestroy(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
this.read(0);
|
|
|
|
}
|
|
|
|
|
2013-03-02 22:20:33 +04:00
|
|
|
if (!this.allowHalfOpen) {
|
|
|
|
this.write = writeAfterFIN;
|
2012-12-13 09:18:57 +04:00
|
|
|
this.destroySoon();
|
2013-03-02 22:20:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provide a better error message when we call end() as a result
|
|
|
|
// of the other side sending a FIN. The standard 'write after end'
|
|
|
|
// is overly vague, and makes it seem like the user's code is to blame.
|
|
|
|
function writeAfterFIN(chunk, encoding, cb) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof encoding === 'function') {
|
2013-03-02 22:20:33 +04:00
|
|
|
cb = encoding;
|
|
|
|
encoding = null;
|
|
|
|
}
|
|
|
|
|
2013-03-02 23:50:33 +04:00
|
|
|
var er = new Error('This socket has been ended by the other party');
|
2013-03-02 22:20:33 +04:00
|
|
|
er.code = 'EPIPE';
|
|
|
|
// TODO: defer error events consistently everywhere, not just the cb
|
2016-02-14 18:27:17 +03:00
|
|
|
this.emit('error', er);
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof cb === 'function') {
|
2017-03-10 16:17:42 +03:00
|
|
|
nextTick(this[async_id_symbol], cb, er);
|
2013-03-02 22:20:33 +04:00
|
|
|
}
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-01-07 18:29:00 +04:00
|
|
|
Socket.prototype.read = function(n) {
|
|
|
|
if (n === 0)
|
|
|
|
return stream.Readable.prototype.read.call(this, n);
|
|
|
|
|
|
|
|
this.read = stream.Readable.prototype.read;
|
|
|
|
this._consuming = true;
|
|
|
|
return this.read(n);
|
|
|
|
};
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.setTimeout = function(msecs, callback) {
|
2017-02-04 00:05:59 +03:00
|
|
|
// Type checking identical to timers.enroll()
|
2017-12-16 21:05:38 +03:00
|
|
|
msecs = validateTimerDuration(msecs);
|
2017-02-04 00:05:59 +03:00
|
|
|
|
|
|
|
// Attempt to clear an existing timer lear in both cases -
|
|
|
|
// even if it will be rescheduled we don't want to leak an existing timer.
|
|
|
|
clearTimeout(this[kTimeout]);
|
|
|
|
|
2014-12-17 01:17:28 +03:00
|
|
|
if (msecs === 0) {
|
|
|
|
if (callback) {
|
|
|
|
this.removeListener('timeout', callback);
|
|
|
|
}
|
|
|
|
} else {
|
2017-02-04 00:05:59 +03:00
|
|
|
this[kTimeout] = setUnrefTimeout(this._onTimeout.bind(this), msecs);
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (callback) {
|
|
|
|
this.once('timeout', callback);
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 05:25:57 +03:00
|
|
|
return this;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 23:01:12 +04:00
|
|
|
Socket.prototype._onTimeout = function() {
|
2017-12-12 01:55:17 +03:00
|
|
|
const handle = this._handle;
|
|
|
|
const lastWriteQueueSize = this[kLastWriteQueueSize];
|
|
|
|
if (lastWriteQueueSize > 0 && handle) {
|
|
|
|
// `lastWriteQueueSize !== writeQueueSize` means there is
|
2017-10-25 16:26:20 +03:00
|
|
|
// an active write in progress, so we suppress the timeout.
|
2017-12-12 01:55:17 +03:00
|
|
|
const writeQueueSize = handle.writeQueueSize;
|
|
|
|
if (lastWriteQueueSize !== writeQueueSize) {
|
|
|
|
this[kLastWriteQueueSize] = writeQueueSize;
|
2017-10-25 16:26:20 +03:00
|
|
|
this._unrefTimer();
|
|
|
|
return;
|
|
|
|
}
|
2017-10-12 16:57:42 +03:00
|
|
|
}
|
2012-02-19 03:01:35 +04:00
|
|
|
debug('_onTimeout');
|
2011-07-01 23:01:12 +04:00
|
|
|
this.emit('timeout');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-12 21:13:04 +04:00
|
|
|
Socket.prototype.setNoDelay = function(enable) {
|
2015-02-18 21:02:01 +03:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect',
|
2015-08-22 00:30:08 +03:00
|
|
|
enable ? this.setNoDelay : () => this.setNoDelay(enable));
|
2015-05-23 08:48:13 +03:00
|
|
|
return this;
|
2015-02-18 21:02:01 +03:00
|
|
|
}
|
|
|
|
|
2012-04-12 21:13:04 +04:00
|
|
|
// backwards compatibility: assume true when `enable` is omitted
|
2015-02-18 21:02:01 +03:00
|
|
|
if (this._handle.setNoDelay)
|
2015-01-29 04:05:53 +03:00
|
|
|
this._handle.setNoDelay(enable === undefined ? true : !!enable);
|
2015-05-23 08:48:13 +03:00
|
|
|
|
|
|
|
return this;
|
2011-06-17 16:27:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 01:53:22 +04:00
|
|
|
Socket.prototype.setKeepAlive = function(setting, msecs) {
|
2015-02-18 21:02:01 +03:00
|
|
|
if (!this._handle) {
|
2015-08-22 00:30:08 +03:00
|
|
|
this.once('connect', () => this.setKeepAlive(setting, msecs));
|
2015-05-23 08:48:13 +03:00
|
|
|
return this;
|
2015-02-18 21:02:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this._handle.setKeepAlive)
|
2011-10-22 04:07:11 +04:00
|
|
|
this._handle.setKeepAlive(setting, ~~(msecs / 1000));
|
2015-05-23 08:48:13 +03:00
|
|
|
|
|
|
|
return this;
|
2011-07-01 01:53:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-16 02:06:10 +04:00
|
|
|
Socket.prototype.address = function() {
|
2014-04-13 21:19:14 +04:00
|
|
|
return this._getsockname();
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-04-26 23:27:08 +03:00
|
|
|
Object.defineProperty(Socket.prototype, '_connecting', {
|
|
|
|
get: function() {
|
|
|
|
return this.connecting;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
Object.defineProperty(Socket.prototype, 'readyState', {
|
|
|
|
get: function() {
|
2016-04-26 23:27:08 +03:00
|
|
|
if (this.connecting) {
|
2011-06-17 16:27:02 +04:00
|
|
|
return 'opening';
|
|
|
|
} else if (this.readable && this.writable) {
|
|
|
|
return 'open';
|
|
|
|
} else if (this.readable && !this.writable) {
|
|
|
|
return 'readOnly';
|
|
|
|
} else if (!this.readable && this.writable) {
|
|
|
|
return 'writeOnly';
|
|
|
|
} else {
|
|
|
|
return 'closed';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(Socket.prototype, 'bufferSize', {
|
|
|
|
get: function() {
|
2011-12-28 10:13:57 +04:00
|
|
|
if (this._handle) {
|
2017-12-12 01:55:17 +03:00
|
|
|
return this[kLastWriteQueueSize] + this.writableLength;
|
2011-12-28 10:13:57 +04:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// Just call handle.readStart until we have enough in the buffer
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
Socket.prototype._read = function(n) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('_read');
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
|
2016-04-26 23:27:08 +03:00
|
|
|
if (this.connecting || !this._handle) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('_read wait for connection');
|
2015-08-22 00:30:08 +03:00
|
|
|
this.once('connect', () => this._read(n));
|
stream: There is no _read cb, there is only push
This makes it so that `stream.push(chunk)` is the only way to signal the
end of reading, removing the confusing disparity between the
callback-style _read method, and the fact that most real-world streams
do not have a 1:1 corollation between the "please give me data" event,
and the actual arrival of a chunk of data.
It is still possible, of course, to implement a `CallbackReadable` on
top of this. Simply provide a method like this as the callback:
function readCallback(er, chunk) {
if (er)
stream.emit('error', er);
else
stream.push(chunk);
}
However, *only* fs streams actually would behave in this way, so it
makes not a lot of sense to make TCP, TLS, HTTP, and all the rest have
to bend into this uncomfortable paradigm.
2013-03-01 03:32:32 +04:00
|
|
|
} else if (!this._handle.reading) {
|
|
|
|
// not already reading, start the flow
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('Socket._read readStart');
|
|
|
|
this._handle.reading = true;
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = this._handle.readStart();
|
|
|
|
if (err)
|
2017-05-06 15:20:52 +03:00
|
|
|
this.destroy(errnoException(err, 'read'));
|
2011-08-12 03:41:53 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
Socket.prototype.end = function(data, encoding) {
|
2012-12-13 09:18:57 +04:00
|
|
|
stream.Duplex.prototype.end.call(this, data, encoding);
|
2011-06-17 19:10:12 +04:00
|
|
|
this.writable = false;
|
|
|
|
DTRACE_NET_STREAM_END(this);
|
2015-01-22 15:35:16 +03:00
|
|
|
LTTNG_NET_STREAM_END(this);
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// just in case we're waiting for an EOF.
|
2013-02-12 21:08:50 +04:00
|
|
|
if (this.readable && !this._readableState.endEmitted)
|
2012-12-13 09:18:57 +04:00
|
|
|
this.read(0);
|
2013-06-05 10:43:29 +04:00
|
|
|
else
|
|
|
|
maybeDestroy(this);
|
2017-06-05 22:35:43 +03:00
|
|
|
|
|
|
|
return this;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-06-05 10:43:29 +04:00
|
|
|
// Call whenever we set writable=false or readable=false
|
|
|
|
function maybeDestroy(socket) {
|
|
|
|
if (!socket.readable &&
|
|
|
|
!socket.writable &&
|
|
|
|
!socket.destroyed &&
|
2016-04-26 23:27:08 +03:00
|
|
|
!socket.connecting &&
|
2017-05-05 15:42:21 +03:00
|
|
|
!socket.writableLength) {
|
2013-06-05 10:43:29 +04:00
|
|
|
socket.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this.writable)
|
|
|
|
this.end();
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-03-04 04:12:02 +04:00
|
|
|
if (this._writableState.finished)
|
2012-12-13 09:18:57 +04:00
|
|
|
this.destroy();
|
|
|
|
else
|
|
|
|
this.once('finish', this.destroy);
|
2011-07-02 11:18:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
Socket.prototype._destroy = function(exception, cb) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('destroy');
|
|
|
|
|
2016-04-26 23:27:08 +03:00
|
|
|
this.connecting = false;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
2017-02-04 00:05:59 +03:00
|
|
|
for (var s = this; s !== null; s = s._parent) {
|
|
|
|
clearTimeout(s[kTimeout]);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-08-23 13:31:20 +04:00
|
|
|
debug('close');
|
2011-07-22 01:00:47 +04:00
|
|
|
if (this._handle) {
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this !== process.stderr)
|
|
|
|
debug('close handle');
|
2013-03-06 19:15:17 +04:00
|
|
|
var isException = exception ? true : false;
|
2016-04-19 21:46:53 +03:00
|
|
|
// `bytesRead` should be accessible after `.destroy()`
|
|
|
|
this[BYTES_READ] = this._handle.bytesRead;
|
|
|
|
|
2016-03-23 11:14:29 +03:00
|
|
|
this._handle.close(() => {
|
2013-03-06 19:15:17 +04:00
|
|
|
debug('emit close');
|
2016-03-23 11:14:29 +03:00
|
|
|
this.emit('close', isException);
|
2013-03-06 19:15:17 +04:00
|
|
|
});
|
2011-10-07 21:00:48 +04:00
|
|
|
this._handle.onread = noop;
|
2011-07-22 02:47:28 +04:00
|
|
|
this._handle = null;
|
2015-07-03 01:26:21 +03:00
|
|
|
this._sockname = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2017-05-06 15:20:52 +03:00
|
|
|
cb(exception);
|
2012-05-29 15:05:49 +04:00
|
|
|
|
2016-02-16 23:09:31 +03:00
|
|
|
if (this._server) {
|
2012-11-21 03:27:22 +04:00
|
|
|
COUNTER_NET_SERVER_CONNECTION_CLOSE(this);
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('has server');
|
2016-02-16 23:09:31 +03:00
|
|
|
this._server._connections--;
|
|
|
|
if (this._server._emitCloseIfDrained) {
|
|
|
|
this._server._emitCloseIfDrained();
|
2012-06-12 21:02:52 +04:00
|
|
|
}
|
2012-05-29 15:05:49 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// This function is called whenever the handle gets a
|
|
|
|
// buffer, or when there's an error reading.
|
2013-07-19 01:18:50 +04:00
|
|
|
function onread(nread, buffer) {
|
2011-06-16 23:11:05 +04:00
|
|
|
var handle = this;
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2012-08-23 18:03:46 +04:00
|
|
|
assert(handle === self._handle, 'handle != self._handle');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2015-02-19 16:14:36 +03:00
|
|
|
self._unrefTimer();
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
debug('onread', nread);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (nread > 0) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('got data');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// read success.
|
|
|
|
// In theory (and in practice) calling readStop right now
|
|
|
|
// will prevent this from being called again until _read() gets
|
|
|
|
// called again.
|
|
|
|
|
2012-12-28 01:03:59 +04:00
|
|
|
// Optimization: emit the original buffer with end points
|
2013-07-26 06:33:15 +04:00
|
|
|
var ret = self.push(buffer);
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2013-01-08 06:07:37 +04:00
|
|
|
if (handle.reading && !ret) {
|
2012-12-13 09:18:57 +04:00
|
|
|
handle.reading = false;
|
|
|
|
debug('readStop');
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = handle.readStop();
|
|
|
|
if (err)
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(errnoException(err, 'read'));
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-07-21 12:20:01 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
// if we didn't get any bytes, that doesn't necessarily mean EOF.
|
|
|
|
// wait for the next one.
|
|
|
|
if (nread === 0) {
|
|
|
|
debug('not any data, keep waiting');
|
|
|
|
return;
|
|
|
|
}
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
// Error, possibly EOF.
|
2017-08-19 01:37:35 +03:00
|
|
|
if (nread !== UV_EOF) {
|
2017-05-06 15:20:52 +03:00
|
|
|
return self.destroy(errnoException(nread, 'read'));
|
2013-07-19 01:18:50 +04:00
|
|
|
}
|
2011-06-17 15:36:16 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
debug('EOF');
|
2012-12-13 09:18:57 +04:00
|
|
|
|
2016-10-12 23:39:37 +03:00
|
|
|
// push a null to signal the end of data.
|
|
|
|
// Do it before `maybeDestroy` for correct order of events:
|
|
|
|
// `end` -> `close`
|
|
|
|
self.push(null);
|
|
|
|
|
2017-05-05 15:42:21 +03:00
|
|
|
if (self.readableLength === 0) {
|
2013-07-19 01:18:50 +04:00
|
|
|
self.readable = false;
|
|
|
|
maybeDestroy(self);
|
2011-06-17 15:36:16 +04:00
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
|
|
|
|
// internal end event so that we know that the actual socket
|
|
|
|
// is no longer readable, and we can start the shutdown
|
|
|
|
// procedure. No need to wait for all the data to be consumed.
|
|
|
|
self.emit('_socketEnd');
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
Socket.prototype._getpeername = function() {
|
|
|
|
if (!this._peername) {
|
2015-03-10 23:48:19 +03:00
|
|
|
if (!this._handle || !this._handle.getpeername) {
|
|
|
|
return {};
|
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getpeername(out);
|
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._peername = out;
|
2011-10-12 23:46:41 +04:00
|
|
|
}
|
|
|
|
return this._peername;
|
|
|
|
};
|
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
function protoGetter(name, callback) {
|
|
|
|
Object.defineProperty(Socket.prototype, name, {
|
|
|
|
configurable: false,
|
|
|
|
enumerable: true,
|
|
|
|
get: callback
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
protoGetter('bytesRead', function bytesRead() {
|
2016-04-19 21:46:53 +03:00
|
|
|
return this._handle ? this._handle.bytesRead : this[BYTES_READ];
|
|
|
|
});
|
2011-10-12 23:46:41 +04:00
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('remoteAddress', function remoteAddress() {
|
2011-10-12 23:46:41 +04:00
|
|
|
return this._getpeername().address;
|
|
|
|
});
|
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('remoteFamily', function remoteFamily() {
|
2014-07-16 18:04:34 +04:00
|
|
|
return this._getpeername().family;
|
|
|
|
});
|
2011-10-12 23:46:41 +04:00
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('remotePort', function remotePort() {
|
2011-10-12 23:46:41 +04:00
|
|
|
return this._getpeername().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-01-01 06:01:42 +04:00
|
|
|
Socket.prototype._getsockname = function() {
|
|
|
|
if (!this._handle || !this._handle.getsockname) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (!this._sockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
|
|
|
var err = this._handle.getsockname(out);
|
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._sockname = out;
|
2013-01-01 06:01:42 +04:00
|
|
|
}
|
|
|
|
return this._sockname;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('localAddress', function localAddress() {
|
2013-01-01 06:01:42 +04:00
|
|
|
return this._getsockname().address;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('localPort', function localPort() {
|
2013-01-01 06:01:42 +04:00
|
|
|
return this._getsockname().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
Socket.prototype._writeGeneric = function(writev, data, encoding, cb) {
|
2011-07-02 11:18:36 +04:00
|
|
|
// If we are still connecting, then buffer this for later.
|
2012-12-13 09:18:57 +04:00
|
|
|
// The Writable logic will buffer up any more writes while
|
|
|
|
// waiting for this one to be done.
|
2016-04-26 23:27:08 +03:00
|
|
|
if (this.connecting) {
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = data;
|
|
|
|
this._pendingEncoding = encoding;
|
2016-10-29 18:39:53 +03:00
|
|
|
this.once('connect', function connect() {
|
2013-04-09 12:56:56 +04:00
|
|
|
this._writeGeneric(writev, data, encoding, cb);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
return;
|
2011-07-02 11:18:36 +04:00
|
|
|
}
|
2013-03-04 07:14:06 +04:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2015-02-19 16:14:36 +03:00
|
|
|
this._unrefTimer();
|
2011-11-03 23:34:23 +04:00
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
if (!this._handle) {
|
2017-12-20 02:07:41 +03:00
|
|
|
this.destroy(new errors.Error('ERR_SOCKET_CLOSED'), cb);
|
2012-03-20 11:21:38 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-12-22 06:32:27 +04:00
|
|
|
|
2014-12-09 07:29:47 +03:00
|
|
|
var req = new WriteWrap();
|
2015-05-02 18:32:29 +03:00
|
|
|
req.handle = this._handle;
|
2014-12-09 07:29:47 +03:00
|
|
|
req.oncomplete = afterWrite;
|
|
|
|
req.async = false;
|
2013-07-19 01:18:50 +04:00
|
|
|
var err;
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
if (writev) {
|
2017-05-24 06:42:41 +03:00
|
|
|
var allBuffers = data.allBuffers;
|
|
|
|
var chunks;
|
|
|
|
var i;
|
|
|
|
if (allBuffers) {
|
|
|
|
chunks = data;
|
|
|
|
for (i = 0; i < data.length; i++)
|
|
|
|
data[i] = data[i].chunk;
|
|
|
|
} else {
|
|
|
|
chunks = new Array(data.length << 1);
|
|
|
|
for (i = 0; i < data.length; i++) {
|
|
|
|
var entry = data[i];
|
|
|
|
chunks[i * 2] = entry.chunk;
|
|
|
|
chunks[i * 2 + 1] = entry.encoding;
|
|
|
|
}
|
2013-04-09 12:56:56 +04:00
|
|
|
}
|
2017-05-24 06:42:41 +03:00
|
|
|
err = this._handle.writev(req, chunks, allBuffers);
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
// Retain chunks
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err === 0) req._chunks = chunks;
|
2013-04-09 12:56:56 +04:00
|
|
|
} else {
|
2018-01-29 12:23:02 +03:00
|
|
|
err = createWriteReq(req, this._handle, data, encoding);
|
2013-04-09 12:56:56 +04:00
|
|
|
}
|
2011-07-19 13:04:34 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err)
|
2017-05-06 15:20:52 +03:00
|
|
|
return this.destroy(errnoException(err, 'write', req.error), cb);
|
2011-07-19 13:04:34 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
this._bytesDispatched += req.bytes;
|
2013-01-29 05:15:22 +04:00
|
|
|
|
2017-12-12 01:55:17 +03:00
|
|
|
if (!req.async) {
|
2014-01-29 02:48:10 +04:00
|
|
|
cb();
|
2017-12-12 01:55:17 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
req.cb = cb;
|
|
|
|
this[kLastWriteQueueSize] = req.bytes;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
2013-04-09 12:56:56 +04:00
|
|
|
|
|
|
|
Socket.prototype._writev = function(chunks, cb) {
|
|
|
|
this._writeGeneric(true, chunks, '', cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype._write = function(data, encoding, cb) {
|
|
|
|
this._writeGeneric(false, data, encoding, cb);
|
|
|
|
};
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
function createWriteReq(req, handle, data, encoding) {
|
2012-12-27 23:39:57 +04:00
|
|
|
switch (encoding) {
|
2016-06-02 19:55:36 +03:00
|
|
|
case 'latin1':
|
2014-09-03 14:36:17 +04:00
|
|
|
case 'binary':
|
2016-06-02 19:55:36 +03:00
|
|
|
return handle.writeLatin1String(req, data);
|
2014-09-03 14:36:17 +04:00
|
|
|
|
2012-12-27 23:39:57 +04:00
|
|
|
case 'buffer':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeBuffer(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'utf8':
|
|
|
|
case 'utf-8':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeUtf8String(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'ascii':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeAsciiString(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
case 'ucs2':
|
|
|
|
case 'ucs-2':
|
|
|
|
case 'utf16le':
|
|
|
|
case 'utf-16le':
|
2013-07-19 01:18:50 +04:00
|
|
|
return handle.writeUcs2String(req, data);
|
2012-12-27 23:39:57 +04:00
|
|
|
|
|
|
|
default:
|
2016-01-26 02:00:06 +03:00
|
|
|
return handle.writeBuffer(req, Buffer.from(data, encoding));
|
2012-12-27 23:39:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2016-04-20 18:59:16 +03:00
|
|
|
protoGetter('bytesWritten', function bytesWritten() {
|
2016-01-13 00:04:50 +03:00
|
|
|
var bytes = this._bytesDispatched;
|
|
|
|
const state = this._writableState;
|
|
|
|
const data = this._pendingData;
|
|
|
|
const encoding = this._pendingEncoding;
|
2012-05-08 22:19:38 +04:00
|
|
|
|
2015-10-10 01:51:42 +03:00
|
|
|
if (!state)
|
|
|
|
return undefined;
|
|
|
|
|
2017-05-16 18:08:49 +03:00
|
|
|
this.writableBuffer.forEach(function(el) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (el.chunk instanceof Buffer)
|
2013-04-10 14:21:41 +04:00
|
|
|
bytes += el.chunk.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(el.chunk, el.encoding);
|
2012-12-13 09:18:57 +04:00
|
|
|
});
|
|
|
|
|
2017-07-13 21:36:44 +03:00
|
|
|
if (Array.isArray(data)) {
|
|
|
|
// was a writev, iterate over chunks to get total length
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
|
|
const chunk = data[i];
|
|
|
|
|
|
|
|
if (data.allBuffers || chunk instanceof Buffer)
|
|
|
|
bytes += chunk.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(chunk.chunk, chunk.encoding);
|
|
|
|
}
|
|
|
|
} else if (data) {
|
|
|
|
// Writes are either a string or a Buffer.
|
|
|
|
if (typeof data !== 'string')
|
2013-04-10 14:21:41 +04:00
|
|
|
bytes += data.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(data, encoding);
|
2013-04-11 22:06:07 +04:00
|
|
|
}
|
2012-05-08 22:19:38 +04:00
|
|
|
|
|
|
|
return bytes;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2014-01-24 22:08:25 +04:00
|
|
|
function afterWrite(status, handle, req, err) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2012-12-13 09:18:57 +04:00
|
|
|
if (self !== process.stderr && self !== process.stdout)
|
2013-08-10 00:35:54 +04:00
|
|
|
debug('afterWrite', status);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2017-12-12 01:55:17 +03:00
|
|
|
if (req.async)
|
|
|
|
self[kLastWriteQueueSize] = 0;
|
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('afterWrite destroyed');
|
2011-07-16 00:20:24 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-12-13 01:45:39 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (status < 0) {
|
2016-01-26 23:01:12 +03:00
|
|
|
var ex = errnoException(status, 'write', req.error);
|
2013-07-19 01:18:50 +04:00
|
|
|
debug('write failure', ex);
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(ex, req.cb);
|
2011-12-13 01:45:39 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2015-02-19 16:14:36 +03:00
|
|
|
self._unrefTimer();
|
2011-11-03 23:34:23 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (self !== process.stderr && self !== process.stdout)
|
|
|
|
debug('afterWrite call cb');
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2012-12-17 00:47:01 +04:00
|
|
|
if (req.cb)
|
2017-12-12 01:55:17 +03:00
|
|
|
req.cb.call(undefined);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-30 20:13:04 +03:00
|
|
|
function checkBindError(err, port, handle) {
|
|
|
|
// EADDRINUSE may not be reported until we call listen() or connect().
|
|
|
|
// To complicate matters, a failed bind() followed by listen() or connect()
|
|
|
|
// will implicitly bind to a random port. Ergo, check that the socket is
|
|
|
|
// bound to the expected port before calling listen() or connect().
|
|
|
|
//
|
|
|
|
// FIXME(bnoordhuis) Doesn't work for pipe handles, they don't have a
|
|
|
|
// getsockname() method. Non-issue for now, the cluster module doesn't
|
|
|
|
// really support pipes anyway.
|
|
|
|
if (err === 0 && port > 0 && handle.getsockname) {
|
|
|
|
var out = {};
|
|
|
|
err = handle.getsockname(out);
|
|
|
|
if (err === 0 && port !== out.port) {
|
|
|
|
debug(`checkBindError, bound to ${out.port} instead of ${port}`);
|
|
|
|
err = UV_EADDRINUSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-05 20:15:38 +03:00
|
|
|
function internalConnect(
|
|
|
|
self, address, port, addressType, localAddress, localPort) {
|
2011-06-24 23:32:09 +04:00
|
|
|
// TODO return promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2017-10-06 19:52:56 +03:00
|
|
|
assert(self.connecting);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
var err;
|
2014-02-18 05:30:12 +04:00
|
|
|
|
2015-01-04 02:26:26 +03:00
|
|
|
if (localAddress || localPort) {
|
|
|
|
if (addressType === 4) {
|
|
|
|
localAddress = localAddress || '0.0.0.0';
|
2017-04-11 17:40:16 +03:00
|
|
|
err = self._handle.bind(localAddress, localPort);
|
2015-01-04 02:26:26 +03:00
|
|
|
} else if (addressType === 6) {
|
|
|
|
localAddress = localAddress || '::';
|
2017-04-11 17:40:16 +03:00
|
|
|
err = self._handle.bind6(localAddress, localPort);
|
2015-01-04 02:26:26 +03:00
|
|
|
} else {
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(new TypeError('Invalid addressType: ' + addressType));
|
2014-02-18 05:30:12 +04:00
|
|
|
return;
|
2012-05-04 00:27:06 +04:00
|
|
|
}
|
2017-04-24 09:27:14 +03:00
|
|
|
debug('binding to localAddress: %s and localPort: %d (addressType: %d)',
|
|
|
|
localAddress, localPort, addressType);
|
2012-05-04 00:27:06 +04:00
|
|
|
|
2017-08-30 20:13:04 +03:00
|
|
|
err = checkBindError(err, localPort, self._handle);
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
2016-01-30 06:57:34 +03:00
|
|
|
const ex = exceptionWithHostPort(err, 'bind', localAddress, localPort);
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(ex);
|
2012-05-04 00:27:06 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 02:57:43 +04:00
|
|
|
if (addressType === 6 || addressType === 4) {
|
2016-01-30 06:57:34 +03:00
|
|
|
const req = new TCPConnectWrap();
|
2014-12-09 07:29:47 +03:00
|
|
|
req.oncomplete = afterConnect;
|
2014-12-03 06:16:32 +03:00
|
|
|
req.address = address;
|
2015-01-05 18:43:58 +03:00
|
|
|
req.port = port;
|
2015-11-21 00:16:55 +03:00
|
|
|
req.localAddress = localAddress;
|
|
|
|
req.localPort = localPort;
|
2013-09-05 02:57:43 +04:00
|
|
|
|
2015-01-04 02:26:26 +03:00
|
|
|
if (addressType === 4)
|
2013-09-05 02:57:43 +04:00
|
|
|
err = self._handle.connect(req, address, port);
|
2015-01-04 02:26:26 +03:00
|
|
|
else
|
|
|
|
err = self._handle.connect6(req, address, port);
|
2011-07-07 00:34:04 +04:00
|
|
|
} else {
|
2016-01-30 06:57:34 +03:00
|
|
|
const req = new PipeConnectWrap();
|
2014-12-03 06:16:32 +03:00
|
|
|
req.address = address;
|
2014-12-09 07:29:47 +03:00
|
|
|
req.oncomplete = afterConnect;
|
2017-11-22 20:41:00 +03:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
err = self._handle.connect(req, address, afterConnect);
|
2011-07-07 00:34:04 +04:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
2015-01-19 21:02:18 +03:00
|
|
|
var sockname = self._getsockname();
|
2014-12-03 06:16:32 +03:00
|
|
|
var details;
|
2015-01-19 21:02:18 +03:00
|
|
|
|
|
|
|
if (sockname) {
|
|
|
|
details = sockname.address + ':' + sockname.port;
|
2014-12-03 06:16:32 +03:00
|
|
|
}
|
2015-01-19 21:02:18 +03:00
|
|
|
|
2016-01-30 06:57:34 +03:00
|
|
|
const ex = exceptionWithHostPort(err, 'connect', address, port, details);
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(ex);
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-05 15:05:36 +03:00
|
|
|
Socket.prototype.connect = function(...args) {
|
2017-05-05 17:02:14 +03:00
|
|
|
let normalized;
|
|
|
|
// If passed an array, it's treated as an array of arguments that have
|
|
|
|
// already been normalized (so we don't normalize more than once). This has
|
|
|
|
// been solved before in https://github.com/nodejs/node/pull/12342, but was
|
|
|
|
// reverted as it had unintended side effects.
|
2017-06-05 15:05:36 +03:00
|
|
|
if (Array.isArray(args[0]) && args[0][normalizedArgsSymbol]) {
|
|
|
|
normalized = args[0];
|
2017-05-05 17:02:14 +03:00
|
|
|
} else {
|
|
|
|
normalized = normalizeArgs(args);
|
|
|
|
}
|
2017-06-02 09:10:11 +03:00
|
|
|
var options = normalized[0];
|
|
|
|
var cb = normalized[1];
|
2017-03-09 06:36:15 +03:00
|
|
|
|
2013-03-02 22:20:33 +04:00
|
|
|
if (this.write !== Socket.prototype.write)
|
|
|
|
this.write = Socket.prototype.write;
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (this.destroyed) {
|
2017-05-06 15:20:52 +03:00
|
|
|
this._undestroy();
|
2012-12-13 09:18:57 +04:00
|
|
|
this._handle = null;
|
2015-03-10 23:48:19 +03:00
|
|
|
this._peername = null;
|
2015-07-03 01:26:21 +03:00
|
|
|
this._sockname = null;
|
2012-12-13 09:18:57 +04:00
|
|
|
}
|
|
|
|
|
2017-06-16 22:47:48 +03:00
|
|
|
const path = options.path;
|
|
|
|
var pipe = !!path;
|
|
|
|
debug('pipe', pipe, path);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
if (!this._handle) {
|
2017-11-20 19:18:40 +03:00
|
|
|
this._handle = pipe ?
|
|
|
|
new Pipe(PipeConstants.SOCKET) :
|
|
|
|
new TCP(TCPConstants.SOCKET);
|
2011-07-01 03:37:30 +04:00
|
|
|
initSocketHandle(this);
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2017-03-03 19:52:12 +03:00
|
|
|
if (cb !== null) {
|
2016-02-15 07:53:17 +03:00
|
|
|
this.once('connect', cb);
|
2011-06-21 18:53:02 +04:00
|
|
|
}
|
|
|
|
|
2015-02-19 16:14:36 +03:00
|
|
|
this._unrefTimer();
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2016-04-26 23:27:08 +03:00
|
|
|
this.connecting = true;
|
2016-02-15 07:53:17 +03:00
|
|
|
this.writable = true;
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
if (pipe) {
|
2017-06-16 22:47:48 +03:00
|
|
|
if (typeof path !== 'string') {
|
|
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
|
2017-07-21 00:35:51 +03:00
|
|
|
'options.path',
|
|
|
|
'string',
|
|
|
|
path);
|
2017-06-16 22:47:48 +03:00
|
|
|
}
|
2017-11-22 20:41:00 +03:00
|
|
|
defaultTriggerAsyncIdScope(
|
2018-01-05 17:03:10 +03:00
|
|
|
this[async_id_symbol], internalConnect, this, path
|
2017-11-22 20:41:00 +03:00
|
|
|
);
|
2012-01-09 05:18:39 +04:00
|
|
|
} else {
|
2016-02-15 07:53:17 +03:00
|
|
|
lookupAndConnect(this, options);
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
2016-02-15 07:53:17 +03:00
|
|
|
return this;
|
2017-05-05 17:02:14 +03:00
|
|
|
};
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
|
2015-04-23 00:46:21 +03:00
|
|
|
function lookupAndConnect(self, options) {
|
|
|
|
var host = options.host || 'localhost';
|
|
|
|
var port = options.port;
|
|
|
|
var localAddress = options.localAddress;
|
|
|
|
var localPort = options.localPort;
|
|
|
|
|
2018-01-26 20:39:10 +03:00
|
|
|
if (localAddress && !isIP(localAddress)) {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_IP_ADDRESS', localAddress);
|
2017-06-21 00:37:00 +03:00
|
|
|
}
|
2015-04-23 00:46:21 +03:00
|
|
|
|
2017-06-21 00:37:00 +03:00
|
|
|
if (localPort && typeof localPort !== 'number') {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
|
|
|
|
'options.localPort',
|
|
|
|
'number',
|
|
|
|
localPort);
|
2017-06-21 00:37:00 +03:00
|
|
|
}
|
2015-04-23 00:46:21 +03:00
|
|
|
|
|
|
|
if (typeof port !== 'undefined') {
|
2017-06-21 00:37:00 +03:00
|
|
|
if (typeof port !== 'number' && typeof port !== 'string') {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
|
|
|
|
'options.port',
|
|
|
|
['number', 'string'],
|
|
|
|
port);
|
2017-06-21 00:37:00 +03:00
|
|
|
}
|
|
|
|
if (!isLegalPort(port)) {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.RangeError('ERR_SOCKET_BAD_PORT', port);
|
2017-06-21 00:37:00 +03:00
|
|
|
}
|
2015-04-23 00:46:21 +03:00
|
|
|
}
|
|
|
|
port |= 0;
|
|
|
|
|
|
|
|
// If host is an IP, skip performing a lookup
|
2018-01-26 20:39:10 +03:00
|
|
|
var addressType = isIP(host);
|
2015-04-23 00:46:21 +03:00
|
|
|
if (addressType) {
|
2017-05-05 14:10:43 +03:00
|
|
|
nextTick(self[async_id_symbol], function() {
|
|
|
|
if (self.connecting)
|
2017-11-22 20:41:00 +03:00
|
|
|
defaultTriggerAsyncIdScope(
|
|
|
|
self[async_id_symbol],
|
2018-01-05 17:03:10 +03:00
|
|
|
internalConnect,
|
|
|
|
self, host, port, addressType, localAddress, localPort
|
2017-11-22 20:41:00 +03:00
|
|
|
);
|
2017-05-05 14:10:43 +03:00
|
|
|
});
|
2015-04-23 00:46:21 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:05:29 +03:00
|
|
|
if (options.lookup && typeof options.lookup !== 'function')
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
|
|
|
|
'options.lookup',
|
2017-10-28 12:39:55 +03:00
|
|
|
'Function',
|
2017-08-12 00:02:15 +03:00
|
|
|
options.lookup);
|
2015-04-23 01:05:29 +03:00
|
|
|
|
2015-04-23 00:46:21 +03:00
|
|
|
var dnsopts = {
|
|
|
|
family: options.family,
|
2016-04-01 23:59:09 +03:00
|
|
|
hints: options.hints || 0
|
2015-04-23 00:46:21 +03:00
|
|
|
};
|
|
|
|
|
2017-12-13 23:10:38 +03:00
|
|
|
if (process.platform !== 'win32' &&
|
|
|
|
dnsopts.family !== 4 &&
|
|
|
|
dnsopts.family !== 6 &&
|
|
|
|
dnsopts.hints === 0) {
|
2016-04-19 16:09:57 +03:00
|
|
|
dnsopts.hints = dns.ADDRCONFIG;
|
|
|
|
}
|
|
|
|
|
2017-04-11 18:31:54 +03:00
|
|
|
debug('connect: find host', host);
|
2015-06-25 15:29:01 +03:00
|
|
|
debug('connect: dns options', dnsopts);
|
2015-04-23 00:46:21 +03:00
|
|
|
self._host = host;
|
2015-04-23 01:05:29 +03:00
|
|
|
var lookup = options.lookup || dns.lookup;
|
2018-01-05 17:03:10 +03:00
|
|
|
defaultTriggerAsyncIdScope(self[async_id_symbol], function() {
|
2017-11-22 20:41:00 +03:00
|
|
|
lookup(host, dnsopts, function emitLookup(err, ip, addressType) {
|
|
|
|
self.emit('lookup', err, ip, addressType, host);
|
|
|
|
|
|
|
|
// It's possible we were destroyed while looking this up.
|
|
|
|
// XXX it would be great if we could cancel the promise returned by
|
|
|
|
// the look up.
|
|
|
|
if (!self.connecting) return;
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
// net.createConnection() creates a net.Socket object and
|
|
|
|
// immediately calls net.Socket.connect() on it (that's us).
|
|
|
|
// There are no event listeners registered yet so defer the
|
|
|
|
// error event to the next tick.
|
|
|
|
err.host = options.host;
|
|
|
|
err.port = options.port;
|
|
|
|
err.message = err.message + ' ' + options.host + ':' + options.port;
|
|
|
|
process.nextTick(connectErrorNT, self, err);
|
|
|
|
} else {
|
|
|
|
self._unrefTimer();
|
|
|
|
defaultTriggerAsyncIdScope(
|
|
|
|
self[async_id_symbol],
|
2018-01-05 17:03:10 +03:00
|
|
|
internalConnect,
|
|
|
|
self, ip, port, addressType, localAddress, localPort
|
2017-11-22 20:41:00 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2015-04-23 00:46:21 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-04 21:40:25 +03:00
|
|
|
function connectErrorNT(self, err) {
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(err);
|
2015-03-06 00:07:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
Socket.prototype.ref = function() {
|
2015-02-18 21:02:01 +03:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect', this.ref);
|
2015-05-22 19:35:57 +03:00
|
|
|
return this;
|
2015-02-18 21:02:01 +03:00
|
|
|
}
|
|
|
|
|
2017-12-12 02:05:18 +03:00
|
|
|
if (typeof this._handle.ref === 'function') {
|
|
|
|
this._handle.ref();
|
|
|
|
}
|
2015-05-22 19:35:57 +03:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 05:26:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.unref = function() {
|
2015-02-18 21:02:01 +03:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect', this.unref);
|
2015-05-22 19:35:57 +03:00
|
|
|
return this;
|
2015-02-18 21:02:01 +03:00
|
|
|
}
|
|
|
|
|
2017-12-12 02:05:18 +03:00
|
|
|
if (typeof this._handle.unref === 'function') {
|
|
|
|
this._handle.unref();
|
|
|
|
}
|
2015-05-22 19:35:57 +03:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 05:26:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-10 13:35:35 +04:00
|
|
|
function afterConnect(status, handle, req, readable, writable) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
stream_base: introduce StreamBase
StreamBase is an improved way to write C++ streams. The class itself is
for separting `StreamWrap` (with the methods like `.writeAsciiString`,
`.writeBuffer`, `.writev`, etc) from the `HandleWrap` class, making
possible to write abstract C++ streams that are not bound to any uv
socket.
The following methods are important part of the abstraction (which
mimics libuv's stream API):
* Events:
* `OnAlloc(size_t size, uv_buf_t*)`
* `OnRead(ssize_t nread, const uv_buf_t*, uv_handle_type pending)`
* `OnAfterWrite(WriteWrap*)`
* Wrappers:
* `DoShutdown(ShutdownWrap*)`
* `DoTryWrite(uv_buf_t** bufs, size_t* count)`
* `DoWrite(WriteWrap*, uv_buf_t*, size_t count, uv_stream_t* handle)`
* `Error()`
* `ClearError()`
The implementation should provide all of these methods, thus providing
the access to the underlying resource (be it uv handle, TLS socket, or
anything else).
A C++ stream may consume the input of another stream by replacing the
event callbacks and proxying the writes. This kind of API is actually
used now for the TLSWrap implementation, making it possible to wrap TLS
stream into another TLS stream. Thus legacy API calls are no longer
required in `_tls_wrap.js`.
PR-URL: https://github.com/iojs/io.js/pull/840
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-02-22 21:59:07 +03:00
|
|
|
// Update handle if it was wrapped
|
|
|
|
// TODO(indutny): assert that the handle is actually an ancestor of old one
|
|
|
|
handle = self._handle;
|
2011-07-22 13:11:02 +04:00
|
|
|
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('afterConnect');
|
2011-07-22 13:11:02 +04:00
|
|
|
|
2017-10-06 19:52:56 +03:00
|
|
|
assert(self.connecting);
|
2016-04-26 23:27:08 +03:00
|
|
|
self.connecting = false;
|
2015-07-03 01:26:21 +03:00
|
|
|
self._sockname = null;
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2017-02-23 02:46:32 +03:00
|
|
|
if (status === 0) {
|
2012-02-10 13:35:35 +04:00
|
|
|
self.readable = readable;
|
|
|
|
self.writable = writable;
|
2015-02-19 16:14:36 +03:00
|
|
|
self._unrefTimer();
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2012-02-26 23:13:08 +04:00
|
|
|
self.emit('connect');
|
|
|
|
|
2012-12-13 09:18:57 +04:00
|
|
|
// start the first read, or get an immediate EOF.
|
|
|
|
// this doesn't actually consume any bytes, because len=0.
|
2014-08-20 01:38:55 +04:00
|
|
|
if (readable && !self.isPaused())
|
2012-12-13 09:18:57 +04:00
|
|
|
self.read(0);
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2016-04-26 23:27:08 +03:00
|
|
|
self.connecting = false;
|
2014-12-03 06:16:32 +03:00
|
|
|
var details;
|
|
|
|
if (req.localAddress && req.localPort) {
|
2015-11-21 00:16:55 +03:00
|
|
|
details = req.localAddress + ':' + req.localPort;
|
2014-12-03 06:16:32 +03:00
|
|
|
}
|
2015-01-08 22:13:56 +03:00
|
|
|
var ex = exceptionWithHostPort(status,
|
|
|
|
'connect',
|
|
|
|
req.address,
|
|
|
|
req.port,
|
|
|
|
details);
|
2015-11-21 00:16:55 +03:00
|
|
|
if (details) {
|
|
|
|
ex.localAddress = req.localAddress;
|
|
|
|
ex.localPort = req.localPort;
|
|
|
|
}
|
2017-05-06 15:20:52 +03:00
|
|
|
self.destroy(ex);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-24 07:08:35 +04:00
|
|
|
function Server(options, connectionListener) {
|
|
|
|
if (!(this instanceof Server))
|
|
|
|
return new Server(options, connectionListener);
|
|
|
|
|
2015-09-17 01:45:29 +03:00
|
|
|
EventEmitter.call(this);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2014-09-24 07:08:35 +04:00
|
|
|
if (typeof options === 'function') {
|
|
|
|
connectionListener = options;
|
2011-06-16 23:11:05 +04:00
|
|
|
options = {};
|
2016-03-23 11:14:29 +03:00
|
|
|
this.on('connection', connectionListener);
|
2015-09-14 05:49:35 +03:00
|
|
|
} else if (options == null || typeof options === 'object') {
|
2014-09-24 07:08:35 +04:00
|
|
|
options = options || {};
|
2011-10-05 02:08:18 +04:00
|
|
|
|
2014-09-24 07:08:35 +04:00
|
|
|
if (typeof connectionListener === 'function') {
|
2016-03-23 11:14:29 +03:00
|
|
|
this.on('connection', connectionListener);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2015-09-14 05:49:35 +03:00
|
|
|
} else {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
|
|
|
|
'options',
|
2017-10-28 12:39:55 +03:00
|
|
|
'Object',
|
2017-08-12 00:02:15 +03:00
|
|
|
options);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
this._connections = 0;
|
|
|
|
|
|
|
|
Object.defineProperty(this, 'connections', {
|
2016-03-23 11:14:29 +03:00
|
|
|
get: internalUtil.deprecate(() => {
|
2013-01-14 21:08:20 +04:00
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
if (this._usingWorkers) {
|
2012-04-12 11:23:07 +04:00
|
|
|
return null;
|
|
|
|
}
|
2016-03-23 11:14:29 +03:00
|
|
|
return this._connections;
|
2015-06-13 19:44:39 +03:00
|
|
|
}, 'Server.connections property is deprecated. ' +
|
2016-12-04 23:47:01 +03:00
|
|
|
'Use Server.getConnections method instead.', 'DEP0020'),
|
2017-01-12 10:20:54 +03:00
|
|
|
set: internalUtil.deprecate((val) => (this._connections = val),
|
2016-12-04 23:47:01 +03:00
|
|
|
'Server.connections property is deprecated.',
|
|
|
|
'DEP0020'),
|
2014-09-17 22:54:24 +04:00
|
|
|
configurable: true, enumerable: false
|
2012-04-12 11:23:07 +04:00
|
|
|
});
|
|
|
|
|
2017-03-10 16:17:42 +03:00
|
|
|
this[async_id_symbol] = -1;
|
2011-07-07 04:13:17 +04:00
|
|
|
this._handle = null;
|
2017-07-24 17:52:38 +03:00
|
|
|
this._usingWorkers = false;
|
|
|
|
this._workers = [];
|
2015-01-03 07:14:25 +03:00
|
|
|
this._unref = false;
|
2012-12-13 09:18:57 +04:00
|
|
|
|
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2014-10-18 05:45:40 +04:00
|
|
|
this.pauseOnConnect = !!options.pauseOnConnect;
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2015-09-17 01:45:29 +03:00
|
|
|
util.inherits(Server, EventEmitter);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
function toNumber(x) { return (x = Number(x)) >= 0 ? x : false; }
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
// Returns handle if it can be created, or error code if it can't
|
2016-01-13 00:04:50 +03:00
|
|
|
function createServerHandle(address, port, addressType, fd) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var err = 0;
|
2011-10-12 13:56:29 +04:00
|
|
|
// assign handle in listen, and clean up if bind or listen fails
|
2011-12-02 01:24:28 +04:00
|
|
|
var handle;
|
|
|
|
|
2014-05-28 02:26:13 +04:00
|
|
|
var isTCP = false;
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof fd === 'number' && fd >= 0) {
|
2013-03-14 18:13:58 +04:00
|
|
|
try {
|
2017-11-20 19:18:40 +03:00
|
|
|
handle = createHandle(fd, true);
|
2016-07-09 03:17:47 +03:00
|
|
|
} catch (e) {
|
2013-03-14 18:13:58 +04:00
|
|
|
// Not a fd we can listen on. This will trigger an error.
|
2017-04-11 18:31:54 +03:00
|
|
|
debug('listen invalid fd=%d:', fd, e.message);
|
2017-08-19 01:37:35 +03:00
|
|
|
return UV_EINVAL;
|
2012-06-12 21:02:52 +04:00
|
|
|
}
|
2013-03-14 18:13:58 +04:00
|
|
|
handle.open(fd);
|
|
|
|
handle.readable = true;
|
|
|
|
handle.writable = true;
|
2014-02-24 21:28:49 +04:00
|
|
|
assert(!address && !port);
|
2014-01-28 20:18:36 +04:00
|
|
|
} else if (port === -1 && addressType === -1) {
|
2017-11-20 19:18:40 +03:00
|
|
|
handle = new Pipe(PipeConstants.SERVER);
|
2011-12-02 01:24:28 +04:00
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var instances = parseInt(process.env.NODE_PENDING_PIPE_INSTANCES);
|
|
|
|
if (!isNaN(instances)) {
|
|
|
|
handle.setPendingInstances(instances);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2017-11-20 19:18:40 +03:00
|
|
|
handle = new TCP(TCPConstants.SERVER);
|
2014-05-28 02:26:13 +04:00
|
|
|
isTCP = true;
|
2011-12-02 01:24:28 +04:00
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
2014-05-28 02:26:13 +04:00
|
|
|
if (address || port || isTCP) {
|
2017-04-11 18:31:54 +03:00
|
|
|
debug('bind to', address || 'any');
|
2014-04-13 19:11:56 +04:00
|
|
|
if (!address) {
|
|
|
|
// Try binding to ipv6 first
|
|
|
|
err = handle.bind6('::', port);
|
|
|
|
if (err) {
|
|
|
|
handle.close();
|
|
|
|
// Fallback to ipv4
|
|
|
|
return createServerHandle('0.0.0.0', port);
|
|
|
|
}
|
|
|
|
} else if (addressType === 6) {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = handle.bind6(address, port);
|
2011-10-12 13:56:29 +04:00
|
|
|
} else {
|
2013-07-19 01:18:50 +04:00
|
|
|
err = handle.bind(address, port);
|
2011-10-12 13:56:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
2011-10-12 13:56:29 +04:00
|
|
|
handle.close();
|
2013-07-19 01:18:50 +04:00
|
|
|
return err;
|
2011-10-12 13:56:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return handle;
|
2016-01-15 11:53:11 +03:00
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
function setupListenHandle(address, port, addressType, backlog, fd) {
|
|
|
|
debug('setupListenHandle', address, port, addressType, backlog, fd);
|
2011-06-29 20:04:55 +04:00
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
// If there is not yet a handle, we need to create one and bind.
|
|
|
|
// In the case of a server sent via IPC, we don't need to do this.
|
2016-02-15 07:53:17 +03:00
|
|
|
if (this._handle) {
|
2017-03-11 07:25:39 +03:00
|
|
|
debug('setupListenHandle: have a handle already');
|
2015-01-21 15:38:44 +03:00
|
|
|
} else {
|
2017-03-11 07:25:39 +03:00
|
|
|
debug('setupListenHandle: create a handle');
|
2015-01-21 15:38:44 +03:00
|
|
|
|
|
|
|
var rval = null;
|
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
// Try to bind to the unspecified IPv6 address, see if IPv6 is available
|
2015-01-29 04:05:53 +03:00
|
|
|
if (!address && typeof fd !== 'number') {
|
2015-01-21 15:38:44 +03:00
|
|
|
rval = createServerHandle('::', port, 6, fd);
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof rval === 'number') {
|
2015-01-21 15:38:44 +03:00
|
|
|
rval = null;
|
|
|
|
address = '0.0.0.0';
|
|
|
|
addressType = 4;
|
|
|
|
} else {
|
|
|
|
address = '::';
|
|
|
|
addressType = 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rval === null)
|
|
|
|
rval = createServerHandle(address, port, addressType, fd);
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (typeof rval === 'number') {
|
2015-01-08 22:13:56 +03:00
|
|
|
var error = exceptionWithHostPort(rval, 'listen', address, port);
|
2016-02-15 07:53:17 +03:00
|
|
|
process.nextTick(emitErrorNT, this, error);
|
2012-08-07 01:43:47 +04:00
|
|
|
return;
|
|
|
|
}
|
2016-02-15 07:53:17 +03:00
|
|
|
this._handle = rval;
|
2012-08-07 01:43:47 +04:00
|
|
|
}
|
|
|
|
|
2017-03-10 16:17:42 +03:00
|
|
|
this[async_id_symbol] = getNewAsyncId(this._handle);
|
2016-02-15 07:53:17 +03:00
|
|
|
this._handle.onconnection = onconnection;
|
|
|
|
this._handle.owner = this;
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
// Use a backlog of 512 entries. We pass 511 to the listen() call because
|
|
|
|
// the kernel does: backlogsize = roundup_pow_of_two(backlogsize + 1);
|
|
|
|
// which will thus give us a backlog of 512 entries.
|
|
|
|
var err = this._handle.listen(backlog || 511);
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
2015-01-08 22:13:56 +03:00
|
|
|
var ex = exceptionWithHostPort(err, 'listen', address, port);
|
2016-02-15 07:53:17 +03:00
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2017-03-10 16:17:42 +03:00
|
|
|
nextTick(this[async_id_symbol], emitErrorNT, this, ex);
|
2012-08-07 01:43:47 +04:00
|
|
|
return;
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
// generate connection key, this should be unique to the connection
|
|
|
|
this._connectionKey = addressType + ':' + address + ':' + port;
|
|
|
|
|
2015-01-03 07:14:25 +03:00
|
|
|
// unref the handle if the server was unref'ed prior to listening
|
|
|
|
if (this._unref)
|
|
|
|
this.unref();
|
|
|
|
|
2017-03-10 16:17:42 +03:00
|
|
|
nextTick(this[async_id_symbol], emitListeningNT, this);
|
2017-03-11 07:25:39 +03:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
Server.prototype._listen2 = setupListenHandle; // legacy alias
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2015-05-04 21:40:25 +03:00
|
|
|
function emitErrorNT(self, err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-06 00:07:27 +03:00
|
|
|
function emitListeningNT(self) {
|
|
|
|
// ensure handle hasn't closed
|
|
|
|
if (self._handle)
|
|
|
|
self.emit('listening');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
function listenInCluster(server, address, port, addressType,
|
|
|
|
backlog, fd, exclusive) {
|
2014-08-23 00:51:53 +04:00
|
|
|
exclusive = !!exclusive;
|
|
|
|
|
2017-07-11 16:23:38 +03:00
|
|
|
if (cluster === null) cluster = require('cluster');
|
2012-07-10 14:06:13 +04:00
|
|
|
|
2014-08-23 00:51:53 +04:00
|
|
|
if (cluster.isMaster || exclusive) {
|
2017-03-11 07:25:39 +03:00
|
|
|
// Will create a new handle
|
|
|
|
// _listen2 sets up the listened handle, it is still named like this
|
|
|
|
// to avoid breaking code that wraps this method
|
|
|
|
server._listen2(address, port, addressType, backlog, fd);
|
2012-02-09 09:22:50 +04:00
|
|
|
return;
|
2012-07-14 11:38:00 +04:00
|
|
|
}
|
2012-02-09 09:22:50 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
const serverQuery = {
|
2015-08-25 22:24:41 +03:00
|
|
|
address: address,
|
|
|
|
port: port,
|
|
|
|
addressType: addressType,
|
|
|
|
fd: fd,
|
|
|
|
flags: 0
|
2017-03-11 07:25:39 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// Get the master's server handle, and listen on it
|
|
|
|
cluster._getServer(server, serverQuery, listenOnMasterHandle);
|
2013-07-28 14:19:34 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
function listenOnMasterHandle(err, handle) {
|
2017-08-30 20:13:04 +03:00
|
|
|
err = checkBindError(err, port, handle);
|
2012-02-09 09:22:50 +04:00
|
|
|
|
2014-12-03 06:16:32 +03:00
|
|
|
if (err) {
|
2015-01-08 22:13:56 +03:00
|
|
|
var ex = exceptionWithHostPort(err, 'bind', address, port);
|
2017-03-11 07:25:39 +03:00
|
|
|
return server.emit('error', ex);
|
2014-12-03 06:16:32 +03:00
|
|
|
}
|
2013-07-28 14:19:34 +04:00
|
|
|
|
2017-03-11 07:25:39 +03:00
|
|
|
// Reuse master's server handle
|
|
|
|
server._handle = handle;
|
|
|
|
// _listen2 sets up the listened handle, it is still named like this
|
|
|
|
// to avoid breaking code that wraps this method
|
|
|
|
server._listen2(address, port, addressType, backlog, fd);
|
2013-07-28 14:19:34 +04:00
|
|
|
}
|
2012-07-14 11:38:00 +04:00
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
2012-08-07 01:43:47 +04:00
|
|
|
|
2017-06-05 15:05:36 +03:00
|
|
|
Server.prototype.listen = function(...args) {
|
2017-04-24 09:21:25 +03:00
|
|
|
var normalized = normalizeArgs(args);
|
2017-03-03 19:52:12 +03:00
|
|
|
var options = normalized[0];
|
2017-04-24 09:21:25 +03:00
|
|
|
var cb = normalized[1];
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2017-05-22 13:35:22 +03:00
|
|
|
if (this._handle) {
|
|
|
|
throw new errors.Error('ERR_SERVER_ALREADY_LISTEN');
|
|
|
|
}
|
|
|
|
|
2017-03-03 19:52:12 +03:00
|
|
|
var hasCallback = (cb !== null);
|
|
|
|
if (hasCallback) {
|
2016-08-12 19:22:22 +03:00
|
|
|
this.once('listening', cb);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2017-04-24 09:21:25 +03:00
|
|
|
var backlogFromArgs =
|
2017-03-03 19:52:12 +03:00
|
|
|
// (handle, backlog) or (path, backlog) or (port, backlog)
|
|
|
|
toNumber(args.length > 1 && args[1]) ||
|
|
|
|
toNumber(args.length > 2 && args[2]); // (port, host, backlog)
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2016-08-12 19:22:22 +03:00
|
|
|
options = options._handle || options.handle || options;
|
2017-03-03 19:52:12 +03:00
|
|
|
// (handle[, backlog][, cb]) where handle is an object with a handle
|
2016-08-12 19:22:22 +03:00
|
|
|
if (options instanceof TCP) {
|
|
|
|
this._handle = options;
|
2017-03-10 16:17:42 +03:00
|
|
|
this[async_id_symbol] = this._handle.getAsyncId();
|
2017-03-11 07:25:39 +03:00
|
|
|
listenInCluster(this, null, -1, -1, backlogFromArgs);
|
2017-03-03 19:52:12 +03:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
// (handle[, backlog][, cb]) where handle is an object with a fd
|
|
|
|
if (typeof options.fd === 'number' && options.fd >= 0) {
|
2017-03-11 07:25:39 +03:00
|
|
|
listenInCluster(this, null, null, null, backlogFromArgs, options.fd);
|
2017-03-03 19:52:12 +03:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ([port][, host][, backlog][, cb]) where port is omitted,
|
2017-07-13 18:10:54 +03:00
|
|
|
// that is, listen(), listen(null), listen(cb), or listen(null, cb)
|
|
|
|
// or (options[, cb]) where options.port is explicitly set as undefined or
|
|
|
|
// null, bind to an arbitrary unused port
|
2017-03-03 19:52:12 +03:00
|
|
|
if (args.length === 0 || typeof args[0] === 'function' ||
|
2017-07-13 18:10:54 +03:00
|
|
|
(typeof options.port === 'undefined' && 'port' in options) ||
|
|
|
|
options.port === null) {
|
2017-03-03 19:52:12 +03:00
|
|
|
options.port = 0;
|
|
|
|
}
|
|
|
|
// ([port][, host][, backlog][, cb]) where port is specified
|
|
|
|
// or (options[, cb]) where options.port is specified
|
|
|
|
// or if options.port is normalized as 0 before
|
2017-04-24 09:21:25 +03:00
|
|
|
var backlog;
|
2017-03-03 19:52:12 +03:00
|
|
|
if (typeof options.port === 'number' || typeof options.port === 'string') {
|
|
|
|
if (!isLegalPort(options.port)) {
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.RangeError('ERR_SOCKET_BAD_PORT', options.port);
|
2017-03-03 19:52:12 +03:00
|
|
|
}
|
2017-04-24 09:21:25 +03:00
|
|
|
backlog = options.backlog || backlogFromArgs;
|
2017-03-03 19:52:12 +03:00
|
|
|
// start TCP server listening on host:port
|
|
|
|
if (options.host) {
|
|
|
|
lookupAndListen(this, options.port | 0, options.host, backlog,
|
|
|
|
options.exclusive);
|
|
|
|
} else { // Undefined host, listens on unspecified address
|
2017-03-11 07:25:39 +03:00
|
|
|
// Default addressType 4 will be used to search for master server
|
|
|
|
listenInCluster(this, null, options.port | 0, 4,
|
|
|
|
backlog, undefined, options.exclusive);
|
2016-08-12 19:22:22 +03:00
|
|
|
}
|
2017-03-03 19:52:12 +03:00
|
|
|
return this;
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2014-08-23 00:51:53 +04:00
|
|
|
|
2017-03-03 19:52:12 +03:00
|
|
|
// (path[, backlog][, cb]) or (options[, cb])
|
|
|
|
// where path or options.path is a UNIX domain socket or Windows pipe
|
|
|
|
if (options.path && isPipeName(options.path)) {
|
2017-04-24 09:21:25 +03:00
|
|
|
var pipeName = this._pipeName = options.path;
|
|
|
|
backlog = options.backlog || backlogFromArgs;
|
2017-03-11 07:25:39 +03:00
|
|
|
listenInCluster(this, pipeName, -1, -1,
|
|
|
|
backlog, undefined, options.exclusive);
|
2017-03-03 19:52:12 +03:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2017-08-12 00:02:15 +03:00
|
|
|
throw new errors.Error('ERR_INVALID_OPT_VALUE',
|
|
|
|
'options',
|
|
|
|
util.inspect(options));
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
2016-08-12 19:22:22 +03:00
|
|
|
function lookupAndListen(self, port, address, backlog, exclusive) {
|
2017-03-11 07:25:39 +03:00
|
|
|
dns.lookup(address, function doListen(err, ip, addressType) {
|
2016-08-12 19:22:22 +03:00
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
|
|
|
addressType = ip ? addressType : 4;
|
2017-03-11 07:25:39 +03:00
|
|
|
listenInCluster(self, ip, port, addressType,
|
|
|
|
backlog, undefined, exclusive);
|
2016-08-12 19:22:22 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-01-18 16:36:48 +03:00
|
|
|
Object.defineProperty(Server.prototype, 'listening', {
|
|
|
|
get: function() {
|
|
|
|
return !!this._handle;
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true
|
|
|
|
});
|
|
|
|
|
2011-07-16 02:06:10 +04:00
|
|
|
Server.prototype.address = function() {
|
2011-11-02 02:42:45 +04:00
|
|
|
if (this._handle && this._handle.getsockname) {
|
2013-07-19 01:18:50 +04:00
|
|
|
var out = {};
|
2017-05-06 13:33:28 +03:00
|
|
|
var err = this._handle.getsockname(out);
|
|
|
|
if (err) {
|
|
|
|
throw errnoException(err, 'address');
|
|
|
|
}
|
2013-07-19 01:18:50 +04:00
|
|
|
return out;
|
2015-08-27 23:47:15 +03:00
|
|
|
} else if (this._pipeName) {
|
|
|
|
return this._pipeName;
|
2011-11-02 02:42:45 +04:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
function onconnection(err, clientHandle) {
|
2011-06-16 23:11:05 +04:00
|
|
|
var handle = this;
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('onconnection');
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2013-07-19 01:18:50 +04:00
|
|
|
if (err) {
|
|
|
|
self.emit('error', errnoException(err, 'accept'));
|
2011-08-11 01:59:21 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
if (self.maxConnections && self._connections >= self.maxConnections) {
|
2011-07-15 00:18:28 +04:00
|
|
|
clientHandle.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
var socket = new Socket({
|
|
|
|
handle: clientHandle,
|
2014-10-18 05:45:40 +04:00
|
|
|
allowHalfOpen: self.allowHalfOpen,
|
|
|
|
pauseOnCreate: self.pauseOnConnect
|
2011-06-17 19:10:12 +04:00
|
|
|
});
|
2011-06-17 16:27:02 +04:00
|
|
|
socket.readable = socket.writable = true;
|
2011-09-05 04:09:24 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
self._connections++;
|
2011-06-17 16:27:02 +04:00
|
|
|
socket.server = self;
|
2016-02-16 23:09:31 +03:00
|
|
|
socket._server = self;
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
2015-01-22 15:35:16 +03:00
|
|
|
LTTNG_NET_SERVER_CONNECTION(socket);
|
2012-11-21 03:27:22 +04:00
|
|
|
COUNTER_NET_SERVER_CONNECTION(socket);
|
2011-06-16 23:11:05 +04:00
|
|
|
self.emit('connection', socket);
|
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2013-01-14 21:08:20 +04:00
|
|
|
Server.prototype.getConnections = function(cb) {
|
2017-03-10 16:17:42 +03:00
|
|
|
const self = this;
|
|
|
|
|
2013-01-14 21:08:20 +04:00
|
|
|
function end(err, connections) {
|
2017-07-05 15:58:02 +03:00
|
|
|
const asyncId = self._handle ? self[async_id_symbol] : null;
|
|
|
|
nextTick(asyncId, cb, err, connections);
|
2013-01-14 21:08:20 +04:00
|
|
|
}
|
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
if (!this._usingWorkers) {
|
2017-06-07 22:49:00 +03:00
|
|
|
end(null, this._connections);
|
|
|
|
return this;
|
2013-01-14 21:08:20 +04:00
|
|
|
}
|
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
// Poll workers
|
|
|
|
var left = this._workers.length;
|
2016-01-13 00:04:50 +03:00
|
|
|
var total = this._connections;
|
2013-01-14 21:08:20 +04:00
|
|
|
|
|
|
|
function oncount(err, count) {
|
|
|
|
if (err) {
|
|
|
|
left = -1;
|
|
|
|
return end(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
total += count;
|
|
|
|
if (--left === 0) return end(null, total);
|
|
|
|
}
|
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
for (var n = 0; n < this._workers.length; n++) {
|
|
|
|
this._workers[n].getConnections(oncount);
|
2017-02-27 05:08:04 +03:00
|
|
|
}
|
2017-06-07 22:49:00 +03:00
|
|
|
|
|
|
|
return this;
|
2013-01-14 21:08:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-16 23:52:47 +04:00
|
|
|
Server.prototype.close = function(cb) {
|
2015-01-26 20:55:19 +03:00
|
|
|
if (typeof cb === 'function') {
|
2014-05-16 06:48:27 +04:00
|
|
|
if (!this._handle) {
|
2016-10-29 18:39:53 +03:00
|
|
|
this.once('close', function close() {
|
2017-12-20 02:07:41 +03:00
|
|
|
cb(new errors.Error('ERR_SERVER_NOT_RUNNING'));
|
2014-05-16 06:48:27 +04:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.once('close', cb);
|
|
|
|
}
|
2011-07-07 04:13:17 +04:00
|
|
|
}
|
2011-07-22 03:23:50 +04:00
|
|
|
|
2014-05-16 06:48:27 +04:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2012-02-16 23:52:47 +04:00
|
|
|
}
|
2011-10-23 13:20:03 +04:00
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
if (this._usingWorkers) {
|
|
|
|
var left = this._workers.length;
|
|
|
|
const onWorkerClose = () => {
|
2017-04-11 12:39:25 +03:00
|
|
|
if (--left !== 0) return;
|
|
|
|
|
|
|
|
this._connections = 0;
|
|
|
|
this._emitCloseIfDrained();
|
|
|
|
};
|
2013-01-14 21:08:20 +04:00
|
|
|
|
|
|
|
// Increment connections to be sure that, even if all sockets will be closed
|
2017-07-24 17:52:38 +03:00
|
|
|
// during polling of workers, `close` event will be emitted only once.
|
2013-01-14 21:08:20 +04:00
|
|
|
this._connections++;
|
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
// Poll workers
|
|
|
|
for (var n = 0; n < this._workers.length; n++)
|
|
|
|
this._workers[n].close(onWorkerClose);
|
2013-01-14 21:08:20 +04:00
|
|
|
} else {
|
|
|
|
this._emitCloseIfDrained();
|
2012-04-12 11:23:07 +04:00
|
|
|
}
|
|
|
|
|
2011-10-23 13:20:03 +04:00
|
|
|
return this;
|
2011-07-25 11:01:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype._emitCloseIfDrained = function() {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('SERVER _emitCloseIfDrained');
|
2011-12-29 22:30:07 +04:00
|
|
|
|
2016-02-15 07:53:17 +03:00
|
|
|
if (this._handle || this._connections) {
|
2012-12-13 09:18:57 +04:00
|
|
|
debug('SERVER handle? %j connections? %d',
|
2016-02-15 07:53:17 +03:00
|
|
|
!!this._handle, this._connections);
|
2012-12-13 09:18:57 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-12-29 22:30:07 +04:00
|
|
|
|
2017-03-10 16:17:42 +03:00
|
|
|
const asyncId = this._handle ? this[async_id_symbol] : null;
|
|
|
|
nextTick(asyncId, emitCloseNT, this);
|
2011-06-17 19:10:12 +04:00
|
|
|
};
|
2011-07-04 22:25:31 +04:00
|
|
|
|
2011-10-11 01:24:56 +04:00
|
|
|
|
2015-05-04 21:40:25 +03:00
|
|
|
function emitCloseNT(self) {
|
|
|
|
debug('SERVER: emit close');
|
|
|
|
self.emit('close');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-13 19:44:39 +03:00
|
|
|
Server.prototype.listenFD = internalUtil.deprecate(function(fd, type) {
|
2012-06-21 22:42:33 +04:00
|
|
|
return this.listen({ fd: fd });
|
2016-12-04 23:47:01 +03:00
|
|
|
}, 'Server.listenFD is deprecated. Use Server.listen({fd: <number>}) instead.',
|
|
|
|
'DEP0021');
|
2011-08-04 23:04:54 +04:00
|
|
|
|
2017-07-24 17:52:38 +03:00
|
|
|
Server.prototype._setupWorker = function(socketList) {
|
|
|
|
this._usingWorkers = true;
|
|
|
|
this._workers.push(socketList);
|
2017-09-29 12:29:58 +03:00
|
|
|
socketList.once('exit', (socketList) => {
|
|
|
|
const index = this._workers.indexOf(socketList);
|
|
|
|
this._workers.splice(index, 1);
|
|
|
|
});
|
2012-04-12 11:23:07 +04:00
|
|
|
};
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
Server.prototype.ref = function() {
|
2015-01-03 07:14:25 +03:00
|
|
|
this._unref = false;
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
if (this._handle)
|
|
|
|
this._handle.ref();
|
2015-05-22 19:35:57 +03:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 05:26:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype.unref = function() {
|
2015-01-03 07:14:25 +03:00
|
|
|
this._unref = true;
|
|
|
|
|
2012-07-13 05:26:04 +04:00
|
|
|
if (this._handle)
|
|
|
|
this._handle.unref();
|
2015-05-22 19:35:57 +03:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 05:26:04 +04:00
|
|
|
};
|
|
|
|
|
2017-03-05 20:15:38 +03:00
|
|
|
var _setSimultaneousAccepts;
|
2012-01-20 04:52:23 +04:00
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var simultaneousAccepts;
|
|
|
|
|
2017-03-05 20:15:38 +03:00
|
|
|
_setSimultaneousAccepts = function(handle) {
|
2015-01-29 04:05:53 +03:00
|
|
|
if (handle === undefined) {
|
2012-01-20 04:52:23 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-29 04:05:53 +03:00
|
|
|
if (simultaneousAccepts === undefined) {
|
2012-01-20 04:52:23 +04:00
|
|
|
simultaneousAccepts = (process.env.NODE_MANY_ACCEPTS &&
|
2012-02-19 03:01:35 +04:00
|
|
|
process.env.NODE_MANY_ACCEPTS !== '0');
|
2012-01-20 04:52:23 +04:00
|
|
|
}
|
|
|
|
|
2012-02-19 03:01:35 +04:00
|
|
|
if (handle._simultaneousAccepts !== simultaneousAccepts) {
|
2012-01-20 04:52:23 +04:00
|
|
|
handle.setSimultaneousAccepts(simultaneousAccepts);
|
|
|
|
handle._simultaneousAccepts = simultaneousAccepts;
|
|
|
|
}
|
2012-02-19 03:01:35 +04:00
|
|
|
};
|
2012-01-20 04:52:23 +04:00
|
|
|
} else {
|
2017-03-05 20:15:38 +03:00
|
|
|
_setSimultaneousAccepts = function(handle) {};
|
2012-01-20 04:52:23 +04:00
|
|
|
}
|
2017-03-05 20:15:38 +03:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
_createServerHandle: createServerHandle,
|
|
|
|
_normalizeArgs: normalizeArgs,
|
|
|
|
_setSimultaneousAccepts,
|
|
|
|
connect,
|
|
|
|
createConnection: connect,
|
|
|
|
createServer,
|
2018-01-26 20:39:10 +03:00
|
|
|
isIP: isIP,
|
|
|
|
isIPv4: isIPv4,
|
|
|
|
isIPv6: isIPv6,
|
2017-03-05 20:15:38 +03:00
|
|
|
Server,
|
|
|
|
Socket,
|
|
|
|
Stream: Socket, // Legacy naming
|
|
|
|
};
|