mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
f9b7714b4b
Don't use v8::Object::SetHiddenValue() to keep a reference alive to the buffer, we can just as easily do that from JS land and it's a lot faster to boot. Because the buffer is now a visible property of the write request object, it's essential that we do *not* log it - we'd be effectively serializing the whole buffer to a pretty-printed string.
466 lines
12 KiB
JavaScript
466 lines
12 KiB
JavaScript
// 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.
|
|
|
|
var assert = require('assert');
|
|
var util = require('util');
|
|
var events = require('events');
|
|
|
|
var UDP = process.binding('udp_wrap').UDP;
|
|
|
|
var BIND_STATE_UNBOUND = 0;
|
|
var BIND_STATE_BINDING = 1;
|
|
var BIND_STATE_BOUND = 2;
|
|
|
|
// lazily loaded
|
|
var cluster = null;
|
|
var dns = null;
|
|
var net = null;
|
|
|
|
var errnoException = util._errnoException;
|
|
|
|
function isIP(address) {
|
|
if (!net)
|
|
net = require('net');
|
|
|
|
return net.isIP(address);
|
|
}
|
|
|
|
|
|
function lookup(address, family, callback) {
|
|
if (!dns)
|
|
dns = require('dns');
|
|
|
|
return dns.lookup(address, family, callback);
|
|
}
|
|
|
|
|
|
function lookup4(address, callback) {
|
|
return lookup(address || '0.0.0.0', 4, callback);
|
|
}
|
|
|
|
|
|
function lookup6(address, callback) {
|
|
return lookup(address || '::0', 6, callback);
|
|
}
|
|
|
|
|
|
function newHandle(type) {
|
|
if (type == 'udp4') {
|
|
var handle = new UDP;
|
|
handle.lookup = lookup4;
|
|
return handle;
|
|
}
|
|
|
|
if (type == 'udp6') {
|
|
var handle = new UDP;
|
|
handle.lookup = lookup6;
|
|
handle.bind = handle.bind6;
|
|
handle.send = handle.send6;
|
|
return handle;
|
|
}
|
|
|
|
if (type == 'unix_dgram')
|
|
throw new Error('unix_dgram sockets are not supported any more.');
|
|
|
|
throw new Error('Bad socket type specified. Valid types are: udp4, udp6');
|
|
}
|
|
|
|
|
|
exports._createSocketHandle = function(address, port, addressType, fd) {
|
|
// Opening an existing fd is not supported for UDP handles.
|
|
assert(!util.isNumber(fd) || fd < 0);
|
|
|
|
var handle = newHandle(addressType);
|
|
|
|
if (port || address) {
|
|
var err = handle.bind(address, port || 0, 0);
|
|
if (err) {
|
|
handle.close();
|
|
return err;
|
|
}
|
|
}
|
|
|
|
return handle;
|
|
};
|
|
|
|
|
|
function Socket(type, listener) {
|
|
events.EventEmitter.call(this);
|
|
|
|
var handle = newHandle(type);
|
|
handle.owner = this;
|
|
|
|
this._handle = handle;
|
|
this._receiving = false;
|
|
this._bindState = BIND_STATE_UNBOUND;
|
|
this.type = type;
|
|
this.fd = null; // compatibility hack
|
|
|
|
if (util.isFunction(listener))
|
|
this.on('message', listener);
|
|
}
|
|
util.inherits(Socket, events.EventEmitter);
|
|
exports.Socket = Socket;
|
|
|
|
|
|
exports.createSocket = function(type, listener) {
|
|
return new Socket(type, listener);
|
|
};
|
|
|
|
|
|
function startListening(socket) {
|
|
socket._handle.onmessage = onMessage;
|
|
// Todo: handle errors
|
|
socket._handle.recvStart();
|
|
socket._receiving = true;
|
|
socket._bindState = BIND_STATE_BOUND;
|
|
socket.fd = -42; // compatibility hack
|
|
|
|
socket.emit('listening');
|
|
}
|
|
|
|
function replaceHandle(self, newHandle) {
|
|
|
|
// Set up the handle that we got from master.
|
|
newHandle.lookup = self._handle.lookup;
|
|
newHandle.bind = self._handle.bind;
|
|
newHandle.send = self._handle.send;
|
|
newHandle.owner = self;
|
|
|
|
// Replace the existing handle by the handle we got from master.
|
|
self._handle.close();
|
|
self._handle = newHandle;
|
|
}
|
|
|
|
Socket.prototype.bind = function(/*port, address, callback*/) {
|
|
var self = this;
|
|
|
|
self._healthCheck();
|
|
|
|
if (this._bindState != BIND_STATE_UNBOUND)
|
|
throw new Error('Socket is already bound');
|
|
|
|
this._bindState = BIND_STATE_BINDING;
|
|
|
|
if (util.isFunction(arguments[arguments.length - 1]))
|
|
self.once('listening', arguments[arguments.length - 1]);
|
|
|
|
var UDP = process.binding('udp_wrap').UDP;
|
|
if (arguments[0] instanceof UDP) {
|
|
replaceHandle(self, arguments[0]);
|
|
startListening(self);
|
|
return;
|
|
}
|
|
|
|
var port = arguments[0];
|
|
var address = arguments[1];
|
|
if (util.isFunction(address)) address = ''; // a.k.a. "any address"
|
|
|
|
// resolve address first
|
|
self._handle.lookup(address, function(err, ip) {
|
|
if (err) {
|
|
self._bindState = BIND_STATE_UNBOUND;
|
|
self.emit('error', err);
|
|
return;
|
|
}
|
|
|
|
if (!cluster)
|
|
cluster = require('cluster');
|
|
|
|
if (cluster.isWorker) {
|
|
cluster._getServer(self, ip, port, self.type, -1, function(err, handle) {
|
|
if (err) {
|
|
self.emit('error', errnoException(err, 'bind'));
|
|
self._bindState = BIND_STATE_UNBOUND;
|
|
return;
|
|
}
|
|
|
|
if (!self._handle)
|
|
// handle has been closed in the mean time.
|
|
return handle.close();
|
|
|
|
replaceHandle(self, handle);
|
|
startListening(self);
|
|
});
|
|
|
|
} else {
|
|
if (!self._handle)
|
|
return; // handle has been closed in the mean time
|
|
|
|
var err = self._handle.bind(ip, port || 0, /*flags=*/ 0);
|
|
if (err) {
|
|
self.emit('error', errnoException(err, 'bind'));
|
|
self._bindState = BIND_STATE_UNBOUND;
|
|
// Todo: close?
|
|
return;
|
|
}
|
|
|
|
startListening(self);
|
|
}
|
|
});
|
|
};
|
|
|
|
|
|
// thin wrapper around `send`, here for compatibility with dgram_legacy.js
|
|
Socket.prototype.sendto = function(buffer,
|
|
offset,
|
|
length,
|
|
port,
|
|
address,
|
|
callback) {
|
|
if (!util.isNumber(offset) || !util.isNumber(length))
|
|
throw new Error('send takes offset and length as args 2 and 3');
|
|
|
|
if (!util.isString(address))
|
|
throw new Error(this.type + ' sockets must send to port, address');
|
|
|
|
this.send(buffer, offset, length, port, address, callback);
|
|
};
|
|
|
|
|
|
Socket.prototype.send = function(buffer,
|
|
offset,
|
|
length,
|
|
port,
|
|
address,
|
|
callback) {
|
|
var self = this;
|
|
|
|
if (!util.isBuffer(buffer))
|
|
throw new TypeError('First argument must be a buffer object.');
|
|
|
|
offset = offset | 0;
|
|
if (offset < 0)
|
|
throw new RangeError('Offset should be >= 0');
|
|
|
|
if (offset >= buffer.length)
|
|
throw new RangeError('Offset into buffer too large');
|
|
|
|
// Sending a zero-length datagram is kind of pointless but it _is_
|
|
// allowed, hence check that length >= 0 rather than > 0.
|
|
length = length | 0;
|
|
if (length < 0)
|
|
throw new RangeError('Length should be >= 0');
|
|
|
|
if (offset + length > buffer.length)
|
|
throw new RangeError('Offset + length beyond buffer length');
|
|
|
|
port = port | 0;
|
|
if (port <= 0 || port > 65535)
|
|
throw new RangeError('Port should be > 0 and < 65536');
|
|
|
|
// Normalize callback so it's either a function or undefined but not anything
|
|
// else.
|
|
if (!util.isFunction(callback))
|
|
callback = undefined;
|
|
|
|
self._healthCheck();
|
|
|
|
if (self._bindState == BIND_STATE_UNBOUND)
|
|
self.bind(0, null);
|
|
|
|
// If the socket hasn't been bound yet, push the outbound packet onto the
|
|
// send queue and send after binding is complete.
|
|
if (self._bindState != BIND_STATE_BOUND) {
|
|
// If the send queue hasn't been initialized yet, do it, and install an
|
|
// event handler that flushes the send queue after binding is done.
|
|
if (!self._sendQueue) {
|
|
self._sendQueue = [];
|
|
self.once('listening', function() {
|
|
// Flush the send queue.
|
|
for (var i = 0; i < self._sendQueue.length; i++)
|
|
self.send.apply(self, self._sendQueue[i]);
|
|
self._sendQueue = undefined;
|
|
});
|
|
}
|
|
self._sendQueue.push([buffer, offset, length, port, address, callback]);
|
|
return;
|
|
}
|
|
|
|
self._handle.lookup(address, function(ex, ip) {
|
|
if (ex) {
|
|
if (callback) callback(ex);
|
|
self.emit('error', ex);
|
|
}
|
|
else if (self._handle) {
|
|
var req = { buffer: buffer }; // Keep reference alive.
|
|
if (callback) {
|
|
req.callback = callback;
|
|
req.oncomplete = afterSend;
|
|
}
|
|
var err = self._handle.send(req,
|
|
buffer,
|
|
offset,
|
|
length,
|
|
port,
|
|
ip,
|
|
!!callback);
|
|
if (err && callback) {
|
|
// don't emit as error, dgram_legacy.js compatibility
|
|
process.nextTick(function() {
|
|
callback(errnoException(err, 'send'));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
|
|
function afterSend(err) {
|
|
this.callback(err ? errnoException(err, 'send') : null);
|
|
}
|
|
|
|
|
|
Socket.prototype.close = function() {
|
|
this._healthCheck();
|
|
this._stopReceiving();
|
|
this._handle.close();
|
|
this._handle = null;
|
|
this.emit('close');
|
|
};
|
|
|
|
|
|
Socket.prototype.address = function() {
|
|
this._healthCheck();
|
|
|
|
var out = {};
|
|
var err = this._handle.getsockname(out);
|
|
if (err) {
|
|
throw errnoException(err, 'getsockname');
|
|
}
|
|
|
|
return out;
|
|
};
|
|
|
|
|
|
Socket.prototype.setBroadcast = function(arg) {
|
|
var err = this._handle.setBroadcast(arg ? 1 : 0);
|
|
if (err) {
|
|
throw errnoException(err, 'setBroadcast');
|
|
}
|
|
};
|
|
|
|
|
|
Socket.prototype.setTTL = function(arg) {
|
|
if (!util.isNumber(arg)) {
|
|
throw new TypeError('Argument must be a number');
|
|
}
|
|
|
|
var err = this._handle.setTTL(arg);
|
|
if (err) {
|
|
throw errnoException(err, 'setTTL');
|
|
}
|
|
|
|
return arg;
|
|
};
|
|
|
|
|
|
Socket.prototype.setMulticastTTL = function(arg) {
|
|
if (!util.isNumber(arg)) {
|
|
throw new TypeError('Argument must be a number');
|
|
}
|
|
|
|
var err = this._handle.setMulticastTTL(arg);
|
|
if (err) {
|
|
throw errnoException(err, 'setMulticastTTL');
|
|
}
|
|
|
|
return arg;
|
|
};
|
|
|
|
|
|
Socket.prototype.setMulticastLoopback = function(arg) {
|
|
var err = this._handle.setMulticastLoopback(arg ? 1 : 0);
|
|
if (err) {
|
|
throw errnoException(err, 'setMulticastLoopback');
|
|
}
|
|
|
|
return arg; // 0.4 compatibility
|
|
};
|
|
|
|
|
|
Socket.prototype.addMembership = function(multicastAddress,
|
|
interfaceAddress) {
|
|
this._healthCheck();
|
|
|
|
if (!multicastAddress) {
|
|
throw new Error('multicast address must be specified');
|
|
}
|
|
|
|
var err = this._handle.addMembership(multicastAddress, interfaceAddress);
|
|
if (err) {
|
|
throw new errnoException(err, 'addMembership');
|
|
}
|
|
};
|
|
|
|
|
|
Socket.prototype.dropMembership = function(multicastAddress,
|
|
interfaceAddress) {
|
|
this._healthCheck();
|
|
|
|
if (!multicastAddress) {
|
|
throw new Error('multicast address must be specified');
|
|
}
|
|
|
|
var err = this._handle.dropMembership(multicastAddress, interfaceAddress);
|
|
if (err) {
|
|
throw new errnoException(err, 'dropMembership');
|
|
}
|
|
};
|
|
|
|
|
|
Socket.prototype._healthCheck = function() {
|
|
if (!this._handle)
|
|
throw new Error('Not running'); // error message from dgram_legacy.js
|
|
};
|
|
|
|
|
|
Socket.prototype._stopReceiving = function() {
|
|
if (!this._receiving)
|
|
return;
|
|
|
|
this._handle.recvStop();
|
|
this._receiving = false;
|
|
this.fd = null; // compatibility hack
|
|
};
|
|
|
|
|
|
function onMessage(nread, handle, buf, rinfo) {
|
|
var self = handle.owner;
|
|
if (nread < 0) {
|
|
return self.emit('error', errnoException(nread, 'recvmsg'));
|
|
}
|
|
rinfo.size = buf.length; // compatibility
|
|
self.emit('message', buf, rinfo);
|
|
}
|
|
|
|
|
|
Socket.prototype.ref = function() {
|
|
if (this._handle)
|
|
this._handle.ref();
|
|
};
|
|
|
|
|
|
Socket.prototype.unref = function() {
|
|
if (this._handle)
|
|
this._handle.unref();
|
|
};
|