From: Fedor Indutny Date: Fri, 27 Dec 2013 17:20:52 +0000 (+0400) Subject: cluster: report more errors to workers X-Git-Tag: v0.10.25~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e9f2e61db371f8208ccb04824fdfb186de72f36;p=platform%2Fupstream%2Fnodejs.git cluster: report more errors to workers Some errors for listening and binding to a socket were not properly delivered to workers. fix #6767 --- diff --git a/lib/cluster.js b/lib/cluster.js index 44dd2e5..88aa126 100644 --- a/lib/cluster.js +++ b/lib/cluster.js @@ -228,13 +228,18 @@ if (cluster.isMaster) { if (serverHandlers.hasOwnProperty(key)) { handler = serverHandlers[key]; - } else if (message.addressType === 'udp4' || - message.addressType === 'udp6') { - var dgram = require('dgram'); - handler = dgram._createSocketHandle.apply(net, args); - serverHandlers[key] = handler; } else { - handler = net._createServerHandle.apply(net, args); + if (message.addressType === 'udp4' || + message.addressType === 'udp6') { + var dgram = require('dgram'); + handler = dgram._createSocketHandle.apply(net, args); + } else { + handler = net._createServerHandle.apply(net, args); + } + if (!handler) { + send({ content: { error: process._errno } }, null); + return; + } serverHandlers[key] = handler; } @@ -584,7 +589,7 @@ cluster._getServer = function(tcpSelf, address, port, addressType, fd, cb) { // The callback will be stored until the master has responded sendInternalMessage(cluster.worker, message, function(msg, handle) { - cb(handle); + cb(handle, msg && msg.error); }); }; diff --git a/lib/dgram.js b/lib/dgram.js index 379bba9..e724a61 100644 --- a/lib/dgram.js +++ b/lib/dgram.js @@ -190,7 +190,10 @@ Socket.prototype.bind = function(/*port, address, callback*/) { cluster = require('cluster'); if (cluster.isWorker) { - cluster._getServer(self, ip, port, self.type, -1, function(handle) { + cluster._getServer(self, ip, port, self.type, -1, function(handle, err) { + if (err) + return self.emit('error', errnoException(err, 'bind')); + if (!self._handle) // handle has been closed in the mean time. return handle.close(); diff --git a/lib/net.js b/lib/net.js index 93d942a..f59fd66 100644 --- a/lib/net.js +++ b/lib/net.js @@ -1062,7 +1062,14 @@ function listen(self, address, port, addressType, backlog, fd) { return; } - cluster._getServer(self, address, port, addressType, fd, function(handle) { + cluster._getServer(self, address, port, addressType, fd, function(handle, + err) { + // EACCESS and friends + if (err) { + self.emit('error', errnoException(err, 'bind')); + return; + } + // Some operating systems (notably OS X and Solaris) don't report EADDRINUSE // errors right away. libuv mimics that behavior for the sake of platform // consistency but that means we have have a socket on our hands that is diff --git a/test/simple/test-cluster-eaccess.js b/test/simple/test-cluster-eaccess.js new file mode 100644 index 0000000..15da1f2 --- /dev/null +++ b/test/simple/test-cluster-eaccess.js @@ -0,0 +1,59 @@ +// 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 common = require('../common'); +var assert = require('assert'); +var cluster = require('cluster'); +var path = require('path'); +var fs = require('fs'); +var net = require('net'); + +// No win32 support so far +if (process.platform === 'win32') + return; + +var socketPath = path.join(common.fixturesDir, 'socket-path'); + +if (cluster.isMaster) { + cluster.fork(); +} else { + fs.writeFileSync(socketPath, 'some contents'); + + var server = net.createServer().listen(socketPath, function() { + console.log('here'); + }); + + var gotError = 0; + server.on('error', function(err) { + gotError++; + assert(/EADDRINUSE/.test(err.message)); + process.exit(); + }); + + process.on('exit', function() { + try { + fs.unlinkSync(socketPath); + } catch (e) { + } + assert.equal(gotError, 1); + }); +}