2011-06-16 19:11:05 +00:00
|
|
|
var events = require('events');
|
|
|
|
var stream = require('stream');
|
|
|
|
var timers = require('timers');
|
|
|
|
var util = require('util');
|
|
|
|
var assert = require('assert');
|
|
|
|
var TCP = process.binding('tcp_wrap').TCP;
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
/* Bit flags for socket._flags */
|
|
|
|
var FLAG_GOT_EOF = 1 << 0;
|
|
|
|
var FLAG_SHUTDOWN = 1 << 1;
|
|
|
|
var FLAG_DESTROY_SOON = 1 << 2;
|
2011-07-13 00:00:33 +00:00
|
|
|
var FLAG_SHUTDOWNQUED = 1 << 3;
|
2011-06-17 15:10:12 +00:00
|
|
|
|
2011-06-16 19:11:05 +00: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-06-17 12:27:02 +00:00
|
|
|
exports.createServer = function() {
|
|
|
|
return new Server(arguments[0], arguments[1]);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-04 15:34:58 +00:00
|
|
|
exports.connect = exports.createConnection = function(port /* [host], [cb] */) {
|
2011-06-17 12:27:02 +00:00
|
|
|
var s = new Socket();
|
2011-07-04 15:34:58 +00:00
|
|
|
s.connect(port, arguments[1], arguments[2]);
|
2011-06-17 12:27:02 +00:00
|
|
|
return s;
|
|
|
|
};
|
|
|
|
|
2011-06-30 23:37:30 +00:00
|
|
|
/* called when creating new Socket, or when re-using a closed Socket */
|
|
|
|
function initSocketHandle(self) {
|
|
|
|
self._handle.socket = self;
|
|
|
|
self._handle.onread = onread;
|
|
|
|
|
|
|
|
self._writeRequests = [];
|
|
|
|
|
|
|
|
self._flags = 0;
|
2011-07-02 07:18:36 +00:00
|
|
|
self._connectQueueSize = 0;
|
2011-06-30 23:37:30 +00:00
|
|
|
self.destroyed = false;
|
|
|
|
}
|
2011-06-17 12:27:02 +00:00
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
function Socket(options) {
|
|
|
|
if (!(this instanceof Socket)) return new Socket(options);
|
|
|
|
|
|
|
|
stream.Stream.call(this);
|
|
|
|
|
|
|
|
// private
|
2011-06-17 12:27:02 +00:00
|
|
|
if (options && options.handle) {
|
2011-06-16 19:11:05 +00:00
|
|
|
this._handle = options.handle;
|
|
|
|
} else {
|
|
|
|
this._handle = new TCP();
|
|
|
|
}
|
2011-06-17 15:10:12 +00:00
|
|
|
this.allowHalfOpen = options ? (options.allowHalfOpen || false) : false;
|
|
|
|
|
2011-06-30 23:37:30 +00:00
|
|
|
initSocketHandle(this);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
util.inherits(Socket, stream.Stream);
|
|
|
|
|
|
|
|
|
2011-06-17 16:09:15 +00:00
|
|
|
exports.Socket = Socket;
|
|
|
|
exports.Stream = Socket; // Legacy naming.
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.setTimeout = function(msecs, callback) {
|
|
|
|
if (msecs > 0) {
|
|
|
|
timers.enroll(this, msecs);
|
2011-07-01 19:01:12 +00:00
|
|
|
timers.active(this);
|
2011-06-16 19:11:05 +00:00
|
|
|
if (callback) {
|
|
|
|
this.once('timeout', callback);
|
|
|
|
}
|
|
|
|
} else if (msecs === 0) {
|
|
|
|
timers.unenroll(this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-01 19:01:12 +00:00
|
|
|
Socket.prototype._onTimeout = function() {
|
|
|
|
this.emit('timeout');
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
Socket.prototype.setNoDelay = function() {
|
|
|
|
/* TODO implement me */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-30 21:53:22 +00:00
|
|
|
Socket.prototype.setKeepAlive = function(setting, msecs) {
|
|
|
|
/* TODO implement me */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-15 22:06:10 +00:00
|
|
|
Socket.prototype.address = function() {
|
|
|
|
return this._handle.getsockname();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 12:27:02 +00: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-07-02 07:18:36 +00:00
|
|
|
return this._handle.writeQueueSize + this._connectQueueSize;
|
2011-06-17 12:27:02 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.pause = function() {
|
|
|
|
this._handle.readStop();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.resume = function() {
|
|
|
|
this._handle.readStart();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
Socket.prototype.end = function(data, encoding) {
|
2011-07-13 00:00:33 +00: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-06-17 15:10:12 +00:00
|
|
|
if (!this.writable) return;
|
|
|
|
this.writable = false;
|
|
|
|
|
|
|
|
if (data) this.write(data, encoding);
|
|
|
|
DTRACE_NET_STREAM_END(this);
|
|
|
|
|
|
|
|
if (this._flags & FLAG_GOT_EOF) {
|
|
|
|
this.destroySoon();
|
|
|
|
} else {
|
|
|
|
this._flags |= FLAG_SHUTDOWN;
|
|
|
|
var shutdownReq = this._handle.shutdown();
|
|
|
|
shutdownReq.oncomplete = afterShutdown;
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
function afterShutdown(status, handle, req) {
|
|
|
|
var self = handle.socket;
|
|
|
|
|
|
|
|
assert.ok(self._flags & FLAG_SHUTDOWN);
|
|
|
|
|
2011-07-15 20:20:24 +00:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
if (self._flags & FLAG_GOT_EOF) {
|
|
|
|
self.destroy();
|
|
|
|
} else {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.destroySoon = function() {
|
2011-06-17 15:10:12 +00:00
|
|
|
this.writable = false;
|
|
|
|
this._flags |= FLAG_DESTROY_SOON;
|
|
|
|
|
|
|
|
if (this._writeRequests.length == 0) {
|
|
|
|
this.destroy();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
Socket.prototype._connectQueueCleanUp = function(exception) {
|
|
|
|
this._connecting = false;
|
|
|
|
this._connectQueueSize = 0;
|
|
|
|
this._connectQueue = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Socket.prototype.destroy = function(exception) {
|
|
|
|
var self = this;
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
self._connectQueueCleanUp();
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
debug('destroy ' + this.fd);
|
|
|
|
|
|
|
|
this.readable = this.writable = false;
|
|
|
|
|
|
|
|
timers.unenroll(this);
|
|
|
|
|
|
|
|
if (this.server && !this.destroyed) {
|
|
|
|
this.server.connections--;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug('close ' + this.fd);
|
|
|
|
this._handle.close();
|
|
|
|
|
|
|
|
process.nextTick(function() {
|
|
|
|
if (exception) self.emit('error', exception);
|
|
|
|
self.emit('close', exception ? true : false);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.destroyed = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function onread(buffer, offset, length) {
|
|
|
|
var handle = this;
|
|
|
|
var self = handle.socket;
|
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
|
|
|
timers.active(self);
|
|
|
|
|
|
|
|
var end = offset + length;
|
|
|
|
|
2011-06-17 11:36:16 +00:00
|
|
|
if (buffer) {
|
|
|
|
// Emit 'data' event.
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-06-17 11:36:16 +00: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 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
2011-06-17 11:36:16 +00:00
|
|
|
// Optimization: emit the original buffer with end points
|
|
|
|
if (self.ondata) self.ondata(buffer, offset, end);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// EOF
|
|
|
|
self.readable = false;
|
|
|
|
|
2011-06-17 15:10:12 +00: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.
|
2011-06-17 11:36:16 +00:00
|
|
|
if (!self.writable) self.destroy();
|
|
|
|
|
|
|
|
if (!self.allowHalfOpen) self.end();
|
|
|
|
if (self._events && self._events['end']) self.emit('end');
|
|
|
|
if (self.onend) self.onend();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.setEncoding = function(encoding) {
|
|
|
|
var StringDecoder = require('string_decoder').StringDecoder; // lazy load
|
|
|
|
this._decoder = new StringDecoder(encoding);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Socket.prototype.write = function(data /* [encoding], [fd], [cb] */) {
|
|
|
|
var encoding, fd, cb;
|
|
|
|
|
|
|
|
// parse arguments
|
2011-07-13 00:00:33 +00:00
|
|
|
if (typeof arguments[3] == 'function') {
|
|
|
|
cb = arguments[3];
|
|
|
|
fd = arguments[2];
|
2011-06-16 19:11:05 +00:00
|
|
|
encoding = arguments[1];
|
2011-07-13 00:00:33 +00:00
|
|
|
} else if (typeof arguments[2] == 'function') {
|
|
|
|
cb = arguments[2];
|
|
|
|
if (typeof arguments[1] == 'number') {
|
|
|
|
fd = arguments[1];
|
2011-06-16 19:11:05 +00:00
|
|
|
} else {
|
2011-07-13 00:00:33 +00:00
|
|
|
encoding = arguments[1];
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2011-07-13 00:00:33 +00:00
|
|
|
} else if (typeof arguments[1] == 'function') {
|
2011-06-16 19:11:05 +00:00
|
|
|
cb = arguments[1];
|
2011-07-13 00:00:33 +00:00
|
|
|
} else {
|
|
|
|
if (typeof arguments[1] == 'number') {
|
|
|
|
fd = arguments[1];
|
|
|
|
} else {
|
|
|
|
encoding = arguments[1];
|
|
|
|
fd = arguments[2];
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change strings to buffers. SLOW
|
|
|
|
if (typeof data == 'string') {
|
|
|
|
data = new Buffer(data, encoding);
|
|
|
|
}
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
// If we are still connecting, then buffer this for later.
|
|
|
|
if (this._connecting) {
|
|
|
|
this._connectQueueSize += data.length;
|
|
|
|
if (this._connectQueue) {
|
2011-07-13 00:00:33 +00:00
|
|
|
this._connectQueue.push([data, encoding, fd, cb]);
|
2011-07-02 07:18:36 +00:00
|
|
|
} else {
|
2011-07-13 00:00:33 +00:00
|
|
|
this._connectQueue = [ [data, encoding, fd, cb] ];
|
2011-07-02 07:18:36 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
var writeReq = this._handle.write(data);
|
|
|
|
writeReq.oncomplete = afterWrite;
|
|
|
|
writeReq.cb = cb;
|
|
|
|
this._writeRequests.push(writeReq);
|
|
|
|
|
|
|
|
return this._handle.writeQueueSize == 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function afterWrite(status, handle, req, buffer) {
|
|
|
|
var self = handle.socket;
|
|
|
|
|
2011-07-15 20:20:24 +00:00
|
|
|
// callback may come after call to destroy.
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
// TODO check status.
|
|
|
|
|
|
|
|
var req_ = self._writeRequests.shift();
|
|
|
|
assert.equal(req, req_);
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
if (self._writeRequests.length == 0) {
|
|
|
|
self.emit('drain');
|
|
|
|
}
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
if (req.cb) req.cb();
|
2011-06-17 15:10:12 +00:00
|
|
|
|
|
|
|
if (self._writeRequests.length == 0 && self._flags & FLAG_DESTROY_SOON) {
|
|
|
|
self.destroy();
|
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-06 20:34:04 +00:00
|
|
|
function connectip(self, port, ip, addressType) {
|
2011-06-24 19:32:09 +00:00
|
|
|
self.remoteAddress = ip;
|
|
|
|
self.remotePort = port;
|
|
|
|
|
|
|
|
// TODO return promise from Socket.prototype.connect which
|
|
|
|
// wraps _connectReq.
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
assert.ok(self._connecting);
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2011-07-06 20:34:04 +00:00
|
|
|
if (addressType == 6) {
|
|
|
|
var connectReq = self._handle.connect6(ip, port);
|
|
|
|
} else {
|
|
|
|
var connectReq = self._handle.connect(ip, port);
|
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
|
|
|
|
if (connectReq) {
|
|
|
|
connectReq.oncomplete = afterConnect;
|
|
|
|
} else {
|
|
|
|
self.destroy(errnoException(errno, 'connect'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-04 15:34:58 +00:00
|
|
|
Socket.prototype.connect = function(port /* [host], [cb] */) {
|
2011-06-16 19:11:05 +00:00
|
|
|
var self = this;
|
|
|
|
|
2011-06-30 23:37:30 +00:00
|
|
|
if (this.destroyed) {
|
|
|
|
this._handle = new TCP();
|
|
|
|
initSocketHandle(this);
|
|
|
|
}
|
|
|
|
|
2011-07-04 15:34:58 +00:00
|
|
|
var host;
|
|
|
|
if (typeof arguments[1] === 'function') {
|
|
|
|
self.on('connect', arguments[1]);
|
|
|
|
} else {
|
|
|
|
host = arguments[1];
|
|
|
|
if (typeof arguments[2] === 'function') {
|
|
|
|
self.on('connect', arguments[2]);
|
|
|
|
}
|
2011-06-21 14:53:02 +00:00
|
|
|
}
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
timers.active(this);
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
self._connecting = true;
|
2011-07-14 21:18:17 +00:00
|
|
|
self.writable = true;
|
2011-07-02 07:18:36 +00:00
|
|
|
|
|
|
|
if (typeof host == 'string') {
|
|
|
|
debug("connect: find host " + host);
|
2011-06-24 19:32:09 +00:00
|
|
|
require('dns').lookup(host, function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
|
|
|
timers.active(self);
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-07-06 20:34:04 +00:00
|
|
|
connectip(self, port, ip || '127.0.0.1', ip ? addressType : 4);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
});
|
2011-07-02 07:18:36 +00:00
|
|
|
} else {
|
|
|
|
debug("connect: missing host");
|
2011-07-06 20:34:04 +00:00
|
|
|
connectip(self, port, '127.0.0.1', 4);
|
2011-06-24 19:32:09 +00:00
|
|
|
}
|
2011-06-16 19:11:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function afterConnect(status, handle, req) {
|
|
|
|
var self = handle.socket;
|
|
|
|
assert.equal(handle, self._handle);
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
debug("afterConnect");
|
|
|
|
|
2011-07-15 20:20:24 +00:00
|
|
|
// callback may come after call to destroy
|
|
|
|
if (self.destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
assert.ok(self._connecting);
|
|
|
|
self._connecting = false;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
if (status == 0) {
|
|
|
|
self.readable = self.writable = true;
|
|
|
|
timers.active(self);
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
handle.readStart();
|
2011-07-02 07:18:36 +00:00
|
|
|
|
2011-07-13 00:00:33 +00:00
|
|
|
self.emit('connect');
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
if (self._connectQueue) {
|
|
|
|
debug('Drain the connect queue');
|
|
|
|
for (var i = 0; i < self._connectQueue.length; i++) {
|
|
|
|
self.write.apply(self, self._connectQueue[i]);
|
|
|
|
}
|
2011-07-13 00:00:33 +00:00
|
|
|
self._connectQueueCleanUp();
|
2011-07-02 07:18:36 +00:00
|
|
|
}
|
|
|
|
|
2011-07-13 00:00:33 +00: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 19:11:05 +00:00
|
|
|
} else {
|
2011-07-02 07:18:36 +00:00
|
|
|
self._connectQueueCleanUp()
|
2011-06-16 19:11:05 +00:00
|
|
|
self.destroy(errnoException(errno, 'connect'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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 19:07:30 +00:00
|
|
|
e.errno = e.code = errorno;
|
2011-06-16 19:11:05 +00: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 12:48:00 +00:00
|
|
|
var options;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
if (typeof arguments[0] == 'function') {
|
|
|
|
options = {};
|
2011-06-20 12:48:00 +00:00
|
|
|
self.on('connection', arguments[0]);
|
2011-06-16 19:11:05 +00:00
|
|
|
} else {
|
2011-07-12 22:26:45 +00:00
|
|
|
options = arguments[0] || {};
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
if (typeof arguments[1] == 'function') {
|
2011-06-20 12:48:00 +00:00
|
|
|
self.on('connection', arguments[1]);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.connections = 0;
|
2011-06-17 15:10:12 +00:00
|
|
|
this.allowHalfOpen = options.allowHalfOpen || false;
|
2011-06-16 19:11:05 +00:00
|
|
|
|
2011-07-07 00:13:17 +00:00
|
|
|
this._handle = null;
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
util.inherits(Server, events.EventEmitter);
|
|
|
|
exports.Server = Server;
|
|
|
|
|
|
|
|
|
|
|
|
function toPort(x) { return (x = Number(x)) >= 0 ? x : false; }
|
|
|
|
|
|
|
|
|
2011-07-06 20:34:04 +00:00
|
|
|
function listenip(self, ip, port, addressType) {
|
2011-06-29 16:04:55 +00:00
|
|
|
var r = 0;
|
|
|
|
|
2011-07-07 00:13:17 +00:00
|
|
|
// assign handle in listen, and clean up if bind or listen fails
|
|
|
|
self._handle = new TCP();
|
2011-07-07 23:22:50 +00:00
|
|
|
self._handle.socket = self;
|
2011-07-07 00:13:17 +00:00
|
|
|
self._handle.onconnection = onconnection;
|
|
|
|
|
2011-06-29 16:04:55 +00:00
|
|
|
if (ip && port) {
|
|
|
|
debug("bind to " + ip);
|
2011-07-06 20:34:04 +00:00
|
|
|
if (addressType == 6) {
|
|
|
|
r = self._handle.bind6(ip, port);
|
|
|
|
} else {
|
|
|
|
r = self._handle.bind(ip, port);
|
|
|
|
}
|
2011-06-29 16:04:55 +00:00
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
if (r) {
|
2011-07-07 00:13:17 +00:00
|
|
|
self._handle.close();
|
|
|
|
self._handle = null;
|
|
|
|
|
2011-06-28 21:32:01 +00:00
|
|
|
process.nextTick(function() {
|
2011-07-07 00:13:17 +00:00
|
|
|
self.emit('error', errnoException(errno, 'listen'));
|
2011-06-28 21:32:01 +00:00
|
|
|
});
|
2011-07-07 00:13:17 +00:00
|
|
|
} else {
|
|
|
|
r = self._handle.listen(self._backlog || 128);
|
|
|
|
if (r) {
|
|
|
|
self._handle.close();
|
|
|
|
self._handle = null;
|
|
|
|
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('error', errnoException(errno, 'listen'));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
process.nextTick(function() {
|
|
|
|
self.emit('listening');
|
|
|
|
});
|
|
|
|
}
|
2011-06-24 19:32:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
Server.prototype.listen = function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var lastArg = arguments[arguments.length - 1];
|
|
|
|
if (typeof lastArg == 'function') {
|
|
|
|
self.addListener('listening', lastArg);
|
|
|
|
}
|
|
|
|
|
|
|
|
var port = toPort(arguments[0]);
|
|
|
|
|
|
|
|
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()
|
2011-06-29 16:04:55 +00:00
|
|
|
listenip(self, null, null);
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2011-06-29 16:04:55 +00:00
|
|
|
} else if (typeof arguments[1] == 'undefined' ||
|
|
|
|
typeof arguments[1] == 'function') {
|
2011-06-24 19:32:09 +00:00
|
|
|
// The first argument is the port, no IP given.
|
2011-07-06 20:34:04 +00:00
|
|
|
listenip(self, '0.0.0.0', port, 4);
|
2011-06-24 19:32:09 +00:00
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
} else {
|
2011-06-24 19:32:09 +00:00
|
|
|
// The first argument is the port, the second an IP
|
2011-06-16 19:11:05 +00:00
|
|
|
require('dns').lookup(arguments[1], function(err, ip, addressType) {
|
|
|
|
if (err) {
|
|
|
|
self.emit('error', err);
|
|
|
|
} else {
|
2011-07-06 20:34:04 +00:00
|
|
|
listenip(self, ip || '0.0.0.0', port, ip ? addressType : 4);
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-15 22:06:10 +00:00
|
|
|
Server.prototype.address = function() {
|
|
|
|
return this._handle.getsockname();
|
|
|
|
};
|
2011-06-16 19:11:05 +00:00
|
|
|
|
|
|
|
function onconnection(clientHandle) {
|
|
|
|
var handle = this;
|
|
|
|
var self = handle.socket;
|
|
|
|
|
2011-07-02 07:18:36 +00:00
|
|
|
debug("onconnection");
|
|
|
|
|
2011-07-14 20:18:28 +00:00
|
|
|
if (self.maxConnections && self.connections >= self.maxConnections) {
|
|
|
|
clientHandle.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
var socket = new Socket({
|
|
|
|
handle: clientHandle,
|
|
|
|
allowHalfOpen: self.allowHalfOpen
|
|
|
|
});
|
2011-06-17 12:27:02 +00:00
|
|
|
socket.readable = socket.writable = true;
|
2011-06-16 19:11:05 +00:00
|
|
|
socket.resume();
|
|
|
|
|
2011-06-17 12:27:02 +00:00
|
|
|
self.connections++;
|
|
|
|
socket.server = self;
|
|
|
|
|
2011-06-16 19:11:05 +00:00
|
|
|
DTRACE_NET_SERVER_CONNECTION(socket);
|
|
|
|
self.emit('connection', socket);
|
2011-07-08 22:03:48 +00:00
|
|
|
socket.emit('connect');
|
2011-06-16 19:11:05 +00:00
|
|
|
}
|
|
|
|
|
2011-06-17 15:10:12 +00:00
|
|
|
|
|
|
|
Server.prototype.close = function() {
|
2011-07-07 00:13:17 +00:00
|
|
|
if (this._handle != null) {
|
|
|
|
this._handle.close();
|
|
|
|
this._handle = null;
|
|
|
|
}
|
2011-06-17 15:10:12 +00:00
|
|
|
};
|
2011-07-04 18:25:31 +00: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 18:23:27 +00: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 18:25:31 +00:00
|
|
|
exports.isIP = function(input) {
|
|
|
|
if (!input) {
|
|
|
|
return 4;
|
|
|
|
} 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-07-07 18:23:27 +00:00
|
|
|
} else if (/^::|^::1|^([a-fA-F0-9]{1,4}::?){1,7}([a-fA-F0-9]{1,4})$/.test(input)) {
|
2011-07-04 18:25:31 +00:00
|
|
|
return 6;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv4 = function(input) {
|
2011-07-04 22:03:21 +00:00
|
|
|
return exports.isIP(input) === 4;
|
2011-07-04 18:25:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
exports.isIPv6 = function(input) {
|
2011-07-04 22:03:21 +00:00
|
|
|
return exports.isIP(input) === 6;
|
2011-07-04 18:25:31 +00:00
|
|
|
};
|