0.9.13.42:
[sbcl.git] / src / runtime / run-program.c
1 /*
2  * support for the Lisp function RUN-PROGRAM and friends
3  */
4
5 /*
6  * This software is part of the SBCL system. See the README file for
7  * more information.
8  *
9  * This software is derived from the CMU CL system, which was
10  * written at Carnegie Mellon University and released into the
11  * public domain. The software is in the public domain and is
12  * provided with absolutely no warranty. See the COPYING and CREDITS
13  * files for more information.
14  */
15
16 #include "sbcl.h"
17
18 #ifndef LISP_FEATURE_WIN32
19
20 #include <stdlib.h>
21 #include <sys/file.h>
22 #include <sys/types.h>
23 #include <signal.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <sys/ioctl.h>
27 #include <unistd.h>
28
29 #include <sys/ioctl.h>
30 #include <termios.h>
31
32
33 /* borrowed from detachtty's detachtty.c, in turn borrowed from APUE
34  * example code found at
35  * http://www.yendor.com/programming/unix/apue/pty/main.c
36
37 -brkint
38
39  */
40
41 int set_noecho(int fd)
42 {
43     struct termios  stermios;
44
45     if (tcgetattr(fd, &stermios) < 0) return 0;
46
47     stermios.c_lflag &= ~(  ECHO | /* ECHOE |  ECHOK | */  ECHONL);
48     stermios.c_oflag |= (ONLCR);
49     stermios.c_iflag &= ~(BRKINT);
50     stermios.c_iflag |= (ICANON|ICRNL);
51
52     stermios.c_cc[VERASE]=0177;
53     if (tcsetattr(fd, TCSANOW, &stermios) < 0) return 0;
54     return 1;
55 }
56
57 int spawn(char *program, char *argv[], char *envp[], char *pty_name,
58           int stdin, int stdout, int stderr)
59 {
60     int pid = fork();
61     int fd;
62     sigset_t sset;
63
64     if (pid != 0)
65         return pid;
66
67     /* Put us in our own process group. */
68 #if defined(hpux)
69     setsid();
70 #elif defined(SVR4) || defined(__linux__) || defined(__osf__)
71     setpgrp();
72 #else
73     setpgrp(0, getpid());
74 #endif
75
76     /* unblock signals */
77     sigemptyset(&sset);
78     sigprocmask(SIG_SETMASK, &sset, NULL);
79
80     /* If we are supposed to be part of some other pty, go for it. */
81     if (pty_name) {
82 #if !defined(hpux) && !defined(SVR4)
83         fd = open("/dev/tty", O_RDWR, 0);
84         if (fd >= 0) {
85             ioctl(fd, TIOCNOTTY, 0);
86             close(fd);
87         }
88 #endif
89         fd = open(pty_name, O_RDWR, 0);
90         dup2(fd, 0);
91         set_noecho(0);
92         dup2(fd, 1);
93         dup2(fd, 2);
94         close(fd);
95     } else{
96     /* Set up stdin, stdout, and stderr */
97     if (stdin >= 0)
98         dup2(stdin, 0);
99     if (stdout >= 0)
100         dup2(stdout, 1);
101     if (stderr >= 0)
102         dup2(stderr, 2);
103     }
104     /* Close all other fds. */
105 #ifdef SVR4
106     for (fd = sysconf(_SC_OPEN_MAX)-1; fd >= 3; fd--)
107         close(fd);
108 #else
109     for (fd = getdtablesize()-1; fd >= 3; fd--)
110         close(fd);
111 #endif
112
113     /* Exec the program. */
114     execve(program, argv, envp);
115
116     /* It didn't work, so try /bin/sh. */
117     argv[0] = program;
118     argv[-1] = "sh";
119     execve("/bin/sh", argv-1, envp);
120
121     /* The exec didn't work, flame out. */
122     exit(1);
123 }
124 #else  /* !LISP_FEATURE_WIN32 */
125
126 #  include <windows.h>
127 #  include <process.h>
128 #  include <stdio.h>
129 #  include <stdlib.h>
130 #  include <fcntl.h>
131 #  include <io.h>
132
133 #define   READ_HANDLE  0
134 #define   WRITE_HANDLE 1
135
136 /* These functions do not attempt to deal with wchar_t variations. */
137
138 /* Get the value of _environ maintained by MSVCRT */
139 char **msvcrt_environ ( void ) {
140     return ( _environ );
141 }
142
143 /* Set up in, out, err pipes and spawn a program, waiting or otherwise. */
144 HANDLE spawn (
145     const char *program,
146     const char *const *argv,
147     int in,
148     int out,
149     int err,
150     int wait
151     )
152 {
153     int fdOut, fdIn, fdErr, fdInPipe[2], fdOutPipe[2], fdErrPipe[2], wait_mode;
154     HANDLE hProcess;
155
156     /* Make pipes to be passed to the spawned process as in/out/err */
157     if ( _pipe ( fdOutPipe, 512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1;
158     if ( _pipe ( fdInPipe,  512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1;
159     if ( _pipe ( fdErrPipe, 512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1;
160
161     /* Duplicate and save original in/out/err handles */
162     fdOut = _dup ( out );
163     fdIn  = _dup ( in );
164     fdErr = _dup ( err );
165
166     /* Duplicate write end of new pipes to current out/err handles,
167      * read to in */
168     if ( _dup2 ( fdOutPipe[WRITE_HANDLE], out ) != 0 ) return (HANDLE)-1;
169     if ( _dup2 ( fdInPipe[READ_HANDLE],   in  ) != 0 ) return (HANDLE)-1;
170     if ( _dup2 ( fdErrPipe[WRITE_HANDLE], err ) != 0 ) return (HANDLE)-1;
171
172
173     /* Close the duplicated handles to the new pipes */
174     close ( fdOutPipe[WRITE_HANDLE] );
175     close ( fdInPipe[READ_HANDLE] );
176     close ( fdErrPipe[WRITE_HANDLE] );
177
178     /* Set the wait mode. */
179     if ( 0 == wait ) {
180         wait_mode = P_NOWAIT;
181     } else {
182         wait_mode = P_WAIT;
183     }
184
185     /* Spawn process given on the command line*/
186     hProcess = (HANDLE) spawnvp ( wait_mode, program, argv );
187
188     /* Now that the process is launched, replace the original
189      * in/out/err handles */
190     if ( _dup2 ( fdOut, out ) != 0 ) return (HANDLE)-1;
191     if ( _dup2 ( fdIn,  in )  != 0 ) return (HANDLE)-1;
192     if ( _dup2 ( fdErr, err ) != 0 ) return (HANDLE)-1;
193
194     /* Close duplicates */
195     close(fdOut);
196     close(fdIn);
197     close(fdErr);
198
199     return ( hProcess );
200 }
201
202
203 #endif /* !LISP_FEATURE_WIN32 */