2017-01-03 21:16:48 +00: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 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
const {
|
2019-11-23 09:09:05 +00:00
|
|
|
ArrayIsArray,
|
2019-11-28 07:19:55 +00:00
|
|
|
Boolean,
|
2019-11-28 09:30:51 +00:00
|
|
|
Number,
|
2019-11-27 18:59:29 +00:00
|
|
|
NumberIsNaN,
|
2019-11-22 17:04:46 +00:00
|
|
|
ObjectDefineProperty,
|
|
|
|
ObjectSetPrototypeOf,
|
2019-11-12 16:55:42 +00:00
|
|
|
} = primordials;
|
2019-04-09 07:55:53 +00:00
|
|
|
|
2015-09-16 22:45:29 +00:00
|
|
|
const EventEmitter = require('events');
|
2015-01-21 16:36:59 +00:00
|
|
|
const stream = require('stream');
|
2019-03-26 11:28:25 +00:00
|
|
|
const { inspect } = require('internal/util/inspect');
|
|
|
|
const debug = require('internal/util/debuglog').debuglog('net');
|
|
|
|
const { deprecate } = require('internal/util');
|
2017-12-30 23:27:56 +00:00
|
|
|
const {
|
2018-01-26 17:39:10 +00:00
|
|
|
isIP,
|
|
|
|
isIPv4,
|
|
|
|
isIPv6,
|
2017-12-30 23:27:56 +00:00
|
|
|
isLegalPort,
|
|
|
|
normalizedArgsSymbol,
|
|
|
|
makeSyncWrite
|
|
|
|
} = require('internal/net');
|
2019-02-06 05:45:46 +00:00
|
|
|
const assert = require('internal/assert');
|
2017-08-18 22:37:35 +00:00
|
|
|
const {
|
|
|
|
UV_EADDRINUSE,
|
2019-10-10 00:22:38 +00:00
|
|
|
UV_EINVAL,
|
|
|
|
UV_ENOTCONN
|
2018-08-06 21:40:30 +00:00
|
|
|
} = internalBinding('uv');
|
2014-02-26 14:03:59 +00:00
|
|
|
|
2017-10-07 14:50:42 +00:00
|
|
|
const { Buffer } = require('buffer');
|
2019-04-18 02:46:39 +00:00
|
|
|
const { guessHandleType } = internalBinding('util');
|
2018-08-16 00:14:22 +00:00
|
|
|
const { ShutdownWrap } = internalBinding('stream_wrap');
|
2018-03-26 11:40:15 +00:00
|
|
|
const {
|
|
|
|
TCP,
|
|
|
|
TCPConnectWrap,
|
|
|
|
constants: TCPConstants
|
2018-08-21 06:54:02 +00:00
|
|
|
} = internalBinding('tcp_wrap');
|
2018-03-26 11:40:15 +00:00
|
|
|
const {
|
|
|
|
Pipe,
|
|
|
|
PipeConnectWrap,
|
|
|
|
constants: PipeConstants
|
2018-08-23 15:36:43 +00:00
|
|
|
} = internalBinding('pipe_wrap');
|
2018-02-11 21:35:59 +00:00
|
|
|
const {
|
|
|
|
newAsyncId,
|
|
|
|
defaultTriggerAsyncIdScope,
|
2018-07-27 12:35:39 +00:00
|
|
|
symbols: { async_id_symbol, owner_symbol }
|
2018-02-11 21:35:59 +00:00
|
|
|
} = require('internal/async_hooks');
|
2018-03-18 07:35:47 +00:00
|
|
|
const {
|
|
|
|
writevGeneric,
|
2018-05-05 09:46:50 +00:00
|
|
|
writeGeneric,
|
|
|
|
onStreamRead,
|
2018-11-03 18:00:41 +00:00
|
|
|
kAfterAsyncWrite,
|
2019-03-07 11:22:36 +00:00
|
|
|
kHandle,
|
2019-01-04 02:40:22 +00:00
|
|
|
kUpdateTimer,
|
2019-01-10 20:52:27 +00:00
|
|
|
setStreamTimeout,
|
|
|
|
kBuffer,
|
|
|
|
kBufferCb,
|
|
|
|
kBufferGen
|
2018-03-18 07:35:47 +00:00
|
|
|
} = require('internal/stream_base_commons');
|
2018-02-27 13:55:32 +00:00
|
|
|
const {
|
2018-11-02 13:08:30 +00:00
|
|
|
codes: {
|
|
|
|
ERR_INVALID_ADDRESS_FAMILY,
|
|
|
|
ERR_INVALID_ARG_TYPE,
|
|
|
|
ERR_INVALID_ARG_VALUE,
|
|
|
|
ERR_INVALID_FD_TYPE,
|
|
|
|
ERR_INVALID_IP_ADDRESS,
|
|
|
|
ERR_INVALID_OPT_VALUE,
|
|
|
|
ERR_SERVER_ALREADY_LISTEN,
|
|
|
|
ERR_SERVER_NOT_RUNNING,
|
|
|
|
ERR_SOCKET_BAD_PORT,
|
|
|
|
ERR_SOCKET_CLOSED
|
|
|
|
},
|
|
|
|
errnoException,
|
|
|
|
exceptionWithHostPort,
|
|
|
|
uvExceptionWithHostPort
|
|
|
|
} = require('internal/errors');
|
2019-01-10 20:52:27 +00:00
|
|
|
const { isUint8Array } = require('internal/util/types');
|
2018-08-02 22:51:02 +00:00
|
|
|
const { validateInt32, validateString } = require('internal/validators');
|
2017-12-11 22:55:17 +00:00
|
|
|
const kLastWriteQueueSize = Symbol('lastWriteQueueSize');
|
2019-03-09 08:28:04 +00:00
|
|
|
const {
|
|
|
|
DTRACE_NET_SERVER_CONNECTION,
|
|
|
|
DTRACE_NET_STREAM_END
|
|
|
|
} = require('internal/dtrace');
|
2017-12-11 22:55:17 +00:00
|
|
|
|
2018-05-07 03:12:47 +00:00
|
|
|
// Lazy loaded to improve startup performance.
|
|
|
|
let cluster;
|
|
|
|
let dns;
|
2017-04-11 16:15:11 +00:00
|
|
|
|
2019-04-05 21:56:00 +00:00
|
|
|
const { clearTimeout } = require('timers');
|
2019-01-04 02:40:22 +00:00
|
|
|
const { kTimeout } = require('internal/timers');
|
2017-02-03 21:05:59 +00:00
|
|
|
|
2019-03-13 13:10:54 +00:00
|
|
|
const DEFAULT_IPV4_ADDR = '0.0.0.0';
|
|
|
|
const DEFAULT_IPV6_ADDR = '::';
|
|
|
|
|
2012-02-18 23:01:35 +00:00
|
|
|
function noop() {}
|
2011-10-07 17:00:48 +00:00
|
|
|
|
2018-10-21 07:59:38 +00:00
|
|
|
function getFlags(ipv6Only) {
|
|
|
|
return ipv6Only === true ? TCPConstants.UV_TCP_IPV6ONLY : 0;
|
|
|
|
}
|
|
|
|
|
2017-11-20 16:18:40 +00:00
|
|
|
function createHandle(fd, is_server) {
|
2018-06-20 21:27:09 +00:00
|
|
|
validateInt32(fd, 'fd', 0);
|
2019-04-18 02:46:39 +00:00
|
|
|
const type = guessHandleType(fd);
|
2017-11-20 16:18:40 +00: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
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_FD_TYPE(type);
|
2013-03-14 14:13:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-10 13:17:42 +00:00
|
|
|
function getNewAsyncId(handle) {
|
|
|
|
return (!handle || typeof handle.getAsyncId !== 'function') ?
|
2018-02-11 21:35:59 +00:00
|
|
|
newAsyncId() : handle.getAsyncId();
|
2017-03-10 13:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-19 20:49:42 +00:00
|
|
|
function isPipeName(s) {
|
2015-01-29 01:05:53 +00:00
|
|
|
return typeof s === 'string' && toNumber(s) === false;
|
2011-07-19 20:49:42 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:15:38 +00:00
|
|
|
function createServer(options, connectionListener) {
|
2014-09-24 03:08:35 +00:00
|
|
|
return new Server(options, connectionListener);
|
2017-03-05 17:15:38 +00:00
|
|
|
}
|
2011-06-17 12:27:02 +00:00
|
|
|
|
|
|
|
|
2012-01-09 01:18:39 +00:00
|
|
|
// Target API:
|
|
|
|
//
|
2019-11-12 14:57:50 +00:00
|
|
|
// let s = net.connect({port: 80, host: 'google.com'}, function() {
|
2012-01-09 01:18:39 +00:00
|
|
|
// ...
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// There are various forms:
|
|
|
|
//
|
|
|
|
// connect(options, [cb])
|
|
|
|
// connect(port, [host], [cb])
|
|
|
|
// connect(path, [cb]);
|
|
|
|
//
|
2017-06-05 12:05:36 +00:00
|
|
|
function connect(...args) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const normalized = normalizeArgs(args);
|
|
|
|
const options = normalized[0];
|
2017-03-03 16:52:12 +00:00
|
|
|
debug('createConnection', normalized);
|
2019-03-26 04:21:27 +00:00
|
|
|
const socket = new Socket(options);
|
2016-08-31 00:00:41 +00:00
|
|
|
|
2017-03-03 16:52:12 +00:00
|
|
|
if (options.timeout) {
|
|
|
|
socket.setTimeout(options.timeout);
|
2016-08-31 00:00:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-06 12:09:58 +00:00
|
|
|
return socket.connect(normalized);
|
2017-03-05 17:15:38 +00:00
|
|
|
}
|
2011-07-19 20:49:42 +00:00
|
|
|
|
2012-01-09 01:18:39 +00:00
|
|
|
|
2017-03-03 16:52:12 +00:00
|
|
|
// Returns an array [options, cb], where options is an object,
|
2017-06-16 15:49:20 +00:00
|
|
|
// cb is either a function or null.
|
2017-03-03 16:52:12 +00:00
|
|
|
// Used to normalize arguments of Socket.prototype.connect() and
|
2017-06-16 15:49:20 +00:00
|
|
|
// Server.prototype.listen(). Possible combinations of parameters:
|
2017-03-03 16:52:12 +00: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) {
|
2019-11-12 14:57:50 +00:00
|
|
|
let arr;
|
2017-05-18 18:19:21 +00:00
|
|
|
|
2016-08-15 17:46:39 +00:00
|
|
|
if (args.length === 0) {
|
2017-05-18 18:19:21 +00:00
|
|
|
arr = [{}, null];
|
|
|
|
arr[normalizedArgsSymbol] = true;
|
|
|
|
return arr;
|
2017-03-03 16:52:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const arg0 = args[0];
|
2019-11-12 14:57:50 +00:00
|
|
|
let options = {};
|
2017-03-03 16:52:12 +00:00
|
|
|
if (typeof arg0 === 'object' && arg0 !== null) {
|
|
|
|
// (options[...][, cb])
|
|
|
|
options = arg0;
|
|
|
|
} else if (isPipeName(arg0)) {
|
|
|
|
// (path[...][, cb])
|
|
|
|
options.path = arg0;
|
2011-07-19 20:49:42 +00:00
|
|
|
} else {
|
2017-03-03 16:52:12 +00:00
|
|
|
// ([port][, host][...][, cb])
|
|
|
|
options.port = arg0;
|
2016-08-15 17:46:39 +00:00
|
|
|
if (args.length > 1 && typeof args[1] === 'string') {
|
2012-01-09 01:18:39 +00:00
|
|
|
options.host = args[1];
|
|
|
|
}
|
2011-07-19 20:49:42 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 04:21:27 +00:00
|
|
|
const cb = args[args.length - 1];
|
2016-08-12 16:22:22 +00:00
|
|
|
if (typeof cb !== 'function')
|
2017-05-18 18:19:21 +00:00
|
|
|
arr = [options, null];
|
2017-03-03 16:52:12 +00:00
|
|
|
else
|
2017-05-18 18:19:21 +00:00
|
|
|
arr = [options, cb];
|
|
|
|
|
|
|
|
arr[normalizedArgsSymbol] = true;
|
|
|
|
return arr;
|
2012-01-09 01:18:39 +00:00
|
|
|
}
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
|
2018-12-03 16:15:45 +00:00
|
|
|
// Called when creating new Socket, or when re-using a closed Socket
|
2011-06-30 23:37:30 +00:00
|
|
|
function initSocketHandle(self) {
|
2017-05-06 12:20:52 +00:00
|
|
|
self._undestroy();
|
2015-07-02 22:26:21 +00:00
|
|
|
self._sockname = null;
|
2011-07-21 21:00:47 +00:00
|
|
|
|
|
|
|
// Handle creation may be deferred to bind() or connect() time.
|
|
|
|
if (self._handle) {
|
2018-07-27 12:35:39 +00:00
|
|
|
self._handle[owner_symbol] = self;
|
2018-05-05 09:46:50 +00:00
|
|
|
self._handle.onread = onStreamRead;
|
2017-03-10 13:17:42 +00:00
|
|
|
self[async_id_symbol] = getNewAsyncId(self._handle);
|
2019-01-10 20:52:27 +00:00
|
|
|
|
|
|
|
let userBuf = self[kBuffer];
|
|
|
|
if (userBuf) {
|
|
|
|
const bufGen = self[kBufferGen];
|
|
|
|
if (bufGen !== null) {
|
|
|
|
userBuf = bufGen();
|
|
|
|
if (!isUint8Array(userBuf))
|
|
|
|
return;
|
|
|
|
self[kBuffer] = userBuf;
|
|
|
|
}
|
|
|
|
self._handle.useUserBuffer(userBuf);
|
|
|
|
}
|
2011-07-21 21:00:47 +00:00
|
|
|
}
|
2011-06-30 23:37:30 +00:00
|
|
|
}
|
2011-06-17 12:27:02 +00:00
|
|
|
|
2016-04-19 18:46:53 +00:00
|
|
|
|
2018-03-17 16:52:57 +00:00
|
|
|
const kBytesRead = Symbol('kBytesRead');
|
|
|
|
const kBytesWritten = Symbol('kBytesWritten');
|
2016-04-19 18:46:53 +00:00
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
2016-04-26 20:27:08 +00:00
|
|
|
this.connecting = false;
|
2017-03-10 13:17:42 +00: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 19:47:31 +00:00
|
|
|
this._hadError = false;
|
2019-03-07 11:22:36 +00:00
|
|
|
this[kHandle] = null;
|
2015-02-19 13:14:36 +00:00
|
|
|
this._parent = null;
|
2013-10-28 10:25:27 +00:00
|
|
|
this._host = null;
|
2017-12-11 22:55:17 +00:00
|
|
|
this[kLastWriteQueueSize] = 0;
|
2017-02-03 21:05:59 +00:00
|
|
|
this[kTimeout] = null;
|
2019-01-10 20:52:27 +00:00
|
|
|
this[kBuffer] = null;
|
|
|
|
this[kBufferCb] = null;
|
|
|
|
this[kBufferGen] = null;
|
2013-01-28 16:54:27 +00:00
|
|
|
|
2015-01-29 01:05:53 +00:00
|
|
|
if (typeof options === 'number')
|
2013-07-24 16:03:53 +00:00
|
|
|
options = { fd: options }; // Legacy interface.
|
2018-01-29 18:32:34 +00:00
|
|
|
else
|
2018-12-18 02:15:57 +00:00
|
|
|
options = { ...options };
|
2018-01-29 18:32:34 +00:00
|
|
|
|
2018-04-12 09:15:31 +00:00
|
|
|
options.readable = options.readable || false;
|
|
|
|
options.writable = options.writable || false;
|
2018-05-25 08:54:24 +00:00
|
|
|
const { allowHalfOpen } = options;
|
2018-04-03 16:51:30 +00:00
|
|
|
|
|
|
|
// Prevent the "no-half-open enforcer" from being inherited from `Duplex`.
|
|
|
|
options.allowHalfOpen = true;
|
2018-01-29 18:32:34 +00:00
|
|
|
// For backwards compat do not emit close on destroy.
|
|
|
|
options.emitClose = false;
|
2018-12-24 05:59:19 +00:00
|
|
|
// Handle strings directly.
|
|
|
|
options.decodeStrings = false;
|
2018-04-03 16:51:30 +00:00
|
|
|
stream.Duplex.call(this, options);
|
2012-07-17 13:16:23 +00:00
|
|
|
|
2018-04-03 16:51:30 +00:00
|
|
|
// Default to *not* allowing half open sockets.
|
|
|
|
this.allowHalfOpen = Boolean(allowHalfOpen);
|
2012-12-27 14:57:19 +00:00
|
|
|
|
2012-12-13 05:18:57 +00:00
|
|
|
if (options.handle) {
|
|
|
|
this._handle = options.handle; // private
|
2017-03-10 13:17:42 +00:00
|
|
|
this[async_id_symbol] = getNewAsyncId(this._handle);
|
2019-01-10 20:52:27 +00:00
|
|
|
} else {
|
|
|
|
const onread = options.onread;
|
|
|
|
if (onread !== null && typeof onread === 'object' &&
|
|
|
|
(isUint8Array(onread.buffer) || typeof onread.buffer === 'function') &&
|
|
|
|
typeof onread.callback === 'function') {
|
|
|
|
if (typeof onread.buffer === 'function') {
|
|
|
|
this[kBuffer] = true;
|
|
|
|
this[kBufferGen] = onread.buffer;
|
|
|
|
} else {
|
|
|
|
this[kBuffer] = onread.buffer;
|
|
|
|
}
|
|
|
|
this[kBufferCb] = onread.callback;
|
|
|
|
}
|
|
|
|
if (options.fd !== undefined) {
|
|
|
|
const { fd } = options;
|
|
|
|
let err;
|
|
|
|
|
|
|
|
// createHandle will throw ERR_INVALID_FD_TYPE if `fd` is not
|
|
|
|
// a valid `PIPE` or `TCP` descriptor
|
|
|
|
this._handle = createHandle(fd, false);
|
|
|
|
|
|
|
|
err = this._handle.open(fd);
|
|
|
|
|
|
|
|
// While difficult to fabricate, in some architectures
|
|
|
|
// `open` may return an error code for valid file descriptors
|
|
|
|
// which cannot be opened. This is difficult to test as most
|
|
|
|
// un-openable fds will throw on `createHandle`
|
2014-02-26 14:03:59 +00:00
|
|
|
if (err)
|
2019-01-10 20:52:27 +00:00
|
|
|
throw errnoException(err, 'open');
|
|
|
|
|
|
|
|
this[async_id_symbol] = this._handle.getAsyncId();
|
|
|
|
|
|
|
|
if ((fd === 1 || fd === 2) &&
|
|
|
|
(this._handle instanceof Pipe) &&
|
|
|
|
process.platform === 'win32') {
|
|
|
|
// Make stdout and stderr blocking on Windows
|
|
|
|
err = this._handle.setBlocking(true);
|
|
|
|
if (err)
|
|
|
|
throw errnoException(err, 'setBlocking');
|
|
|
|
|
|
|
|
this._writev = null;
|
|
|
|
this._write = makeSyncWrite(fd);
|
|
|
|
// makeSyncWrite adjusts this value like the original handle would, so
|
|
|
|
// we need to let it do that by turning it into a writable, own
|
|
|
|
// property.
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(this._handle, 'bytesWritten', {
|
2019-01-10 20:52:27 +00:00
|
|
|
value: 0, writable: true
|
|
|
|
});
|
|
|
|
}
|
2014-02-26 14:03:59 +00:00
|
|
|
}
|
2011-09-12 21:59:51 +00:00
|
|
|
}
|
2012-07-17 13:16:23 +00:00
|
|
|
|
2019-01-21 00:22:27 +00:00
|
|
|
// Shut down the socket when we're finished with it.
|
2018-02-06 22:00:15 +00:00
|
|
|
this.on('end', onReadableStreamEnd);
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2012-07-17 13:16:23 +00:00
|
|
|
initSocketHandle(this);
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2013-03-04 03:14:06 +00:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2018-12-10 12:27:32 +00:00
|
|
|
// If we have a handle, then start the flow of data into the
|
2012-12-13 05:18:57 +00:00
|
|
|
// buffer. if not, then this will happen when we connect
|
2014-10-18 01:45:40 +00:00
|
|
|
if (this._handle && options.readable !== false) {
|
|
|
|
if (options.pauseOnCreate) {
|
2019-01-21 00:22:27 +00:00
|
|
|
// Stop the handle from reading and pause the stream
|
2014-10-18 01:45:40 +00:00
|
|
|
this._handle.reading = false;
|
|
|
|
this._handle.readStop();
|
2017-05-16 15:08:49 +00:00
|
|
|
this.readableFlowing = false;
|
2017-10-12 05:57:45 +00:00
|
|
|
} else if (!options.manualStart) {
|
2014-10-18 01:45:40 +00:00
|
|
|
this.read(0);
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 20:09:31 +00:00
|
|
|
|
|
|
|
// Reserve properties
|
|
|
|
this.server = null;
|
|
|
|
this._server = null;
|
2016-04-19 18:46:53 +00:00
|
|
|
|
|
|
|
// Used after `.destroy()`
|
2018-03-17 16:52:57 +00:00
|
|
|
this[kBytesRead] = 0;
|
|
|
|
this[kBytesWritten] = 0;
|
2012-12-13 05:18:57 +00:00
|
|
|
}
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectSetPrototypeOf(Socket.prototype, stream.Duplex.prototype);
|
|
|
|
ObjectSetPrototypeOf(Socket, stream.Duplex);
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2017-02-03 21:05:59 +00:00
|
|
|
// Refresh existing timeouts.
|
2016-10-15 22:02:43 +00:00
|
|
|
Socket.prototype._unrefTimer = function _unrefTimer() {
|
2019-11-12 14:57:50 +00:00
|
|
|
for (let s = this; s !== null; s = s._parent) {
|
2017-02-03 21:05:59 +00:00
|
|
|
if (s[kTimeout])
|
2018-04-25 16:45:34 +00:00
|
|
|
s[kTimeout].refresh();
|
2017-02-03 21:05:59 +00:00
|
|
|
}
|
2015-02-19 13:14:36 +00:00
|
|
|
};
|
|
|
|
|
2017-11-22 17:41:00 +00:00
|
|
|
|
2018-12-10 12:27:32 +00:00
|
|
|
// The user has called .end(), and all the bytes have been
|
2012-12-13 05:18:57 +00:00
|
|
|
// sent out to the other side.
|
2018-02-07 00:36:20 +00:00
|
|
|
Socket.prototype._final = function(cb) {
|
|
|
|
// If still connecting - defer handling `_final` until 'connect' will happen
|
2018-11-03 18:53:06 +00:00
|
|
|
if (this.pending) {
|
2018-02-07 00:36:20 +00:00
|
|
|
debug('_final: not yet connected');
|
|
|
|
return this.once('connect', () => this._final(cb));
|
2013-03-13 12:53:27 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 11:28:27 +00:00
|
|
|
if (!this._handle)
|
|
|
|
return cb();
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2018-02-07 00:36:20 +00:00
|
|
|
debug('_final: not ended, call shutdown()');
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2019-03-26 04:21:27 +00:00
|
|
|
const req = new ShutdownWrap();
|
2018-11-04 11:28:27 +00:00
|
|
|
req.oncomplete = afterShutdown;
|
|
|
|
req.handle = this._handle;
|
|
|
|
req.callback = cb;
|
2019-03-26 04:21:27 +00:00
|
|
|
const err = this._handle.shutdown(req);
|
2012-12-13 05:18:57 +00:00
|
|
|
|
2019-10-10 00:22:38 +00:00
|
|
|
if (err === 1 || err === UV_ENOTCONN) // synchronous finish
|
2019-01-21 13:54:01 +00:00
|
|
|
return afterShutdown.call(req, 0);
|
|
|
|
else if (err !== 0)
|
2017-05-06 12:20:52 +00:00
|
|
|
return this.destroy(errnoException(err, 'shutdown'));
|
2018-02-07 00:36:20 +00:00
|
|
|
};
|
2012-12-13 05:18:57 +00:00
|
|
|
|
|
|
|
|
2018-12-13 23:47:32 +00:00
|
|
|
function afterShutdown(status) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const self = this.handle[owner_symbol];
|
2012-12-13 05:18:57 +00:00
|
|
|
|
|
|
|
debug('afterShutdown destroyed=%j', self.destroyed,
|
|
|
|
self._readableState);
|
|
|
|
|
2018-02-07 00:36:20 +00:00
|
|
|
this.callback();
|
|
|
|
|
2019-01-21 00:22:27 +00:00
|
|
|
// Callback may come after call to destroy.
|
2012-12-13 05:18:57 +00:00
|
|
|
if (self.destroyed)
|
|
|
|
return;
|
|
|
|
|
2019-09-21 14:12:13 +00:00
|
|
|
if (!self.readable || self.readableEnded) {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('readableState ended, destroying');
|
|
|
|
self.destroy();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
2013-03-02 18:20:33 +00: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 01:05:53 +00:00
|
|
|
if (typeof encoding === 'function') {
|
2013-03-02 18:20:33 +00:00
|
|
|
cb = encoding;
|
|
|
|
encoding = null;
|
|
|
|
}
|
|
|
|
|
2018-03-15 13:22:43 +00:00
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2019-03-26 04:21:27 +00:00
|
|
|
const er = new Error('This socket has been ended by the other party');
|
2013-03-02 18:20:33 +00:00
|
|
|
er.code = 'EPIPE';
|
2018-11-18 06:56:02 +00:00
|
|
|
process.nextTick(emitErrorNT, this, er);
|
2015-01-29 01:05:53 +00:00
|
|
|
if (typeof cb === 'function') {
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(this[async_id_symbol], process.nextTick, cb, er);
|
2013-03-02 18:20:33 +00:00
|
|
|
}
|
2019-05-31 18:36:23 +00:00
|
|
|
|
|
|
|
return false;
|
2012-12-13 05:18:57 +00:00
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2019-01-04 02:40:22 +00:00
|
|
|
Socket.prototype.setTimeout = setStreamTimeout;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
|
2011-07-01 19:01:12 +00:00
|
|
|
Socket.prototype._onTimeout = function() {
|
2017-12-11 22:55:17 +00:00
|
|
|
const handle = this._handle;
|
|
|
|
const lastWriteQueueSize = this[kLastWriteQueueSize];
|
|
|
|
if (lastWriteQueueSize > 0 && handle) {
|
|
|
|
// `lastWriteQueueSize !== writeQueueSize` means there is
|
2017-10-25 13:26:20 +00:00
|
|
|
// an active write in progress, so we suppress the timeout.
|
2018-05-25 08:54:24 +00:00
|
|
|
const { writeQueueSize } = handle;
|
2017-12-11 22:55:17 +00:00
|
|
|
if (lastWriteQueueSize !== writeQueueSize) {
|
|
|
|
this[kLastWriteQueueSize] = writeQueueSize;
|
2017-10-25 13:26:20 +00:00
|
|
|
this._unrefTimer();
|
|
|
|
return;
|
|
|
|
}
|
2017-10-12 13:57:42 +00:00
|
|
|
}
|
2012-02-18 23:01:35 +00:00
|
|
|
debug('_onTimeout');
|
2011-07-01 19:01:12 +00:00
|
|
|
this.emit('timeout');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-12 17:13:04 +00:00
|
|
|
Socket.prototype.setNoDelay = function(enable) {
|
2015-02-18 18:02:01 +00:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect',
|
2015-08-21 21:30:08 +00:00
|
|
|
enable ? this.setNoDelay : () => this.setNoDelay(enable));
|
2015-05-23 05:48:13 +00:00
|
|
|
return this;
|
2015-02-18 18:02:01 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 12:27:32 +00:00
|
|
|
// Backwards compatibility: assume true when `enable` is omitted
|
2015-02-18 18:02:01 +00:00
|
|
|
if (this._handle.setNoDelay)
|
2015-01-29 01:05:53 +00:00
|
|
|
this._handle.setNoDelay(enable === undefined ? true : !!enable);
|
2015-05-23 05:48:13 +00:00
|
|
|
|
|
|
|
return this;
|
2011-06-17 12:27:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-30 21:53:22 +00:00
|
|
|
Socket.prototype.setKeepAlive = function(setting, msecs) {
|
2015-02-18 18:02:01 +00:00
|
|
|
if (!this._handle) {
|
2015-08-21 21:30:08 +00:00
|
|
|
this.once('connect', () => this.setKeepAlive(setting, msecs));
|
2015-05-23 05:48:13 +00:00
|
|
|
return this;
|
2015-02-18 18:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this._handle.setKeepAlive)
|
2011-10-22 00:07:11 +00:00
|
|
|
this._handle.setKeepAlive(setting, ~~(msecs / 1000));
|
2015-05-23 05:48:13 +00:00
|
|
|
|
|
|
|
return this;
|
2011-06-30 21:53:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-15 22:06:10 +00:00
|
|
|
Socket.prototype.address = function() {
|
2014-04-13 17:19:14 +00:00
|
|
|
return this._getsockname();
|
2011-07-15 22:06:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, '_connecting', {
|
2016-04-26 20:27:08 +00:00
|
|
|
get: function() {
|
|
|
|
return this.connecting;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, 'pending', {
|
2018-11-03 18:53:06 +00:00
|
|
|
get() {
|
|
|
|
return !this._handle || this.connecting;
|
|
|
|
},
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
|
2016-04-26 20:27:08 +00:00
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, 'readyState', {
|
2011-06-17 12:27:02 +00:00
|
|
|
get: function() {
|
2016-04-26 20:27:08 +00:00
|
|
|
if (this.connecting) {
|
2011-06-17 12:27:02 +00: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';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, 'bufferSize', {
|
|
|
|
get: function() {
|
2011-12-28 06:13:57 +00:00
|
|
|
if (this._handle) {
|
2017-12-11 22:55:17 +00:00
|
|
|
return this[kLastWriteQueueSize] + this.writableLength;
|
2011-12-28 06:13:57 +00:00
|
|
|
}
|
2011-06-17 12:27:02 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, kUpdateTimer, {
|
2018-05-05 09:46:50 +00:00
|
|
|
get: function() {
|
|
|
|
return this._unrefTimer;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
|
2019-01-10 20:52:27 +00:00
|
|
|
function tryReadStart(socket) {
|
|
|
|
// Not already reading, start the flow
|
|
|
|
debug('Socket._handle.readStart');
|
|
|
|
socket._handle.reading = true;
|
2019-11-12 14:57:50 +00:00
|
|
|
const err = socket._handle.readStart();
|
2019-01-10 20:52:27 +00:00
|
|
|
if (err)
|
|
|
|
socket.destroy(errnoException(err, 'read'));
|
|
|
|
}
|
|
|
|
|
2012-12-13 05:18:57 +00: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-02-28 23:32:32 +00:00
|
|
|
Socket.prototype._read = function(n) {
|
2012-12-13 05:18:57 +00: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-02-28 23:32:32 +00:00
|
|
|
|
2016-04-26 20:27:08 +00:00
|
|
|
if (this.connecting || !this._handle) {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('_read wait for connection');
|
2015-08-21 21:30:08 +00: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-02-28 23:32:32 +00:00
|
|
|
} else if (!this._handle.reading) {
|
2019-01-10 20:52:27 +00:00
|
|
|
tryReadStart(this);
|
2011-08-11 23:41:53 +00:00
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-02-11 02:08:21 +00:00
|
|
|
Socket.prototype.end = function(data, encoding, callback) {
|
|
|
|
stream.Duplex.prototype.end.call(this, data, encoding, callback);
|
2011-06-17 15:10:12 +00:00
|
|
|
DTRACE_NET_STREAM_END(this);
|
2017-06-05 19:35:43 +00:00
|
|
|
return this;
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-01-10 20:52:27 +00:00
|
|
|
Socket.prototype.pause = function() {
|
|
|
|
if (this[kBuffer] && !this.connecting && this._handle &&
|
|
|
|
this._handle.reading) {
|
|
|
|
this._handle.reading = false;
|
|
|
|
if (!this.destroyed) {
|
|
|
|
const err = this._handle.readStop();
|
|
|
|
if (err)
|
|
|
|
this.destroy(errnoException(err, 'read'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stream.Duplex.prototype.pause.call(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.resume = function() {
|
|
|
|
if (this[kBuffer] && !this.connecting && this._handle &&
|
|
|
|
!this._handle.reading) {
|
|
|
|
tryReadStart(this);
|
|
|
|
}
|
|
|
|
return stream.Duplex.prototype.resume.call(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.read = function(n) {
|
|
|
|
if (this[kBuffer] && !this.connecting && this._handle &&
|
|
|
|
!this._handle.reading) {
|
|
|
|
tryReadStart(this);
|
|
|
|
}
|
|
|
|
return stream.Duplex.prototype.read.call(this, n);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-02-06 22:00:15 +00:00
|
|
|
// Called when the 'end' event is emitted.
|
|
|
|
function onReadableStreamEnd() {
|
2018-03-08 21:47:55 +00:00
|
|
|
if (!this.allowHalfOpen) {
|
|
|
|
this.write = writeAfterFIN;
|
|
|
|
if (this.writable)
|
|
|
|
this.end();
|
|
|
|
}
|
2018-02-06 22:00:15 +00:00
|
|
|
|
2019-04-08 16:00:09 +00:00
|
|
|
if (!this.destroyed && !this.writable && !this.writableLength)
|
|
|
|
this.destroy();
|
2013-06-05 06:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2012-12-13 05:18:57 +00:00
|
|
|
if (this.writable)
|
|
|
|
this.end();
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2019-06-25 21:53:58 +00:00
|
|
|
if (this.writableFinished)
|
2012-12-13 05:18:57 +00:00
|
|
|
this.destroy();
|
|
|
|
else
|
|
|
|
this.once('finish', this.destroy);
|
2011-07-02 07:18:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 07:21:38 +00:00
|
|
|
Socket.prototype._destroy = function(exception, cb) {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('destroy');
|
|
|
|
|
2016-04-26 20:27:08 +00:00
|
|
|
this.connecting = false;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
for (let s = this; s !== null; s = s._parent) {
|
2017-02-03 21:05:59 +00:00
|
|
|
clearTimeout(s[kTimeout]);
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-08-23 09:31:20 +00:00
|
|
|
debug('close');
|
2011-07-21 21:00:47 +00:00
|
|
|
if (this._handle) {
|
2012-12-13 05:18:57 +00:00
|
|
|
if (this !== process.stderr)
|
|
|
|
debug('close handle');
|
2019-11-12 14:57:50 +00:00
|
|
|
const isException = exception ? true : false;
|
2018-03-17 16:52:57 +00:00
|
|
|
// `bytesRead` and `kBytesWritten` should be accessible after `.destroy()`
|
|
|
|
this[kBytesRead] = this._handle.bytesRead;
|
|
|
|
this[kBytesWritten] = this._handle.bytesWritten;
|
2016-04-19 18:46:53 +00:00
|
|
|
|
2016-03-23 08:14:29 +00:00
|
|
|
this._handle.close(() => {
|
2013-03-06 15:15:17 +00:00
|
|
|
debug('emit close');
|
2016-03-23 08:14:29 +00:00
|
|
|
this.emit('close', isException);
|
2013-03-06 15:15:17 +00:00
|
|
|
});
|
2011-10-07 17:00:48 +00:00
|
|
|
this._handle.onread = noop;
|
2011-07-21 22:47:28 +00:00
|
|
|
this._handle = null;
|
2015-07-02 22:26:21 +00:00
|
|
|
this._sockname = null;
|
2019-10-01 18:21:22 +00:00
|
|
|
cb(exception);
|
|
|
|
} else {
|
|
|
|
cb(exception);
|
|
|
|
process.nextTick(emitCloseNT, this);
|
2011-07-21 21:00:47 +00:00
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2016-02-16 20:09:31 +00:00
|
|
|
if (this._server) {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('has server');
|
2016-02-16 20:09:31 +00:00
|
|
|
this._server._connections--;
|
|
|
|
if (this._server._emitCloseIfDrained) {
|
|
|
|
this._server._emitCloseIfDrained();
|
2012-06-12 17:02:52 +00:00
|
|
|
}
|
2012-05-29 11:05:49 +00:00
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
2011-10-12 19:46:41 +00:00
|
|
|
Socket.prototype._getpeername = function() {
|
|
|
|
if (!this._peername) {
|
2015-03-10 20:48:19 +00:00
|
|
|
if (!this._handle || !this._handle.getpeername) {
|
|
|
|
return {};
|
|
|
|
}
|
2019-11-12 14:57:50 +00:00
|
|
|
const out = {};
|
|
|
|
const err = this._handle.getpeername(out);
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._peername = out;
|
2011-10-12 19:46:41 +00:00
|
|
|
}
|
|
|
|
return this._peername;
|
|
|
|
};
|
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
function protoGetter(name, callback) {
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, name, {
|
2016-04-20 15:59:16 +00:00
|
|
|
configurable: false,
|
|
|
|
enumerable: true,
|
|
|
|
get: callback
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
protoGetter('bytesRead', function bytesRead() {
|
2018-03-17 16:52:57 +00:00
|
|
|
return this._handle ? this._handle.bytesRead : this[kBytesRead];
|
2016-04-19 18:46:53 +00:00
|
|
|
});
|
2011-10-12 19:46:41 +00:00
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('remoteAddress', function remoteAddress() {
|
2011-10-12 19:46:41 +00:00
|
|
|
return this._getpeername().address;
|
|
|
|
});
|
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('remoteFamily', function remoteFamily() {
|
2014-07-16 14:04:34 +00:00
|
|
|
return this._getpeername().family;
|
|
|
|
});
|
2011-10-12 19:46:41 +00:00
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('remotePort', function remotePort() {
|
2011-10-12 19:46:41 +00:00
|
|
|
return this._getpeername().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-01-01 02:01:42 +00:00
|
|
|
Socket.prototype._getsockname = function() {
|
|
|
|
if (!this._handle || !this._handle.getsockname) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (!this._sockname) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const out = {};
|
|
|
|
const err = this._handle.getsockname(out);
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) return {}; // FIXME(bnoordhuis) Throw?
|
|
|
|
this._sockname = out;
|
2013-01-01 02:01:42 +00:00
|
|
|
}
|
|
|
|
return this._sockname;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('localAddress', function localAddress() {
|
2013-01-01 02:01:42 +00:00
|
|
|
return this._getsockname().address;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('localPort', function localPort() {
|
2013-01-01 02:01:42 +00:00
|
|
|
return this._getsockname().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-11-03 18:00:41 +00:00
|
|
|
Socket.prototype[kAfterAsyncWrite] = function() {
|
|
|
|
this[kLastWriteQueueSize] = 0;
|
|
|
|
};
|
|
|
|
|
2013-04-09 08:56:56 +00:00
|
|
|
Socket.prototype._writeGeneric = function(writev, data, encoding, cb) {
|
2011-07-02 07:18:36 +00:00
|
|
|
// If we are still connecting, then buffer this for later.
|
2012-12-13 05:18:57 +00:00
|
|
|
// The Writable logic will buffer up any more writes while
|
|
|
|
// waiting for this one to be done.
|
2016-04-26 20:27:08 +00:00
|
|
|
if (this.connecting) {
|
2013-03-04 03:14:06 +00:00
|
|
|
this._pendingData = data;
|
|
|
|
this._pendingEncoding = encoding;
|
2016-10-29 15:39:53 +00:00
|
|
|
this.once('connect', function connect() {
|
2013-04-09 08:56:56 +00:00
|
|
|
this._writeGeneric(writev, data, encoding, cb);
|
2012-12-13 05:18:57 +00:00
|
|
|
});
|
|
|
|
return;
|
2011-07-02 07:18:36 +00:00
|
|
|
}
|
2013-03-04 03:14:06 +00:00
|
|
|
this._pendingData = null;
|
|
|
|
this._pendingEncoding = '';
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2012-03-20 07:21:38 +00:00
|
|
|
if (!this._handle) {
|
2019-08-17 11:08:09 +00:00
|
|
|
cb(new ERR_SOCKET_CLOSED());
|
2012-03-20 07:21:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-12-22 02:32:27 +00:00
|
|
|
|
2018-05-09 21:17:56 +00:00
|
|
|
this._unrefTimer();
|
|
|
|
|
2019-03-07 11:22:36 +00:00
|
|
|
let req;
|
2018-03-18 07:35:47 +00:00
|
|
|
if (writev)
|
2019-03-07 11:22:36 +00:00
|
|
|
req = writevGeneric(this, data, cb);
|
2018-03-18 07:35:47 +00:00
|
|
|
else
|
2019-03-07 11:22:36 +00:00
|
|
|
req = writeGeneric(this, data, encoding, cb);
|
2018-04-01 18:56:11 +00:00
|
|
|
if (req.async)
|
|
|
|
this[kLastWriteQueueSize] = req.bytes;
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
2013-04-09 08:56:56 +00: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);
|
|
|
|
};
|
|
|
|
|
2018-03-17 16:52:57 +00:00
|
|
|
|
|
|
|
// Legacy alias. Having this is probably being overly cautious, but it doesn't
|
|
|
|
// really hurt anyone either. This can probably be removed safely if desired.
|
|
|
|
protoGetter('_bytesDispatched', function _bytesDispatched() {
|
|
|
|
return this._handle ? this._handle.bytesWritten : this[kBytesWritten];
|
|
|
|
});
|
|
|
|
|
2016-04-20 15:59:16 +00:00
|
|
|
protoGetter('bytesWritten', function bytesWritten() {
|
2019-11-12 14:57:50 +00:00
|
|
|
let bytes = this._bytesDispatched;
|
2016-01-12 21:04:50 +00:00
|
|
|
const state = this._writableState;
|
|
|
|
const data = this._pendingData;
|
|
|
|
const encoding = this._pendingEncoding;
|
2012-05-08 18:19:38 +00:00
|
|
|
|
2015-10-09 22:51:42 +00:00
|
|
|
if (!state)
|
|
|
|
return undefined;
|
|
|
|
|
2017-05-16 15:08:49 +00:00
|
|
|
this.writableBuffer.forEach(function(el) {
|
2015-01-29 01:05:53 +00:00
|
|
|
if (el.chunk instanceof Buffer)
|
2013-04-10 10:21:41 +00:00
|
|
|
bytes += el.chunk.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(el.chunk, el.encoding);
|
2012-12-13 05:18:57 +00:00
|
|
|
});
|
|
|
|
|
2019-11-23 09:09:05 +00:00
|
|
|
if (ArrayIsArray(data)) {
|
2018-12-10 12:27:32 +00:00
|
|
|
// Was a writev, iterate over chunks to get total length
|
2019-11-12 14:57:50 +00:00
|
|
|
for (let i = 0; i < data.length; i++) {
|
2017-07-13 18:36:44 +00:00
|
|
|
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 10:21:41 +00:00
|
|
|
bytes += data.length;
|
|
|
|
else
|
|
|
|
bytes += Buffer.byteLength(data, encoding);
|
2013-04-11 18:06:07 +00:00
|
|
|
}
|
2012-05-08 18:19:38 +00:00
|
|
|
|
|
|
|
return bytes;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2017-08-30 17:13:04 +00: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) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const out = {};
|
2017-08-30 17:13:04 +00:00
|
|
|
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 17:15:38 +00:00
|
|
|
function internalConnect(
|
2018-10-21 07:59:38 +00:00
|
|
|
self, address, port, addressType, localAddress, localPort, flags) {
|
2011-06-24 19:32:09 +00:00
|
|
|
// TODO return promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2017-10-06 16:52:56 +00:00
|
|
|
assert(self.connecting);
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
let err;
|
2014-02-18 01:30:12 +00:00
|
|
|
|
2015-01-03 23:26:26 +00:00
|
|
|
if (localAddress || localPort) {
|
|
|
|
if (addressType === 4) {
|
2019-03-13 13:10:54 +00:00
|
|
|
localAddress = localAddress || DEFAULT_IPV4_ADDR;
|
2017-04-11 14:40:16 +00:00
|
|
|
err = self._handle.bind(localAddress, localPort);
|
2018-11-06 15:25:35 +00:00
|
|
|
} else { // addressType === 6
|
2019-03-13 13:10:54 +00:00
|
|
|
localAddress = localAddress || DEFAULT_IPV6_ADDR;
|
2018-10-21 07:59:38 +00:00
|
|
|
err = self._handle.bind6(localAddress, localPort, flags);
|
2012-05-03 20:27:06 +00:00
|
|
|
}
|
2017-04-24 06:27:14 +00:00
|
|
|
debug('binding to localAddress: %s and localPort: %d (addressType: %d)',
|
|
|
|
localAddress, localPort, addressType);
|
2012-05-03 20:27:06 +00:00
|
|
|
|
2017-08-30 17:13:04 +00:00
|
|
|
err = checkBindError(err, localPort, self._handle);
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) {
|
2016-01-30 03:57:34 +00:00
|
|
|
const ex = exceptionWithHostPort(err, 'bind', localAddress, localPort);
|
2017-05-06 12:20:52 +00:00
|
|
|
self.destroy(ex);
|
2012-05-03 20:27:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-04 22:57:43 +00:00
|
|
|
if (addressType === 6 || addressType === 4) {
|
2016-01-30 03:57:34 +00:00
|
|
|
const req = new TCPConnectWrap();
|
2014-12-09 04:29:47 +00:00
|
|
|
req.oncomplete = afterConnect;
|
2014-12-03 03:16:32 +00:00
|
|
|
req.address = address;
|
2015-01-05 15:43:58 +00:00
|
|
|
req.port = port;
|
2015-11-20 21:16:55 +00:00
|
|
|
req.localAddress = localAddress;
|
|
|
|
req.localPort = localPort;
|
2013-09-04 22:57:43 +00:00
|
|
|
|
2015-01-03 23:26:26 +00:00
|
|
|
if (addressType === 4)
|
2013-09-04 22:57:43 +00:00
|
|
|
err = self._handle.connect(req, address, port);
|
2015-01-03 23:26:26 +00:00
|
|
|
else
|
|
|
|
err = self._handle.connect6(req, address, port);
|
2011-07-06 20:34:04 +00:00
|
|
|
} else {
|
2016-01-30 03:57:34 +00:00
|
|
|
const req = new PipeConnectWrap();
|
2014-12-03 03:16:32 +00:00
|
|
|
req.address = address;
|
2014-12-09 04:29:47 +00:00
|
|
|
req.oncomplete = afterConnect;
|
2017-11-22 17:41:00 +00:00
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
err = self._handle.connect(req, address, afterConnect);
|
2011-07-06 20:34:04 +00:00
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const sockname = self._getsockname();
|
|
|
|
let details;
|
2015-01-19 18:02:18 +00:00
|
|
|
|
|
|
|
if (sockname) {
|
|
|
|
details = sockname.address + ':' + sockname.port;
|
2014-12-03 03:16:32 +00:00
|
|
|
}
|
2015-01-19 18:02:18 +00:00
|
|
|
|
2016-01-30 03:57:34 +00:00
|
|
|
const ex = exceptionWithHostPort(err, 'connect', address, port, details);
|
2017-05-06 12:20:52 +00:00
|
|
|
self.destroy(ex);
|
2011-06-24 19:32:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-05 12:05:36 +00:00
|
|
|
Socket.prototype.connect = function(...args) {
|
2017-05-05 14:02:14 +00: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.
|
2019-11-23 09:09:05 +00:00
|
|
|
if (ArrayIsArray(args[0]) && args[0][normalizedArgsSymbol]) {
|
2017-06-05 12:05:36 +00:00
|
|
|
normalized = args[0];
|
2017-05-05 14:02:14 +00:00
|
|
|
} else {
|
|
|
|
normalized = normalizeArgs(args);
|
|
|
|
}
|
2019-03-26 04:21:27 +00:00
|
|
|
const options = normalized[0];
|
|
|
|
const cb = normalized[1];
|
2017-03-09 03:36:15 +00:00
|
|
|
|
2013-03-02 18:20:33 +00:00
|
|
|
if (this.write !== Socket.prototype.write)
|
|
|
|
this.write = Socket.prototype.write;
|
|
|
|
|
2012-12-13 05:18:57 +00:00
|
|
|
if (this.destroyed) {
|
2017-05-06 12:20:52 +00:00
|
|
|
this._undestroy();
|
2012-12-13 05:18:57 +00:00
|
|
|
this._handle = null;
|
2015-03-10 20:48:19 +00:00
|
|
|
this._peername = null;
|
2015-07-02 22:26:21 +00:00
|
|
|
this._sockname = null;
|
2012-12-13 05:18:57 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 08:54:24 +00:00
|
|
|
const { path } = options;
|
2019-03-26 04:21:27 +00:00
|
|
|
const pipe = !!path;
|
2017-06-16 19:47:48 +00:00
|
|
|
debug('pipe', pipe, path);
|
2011-07-19 20:49:42 +00:00
|
|
|
|
2012-12-13 05:18:57 +00:00
|
|
|
if (!this._handle) {
|
2017-11-20 16:18:40 +00:00
|
|
|
this._handle = pipe ?
|
|
|
|
new Pipe(PipeConstants.SOCKET) :
|
|
|
|
new TCP(TCPConstants.SOCKET);
|
2011-06-30 23:37:30 +00:00
|
|
|
initSocketHandle(this);
|
|
|
|
}
|
2011-07-19 20:49:42 +00:00
|
|
|
|
2017-03-03 16:52:12 +00:00
|
|
|
if (cb !== null) {
|
2016-02-15 04:53:17 +00:00
|
|
|
this.once('connect', cb);
|
2011-06-21 14:53:02 +00:00
|
|
|
}
|
|
|
|
|
2015-02-19 13:14:36 +00:00
|
|
|
this._unrefTimer();
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2016-04-26 20:27:08 +00:00
|
|
|
this.connecting = true;
|
2016-02-15 04:53:17 +00:00
|
|
|
this.writable = true;
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2011-07-19 20:49:42 +00:00
|
|
|
if (pipe) {
|
2018-08-02 22:51:02 +00:00
|
|
|
validateString(path, 'options.path');
|
2017-11-22 17:41:00 +00:00
|
|
|
defaultTriggerAsyncIdScope(
|
2018-01-05 14:03:10 +00:00
|
|
|
this[async_id_symbol], internalConnect, this, path
|
2017-11-22 17:41:00 +00:00
|
|
|
);
|
2012-01-09 01:18:39 +00:00
|
|
|
} else {
|
2016-02-15 04:53:17 +00:00
|
|
|
lookupAndConnect(this, options);
|
2011-06-24 19:32:09 +00:00
|
|
|
}
|
2016-02-15 04:53:17 +00:00
|
|
|
return this;
|
2017-05-05 14:02:14 +00:00
|
|
|
};
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
|
2015-04-22 21:46:21 +00:00
|
|
|
function lookupAndConnect(self, options) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const { localAddress, localPort } = options;
|
|
|
|
const host = options.host || 'localhost';
|
|
|
|
let { port } = options;
|
2015-04-22 21:46:21 +00:00
|
|
|
|
2018-01-26 17:39:10 +00:00
|
|
|
if (localAddress && !isIP(localAddress)) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_IP_ADDRESS(localAddress);
|
2017-06-20 21:37:00 +00:00
|
|
|
}
|
2015-04-22 21:46:21 +00:00
|
|
|
|
2017-06-20 21:37:00 +00:00
|
|
|
if (localPort && typeof localPort !== 'number') {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE('options.localPort', 'number', localPort);
|
2017-06-20 21:37:00 +00:00
|
|
|
}
|
2015-04-22 21:46:21 +00:00
|
|
|
|
|
|
|
if (typeof port !== 'undefined') {
|
2017-06-20 21:37:00 +00:00
|
|
|
if (typeof port !== 'number' && typeof port !== 'string') {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE('options.port',
|
|
|
|
['number', 'string'], port);
|
2017-06-20 21:37:00 +00:00
|
|
|
}
|
|
|
|
if (!isLegalPort(port)) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_SOCKET_BAD_PORT(port);
|
2017-06-20 21:37:00 +00:00
|
|
|
}
|
2015-04-22 21:46:21 +00:00
|
|
|
}
|
|
|
|
port |= 0;
|
|
|
|
|
|
|
|
// If host is an IP, skip performing a lookup
|
2019-03-26 04:21:27 +00:00
|
|
|
const addressType = isIP(host);
|
2015-04-22 21:46:21 +00:00
|
|
|
if (addressType) {
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(self[async_id_symbol], process.nextTick, () => {
|
2017-05-05 11:10:43 +00:00
|
|
|
if (self.connecting)
|
2017-11-22 17:41:00 +00:00
|
|
|
defaultTriggerAsyncIdScope(
|
|
|
|
self[async_id_symbol],
|
2018-01-05 14:03:10 +00:00
|
|
|
internalConnect,
|
|
|
|
self, host, port, addressType, localAddress, localPort
|
2017-11-22 17:41:00 +00:00
|
|
|
);
|
2017-05-05 11:10:43 +00:00
|
|
|
});
|
2015-04-22 21:46:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-22 22:05:29 +00:00
|
|
|
if (options.lookup && typeof options.lookup !== 'function')
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE('options.lookup',
|
|
|
|
'Function', options.lookup);
|
2015-04-22 22:05:29 +00:00
|
|
|
|
2018-05-07 03:12:47 +00:00
|
|
|
|
|
|
|
if (dns === undefined) dns = require('dns');
|
2019-03-26 04:21:27 +00:00
|
|
|
const dnsopts = {
|
2015-04-22 21:46:21 +00:00
|
|
|
family: options.family,
|
2016-04-01 20:59:09 +00:00
|
|
|
hints: options.hints || 0
|
2015-04-22 21:46:21 +00:00
|
|
|
};
|
|
|
|
|
2017-12-13 20:10:38 +00:00
|
|
|
if (process.platform !== 'win32' &&
|
|
|
|
dnsopts.family !== 4 &&
|
|
|
|
dnsopts.family !== 6 &&
|
|
|
|
dnsopts.hints === 0) {
|
2016-04-19 13:09:57 +00:00
|
|
|
dnsopts.hints = dns.ADDRCONFIG;
|
|
|
|
}
|
|
|
|
|
2017-04-11 15:31:54 +00:00
|
|
|
debug('connect: find host', host);
|
2015-06-25 12:29:01 +00:00
|
|
|
debug('connect: dns options', dnsopts);
|
2015-04-22 21:46:21 +00:00
|
|
|
self._host = host;
|
2019-03-26 04:21:27 +00:00
|
|
|
const lookup = options.lookup || dns.lookup;
|
2018-01-05 14:03:10 +00:00
|
|
|
defaultTriggerAsyncIdScope(self[async_id_symbol], function() {
|
2017-11-22 17:41:00 +00: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) {
|
2019-03-18 14:41:19 +00:00
|
|
|
// 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.
|
2017-11-22 17:41:00 +00:00
|
|
|
process.nextTick(connectErrorNT, self, err);
|
2018-03-17 16:43:50 +00:00
|
|
|
} else if (addressType !== 4 && addressType !== 6) {
|
2019-03-18 14:41:19 +00:00
|
|
|
err = new ERR_INVALID_ADDRESS_FAMILY(addressType,
|
|
|
|
options.host,
|
|
|
|
options.port);
|
2018-03-17 16:43:50 +00:00
|
|
|
process.nextTick(connectErrorNT, self, err);
|
2017-11-22 17:41:00 +00:00
|
|
|
} else {
|
|
|
|
self._unrefTimer();
|
|
|
|
defaultTriggerAsyncIdScope(
|
|
|
|
self[async_id_symbol],
|
2018-01-05 14:03:10 +00:00
|
|
|
internalConnect,
|
|
|
|
self, ip, port, addressType, localAddress, localPort
|
2017-11-22 17:41:00 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2015-04-22 21:46:21 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-04 18:40:25 +00:00
|
|
|
function connectErrorNT(self, err) {
|
2017-05-06 12:20:52 +00:00
|
|
|
self.destroy(err);
|
2015-03-05 21:07:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-13 01:26:04 +00:00
|
|
|
Socket.prototype.ref = function() {
|
2015-02-18 18:02:01 +00:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect', this.ref);
|
2015-05-22 16:35:57 +00:00
|
|
|
return this;
|
2015-02-18 18:02:01 +00:00
|
|
|
}
|
|
|
|
|
2017-12-11 23:05:18 +00:00
|
|
|
if (typeof this._handle.ref === 'function') {
|
|
|
|
this._handle.ref();
|
|
|
|
}
|
2015-05-22 16:35:57 +00:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 01:26:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.unref = function() {
|
2015-02-18 18:02:01 +00:00
|
|
|
if (!this._handle) {
|
|
|
|
this.once('connect', this.unref);
|
2015-05-22 16:35:57 +00:00
|
|
|
return this;
|
2015-02-18 18:02:01 +00:00
|
|
|
}
|
|
|
|
|
2017-12-11 23:05:18 +00:00
|
|
|
if (typeof this._handle.unref === 'function') {
|
|
|
|
this._handle.unref();
|
|
|
|
}
|
2015-05-22 16:35:57 +00:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 01:26:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-10 09:35:35 +00:00
|
|
|
function afterConnect(status, handle, req, readable, writable) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const self = handle[owner_symbol];
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2019-03-07 00:03:53 +00:00
|
|
|
// Callback may come after call to destroy
|
2011-07-15 20:20:24 +00:00
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-04 22:08:18 +00:00
|
|
|
debug('afterConnect');
|
2011-07-22 09:11:02 +00:00
|
|
|
|
2017-10-06 16:52:56 +00:00
|
|
|
assert(self.connecting);
|
2016-04-26 20:27:08 +00:00
|
|
|
self.connecting = false;
|
2015-07-02 22:26:21 +00:00
|
|
|
self._sockname = null;
|
2011-06-17 15:10:12 +00:00
|
|
|
|
2017-02-22 23:46:32 +00:00
|
|
|
if (status === 0) {
|
2012-02-10 09:35:35 +00:00
|
|
|
self.readable = readable;
|
2018-06-12 15:29:57 +00:00
|
|
|
if (!self._writableState.ended)
|
|
|
|
self.writable = writable;
|
2015-02-19 13:14:36 +00:00
|
|
|
self._unrefTimer();
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2012-02-26 19:13:08 +00:00
|
|
|
self.emit('connect');
|
2018-03-17 10:54:46 +00:00
|
|
|
self.emit('ready');
|
2012-02-26 19:13:08 +00:00
|
|
|
|
2019-01-21 00:22:27 +00:00
|
|
|
// Start the first read, or get an immediate EOF.
|
2012-12-13 05:18:57 +00:00
|
|
|
// this doesn't actually consume any bytes, because len=0.
|
2014-08-19 21:38:55 +00:00
|
|
|
if (readable && !self.isPaused())
|
2012-12-13 05:18:57 +00:00
|
|
|
self.read(0);
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
} else {
|
2016-04-26 20:27:08 +00:00
|
|
|
self.connecting = false;
|
2019-11-12 14:57:50 +00:00
|
|
|
let details;
|
2014-12-03 03:16:32 +00:00
|
|
|
if (req.localAddress && req.localPort) {
|
2015-11-20 21:16:55 +00:00
|
|
|
details = req.localAddress + ':' + req.localPort;
|
2014-12-03 03:16:32 +00:00
|
|
|
}
|
2019-11-12 14:57:50 +00:00
|
|
|
const ex = exceptionWithHostPort(status,
|
|
|
|
'connect',
|
|
|
|
req.address,
|
|
|
|
req.port,
|
|
|
|
details);
|
2015-11-20 21:16:55 +00:00
|
|
|
if (details) {
|
|
|
|
ex.localAddress = req.localAddress;
|
|
|
|
ex.localPort = req.localPort;
|
|
|
|
}
|
2017-05-06 12:20:52 +00:00
|
|
|
self.destroy(ex);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-24 03:08:35 +00:00
|
|
|
function Server(options, connectionListener) {
|
|
|
|
if (!(this instanceof Server))
|
|
|
|
return new Server(options, connectionListener);
|
|
|
|
|
2015-09-16 22:45:29 +00:00
|
|
|
EventEmitter.call(this);
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2014-09-24 03:08:35 +00:00
|
|
|
if (typeof options === 'function') {
|
|
|
|
connectionListener = options;
|
2011-06-16 19:11:05 +00:00
|
|
|
options = {};
|
2016-03-23 08:14:29 +00:00
|
|
|
this.on('connection', connectionListener);
|
2015-09-14 02:49:35 +00:00
|
|
|
} else if (options == null || typeof options === 'object') {
|
2019-08-01 08:12:57 +00:00
|
|
|
options = { ...options };
|
2011-10-04 22:08:18 +00:00
|
|
|
|
2014-09-24 03:08:35 +00:00
|
|
|
if (typeof connectionListener === 'function') {
|
2016-03-23 08:14:29 +00:00
|
|
|
this.on('connection', connectionListener);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2015-09-14 02:49:35 +00:00
|
|
|
} else {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_INVALID_ARG_TYPE('options', 'Object', options);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
2012-04-12 07:23:07 +00:00
|
|
|
this._connections = 0;
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(this, 'connections', {
|
2019-03-26 11:28:25 +00:00
|
|
|
get: deprecate(() => {
|
2013-01-14 17:08:20 +00:00
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
if (this._usingWorkers) {
|
2012-04-12 07:23:07 +00:00
|
|
|
return null;
|
|
|
|
}
|
2016-03-23 08:14:29 +00:00
|
|
|
return this._connections;
|
2015-06-13 16:44:39 +00:00
|
|
|
}, 'Server.connections property is deprecated. ' +
|
2016-12-04 20:47:01 +00:00
|
|
|
'Use Server.getConnections method instead.', 'DEP0020'),
|
2019-03-26 11:28:25 +00:00
|
|
|
set: deprecate((val) => (this._connections = val),
|
|
|
|
'Server.connections property is deprecated.',
|
|
|
|
'DEP0020'),
|
2014-09-17 18:54:24 +00:00
|
|
|
configurable: true, enumerable: false
|
2012-04-12 07:23:07 +00:00
|
|
|
});
|
|
|
|
|
2017-03-10 13:17:42 +00:00
|
|
|
this[async_id_symbol] = -1;
|
2011-07-07 00:13:17 +00:00
|
|
|
this._handle = null;
|
2017-07-24 14:52:38 +00:00
|
|
|
this._usingWorkers = false;
|
|
|
|
this._workers = [];
|
2015-01-03 04:14:25 +00:00
|
|
|
this._unref = false;
|
2012-12-13 05:18:57 +00:00
|
|
|
|
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2014-10-18 01:45:40 +00:00
|
|
|
this.pauseOnConnect = !!options.pauseOnConnect;
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectSetPrototypeOf(Server.prototype, EventEmitter.prototype);
|
|
|
|
ObjectSetPrototypeOf(Server, EventEmitter);
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
|
2012-04-18 13:56:14 +00:00
|
|
|
function toNumber(x) { return (x = Number(x)) >= 0 ? x : false; }
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
// Returns handle if it can be created, or error code if it can't
|
2018-10-21 07:59:38 +00:00
|
|
|
function createServerHandle(address, port, addressType, fd, flags) {
|
2019-11-12 14:57:50 +00:00
|
|
|
let err = 0;
|
2018-12-10 12:27:32 +00:00
|
|
|
// Assign handle in listen, and clean up if bind or listen fails
|
2019-11-12 14:57:50 +00:00
|
|
|
let handle;
|
2011-12-01 21:24:28 +00:00
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
let isTCP = false;
|
2015-01-29 01:05:53 +00:00
|
|
|
if (typeof fd === 'number' && fd >= 0) {
|
2013-03-14 14:13:58 +00:00
|
|
|
try {
|
2017-11-20 16:18:40 +00:00
|
|
|
handle = createHandle(fd, true);
|
2016-07-09 00:17:47 +00:00
|
|
|
} catch (e) {
|
2013-03-14 14:13:58 +00:00
|
|
|
// Not a fd we can listen on. This will trigger an error.
|
2017-04-11 15:31:54 +00:00
|
|
|
debug('listen invalid fd=%d:', fd, e.message);
|
2017-08-18 22:37:35 +00:00
|
|
|
return UV_EINVAL;
|
2012-06-12 17:02:52 +00:00
|
|
|
}
|
2018-06-20 21:02:03 +00:00
|
|
|
|
|
|
|
err = handle.open(fd);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2014-02-24 17:28:49 +00:00
|
|
|
assert(!address && !port);
|
2014-01-28 16:18:36 +00:00
|
|
|
} else if (port === -1 && addressType === -1) {
|
2017-11-20 16:18:40 +00:00
|
|
|
handle = new Pipe(PipeConstants.SERVER);
|
2011-12-01 21:24:28 +00:00
|
|
|
if (process.platform === 'win32') {
|
2019-11-12 14:57:50 +00:00
|
|
|
const instances = parseInt(process.env.NODE_PENDING_PIPE_INSTANCES);
|
2019-11-27 18:59:29 +00:00
|
|
|
if (!NumberIsNaN(instances)) {
|
2011-12-01 21:24:28 +00:00
|
|
|
handle.setPendingInstances(instances);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2017-11-20 16:18:40 +00:00
|
|
|
handle = new TCP(TCPConstants.SERVER);
|
2014-05-27 22:26:13 +00:00
|
|
|
isTCP = true;
|
2011-12-01 21:24:28 +00:00
|
|
|
}
|
2011-10-12 09:56:29 +00:00
|
|
|
|
2014-05-27 22:26:13 +00:00
|
|
|
if (address || port || isTCP) {
|
2017-04-11 15:31:54 +00:00
|
|
|
debug('bind to', address || 'any');
|
2014-04-13 15:11:56 +00:00
|
|
|
if (!address) {
|
|
|
|
// Try binding to ipv6 first
|
2019-03-13 13:10:54 +00:00
|
|
|
err = handle.bind6(DEFAULT_IPV6_ADDR, port, flags);
|
2014-04-13 15:11:56 +00:00
|
|
|
if (err) {
|
|
|
|
handle.close();
|
|
|
|
// Fallback to ipv4
|
2019-03-13 13:10:54 +00:00
|
|
|
return createServerHandle(DEFAULT_IPV4_ADDR, port);
|
2014-04-13 15:11:56 +00:00
|
|
|
}
|
|
|
|
} else if (addressType === 6) {
|
2018-10-21 07:59:38 +00:00
|
|
|
err = handle.bind6(address, port, flags);
|
2011-10-12 09:56:29 +00:00
|
|
|
} else {
|
2013-07-18 21:18:50 +00:00
|
|
|
err = handle.bind(address, port);
|
2011-10-12 09:56:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) {
|
2011-10-12 09:56:29 +00:00
|
|
|
handle.close();
|
2013-07-18 21:18:50 +00:00
|
|
|
return err;
|
2011-10-12 09:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return handle;
|
2016-01-15 08:53:11 +00:00
|
|
|
}
|
2011-10-12 09:56:29 +00:00
|
|
|
|
2018-10-21 07:59:38 +00:00
|
|
|
function setupListenHandle(address, port, addressType, backlog, fd, flags) {
|
2017-03-11 04:25:39 +00:00
|
|
|
debug('setupListenHandle', address, port, addressType, backlog, fd);
|
2011-06-29 16:04:55 +00:00
|
|
|
|
2012-08-06 21:43:47 +00: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 04:53:17 +00:00
|
|
|
if (this._handle) {
|
2017-03-11 04:25:39 +00:00
|
|
|
debug('setupListenHandle: have a handle already');
|
2015-01-21 12:38:44 +00:00
|
|
|
} else {
|
2017-03-11 04:25:39 +00:00
|
|
|
debug('setupListenHandle: create a handle');
|
2015-01-21 12:38:44 +00:00
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
let rval = null;
|
2015-01-21 12:38:44 +00:00
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
// Try to bind to the unspecified IPv6 address, see if IPv6 is available
|
2015-01-29 01:05:53 +00:00
|
|
|
if (!address && typeof fd !== 'number') {
|
2019-03-13 13:10:54 +00:00
|
|
|
rval = createServerHandle(DEFAULT_IPV6_ADDR, port, 6, fd, flags);
|
2015-01-21 12:38:44 +00:00
|
|
|
|
2015-01-29 01:05:53 +00:00
|
|
|
if (typeof rval === 'number') {
|
2015-01-21 12:38:44 +00:00
|
|
|
rval = null;
|
2019-03-13 13:10:54 +00:00
|
|
|
address = DEFAULT_IPV4_ADDR;
|
2015-01-21 12:38:44 +00:00
|
|
|
addressType = 4;
|
|
|
|
} else {
|
2019-03-13 13:10:54 +00:00
|
|
|
address = DEFAULT_IPV6_ADDR;
|
2015-01-21 12:38:44 +00:00
|
|
|
addressType = 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rval === null)
|
2018-10-21 07:59:38 +00:00
|
|
|
rval = createServerHandle(address, port, addressType, fd, flags);
|
2015-01-21 12:38:44 +00:00
|
|
|
|
2015-01-29 01:05:53 +00:00
|
|
|
if (typeof rval === 'number') {
|
2019-11-12 14:57:50 +00:00
|
|
|
const error = uvExceptionWithHostPort(rval, 'listen', address, port);
|
2016-02-15 04:53:17 +00:00
|
|
|
process.nextTick(emitErrorNT, this, error);
|
2012-08-06 21:43:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-15 04:53:17 +00:00
|
|
|
this._handle = rval;
|
2012-08-06 21:43:47 +00:00
|
|
|
}
|
|
|
|
|
2017-03-10 13:17:42 +00:00
|
|
|
this[async_id_symbol] = getNewAsyncId(this._handle);
|
2016-02-15 04:53:17 +00:00
|
|
|
this._handle.onconnection = onconnection;
|
2018-07-27 12:35:39 +00:00
|
|
|
this._handle[owner_symbol] = this;
|
2011-10-07 20:58:49 +00:00
|
|
|
|
2017-03-11 04:25:39 +00: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.
|
2019-03-26 04:21:27 +00:00
|
|
|
const err = this._handle.listen(backlog || 511);
|
2011-10-07 20:58:49 +00:00
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const ex = uvExceptionWithHostPort(err, 'listen', address, port);
|
2016-02-15 04:53:17 +00:00
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(this[async_id_symbol],
|
|
|
|
process.nextTick,
|
|
|
|
emitErrorNT,
|
|
|
|
this,
|
|
|
|
ex);
|
2012-08-06 21:43:47 +00:00
|
|
|
return;
|
2011-06-24 19:32:09 +00:00
|
|
|
}
|
2011-10-07 20:58:49 +00:00
|
|
|
|
2018-12-03 16:15:45 +00:00
|
|
|
// Generate connection key, this should be unique to the connection
|
2012-04-12 07:23:07 +00:00
|
|
|
this._connectionKey = addressType + ':' + address + ':' + port;
|
|
|
|
|
2018-12-03 16:15:45 +00:00
|
|
|
// Unref the handle if the server was unref'ed prior to listening
|
2015-01-03 04:14:25 +00:00
|
|
|
if (this._unref)
|
|
|
|
this.unref();
|
|
|
|
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(this[async_id_symbol],
|
|
|
|
process.nextTick,
|
|
|
|
emitListeningNT,
|
|
|
|
this);
|
2017-03-11 04:25:39 +00:00
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
Server.prototype._listen2 = setupListenHandle; // legacy alias
|
2011-10-07 20:58:49 +00:00
|
|
|
|
2015-05-04 18:40:25 +00:00
|
|
|
function emitErrorNT(self, err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-05 21:07:27 +00:00
|
|
|
function emitListeningNT(self) {
|
2019-03-22 02:44:26 +00:00
|
|
|
// Ensure handle hasn't closed
|
2015-03-05 21:07:27 +00:00
|
|
|
if (self._handle)
|
|
|
|
self.emit('listening');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
function listenInCluster(server, address, port, addressType,
|
2018-10-21 07:59:38 +00:00
|
|
|
backlog, fd, exclusive, flags) {
|
2014-08-22 20:51:53 +00:00
|
|
|
exclusive = !!exclusive;
|
|
|
|
|
2018-05-07 03:12:47 +00:00
|
|
|
if (cluster === undefined) cluster = require('cluster');
|
2012-07-10 10:06:13 +00:00
|
|
|
|
2014-08-22 20:51:53 +00:00
|
|
|
if (cluster.isMaster || exclusive) {
|
2017-03-11 04:25:39 +00: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
|
2018-10-21 07:59:38 +00:00
|
|
|
server._listen2(address, port, addressType, backlog, fd, flags);
|
2012-02-09 05:22:50 +00:00
|
|
|
return;
|
2012-07-14 07:38:00 +00:00
|
|
|
}
|
2012-02-09 05:22:50 +00:00
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
const serverQuery = {
|
2015-08-25 19:24:41 +00:00
|
|
|
address: address,
|
|
|
|
port: port,
|
|
|
|
addressType: addressType,
|
|
|
|
fd: fd,
|
2018-10-21 07:59:38 +00:00
|
|
|
flags,
|
2017-03-11 04:25:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Get the master's server handle, and listen on it
|
|
|
|
cluster._getServer(server, serverQuery, listenOnMasterHandle);
|
2013-07-28 10:19:34 +00:00
|
|
|
|
2017-03-11 04:25:39 +00:00
|
|
|
function listenOnMasterHandle(err, handle) {
|
2017-08-30 17:13:04 +00:00
|
|
|
err = checkBindError(err, port, handle);
|
2012-02-09 05:22:50 +00:00
|
|
|
|
2014-12-03 03:16:32 +00:00
|
|
|
if (err) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const ex = exceptionWithHostPort(err, 'bind', address, port);
|
2017-03-11 04:25:39 +00:00
|
|
|
return server.emit('error', ex);
|
2014-12-03 03:16:32 +00:00
|
|
|
}
|
2013-07-28 10:19:34 +00:00
|
|
|
|
2017-03-11 04:25:39 +00: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
|
2018-10-21 07:59:38 +00:00
|
|
|
server._listen2(address, port, addressType, backlog, fd, flags);
|
2013-07-28 10:19:34 +00:00
|
|
|
}
|
2012-07-14 07:38:00 +00:00
|
|
|
}
|
2011-10-12 09:56:29 +00:00
|
|
|
|
2012-08-06 21:43:47 +00:00
|
|
|
|
2017-06-05 12:05:36 +00:00
|
|
|
Server.prototype.listen = function(...args) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const normalized = normalizeArgs(args);
|
2019-11-12 14:57:50 +00:00
|
|
|
let options = normalized[0];
|
2019-03-26 04:21:27 +00:00
|
|
|
const cb = normalized[1];
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2017-05-22 10:35:22 +00:00
|
|
|
if (this._handle) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_SERVER_ALREADY_LISTEN();
|
2017-05-22 10:35:22 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 12:08:12 +00:00
|
|
|
if (cb !== null) {
|
2016-08-12 16:22:22 +00:00
|
|
|
this.once('listening', cb);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2019-03-26 04:21:27 +00:00
|
|
|
const backlogFromArgs =
|
2017-03-03 16:52:12 +00: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 19:11:05 +00:00
|
|
|
|
2016-08-12 16:22:22 +00:00
|
|
|
options = options._handle || options.handle || options;
|
2018-10-21 07:59:38 +00:00
|
|
|
const flags = getFlags(options.ipv6Only);
|
2017-03-03 16:52:12 +00:00
|
|
|
// (handle[, backlog][, cb]) where handle is an object with a handle
|
2016-08-12 16:22:22 +00:00
|
|
|
if (options instanceof TCP) {
|
|
|
|
this._handle = options;
|
2017-03-10 13:17:42 +00:00
|
|
|
this[async_id_symbol] = this._handle.getAsyncId();
|
2017-03-11 04:25:39 +00:00
|
|
|
listenInCluster(this, null, -1, -1, backlogFromArgs);
|
2017-03-03 16:52:12 +00: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 04:25:39 +00:00
|
|
|
listenInCluster(this, null, null, null, backlogFromArgs, options.fd);
|
2017-03-03 16:52:12 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ([port][, host][, backlog][, cb]) where port is omitted,
|
2017-07-13 15:10:54 +00: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 16:52:12 +00:00
|
|
|
if (args.length === 0 || typeof args[0] === 'function' ||
|
2017-07-13 15:10:54 +00:00
|
|
|
(typeof options.port === 'undefined' && 'port' in options) ||
|
|
|
|
options.port === null) {
|
2017-03-03 16:52:12 +00: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
|
2019-11-12 14:57:50 +00:00
|
|
|
let backlog;
|
2017-03-03 16:52:12 +00:00
|
|
|
if (typeof options.port === 'number' || typeof options.port === 'string') {
|
|
|
|
if (!isLegalPort(options.port)) {
|
2018-02-27 13:55:32 +00:00
|
|
|
throw new ERR_SOCKET_BAD_PORT(options.port);
|
2017-03-03 16:52:12 +00:00
|
|
|
}
|
2017-04-24 06:21:25 +00:00
|
|
|
backlog = options.backlog || backlogFromArgs;
|
2017-03-03 16:52:12 +00:00
|
|
|
// start TCP server listening on host:port
|
|
|
|
if (options.host) {
|
|
|
|
lookupAndListen(this, options.port | 0, options.host, backlog,
|
2018-10-21 07:59:38 +00:00
|
|
|
options.exclusive, flags);
|
2017-03-03 16:52:12 +00:00
|
|
|
} else { // Undefined host, listens on unspecified address
|
2017-03-11 04:25:39 +00: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 16:22:22 +00:00
|
|
|
}
|
2017-03-03 16:52:12 +00:00
|
|
|
return this;
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2014-08-22 20:51:53 +00:00
|
|
|
|
2017-03-03 16:52:12 +00: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)) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const pipeName = this._pipeName = options.path;
|
2017-04-24 06:21:25 +00:00
|
|
|
backlog = options.backlog || backlogFromArgs;
|
2017-03-11 04:25:39 +00:00
|
|
|
listenInCluster(this, pipeName, -1, -1,
|
|
|
|
backlog, undefined, options.exclusive);
|
2018-10-27 07:44:50 +00:00
|
|
|
|
|
|
|
if (!this._handle) {
|
|
|
|
// Failed and an error shall be emitted in the next tick.
|
|
|
|
// Therefore, we directly return.
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-03-07 23:09:24 +00:00
|
|
|
let mode = 0;
|
|
|
|
if (options.readableAll === true)
|
|
|
|
mode |= PipeConstants.UV_READABLE;
|
|
|
|
if (options.writableAll === true)
|
|
|
|
mode |= PipeConstants.UV_WRITABLE;
|
|
|
|
if (mode !== 0) {
|
|
|
|
const err = this._handle.fchmod(mode);
|
|
|
|
if (err) {
|
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
|
|
|
throw errnoException(err, 'uv_pipe_chmod');
|
|
|
|
}
|
|
|
|
}
|
2017-03-03 16:52:12 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-08-02 10:28:14 +00:00
|
|
|
if (!(('port' in options) || ('path' in options))) {
|
|
|
|
throw new ERR_INVALID_ARG_VALUE('options', options,
|
|
|
|
'must have the property "port" or "path"');
|
|
|
|
}
|
|
|
|
|
2019-03-26 11:28:25 +00:00
|
|
|
throw new ERR_INVALID_OPT_VALUE('options', inspect(options));
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
2018-10-21 07:59:38 +00:00
|
|
|
function lookupAndListen(self, port, address, backlog, exclusive, flags) {
|
2018-05-07 03:12:47 +00:00
|
|
|
if (dns === undefined) dns = require('dns');
|
2017-03-11 04:25:39 +00:00
|
|
|
dns.lookup(address, function doListen(err, ip, addressType) {
|
2016-08-12 16:22:22 +00:00
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
|
|
|
addressType = ip ? addressType : 4;
|
2017-03-11 04:25:39 +00:00
|
|
|
listenInCluster(self, ip, port, addressType,
|
2018-10-21 07:59:38 +00:00
|
|
|
backlog, undefined, exclusive, flags);
|
2016-08-12 16:22:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Server.prototype, 'listening', {
|
2016-01-18 13:36:48 +00:00
|
|
|
get: function() {
|
|
|
|
return !!this._handle;
|
|
|
|
},
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true
|
|
|
|
});
|
|
|
|
|
2011-07-15 22:06:10 +00:00
|
|
|
Server.prototype.address = function() {
|
2011-11-01 22:42:45 +00:00
|
|
|
if (this._handle && this._handle.getsockname) {
|
2019-11-12 14:57:50 +00:00
|
|
|
const out = {};
|
|
|
|
const err = this._handle.getsockname(out);
|
2017-05-06 10:33:28 +00:00
|
|
|
if (err) {
|
|
|
|
throw errnoException(err, 'address');
|
|
|
|
}
|
2013-07-18 21:18:50 +00:00
|
|
|
return out;
|
2015-08-27 20:47:15 +00:00
|
|
|
} else if (this._pipeName) {
|
|
|
|
return this._pipeName;
|
2011-11-01 22:42:45 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2011-07-15 22:06:10 +00:00
|
|
|
};
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
function onconnection(err, clientHandle) {
|
2019-03-26 04:21:27 +00:00
|
|
|
const handle = this;
|
|
|
|
const self = handle[owner_symbol];
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-10-04 22:08:18 +00:00
|
|
|
debug('onconnection');
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2013-07-18 21:18:50 +00:00
|
|
|
if (err) {
|
|
|
|
self.emit('error', errnoException(err, 'accept'));
|
2011-08-10 21:59:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-12 07:23:07 +00:00
|
|
|
if (self.maxConnections && self._connections >= self.maxConnections) {
|
2011-07-14 20:18:28 +00:00
|
|
|
clientHandle.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-26 04:21:27 +00:00
|
|
|
const socket = new Socket({
|
2011-06-17 15:10:12 +00:00
|
|
|
handle: clientHandle,
|
2014-10-18 01:45:40 +00:00
|
|
|
allowHalfOpen: self.allowHalfOpen,
|
2018-04-12 09:15:31 +00:00
|
|
|
pauseOnCreate: self.pauseOnConnect,
|
|
|
|
readable: true,
|
|
|
|
writable: true
|
2011-06-17 15:10:12 +00:00
|
|
|
});
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2012-04-12 07:23:07 +00:00
|
|
|
self._connections++;
|
2011-06-17 12:27:02 +00:00
|
|
|
socket.server = self;
|
2016-02-16 20:09:31 +00:00
|
|
|
socket._server = self;
|
2011-06-17 12:27:02 +00:00
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
|
|
|
self.emit('connection', socket);
|
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
|
2013-01-14 17:08:20 +00:00
|
|
|
Server.prototype.getConnections = function(cb) {
|
2017-03-10 13:17:42 +00:00
|
|
|
const self = this;
|
|
|
|
|
2013-01-14 17:08:20 +00:00
|
|
|
function end(err, connections) {
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(self[async_id_symbol],
|
|
|
|
process.nextTick,
|
|
|
|
cb,
|
|
|
|
err,
|
|
|
|
connections);
|
2013-01-14 17:08:20 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
if (!this._usingWorkers) {
|
2017-06-07 19:49:00 +00:00
|
|
|
end(null, this._connections);
|
|
|
|
return this;
|
2013-01-14 17:08:20 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
// Poll workers
|
2019-11-12 14:57:50 +00:00
|
|
|
let left = this._workers.length;
|
|
|
|
let total = this._connections;
|
2013-01-14 17:08:20 +00:00
|
|
|
|
|
|
|
function oncount(err, count) {
|
|
|
|
if (err) {
|
|
|
|
left = -1;
|
|
|
|
return end(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
total += count;
|
|
|
|
if (--left === 0) return end(null, total);
|
|
|
|
}
|
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
for (let n = 0; n < this._workers.length; n++) {
|
2017-07-24 14:52:38 +00:00
|
|
|
this._workers[n].getConnections(oncount);
|
2017-02-27 02:08:04 +00:00
|
|
|
}
|
2017-06-07 19:49:00 +00:00
|
|
|
|
|
|
|
return this;
|
2013-01-14 17:08:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-16 19:52:47 +00:00
|
|
|
Server.prototype.close = function(cb) {
|
2015-01-26 17:55:19 +00:00
|
|
|
if (typeof cb === 'function') {
|
2014-05-16 02:48:27 +00:00
|
|
|
if (!this._handle) {
|
2016-10-29 15:39:53 +00:00
|
|
|
this.once('close', function close() {
|
2018-02-27 13:55:32 +00:00
|
|
|
cb(new ERR_SERVER_NOT_RUNNING());
|
2014-05-16 02:48:27 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.once('close', cb);
|
|
|
|
}
|
2011-07-07 00:13:17 +00:00
|
|
|
}
|
2011-07-21 23:23:50 +00:00
|
|
|
|
2014-05-16 02:48:27 +00:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2012-02-16 19:52:47 +00:00
|
|
|
}
|
2011-10-23 09:20:03 +00:00
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
if (this._usingWorkers) {
|
2019-11-12 14:57:50 +00:00
|
|
|
let left = this._workers.length;
|
2017-07-24 14:52:38 +00:00
|
|
|
const onWorkerClose = () => {
|
2017-04-11 09:39:25 +00:00
|
|
|
if (--left !== 0) return;
|
|
|
|
|
|
|
|
this._connections = 0;
|
|
|
|
this._emitCloseIfDrained();
|
|
|
|
};
|
2013-01-14 17:08:20 +00:00
|
|
|
|
|
|
|
// Increment connections to be sure that, even if all sockets will be closed
|
2017-07-24 14:52:38 +00:00
|
|
|
// during polling of workers, `close` event will be emitted only once.
|
2013-01-14 17:08:20 +00:00
|
|
|
this._connections++;
|
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
// Poll workers
|
2019-11-12 14:57:50 +00:00
|
|
|
for (let n = 0; n < this._workers.length; n++)
|
2017-07-24 14:52:38 +00:00
|
|
|
this._workers[n].close(onWorkerClose);
|
2013-01-14 17:08:20 +00:00
|
|
|
} else {
|
|
|
|
this._emitCloseIfDrained();
|
2012-04-12 07:23:07 +00:00
|
|
|
}
|
|
|
|
|
2011-10-23 09:20:03 +00:00
|
|
|
return this;
|
2011-07-25 07:01:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype._emitCloseIfDrained = function() {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('SERVER _emitCloseIfDrained');
|
2011-12-29 18:30:07 +00:00
|
|
|
|
2016-02-15 04:53:17 +00:00
|
|
|
if (this._handle || this._connections) {
|
2012-12-13 05:18:57 +00:00
|
|
|
debug('SERVER handle? %j connections? %d',
|
2016-02-15 04:53:17 +00:00
|
|
|
!!this._handle, this._connections);
|
2012-12-13 05:18:57 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-12-29 18:30:07 +00:00
|
|
|
|
2018-03-05 11:20:48 +00:00
|
|
|
defaultTriggerAsyncIdScope(this[async_id_symbol],
|
|
|
|
process.nextTick,
|
|
|
|
emitCloseNT,
|
|
|
|
this);
|
2011-06-17 15:10:12 +00:00
|
|
|
};
|
2011-07-04 18:25:31 +00:00
|
|
|
|
2011-10-10 21:24:56 +00:00
|
|
|
|
2015-05-04 18:40:25 +00:00
|
|
|
function emitCloseNT(self) {
|
|
|
|
debug('SERVER: emit close');
|
|
|
|
self.emit('close');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-01 15:30:39 +00:00
|
|
|
Server.prototype[EventEmitter.captureRejectionSymbol] = function(
|
|
|
|
err, event, sock) {
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case 'connection':
|
|
|
|
sock.destroy(err);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
this.emit('error', err);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-07-27 12:35:39 +00:00
|
|
|
// Legacy alias on the C++ wrapper object. This is not public API, so we may
|
|
|
|
// want to runtime-deprecate it at some point. There's no hurry, though.
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(TCP.prototype, 'owner', {
|
2018-07-27 12:35:39 +00:00
|
|
|
get() { return this[owner_symbol]; },
|
|
|
|
set(v) { return this[owner_symbol] = v; }
|
|
|
|
});
|
|
|
|
|
2019-11-12 16:55:42 +00:00
|
|
|
ObjectDefineProperty(Socket.prototype, '_handle', {
|
2019-03-07 11:22:36 +00:00
|
|
|
get() { return this[kHandle]; },
|
|
|
|
set(v) { return this[kHandle] = v; }
|
|
|
|
});
|
|
|
|
|
2017-07-24 14:52:38 +00:00
|
|
|
Server.prototype._setupWorker = function(socketList) {
|
|
|
|
this._usingWorkers = true;
|
|
|
|
this._workers.push(socketList);
|
2017-09-29 09:29:58 +00:00
|
|
|
socketList.once('exit', (socketList) => {
|
|
|
|
const index = this._workers.indexOf(socketList);
|
|
|
|
this._workers.splice(index, 1);
|
|
|
|
});
|
2012-04-12 07:23:07 +00:00
|
|
|
};
|
|
|
|
|
2012-07-13 01:26:04 +00:00
|
|
|
Server.prototype.ref = function() {
|
2015-01-03 04:14:25 +00:00
|
|
|
this._unref = false;
|
|
|
|
|
2012-07-13 01:26:04 +00:00
|
|
|
if (this._handle)
|
|
|
|
this._handle.ref();
|
2015-05-22 16:35:57 +00:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 01:26:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype.unref = function() {
|
2015-01-03 04:14:25 +00:00
|
|
|
this._unref = true;
|
|
|
|
|
2012-07-13 01:26:04 +00:00
|
|
|
if (this._handle)
|
|
|
|
this._handle.unref();
|
2015-05-22 16:35:57 +00:00
|
|
|
|
|
|
|
return this;
|
2012-07-13 01:26:04 +00:00
|
|
|
};
|
|
|
|
|
2019-11-12 14:57:50 +00:00
|
|
|
let _setSimultaneousAccepts;
|
|
|
|
let warnSimultaneousAccepts = true;
|
2012-01-20 00:52:23 +00:00
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
2019-11-12 14:57:50 +00:00
|
|
|
let simultaneousAccepts;
|
2012-01-20 00:52:23 +00:00
|
|
|
|
2017-03-05 17:15:38 +00:00
|
|
|
_setSimultaneousAccepts = function(handle) {
|
2018-10-19 18:21:42 +00:00
|
|
|
if (warnSimultaneousAccepts) {
|
|
|
|
process.emitWarning(
|
|
|
|
'net._setSimultaneousAccepts() is deprecated and will be removed.',
|
2018-10-25 19:27:20 +00:00
|
|
|
'DeprecationWarning', 'DEP0121');
|
2018-10-19 18:21:42 +00:00
|
|
|
warnSimultaneousAccepts = false;
|
|
|
|
}
|
2015-01-29 01:05:53 +00:00
|
|
|
if (handle === undefined) {
|
2012-01-20 00:52:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-29 01:05:53 +00:00
|
|
|
if (simultaneousAccepts === undefined) {
|
2012-01-20 00:52:23 +00:00
|
|
|
simultaneousAccepts = (process.env.NODE_MANY_ACCEPTS &&
|
2012-02-18 23:01:35 +00:00
|
|
|
process.env.NODE_MANY_ACCEPTS !== '0');
|
2012-01-20 00:52:23 +00:00
|
|
|
}
|
|
|
|
|
2012-02-18 23:01:35 +00:00
|
|
|
if (handle._simultaneousAccepts !== simultaneousAccepts) {
|
2018-08-01 21:00:46 +00:00
|
|
|
handle.setSimultaneousAccepts(!!simultaneousAccepts);
|
2012-01-20 00:52:23 +00:00
|
|
|
handle._simultaneousAccepts = simultaneousAccepts;
|
|
|
|
}
|
2012-02-18 23:01:35 +00:00
|
|
|
};
|
2012-01-20 00:52:23 +00:00
|
|
|
} else {
|
2018-10-19 18:21:42 +00:00
|
|
|
_setSimultaneousAccepts = function() {
|
|
|
|
if (warnSimultaneousAccepts) {
|
|
|
|
process.emitWarning(
|
|
|
|
'net._setSimultaneousAccepts() is deprecated and will be removed.',
|
2018-10-25 19:27:20 +00:00
|
|
|
'DeprecationWarning', 'DEP0121');
|
2018-10-19 18:21:42 +00:00
|
|
|
warnSimultaneousAccepts = false;
|
|
|
|
}
|
|
|
|
};
|
2012-01-20 00:52:23 +00:00
|
|
|
}
|
2017-03-05 17:15:38 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
_createServerHandle: createServerHandle,
|
|
|
|
_normalizeArgs: normalizeArgs,
|
|
|
|
_setSimultaneousAccepts,
|
|
|
|
connect,
|
|
|
|
createConnection: connect,
|
|
|
|
createServer,
|
2018-01-26 17:39:10 +00:00
|
|
|
isIP: isIP,
|
|
|
|
isIPv4: isIPv4,
|
|
|
|
isIPv6: isIPv6,
|
2017-03-05 17:15:38 +00:00
|
|
|
Server,
|
|
|
|
Socket,
|
|
|
|
Stream: Socket, // Legacy naming
|
|
|
|
};
|