summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorferrieux <ferrieux@users.sourceforge.net>2008-12-12 16:07:17 (GMT)
committerferrieux <ferrieux@users.sourceforge.net>2008-12-12 16:07:17 (GMT)
commit93b82f20898aee2279608c81083e429192114e7a (patch)
tree30fb8730c825bdf2fb1362e6bcad9fae1974934b /unix
parent6ebb11823238d9bf5e8b20524bacc6c72450693f (diff)
downloadtcl-93b82f20898aee2279608c81083e429192114e7a.zip
tcl-93b82f20898aee2279608c81083e429192114e7a.tar.gz
tcl-93b82f20898aee2279608c81083e429192114e7a.tar.bz2
Fix missing CLOEXEC on internal pipes [2417695] and [chan pipe] fds.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixNotfy.c8
-rw-r--r--unix/tclUnixPipe.c5
2 files changed, 11 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index eae0ee9..434ae84 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixNotfy.c,v 1.37 2008/10/26 12:45:04 dkf Exp $
+ * RCS: @(#) $Id: tclUnixNotfy.c,v 1.38 2008/12/12 16:07:18 ferrieux Exp $
*/
#include "tclInt.h"
@@ -937,6 +937,12 @@ NotifierThreadProc(
if (TclUnixSetBlockingMode(fds[1], TCL_MODE_NONBLOCKING) < 0) {
Tcl_Panic("NotifierThreadProc: could not make trigger pipe non blocking");
}
+ if (fcntl(receivePipe, F_SETFD, FD_CLOEXEC) < 0) {
+ Tcl_Panic("NotifierThreadProc: could not make receive pipe close-on-exec");
+ }
+ if (fcntl(fds[1], F_SETFD, FD_CLOEXEC) < 0) {
+ Tcl_Panic("NotifierThreadProc: could not make trigger pipe close-on-exec");
+ }
/*
* Install the write end of the pipe into the global variable.
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index a243889..967d633 100644
--- a/unix/tclUnixPipe.c
+++ b/unix/tclUnixPipe.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixPipe.c,v 1.44 2008/07/21 21:46:47 das Exp $
+ * RCS: @(#) $Id: tclUnixPipe.c,v 1.45 2008/12/12 16:07:18 ferrieux Exp $
*/
#include "tclInt.h"
@@ -798,6 +798,9 @@ Tcl_CreatePipe(
return TCL_ERROR;
}
+ fcntl(fileNums[0], F_SETFD, FD_CLOEXEC);
+ fcntl(fileNums[1], F_SETFD, FD_CLOEXEC);
+
*rchan = Tcl_MakeFileChannel((ClientData) INT2PTR(fileNums[0]),
TCL_READABLE);
Tcl_RegisterChannel(interp, *rchan);