2011-11-02 21:00:57 +04: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.
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
var events = require('events');
|
|
|
|
var stream = require('stream');
|
|
|
|
var timers = require('timers');
|
|
|
|
var util = require('util');
|
|
|
|
var assert = require('assert');
|
2012-05-20 17:57:24 +04:00
|
|
|
var cluster;
|
2011-08-01 02:58:10 +04:00
|
|
|
|
2012-02-19 03:01:35 +04:00
|
|
|
function noop() {}
|
2011-10-07 21:00:48 +04:00
|
|
|
|
2011-08-01 02:58:10 +04:00
|
|
|
// constructor for lazy loading
|
|
|
|
function createPipe() {
|
|
|
|
var Pipe = process.binding('pipe_wrap').Pipe;
|
|
|
|
return new Pipe();
|
|
|
|
}
|
|
|
|
|
|
|
|
// constructor for lazy loading
|
|
|
|
function createTCP() {
|
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
|
|
|
return new TCP();
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
/* Bit flags for socket._flags */
|
2011-10-05 02:08:18 +04:00
|
|
|
var FLAG_GOT_EOF = 1 << 0;
|
|
|
|
var FLAG_SHUTDOWN = 1 << 1;
|
2011-06-17 19:10:12 +04:00
|
|
|
var FLAG_DESTROY_SOON = 1 << 2;
|
2011-07-13 04:00:33 +04:00
|
|
|
var FLAG_SHUTDOWNQUED = 1 << 3;
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
var debug;
|
|
|
|
if (process.env.NODE_DEBUG && /net/.test(process.env.NODE_DEBUG)) {
|
|
|
|
debug = function(x) { console.error('NET:', x); };
|
|
|
|
} else {
|
|
|
|
debug = function() { };
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
function isPipeName(s) {
|
2012-04-18 17:56:14 +04:00
|
|
|
return typeof s === 'string' && toNumber(s) === false;
|
2011-07-20 00:49:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
exports.createServer = function() {
|
|
|
|
return new Server(arguments[0], arguments[1]);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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]);
|
|
|
|
//
|
|
|
|
exports.connect = exports.createConnection = function() {
|
|
|
|
var args = normalizeConnectArgs(arguments);
|
|
|
|
var s = new Socket(args[0]);
|
|
|
|
return Socket.prototype.connect.apply(s, args);
|
|
|
|
};
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
// Returns an array [options] or [options, cb]
|
|
|
|
// It is the same as the argument of Socket.prototype.connect().
|
|
|
|
function normalizeConnectArgs(args) {
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
if (typeof args[0] === 'object') {
|
|
|
|
// connect(options, [cb])
|
|
|
|
options = args[0];
|
|
|
|
} else if (isPipeName(args[0])) {
|
|
|
|
// connect(path, [cb]);
|
|
|
|
options.path = args[0];
|
2011-07-20 00:49:42 +04:00
|
|
|
} else {
|
2012-01-09 05:18:39 +04:00
|
|
|
// connect(port, [host], [cb])
|
|
|
|
options.port = args[0];
|
|
|
|
if (typeof args[1] === 'string') {
|
|
|
|
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];
|
|
|
|
return (typeof cb === 'function') ? [options, cb] : [options];
|
|
|
|
}
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2011-07-01 03:37:30 +04:00
|
|
|
/* called when creating new Socket, or when re-using a closed Socket */
|
|
|
|
function initSocketHandle(self) {
|
2011-10-12 23:46:41 +04:00
|
|
|
self._pendingWriteReqs = 0;
|
2011-07-01 03:37:30 +04:00
|
|
|
|
|
|
|
self._flags = 0;
|
2011-07-02 11:18:36 +04:00
|
|
|
self._connectQueueSize = 0;
|
2011-07-01 03:37:30 +04:00
|
|
|
self.destroyed = false;
|
2012-03-20 11:21:38 +04:00
|
|
|
self.errorEmitted = false;
|
2011-07-21 12:20:01 +04:00
|
|
|
self.bytesRead = 0;
|
2012-05-08 22:19:38 +04:00
|
|
|
self._bytesDispatched = 0;
|
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;
|
|
|
|
}
|
2011-07-01 03:37:30 +04:00
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
|
|
|
stream.Stream.call(this);
|
|
|
|
|
2011-08-23 13:31:20 +04:00
|
|
|
if (typeof options == 'number') {
|
2011-09-13 01:59:51 +04:00
|
|
|
// Legacy interface.
|
2011-12-02 06:19:17 +04:00
|
|
|
// Must support legacy interface. Old versions of npm depend on it.
|
2011-08-23 13:31:20 +04:00
|
|
|
// https://github.com/isaacs/npm/blob/c7824f412f0cb59d6f55cf0bc220253c39e6029f/lib/utils/output.js#L110
|
2011-09-13 01:59:51 +04:00
|
|
|
var fd = options;
|
2011-07-22 01:00:47 +04:00
|
|
|
|
2011-09-13 01:59:51 +04:00
|
|
|
// Uncomment the following lines after libuv backend is stable and API
|
|
|
|
// compatibile with legaacy.
|
|
|
|
// console.error('Deprecated interface net.Socket(fd).');
|
|
|
|
// console.trace();
|
|
|
|
this._handle = createPipe();
|
|
|
|
this._handle.open(fd);
|
2011-09-16 00:35:24 +04:00
|
|
|
this.readable = this.writable = true;
|
2011-09-13 01:59:51 +04:00
|
|
|
initSocketHandle(this);
|
|
|
|
} else {
|
|
|
|
// private
|
|
|
|
this._handle = options && options.handle;
|
|
|
|
initSocketHandle(this);
|
|
|
|
this.allowHalfOpen = options && options.allowHalfOpen;
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
util.inherits(Socket, stream.Stream);
|
|
|
|
|
|
|
|
|
2011-06-17 20:09:15 +04:00
|
|
|
exports.Socket = Socket;
|
|
|
|
exports.Stream = Socket; // Legacy naming.
|
|
|
|
|
|
|
|
|
2011-07-27 05:37:21 +04:00
|
|
|
Socket.prototype.listen = function() {
|
|
|
|
var self = this;
|
|
|
|
self.on('connection', arguments[0]);
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, null, null, null);
|
2011-07-27 05:37:21 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.setTimeout = function(msecs, callback) {
|
|
|
|
if (msecs > 0) {
|
|
|
|
timers.enroll(this, msecs);
|
2011-07-01 23:01:12 +04:00
|
|
|
timers.active(this);
|
2011-06-16 23:11:05 +04:00
|
|
|
if (callback) {
|
|
|
|
this.once('timeout', callback);
|
|
|
|
}
|
|
|
|
} else if (msecs === 0) {
|
|
|
|
timers.unenroll(this);
|
2012-04-08 19:24:53 +04:00
|
|
|
if (callback) {
|
|
|
|
this.removeListener('timeout', callback);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 23:01:12 +04:00
|
|
|
Socket.prototype._onTimeout = function() {
|
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) {
|
|
|
|
// backwards compatibility: assume true when `enable` is omitted
|
2011-10-22 04:07:11 +04:00
|
|
|
if (this._handle && this._handle.setNoDelay)
|
2012-04-12 21:13:04 +04:00
|
|
|
this._handle.setNoDelay(typeof enable === 'undefined' ? true : !!enable);
|
2011-06-17 16:27:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 01:53:22 +04:00
|
|
|
Socket.prototype.setKeepAlive = function(setting, msecs) {
|
2011-10-22 04:07:11 +04:00
|
|
|
if (this._handle && this._handle.setKeepAlive)
|
|
|
|
this._handle.setKeepAlive(setting, ~~(msecs / 1000));
|
2011-07-01 01:53:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-16 02:06:10 +04:00
|
|
|
Socket.prototype.address = function() {
|
2011-12-28 10:13:57 +04:00
|
|
|
if (this._handle && this._handle.getsockname) {
|
|
|
|
return this._handle.getsockname();
|
|
|
|
}
|
|
|
|
return null;
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 16:27:02 +04:00
|
|
|
Object.defineProperty(Socket.prototype, 'readyState', {
|
|
|
|
get: function() {
|
|
|
|
if (this._connecting) {
|
|
|
|
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) {
|
|
|
|
return this._handle.writeQueueSize + this._connectQueueSize;
|
|
|
|
}
|
2011-06-17 16:27:02 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.pause = function() {
|
2011-12-06 03:36:45 +04:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.readStop();
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.resume = function() {
|
2011-08-12 03:41:53 +04:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.readStart();
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
Socket.prototype.end = function(data, encoding) {
|
2011-07-13 04:00:33 +04:00
|
|
|
if (this._connecting && ((this._flags & FLAG_SHUTDOWNQUED) == 0)) {
|
|
|
|
// still connecting, add data to buffer
|
|
|
|
if (data) this.write(data, encoding);
|
|
|
|
this.writable = false;
|
|
|
|
this._flags |= FLAG_SHUTDOWNQUED;
|
|
|
|
}
|
2011-08-11 01:09:21 +04:00
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
if (!this.writable) return;
|
|
|
|
this.writable = false;
|
|
|
|
|
|
|
|
if (data) this.write(data, encoding);
|
|
|
|
DTRACE_NET_STREAM_END(this);
|
|
|
|
|
2011-09-27 10:25:48 +04:00
|
|
|
if (!this.readable) {
|
2011-06-17 19:10:12 +04:00
|
|
|
this.destroySoon();
|
|
|
|
} else {
|
|
|
|
this._flags |= FLAG_SHUTDOWN;
|
|
|
|
var shutdownReq = this._handle.shutdown();
|
2011-08-11 01:09:21 +04:00
|
|
|
|
|
|
|
if (!shutdownReq) {
|
2012-03-20 11:21:38 +04:00
|
|
|
this._destroy(errnoException(errno, 'shutdown'));
|
2011-08-11 01:09:21 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
shutdownReq.oncomplete = afterShutdown;
|
|
|
|
}
|
2011-08-11 01:09:21 +04:00
|
|
|
|
|
|
|
return true;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
function afterShutdown(status, handle, req) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-06-17 19:10:12 +04:00
|
|
|
|
|
|
|
assert.ok(self._flags & FLAG_SHUTDOWN);
|
2011-08-02 02:40:44 +04:00
|
|
|
assert.ok(!self.writable);
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-02 02:40:44 +04:00
|
|
|
if (self._flags & FLAG_GOT_EOF || !self.readable) {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy();
|
2011-06-17 19:10:12 +04:00
|
|
|
} else {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2011-06-17 19:10:12 +04:00
|
|
|
this.writable = false;
|
|
|
|
this._flags |= FLAG_DESTROY_SOON;
|
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
if (this._pendingWriteReqs == 0) {
|
2012-03-20 11:21:38 +04:00
|
|
|
this._destroy();
|
2011-06-17 19:10:12 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
Socket.prototype._connectQueueCleanUp = function(exception) {
|
|
|
|
this._connecting = false;
|
|
|
|
this._connectQueueSize = 0;
|
|
|
|
this._connectQueue = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
Socket.prototype._destroy = function(exception, cb) {
|
2011-06-16 23:11:05 +04:00
|
|
|
var self = this;
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
function fireErrorCallbacks() {
|
|
|
|
if (cb) cb(exception);
|
|
|
|
if (exception && !self.errorEmitted) {
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', exception);
|
|
|
|
});
|
|
|
|
self.errorEmitted = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.destroyed) {
|
|
|
|
fireErrorCallbacks();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
self._connectQueueCleanUp();
|
|
|
|
|
2011-08-23 13:31:20 +04:00
|
|
|
debug('destroy');
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
|
|
|
timers.unenroll(this);
|
|
|
|
|
2011-08-23 13:31:20 +04:00
|
|
|
debug('close');
|
2011-07-22 01:00:47 +04:00
|
|
|
if (this._handle) {
|
|
|
|
this._handle.close();
|
2011-10-07 21:00:48 +04:00
|
|
|
this._handle.onread = noop;
|
2011-07-22 02:47:28 +04:00
|
|
|
this._handle = null;
|
2011-07-22 01:00:47 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
fireErrorCallbacks();
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('close', exception ? true : false);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.destroyed = true;
|
2012-05-29 15:05:49 +04:00
|
|
|
|
|
|
|
if (this.server) {
|
|
|
|
this.server._connections--;
|
|
|
|
this.server._emitCloseIfDrained();
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
Socket.prototype.destroy = function(exception) {
|
|
|
|
this._destroy(exception);
|
2012-04-18 23:24:41 +04:00
|
|
|
};
|
2012-03-20 11:21:38 +04:00
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
function onread(buffer, offset, length) {
|
|
|
|
var handle = this;
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-06-16 23:11:05 +04:00
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
|
|
|
timers.active(self);
|
|
|
|
|
|
|
|
var end = offset + length;
|
|
|
|
|
2011-06-17 15:36:16 +04:00
|
|
|
if (buffer) {
|
|
|
|
// Emit 'data' event.
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-06-17 15:36:16 +04:00
|
|
|
if (self._decoder) {
|
|
|
|
// Emit a string.
|
|
|
|
var string = self._decoder.write(buffer.slice(offset, end));
|
|
|
|
if (string.length) self.emit('data', string);
|
|
|
|
} else {
|
|
|
|
// Emit a slice. Attempt to avoid slicing the buffer if no one is
|
|
|
|
// listening for 'data'.
|
|
|
|
if (self._events && self._events['data']) {
|
|
|
|
self.emit('data', buffer.slice(offset, end));
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-21 12:20:01 +04:00
|
|
|
self.bytesRead += length;
|
|
|
|
|
2011-06-17 15:36:16 +04:00
|
|
|
// Optimization: emit the original buffer with end points
|
|
|
|
if (self.ondata) self.ondata(buffer, offset, end);
|
|
|
|
|
2011-08-23 02:03:27 +04:00
|
|
|
} else if (errno == 'EOF') {
|
2011-06-17 15:36:16 +04:00
|
|
|
// EOF
|
|
|
|
self.readable = false;
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
assert.ok(!(self._flags & FLAG_GOT_EOF));
|
|
|
|
self._flags |= FLAG_GOT_EOF;
|
|
|
|
|
|
|
|
// We call destroy() before end(). 'close' not emitted until nextTick so
|
|
|
|
// the 'end' event will come first as required.
|
2012-03-20 11:21:38 +04:00
|
|
|
if (!self.writable) self._destroy();
|
2011-06-17 15:36:16 +04:00
|
|
|
|
|
|
|
if (!self.allowHalfOpen) self.end();
|
|
|
|
if (self._events && self._events['end']) self.emit('end');
|
|
|
|
if (self.onend) self.onend();
|
2011-08-23 02:03:27 +04:00
|
|
|
} else {
|
|
|
|
// Error
|
2011-08-23 06:06:42 +04:00
|
|
|
if (errno == 'ECONNRESET') {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy();
|
2011-08-23 06:06:42 +04:00
|
|
|
} else {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy(errnoException(errno, 'read'));
|
2011-08-23 06:06:42 +04:00
|
|
|
}
|
2011-06-17 15:36:16 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.setEncoding = function(encoding) {
|
|
|
|
var StringDecoder = require('string_decoder').StringDecoder; // lazy load
|
|
|
|
this._decoder = new StringDecoder(encoding);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
Socket.prototype._getpeername = function() {
|
|
|
|
if (!this._handle || !this._handle.getpeername) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (!this._peername) {
|
|
|
|
this._peername = this._handle.getpeername();
|
|
|
|
}
|
|
|
|
return this._peername;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('remoteAddress', function() {
|
|
|
|
return this._getpeername().address;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.__defineGetter__('remotePort', function() {
|
|
|
|
return this._getpeername().port;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Arguments data, [encoding], [cb]
|
|
|
|
*/
|
|
|
|
Socket.prototype.write = function(data, arg1, arg2) {
|
|
|
|
var encoding, cb;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
// parse arguments
|
2011-10-12 23:46:41 +04:00
|
|
|
if (arg1) {
|
|
|
|
if (typeof arg1 === 'string') {
|
|
|
|
encoding = arg1;
|
|
|
|
cb = arg2;
|
|
|
|
} else if (typeof arg1 === 'function') {
|
|
|
|
cb = arg1;
|
2011-10-07 05:07:45 +04:00
|
|
|
} else {
|
2012-02-19 03:01:35 +04:00
|
|
|
throw new Error('bad arg');
|
2011-07-13 04:00:33 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-01-14 05:13:22 +04:00
|
|
|
if (typeof data === 'string') {
|
2012-05-08 01:30:55 +04:00
|
|
|
encoding = (encoding || 'utf8').toLowerCase();
|
|
|
|
switch (encoding) {
|
|
|
|
case 'utf8':
|
|
|
|
case 'utf-8':
|
|
|
|
case 'ascii':
|
|
|
|
case 'ucs2':
|
|
|
|
case 'ucs-2':
|
|
|
|
case 'utf16le':
|
|
|
|
case 'utf-16le':
|
|
|
|
// This encoding can be handled in the binding layer.
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
data = new Buffer(data, encoding);
|
|
|
|
}
|
2012-01-14 05:13:22 +04:00
|
|
|
} else if (!Buffer.isBuffer(data)) {
|
2012-02-19 03:01:35 +04:00
|
|
|
throw new TypeError('First argument must be a buffer or a string.');
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
// If we are still connecting, then buffer this for later.
|
|
|
|
if (this._connecting) {
|
|
|
|
this._connectQueueSize += data.length;
|
|
|
|
if (this._connectQueue) {
|
2011-10-12 23:46:41 +04:00
|
|
|
this._connectQueue.push([data, encoding, cb]);
|
2011-07-02 11:18:36 +04:00
|
|
|
} else {
|
2011-10-12 23:46:41 +04:00
|
|
|
this._connectQueue = [[data, encoding, cb]];
|
2011-07-02 11:18:36 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-15 05:27:25 +04:00
|
|
|
return this._write(data, encoding, cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype._write = function(data, encoding, cb) {
|
2011-11-03 23:34:23 +04:00
|
|
|
timers.active(this);
|
|
|
|
|
2012-03-20 11:21:38 +04:00
|
|
|
if (!this._handle) {
|
|
|
|
this._destroy(new Error('This socket is closed.'), cb);
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-22 06:32:27 +04:00
|
|
|
|
2012-05-08 01:30:55 +04:00
|
|
|
var writeReq;
|
|
|
|
|
|
|
|
if (Buffer.isBuffer(data)) {
|
|
|
|
writeReq = this._handle.writeBuffer(data);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
switch (encoding) {
|
|
|
|
case 'utf8':
|
|
|
|
case 'utf-8':
|
|
|
|
writeReq = this._handle.writeUtf8String(data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ascii':
|
|
|
|
writeReq = this._handle.writeAsciiString(data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ucs2':
|
|
|
|
case 'ucs-2':
|
|
|
|
case 'utf16le':
|
|
|
|
case 'utf-16le':
|
|
|
|
writeReq = this._handle.writeUcs2String(data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2011-07-19 13:04:34 +04:00
|
|
|
|
2012-05-08 22:17:54 +04:00
|
|
|
if (!writeReq || typeof writeReq !== 'object') {
|
2012-03-20 11:21:38 +04:00
|
|
|
this._destroy(errnoException(errno, 'write'), cb);
|
2011-07-19 13:04:34 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
writeReq.oncomplete = afterWrite;
|
|
|
|
writeReq.cb = cb;
|
2012-05-08 22:19:38 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
this._pendingWriteReqs++;
|
2012-05-08 22:19:38 +04:00
|
|
|
this._bytesDispatched += writeReq.bytes;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
return this._handle.writeQueueSize == 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-05-08 22:19:38 +04:00
|
|
|
Socket.prototype.__defineGetter__('bytesWritten', function() {
|
|
|
|
var bytes = this._bytesDispatched,
|
|
|
|
connectQueue = this._connectQueue;
|
|
|
|
|
|
|
|
if (connectQueue) {
|
|
|
|
connectQueue.forEach(function(el) {
|
|
|
|
var data = el[0];
|
|
|
|
if (Buffer.isBuffer(data)) {
|
|
|
|
bytes += data.length;
|
|
|
|
} else {
|
|
|
|
bytes += Buffer.byteLength(data, el[1]);
|
|
|
|
}
|
|
|
|
}, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-05-08 01:30:55 +04:00
|
|
|
function afterWrite(status, handle, req) {
|
2012-04-27 06:42:10 +04:00
|
|
|
var self = handle.owner;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-16 00:20:24 +04:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
2011-12-13 01:45:39 +04:00
|
|
|
|
|
|
|
if (status) {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy(errnoException(errno, 'write'), req.cb);
|
2011-12-13 01:45:39 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-02-03 15:09:30 +04:00
|
|
|
timers.active(self);
|
2011-11-03 23:34:23 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
self._pendingWriteReqs--;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
if (self._pendingWriteReqs == 0) {
|
2011-06-17 19:10:12 +04:00
|
|
|
self.emit('drain');
|
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (req.cb) req.cb();
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
if (self._pendingWriteReqs == 0 && self._flags & FLAG_DESTROY_SOON) {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy();
|
2011-06-17 19:10:12 +04:00
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-23 19:37:49 +04:00
|
|
|
function connect(self, address, port, addressType, localAddress) {
|
2011-07-20 00:49:42 +04:00
|
|
|
if (port) {
|
|
|
|
self.remotePort = port;
|
|
|
|
}
|
|
|
|
self.remoteAddress = address;
|
2011-06-24 23:32:09 +04:00
|
|
|
|
|
|
|
// TODO return promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
assert.ok(self._connecting);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2012-05-04 00:27:06 +04:00
|
|
|
if (localAddress) {
|
|
|
|
var r;
|
|
|
|
if (addressType == 6) {
|
|
|
|
r = self._handle.bind6(localAddress);
|
|
|
|
} else {
|
|
|
|
r = self._handle.bind(localAddress);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r) {
|
|
|
|
self._destroy(errnoException(errno, 'bind'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
var connectReq;
|
2011-07-07 00:34:04 +04:00
|
|
|
if (addressType == 6) {
|
2011-07-20 00:49:42 +04:00
|
|
|
connectReq = self._handle.connect6(address, port);
|
|
|
|
} else if (addressType == 4) {
|
|
|
|
connectReq = self._handle.connect(address, port);
|
2011-07-07 00:34:04 +04:00
|
|
|
} else {
|
2011-07-20 00:49:42 +04:00
|
|
|
connectReq = self._handle.connect(address, afterConnect);
|
2011-07-07 00:34:04 +04:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
if (connectReq !== null) {
|
2011-06-24 23:32:09 +04:00
|
|
|
connectReq.oncomplete = afterConnect;
|
|
|
|
} else {
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy(errnoException(errno, 'connect'));
|
2011-06-24 23:32:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
Socket.prototype.connect = function(options, cb) {
|
|
|
|
if (typeof options !== 'object') {
|
|
|
|
// Old API:
|
|
|
|
// connect(port, [host], [cb])
|
|
|
|
// connect(path, [cb]);
|
|
|
|
var args = normalizeConnectArgs(arguments);
|
|
|
|
return Socket.prototype.connect.apply(this, args);
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
var self = this;
|
|
|
|
var pipe = !!options.path;
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2011-07-22 01:00:47 +04:00
|
|
|
if (this.destroyed || !this._handle) {
|
2011-08-01 02:58:10 +04:00
|
|
|
this._handle = pipe ? createPipe() : createTCP();
|
2011-07-01 03:37:30 +04:00
|
|
|
initSocketHandle(this);
|
|
|
|
}
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
if (typeof cb === 'function') {
|
|
|
|
self.on('connect', cb);
|
2011-06-21 18:53:02 +04:00
|
|
|
}
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
timers.active(this);
|
|
|
|
|
2011-07-02 11:18:36 +04:00
|
|
|
self._connecting = true;
|
2011-07-15 01:18:17 +04:00
|
|
|
self.writable = true;
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
if (pipe) {
|
2012-01-09 05:18:39 +04:00
|
|
|
connect(self, options.path);
|
|
|
|
|
|
|
|
} else if (!options.host) {
|
|
|
|
debug('connect: missing host');
|
|
|
|
connect(self, '127.0.0.1', options.port, 4);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2012-01-09 05:18:39 +04:00
|
|
|
} else {
|
|
|
|
var host = options.host;
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('connect: find host ' + host);
|
2011-06-24 23:32:09 +04:00
|
|
|
require('dns').lookup(host, function(err, ip, addressType) {
|
2011-09-20 00:41:42 +04:00
|
|
|
// 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;
|
|
|
|
|
2011-06-24 23:32:09 +04:00
|
|
|
if (err) {
|
2011-08-09 18:26:42 +04: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.
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', err);
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy();
|
2011-08-09 18:26:42 +04:00
|
|
|
});
|
2011-06-24 23:32:09 +04:00
|
|
|
} else {
|
|
|
|
timers.active(self);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-08-11 19:41:30 +04:00
|
|
|
addressType = addressType || 4;
|
|
|
|
|
|
|
|
// node_net.cc handles null host names graciously but user land
|
|
|
|
// expects remoteAddress to have a meaningful value
|
|
|
|
ip = ip || (addressType === 4 ? '127.0.0.1' : '0:0:0:0:0:0:0:1');
|
|
|
|
|
2012-02-23 19:37:49 +04:00
|
|
|
connect(self, ip, options.port, addressType, options.localAddress);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
2011-06-24 23:32:09 +04:00
|
|
|
});
|
|
|
|
}
|
2011-10-23 13:20:03 +04:00
|
|
|
return self;
|
2011-06-16 23:11:05 +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;
|
|
|
|
}
|
|
|
|
|
2011-07-22 13:11:02 +04:00
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
2011-10-05 02:08:18 +04:00
|
|
|
debug('afterConnect');
|
2011-07-22 13:11:02 +04:00
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
assert.ok(self._connecting);
|
|
|
|
self._connecting = false;
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (status == 0) {
|
2012-02-10 13:35:35 +04:00
|
|
|
self.readable = readable;
|
|
|
|
self.writable = writable;
|
2011-06-16 23:11:05 +04:00
|
|
|
timers.active(self);
|
2011-07-02 11:18:36 +04:00
|
|
|
|
2012-02-10 13:35:35 +04:00
|
|
|
if (self.readable) {
|
|
|
|
handle.readStart();
|
|
|
|
}
|
2011-07-02 11:18:36 +04:00
|
|
|
|
|
|
|
if (self._connectQueue) {
|
|
|
|
debug('Drain the connect queue');
|
2012-03-20 11:21:38 +04:00
|
|
|
var connectQueue = self._connectQueue;
|
|
|
|
for (var i = 0; i < connectQueue.length; i++) {
|
|
|
|
self._write.apply(self, connectQueue[i]);
|
2011-07-02 11:18:36 +04:00
|
|
|
}
|
2011-07-13 04:00:33 +04:00
|
|
|
self._connectQueueCleanUp();
|
2011-07-02 11:18:36 +04:00
|
|
|
}
|
|
|
|
|
2012-02-26 23:13:08 +04:00
|
|
|
self.emit('connect');
|
|
|
|
|
2011-07-13 04:00:33 +04:00
|
|
|
if (self._flags & FLAG_SHUTDOWNQUED) {
|
|
|
|
// end called before connected - call end now with no data
|
|
|
|
self._flags &= ~FLAG_SHUTDOWNQUED;
|
|
|
|
self.end();
|
|
|
|
}
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2011-10-05 02:08:18 +04:00
|
|
|
self._connectQueueCleanUp();
|
2012-03-20 11:21:38 +04:00
|
|
|
self._destroy(errnoException(errno, 'connect'));
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function errnoException(errorno, syscall) {
|
|
|
|
// TODO make this more compatible with ErrnoException from src/node.cc
|
|
|
|
// Once all of Node is using this function the ErrnoException from
|
|
|
|
// src/node.cc should be removed.
|
|
|
|
var e = new Error(syscall + ' ' + errorno);
|
2011-07-05 23:07:30 +04:00
|
|
|
e.errno = e.code = errorno;
|
2011-06-16 23:11:05 +04:00
|
|
|
e.syscall = syscall;
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Server(/* [ options, ] listener */) {
|
|
|
|
if (!(this instanceof Server)) return new Server(arguments[0], arguments[1]);
|
|
|
|
events.EventEmitter.call(this);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2011-06-20 16:48:00 +04:00
|
|
|
var options;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
if (typeof arguments[0] == 'function') {
|
|
|
|
options = {};
|
2011-06-20 16:48:00 +04:00
|
|
|
self.on('connection', arguments[0]);
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2011-07-13 02:26:45 +04:00
|
|
|
options = arguments[0] || {};
|
2011-10-05 02:08:18 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (typeof arguments[1] == 'function') {
|
2011-06-20 16:48:00 +04:00
|
|
|
self.on('connection', arguments[1]);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
this._connections = 0;
|
|
|
|
|
|
|
|
// when server is using slaves .connections is not reliable
|
|
|
|
// so null will be return if thats the case
|
|
|
|
Object.defineProperty(this, 'connections', {
|
|
|
|
get: function() {
|
|
|
|
if (self._usingSlaves) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return self._connections;
|
|
|
|
},
|
|
|
|
set: function(val) {
|
|
|
|
return (self._connections = val);
|
|
|
|
},
|
|
|
|
configurable: true, enumerable: true
|
|
|
|
});
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-07-07 04:13:17 +04:00
|
|
|
this._handle = null;
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
util.inherits(Server, events.EventEmitter);
|
|
|
|
exports.Server = Server;
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2011-10-12 13:56:29 +04:00
|
|
|
var createServerHandle = exports._createServerHandle =
|
|
|
|
function(address, port, addressType) {
|
|
|
|
var r = 0;
|
|
|
|
// assign handle in listen, and clean up if bind or listen fails
|
2011-12-02 01:24:28 +04:00
|
|
|
var handle;
|
|
|
|
|
|
|
|
if (port == -1 && addressType == -1) {
|
|
|
|
handle = createPipe();
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var instances = parseInt(process.env.NODE_PENDING_PIPE_INSTANCES);
|
|
|
|
if (!isNaN(instances)) {
|
|
|
|
handle.setPendingInstances(instances);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
handle = createTCP();
|
|
|
|
}
|
2011-10-12 13:56:29 +04:00
|
|
|
|
|
|
|
if (address || port) {
|
|
|
|
debug('bind to ' + address);
|
|
|
|
if (addressType == 6) {
|
|
|
|
r = handle.bind6(address, port);
|
|
|
|
} else {
|
|
|
|
r = handle.bind(address, port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r) {
|
|
|
|
handle.close();
|
|
|
|
handle = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handle;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
Server.prototype._listen2 = function(address, port, addressType, backlog) {
|
2011-10-12 13:56:29 +04:00
|
|
|
var self = this;
|
2011-06-29 20:04:55 +04:00
|
|
|
var r = 0;
|
|
|
|
|
2011-10-08 00:58:49 +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.
|
2011-07-27 05:37:21 +04:00
|
|
|
if (!self._handle) {
|
2011-10-12 13:56:29 +04:00
|
|
|
self._handle = createServerHandle(address, port, addressType);
|
2011-10-15 12:10:14 +04:00
|
|
|
if (!self._handle) {
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', errnoException(errno, 'listen'));
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2011-06-29 20:04:55 +04:00
|
|
|
}
|
2011-07-19 13:47:15 +04:00
|
|
|
|
2011-10-08 00:58:49 +04:00
|
|
|
self._handle.onconnection = onconnection;
|
2012-04-27 06:42:10 +04:00
|
|
|
self._handle.owner = self;
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-04-18 17:56:14 +04: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.
|
|
|
|
r = self._handle.listen(backlog || 511);
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2011-06-24 23:32:09 +04:00
|
|
|
if (r) {
|
2011-07-07 04:13:17 +04:00
|
|
|
self._handle.close();
|
|
|
|
self._handle = null;
|
2011-06-29 01:32:01 +04:00
|
|
|
process.nextTick(function() {
|
2011-07-07 04:13:17 +04:00
|
|
|
self.emit('error', errnoException(errno, 'listen'));
|
2011-06-29 01:32:01 +04:00
|
|
|
});
|
2011-10-08 00:58:49 +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;
|
|
|
|
|
2011-10-08 00:58:49 +04:00
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('listening');
|
|
|
|
});
|
2012-02-19 03:01:35 +04:00
|
|
|
};
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-10-08 00:58:49 +04:00
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
function listen(self, address, port, addressType, backlog) {
|
2012-05-20 17:57:24 +04:00
|
|
|
if (!cluster) cluster = require('cluster');
|
|
|
|
|
|
|
|
if (cluster.isWorker) {
|
2012-02-19 03:01:35 +04:00
|
|
|
cluster._getServer(self, address, port, addressType, function(handle) {
|
2011-10-12 13:56:29 +04:00
|
|
|
self._handle = handle;
|
2012-04-18 17:56:14 +04:00
|
|
|
self._listen2(address, port, addressType, backlog);
|
2011-10-12 13:56:29 +04:00
|
|
|
});
|
|
|
|
} else {
|
2012-04-18 17:56:14 +04:00
|
|
|
self._listen2(address, port, addressType, backlog);
|
2011-10-12 13:56:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
Server.prototype.listen = function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var lastArg = arguments[arguments.length - 1];
|
|
|
|
if (typeof lastArg == 'function') {
|
2011-10-12 14:06:16 +04:00
|
|
|
self.once('listening', lastArg);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2012-04-18 17:56:14 +04:00
|
|
|
var port = toNumber(arguments[0]);
|
|
|
|
|
|
|
|
// The third optional argument is the backlog size.
|
|
|
|
// When the ip is omitted it can be the second argument.
|
|
|
|
var backlog = toNumber(arguments[1]) || toNumber(arguments[2]);
|
2011-06-16 23:11:05 +04:00
|
|
|
|
2011-10-12 23:46:41 +04:00
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
2011-10-08 03:43:53 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
if (arguments.length == 0 || typeof arguments[0] == 'function') {
|
|
|
|
// Don't bind(). OS will assign a port with INADDR_ANY.
|
|
|
|
// The port can be found with server.address()
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, null, null, backlog);
|
2011-07-20 00:49:42 +04:00
|
|
|
|
2011-10-08 03:43:53 +04:00
|
|
|
} else if (arguments[0] instanceof TCP) {
|
|
|
|
self._handle = arguments[0];
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, null, -1, -1, backlog);
|
2011-10-08 03:43:53 +04:00
|
|
|
|
2011-07-20 00:49:42 +04:00
|
|
|
} else if (isPipeName(arguments[0])) {
|
|
|
|
// UNIX socket or Windows pipe.
|
2011-11-02 02:42:45 +04:00
|
|
|
var pipeName = self._pipeName = arguments[0];
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, pipeName, -1, -1, backlog);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-06-29 20:04:55 +04:00
|
|
|
} else if (typeof arguments[1] == 'undefined' ||
|
2012-04-18 17:56:14 +04:00
|
|
|
typeof arguments[1] == 'function' ||
|
|
|
|
typeof arguments[1] == 'number') {
|
2011-06-24 23:32:09 +04:00
|
|
|
// The first argument is the port, no IP given.
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, '0.0.0.0', port, 4, backlog);
|
2011-06-24 23:32:09 +04:00
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
} else {
|
2012-04-18 17:56:14 +04:00
|
|
|
// The first argument is the port, the second an IP.
|
2011-06-16 23:11:05 +04:00
|
|
|
require('dns').lookup(arguments[1], function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
2012-04-18 17:56:14 +04:00
|
|
|
listen(self, ip || '0.0.0.0', port, ip ? addressType : 4, backlog);
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-10-23 13:20:03 +04:00
|
|
|
return self;
|
2011-06-16 23:11:05 +04:00
|
|
|
};
|
|
|
|
|
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) {
|
|
|
|
return this._handle.getsockname();
|
|
|
|
} else if (this._pipeName) {
|
|
|
|
return this._pipeName;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2011-07-16 02:06:10 +04:00
|
|
|
};
|
2011-06-16 23:11:05 +04:00
|
|
|
|
|
|
|
function onconnection(clientHandle) {
|
|
|
|
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
|
|
|
|
2011-08-11 01:59:21 +04:00
|
|
|
if (!clientHandle) {
|
|
|
|
self.emit('error', errnoException(errno, 'accept'));
|
|
|
|
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,
|
|
|
|
allowHalfOpen: self.allowHalfOpen
|
|
|
|
});
|
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
|
|
|
socket.resume();
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
self._connections++;
|
2011-06-17 16:27:02 +04:00
|
|
|
socket.server = self;
|
|
|
|
|
2011-06-16 23:11:05 +04:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
|
|
|
self.emit('connection', socket);
|
2011-07-09 02:03:48 +04:00
|
|
|
socket.emit('connect');
|
2011-06-16 23:11:05 +04:00
|
|
|
}
|
|
|
|
|
2011-06-17 19:10:12 +04:00
|
|
|
|
2012-02-16 23:52:47 +04:00
|
|
|
Server.prototype.close = function(cb) {
|
2011-07-22 03:23:50 +04:00
|
|
|
if (!this._handle) {
|
|
|
|
// Throw error. Follows net_legacy behaviour.
|
|
|
|
throw new Error('Not running');
|
2011-07-07 04:13:17 +04:00
|
|
|
}
|
2011-07-22 03:23:50 +04:00
|
|
|
|
2012-02-16 23:52:47 +04:00
|
|
|
if (cb) {
|
|
|
|
this.once('close', cb);
|
|
|
|
}
|
2011-07-22 03:23:50 +04:00
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
2011-07-25 11:01:44 +04:00
|
|
|
this._emitCloseIfDrained();
|
2011-10-23 13:20:03 +04:00
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
// fetch new socket lists
|
|
|
|
if (this._usingSlaves) {
|
|
|
|
this._slaves.forEach(function(socketList) {
|
|
|
|
if (socketList.list.length === 0) return;
|
|
|
|
socketList.update();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-10-23 13:20:03 +04:00
|
|
|
return this;
|
2011-07-25 11:01:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Server.prototype._emitCloseIfDrained = function() {
|
2011-12-29 22:30:07 +04:00
|
|
|
var self = this;
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
if (self._handle || self._connections) return;
|
2011-12-29 22:30:07 +04:00
|
|
|
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('close');
|
|
|
|
});
|
2011-06-17 19:10:12 +04:00
|
|
|
};
|
2011-07-04 22:25:31 +04:00
|
|
|
|
2011-10-11 01:24:56 +04:00
|
|
|
|
2011-08-04 23:04:54 +04:00
|
|
|
Server.prototype.listenFD = function(fd, type) {
|
2011-10-11 01:24:56 +04:00
|
|
|
throw new Error('This API is no longer supported. See child_process.fork');
|
2011-08-04 23:04:54 +04:00
|
|
|
};
|
|
|
|
|
2012-04-12 11:23:07 +04:00
|
|
|
// when sending a socket using fork IPC this function is executed
|
|
|
|
Server.prototype._setupSlave = function(socketList) {
|
|
|
|
if (!this._usingSlaves) {
|
|
|
|
this._usingSlaves = true;
|
|
|
|
this._slaves = [];
|
|
|
|
}
|
|
|
|
this._slaves.push(socketList);
|
|
|
|
};
|
|
|
|
|
2011-07-04 22:25:31 +04:00
|
|
|
|
|
|
|
// TODO: isIP should be moved to the DNS code. Putting it here now because
|
|
|
|
// this is what the legacy system did.
|
2011-07-07 22:23:27 +04:00
|
|
|
// NOTE: This does not accept IPv6 with an IPv4 dotted address at the end,
|
|
|
|
// and it does not detect more than one double : in a string.
|
2011-07-04 22:25:31 +04:00
|
|
|
exports.isIP = function(input) {
|
|
|
|
if (!input) {
|
2012-05-14 06:17:51 +04:00
|
|
|
return 0;
|
2011-07-04 22:25:31 +04:00
|
|
|
} else if (/^(\d?\d?\d)\.(\d?\d?\d)\.(\d?\d?\d)\.(\d?\d?\d)$/.test(input)) {
|
|
|
|
var parts = input.split('.');
|
|
|
|
for (var i = 0; i < parts.length; i++) {
|
|
|
|
var part = parseInt(parts[i]);
|
|
|
|
if (part < 0 || 255 < part) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 4;
|
2011-10-05 02:08:18 +04:00
|
|
|
} else if (/^::|^::1|^([a-fA-F0-9]{1,4}::?){1,7}([a-fA-F0-9]{1,4})$/.test(
|
|
|
|
input)) {
|
2011-07-04 22:25:31 +04:00
|
|
|
return 6;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-05 02:08:18 +04:00
|
|
|
};
|
2011-07-04 22:25:31 +04:00
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv4 = function(input) {
|
2011-07-05 02:03:21 +04:00
|
|
|
return exports.isIP(input) === 4;
|
2011-07-04 22:25:31 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv6 = function(input) {
|
2011-07-05 02:03:21 +04:00
|
|
|
return exports.isIP(input) === 6;
|
2011-07-04 22:25:31 +04:00
|
|
|
};
|
2012-01-20 04:52:23 +04:00
|
|
|
|
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
var simultaneousAccepts;
|
|
|
|
|
|
|
|
exports._setSimultaneousAccepts = function(handle) {
|
|
|
|
if (typeof handle === 'undefined') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof simultaneousAccepts === 'undefined') {
|
|
|
|
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 {
|
2012-02-19 03:01:35 +04:00
|
|
|
exports._setSimultaneousAccepts = function(handle) {};
|
2012-01-20 04:52:23 +04:00
|
|
|
}
|