2 * support for the Lisp function RUN-PROGRAM and friends
6 * This software is part of the SBCL system. See the README file for
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.
18 #include <sys/types.h>
22 #include <sys/ioctl.h>
25 #include <sys/ioctl.h>
29 /* borrowed from detachtty's detachtty.c, in turn borrowed from APUE
30 * example code found at
31 * http://www.yendor.com/programming/unix/apue/pty/main.c
37 int set_noecho(int fd)
39 struct termios stermios;
41 if (tcgetattr(fd, &stermios) < 0) return 0;
43 stermios.c_lflag &= ~( ECHO | /* ECHOE | ECHOK | */ ECHONL);
44 stermios.c_oflag |= (ONLCR);
45 stermios.c_iflag &= ~(BRKINT);
46 stermios.c_iflag |= (ICANON|ICRNL);
48 stermios.c_cc[VERASE]=0177;
49 if (tcsetattr(fd, TCSANOW, &stermios) < 0) return 0;
53 int spawn(char *program, char *argv[], char *envp[], char *pty_name,
54 int stdin, int stdout, int stderr)
63 /* Put us in our own process group. */
66 #elif defined(SVR4) || defined(__linux__) || defined(__osf__)
74 sigprocmask(SIG_SETMASK, &sset, NULL);
76 /* If we are supposed to be part of some other pty, go for it. */
78 #if !defined(hpux) && !defined(SVR4)
79 fd = open("/dev/tty", O_RDWR, 0);
81 ioctl(fd, TIOCNOTTY, 0);
85 fd = open(pty_name, O_RDWR, 0);
92 /* Set up stdin, stdout, and stderr */
100 /* Close all other fds. */
102 for (fd = sysconf(_SC_OPEN_MAX)-1; fd >= 3; fd--)
105 for (fd = getdtablesize()-1; fd >= 3; fd--)
109 /* Exec the program. */
110 execve(program, argv, envp);
112 /* It didn't work, so try /bin/sh. */
115 execve("/bin/sh", argv-1, envp);
117 /* The exec didn't work, flame out. */