From fc26fd6b388796a09767bf698ddda5b5ff7c9e96 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Thu, 23 Jan 2014 13:35:18 +0400 Subject: [PATCH] node: do not ever close stdio Even if stdio streams are opened as file streams, we should not ever try to close them. This could be accomplished by passing `autoClose: false` in options on their creation. --- lib/fs.js | 9 ++++++-- src/node.js | 4 ++-- test/fixtures/echo-close-check.js | 41 +++++++++++++++++++++++++++++++++++++ test/simple/test-stdin-from-file.js | 2 +- 4 files changed, 51 insertions(+), 5 deletions(-) create mode 100644 test/fixtures/echo-close-check.js diff --git a/lib/fs.js b/lib/fs.js index b5683e5..70e9cf2 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -1668,12 +1668,16 @@ WriteStream.prototype.destroySoon = WriteStream.prototype.end; // SyncWriteStream is internal. DO NOT USE. // Temporary hack for process.stdout and process.stderr when piped to files. -function SyncWriteStream(fd) { +function SyncWriteStream(fd, options) { Stream.call(this); + options = options || {}; + this.fd = fd; this.writable = true; this.readable = false; + this.autoClose = options.hasOwnProperty('autoClose') ? + options.autoClose : true; } util.inherits(SyncWriteStream, Stream); @@ -1723,7 +1727,8 @@ SyncWriteStream.prototype.end = function(data, arg1, arg2) { SyncWriteStream.prototype.destroy = function() { - fs.closeSync(this.fd); + if (this.autoClose) + fs.closeSync(this.fd); this.fd = null; this.emit('close'); return true; diff --git a/src/node.js b/src/node.js index 36e712c..0b598c6 100644 --- a/src/node.js +++ b/src/node.js @@ -771,7 +771,7 @@ case 'FILE': var fs = NativeModule.require('fs'); - stream = new fs.SyncWriteStream(fd); + stream = new fs.SyncWriteStream(fd, { autoClose: false }); stream._type = 'fs'; break; @@ -858,7 +858,7 @@ case 'FILE': var fs = NativeModule.require('fs'); - stdin = new fs.ReadStream(null, { fd: fd }); + stdin = new fs.ReadStream(null, { fd: fd, autoClose: false }); break; case 'PIPE': diff --git a/test/fixtures/echo-close-check.js b/test/fixtures/echo-close-check.js new file mode 100644 index 0000000..1681553 --- /dev/null +++ b/test/fixtures/echo-close-check.js @@ -0,0 +1,41 @@ +// 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 net = require('net'); + +process.stdout.write('hello world\r\n'); + +var stdin = process.openStdin(); + +stdin.on('data', function(data) { + process.stdout.write(data.toString()); +}); + +stdin.on('end', function() { + // If stdin's fd will be closed - createServer may get it + var server = net.createServer(function() { + }).listen(common.PORT, function() { + assert(typeof server._handle.fd !== 'number' || server._handle.fd > 2); + server.close(); + }); +}); diff --git a/test/simple/test-stdin-from-file.js b/test/simple/test-stdin-from-file.js index 9c2ddfd..617b903 100644 --- a/test/simple/test-stdin-from-file.js +++ b/test/simple/test-stdin-from-file.js @@ -28,7 +28,7 @@ var join = require('path').join; var childProccess = require('child_process'); var fs = require('fs'); -var stdoutScript = join(common.fixturesDir, 'echo.js'); +var stdoutScript = join(common.fixturesDir, 'echo-close-check.js'); var tmpFile = join(common.fixturesDir, 'stdin.txt'); var cmd = '"' + process.argv[0] + '" "' + stdoutScript + '" < "' + -- 2.7.4