|
|
2642b8 |
diff -up ksh-20120801/src/cmd/ksh93/sh/io.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/io.c
|
|
|
2642b8 |
--- ksh-20120801/src/cmd/ksh93/sh/io.c.fdstatus 2013-07-04 18:01:27.187516655 +0200
|
|
|
2642b8 |
+++ ksh-20120801/src/cmd/ksh93/sh/io.c 2013-07-04 18:01:38.249607392 +0200
|
|
|
2642b8 |
@@ -1508,7 +1508,7 @@ int sh_redirect(Shell_t *shp,struct iono
|
|
|
2642b8 |
fn = fd;
|
|
|
2642b8 |
if(fd<10)
|
|
|
2642b8 |
{
|
|
|
2642b8 |
- if((fn=fcntl(fd,F_DUPFD,10)) < 0)
|
|
|
2642b8 |
+ if((fn=sh_fcntl(fd,F_DUPFD,10)) < 0)
|
|
|
2642b8 |
goto fail;
|
|
|
2642b8 |
if(fn>=shp->gd->lim.open_max && !sh_iovalidfd(shp,fn))
|
|
|
2642b8 |
goto fail;
|
|
|
2642b8 |
diff -up ksh-20120801/src/cmd/ksh93/sh/subshell.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/subshell.c
|
|
|
2642b8 |
--- ksh-20120801/src/cmd/ksh93/sh/subshell.c.fdstatus 2012-07-17 23:54:21.000000000 +0200
|
|
|
2642b8 |
+++ ksh-20120801/src/cmd/ksh93/sh/subshell.c 2013-07-04 17:56:20.342000310 +0200
|
|
|
2642b8 |
@@ -122,7 +122,7 @@ void sh_subtmpfile(Shell_t *shp)
|
|
|
2642b8 |
register struct checkpt *pp = (struct checkpt*)shp->jmplist;
|
|
|
2642b8 |
register struct subshell *sp = subshell_data->pipe;
|
|
|
2642b8 |
/* save file descriptor 1 if open */
|
|
|
2642b8 |
- if((sp->tmpfd = fd = fcntl(1,F_DUPFD,10)) >= 0)
|
|
|
2642b8 |
+ if((sp->tmpfd = fd = sh_fcntl(1,F_DUPFD,10)) >= 0)
|
|
|
2642b8 |
{
|
|
|
2642b8 |
fcntl(fd,F_SETFD,FD_CLOEXEC);
|
|
|
2642b8 |
shp->fdstatus[fd] = shp->fdstatus[1]|IOCLEX;
|
|
|
2642b8 |
@@ -554,7 +554,7 @@ Sfio_t *sh_subshell(Shell_t *shp,Shnode_
|
|
|
2642b8 |
sp->pwdfd = n;
|
|
|
2642b8 |
if(n<10)
|
|
|
2642b8 |
{
|
|
|
2642b8 |
- sp->pwdfd = fcntl(n,F_DUPFD,10);
|
|
|
2642b8 |
+ sp->pwdfd = sh_fcntl(n,F_DUPFD,10);
|
|
|
2642b8 |
close(n);
|
|
|
2642b8 |
}
|
|
|
2642b8 |
if(sp->pwdfd>0)
|
|
|
2642b8 |
diff -up ksh-20120801/src/cmd/ksh93/sh/xec.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/xec.c
|
|
|
2642b8 |
--- ksh-20120801/src/cmd/ksh93/sh/xec.c.fdstatus 2012-07-23 16:49:32.000000000 +0200
|
|
|
2642b8 |
+++ ksh-20120801/src/cmd/ksh93/sh/xec.c 2013-07-04 17:57:47.153712116 +0200
|
|
|
2642b8 |
@@ -116,7 +116,7 @@ static int iousepipe(Shell_t *shp)
|
|
|
2642b8 |
return(0);
|
|
|
2642b8 |
usepipe++;
|
|
|
2642b8 |
fcntl(subpipe[0],F_SETFD,FD_CLOEXEC);
|
|
|
2642b8 |
- subpipe[2] = fcntl(1,F_DUPFD,10);
|
|
|
2642b8 |
+ subpipe[2] = sh_fcntl(1,F_DUPFD,10);
|
|
|
2642b8 |
fcntl(subpipe[2],F_SETFD,FD_CLOEXEC);
|
|
|
2642b8 |
shp->fdstatus[subpipe[2]] = shp->fdstatus[1];
|
|
|
2642b8 |
close(1);
|
|
|
2642b8 |
@@ -3622,7 +3622,7 @@ static void coproc_init(Shell_t *shp, in
|
|
|
2642b8 |
sh_pipe(shp->cpipe);
|
|
|
2642b8 |
if((outfd=shp->cpipe[1]) < 10)
|
|
|
2642b8 |
{
|
|
|
2642b8 |
- int fd=fcntl(shp->cpipe[1],F_DUPFD,10);
|
|
|
2642b8 |
+ int fd=sh_fcntl(shp->cpipe[1],F_DUPFD,10);
|
|
|
2642b8 |
if(fd>=10)
|
|
|
2642b8 |
{
|
|
|
2642b8 |
shp->fdstatus[fd] = (shp->fdstatus[outfd]&~IOCLEX);
|