X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Frun-program.c;h=57df79a5969e1eb0e84a14c99f37cfd518cc6693;hb=7f1e94ae961a198e00daf281eb1dc858e5b2dcc7;hp=00692b707ec6ff88e70cea3006f61f6016b65b83;hpb=d3ff5f451a5eb5730fb175e48b01235198aa7d58;p=sbcl.git diff --git a/src/runtime/run-program.c b/src/runtime/run-program.c index 00692b7..57df79a 100644 --- a/src/runtime/run-program.c +++ b/src/runtime/run-program.c @@ -25,7 +25,7 @@ #include #include #include - +#include #include #include #include @@ -100,12 +100,13 @@ set_pty(char *pty_name) extern char **environ; int spawn(char *program, char *argv[], int sin, int sout, int serr, - int search, char *envp[], char *pty_name, int wait) + int search, char *envp[], char *pty_name, int wait, char *pwd) { pid_t pid; int fd; int channel[2]; sigset_t sset; + int failure_code = 2; channel[0] = -1; channel[1] = -1; @@ -140,10 +141,14 @@ int spawn(char *program, char *argv[], int sin, int sout, int serr, } close(channel[0]); if (child_errno) { - waitpid(pid, NULL, 0); - /* Our convention to tell Lisp that it was the exec that - * failed, not the fork. */ - pid = -2; + int status; + waitpid(pid, &status, 0); + /* Our convention to tell Lisp that it was the exec or + chdir that failed, not the fork. */ + /* FIXME: there are other values waitpid(2) can return. */ + if (WIFEXITED(status)) { + pid = -WEXITSTATUS(status); + } errno = child_errno; } } @@ -193,14 +198,20 @@ int spawn(char *program, char *argv[], int sin, int sout, int serr, if (fd != channel[1]) close(fd); #endif - environ = envp; - /* Exec the program. */ - if (search) - execvp(program, argv); - else - execv(program, argv); + if (pwd && chdir(pwd) < 0) { + failure_code = 3; + } else { + if (envp) { + environ = envp; + } + /* Exec the program. */ + if (search) + execvp(program, argv); + else + execv(program, argv); + } - /* When exec fails and channel is available, send the errno value. */ + /* When exec or chdir fails and channel is available, send the errno value. */ if (-1 != channel[1]) { int our_errno = errno; int bytes = sizeof(int); @@ -221,7 +232,7 @@ int spawn(char *program, char *argv[], int sin, int sout, int serr, } close(channel[1]); } - _exit(1); + _exit(failure_code); } #else /* !LISP_FEATURE_WIN32 */ @@ -252,7 +263,8 @@ HANDLE spawn ( int search, char *envp, char *ptyname, - int wait + int wait, + char *pwd ) { int stdout_backup, stdin_backup, stderr_backup, wait_mode; @@ -289,11 +301,18 @@ HANDLE spawn ( wait_mode = P_WAIT; } + /* Change working directory if supplied. */ + if (pwd) { + if (chdir(pwd) < 0) { + goto error_exit; + } + } + /* Spawn process given on the command line*/ if (search) - hProcess = (HANDLE) spawnvp ( wait_mode, program, argv ); + hProcess = (HANDLE) spawnvp ( wait_mode, program, (char* const* )argv ); else - hProcess = (HANDLE) spawnv ( wait_mode, program, argv ); + hProcess = (HANDLE) spawnv ( wait_mode, program, (char* const* )argv ); /* Now that the process is launched, replace the original * in/out/err handles and close the backups. */