--- ray/src/common/unix_process.c 2004/09/17 21:43:49 3.5 +++ ray/src/common/unix_process.c 2012/06/14 05:13:25 3.10 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: unix_process.c,v 3.5 2004/09/17 21:43:49 greg Exp $"; +static const char RCSid[] = "$Id: unix_process.c,v 3.10 2012/06/14 05:13:25 greg Exp $"; #endif /* * Routines to communicate with separate process via dual pipes @@ -12,8 +12,11 @@ static const char RCSid[] = "$Id: unix_process.c,v 3.5 #include #include +#include +#include #include "rtprocess.h" +#include "rtio.h" int @@ -22,18 +25,18 @@ SUBPROC *pd, char *av[] ) { - extern char *getpath(), *getenv(); char *compath; int p0[2], p1[2]; - pd->running = 0; /* not yet */ - /* find executable */ - compath = getpath(av[0], getenv("PATH"), 1); - if (compath == 0) + pd->running = 0; /* not going yet */ + + if (av == NULL) /* cloning operation? */ + compath = NULL; + else if ((compath = getpath(av[0], getenv("PATH"), X_OK)) == NULL) return(0); if (pipe(p0) < 0 || pipe(p1) < 0) return(-1); - if ((pd->pid = fork()) == 0) { /* if child */ + if ((pd->pid = fork()) == 0) { /* if child... */ close(p0[1]); close(p1[0]); if (p0[0] != 0) { /* connect p0 to stdin */ @@ -44,7 +47,9 @@ char *av[] dup2(p1[1], 1); close(p1[1]); } - execv(compath, av); /* exec command */ + if (compath == NULL) /* just cloning? */ + return(0); + execv(compath, av); /* else exec command */ perror(compath); _exit(127); } @@ -54,6 +59,13 @@ char *av[] close(p1[1]); pd->r = p1[0]; pd->w = p0[1]; + /* + * Close write stream on exec to avoid multiprocessing deadlock. + * No use in read stream without it, so set flag there as well. + * GW: This bug took me two days to figure out!! + */ + fcntl(pd->r, F_SETFD, FD_CLOEXEC); + fcntl(pd->w, F_SETFD, FD_CLOEXEC); pd->running = 1; return(PIPE_BUF); } @@ -65,15 +77,16 @@ close_process( /* close pipes and wait for process */ SUBPROC *pd ) { - int pid, status; + int status; if (!pd->running) return(0); - close(pd->r); close(pd->w); + close(pd->r); pd->running = 0; if (waitpid(pd->pid, &status, 0) == pd->pid) return(status>>8 & 0xff); + return(-1); /* ? unknown status */ }