xref: /freebsd/usr.bin/script/script.c (revision 7778ab7e0cc22f0824eb1d1047a7ef8b4785267a)
1 /*
2  * Copyright (c) 1980, 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 #include <sys/cdefs.h>
31 
32 __FBSDID("$FreeBSD$");
33 
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1980, 1992, 1993\n\
37 	The Regents of the University of California.  All rights reserved.\n";
38 #endif
39 
40 #ifndef lint
41 static const char sccsid[] = "@(#)script.c	8.1 (Berkeley) 6/6/93";
42 #endif
43 
44 #include <sys/types.h>
45 #include <sys/wait.h>
46 #include <sys/stat.h>
47 #include <sys/ioctl.h>
48 #include <sys/time.h>
49 
50 #include <err.h>
51 #include <errno.h>
52 #include <fcntl.h>
53 #include <libutil.h>
54 #include <paths.h>
55 #include <signal.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <termios.h>
60 #include <unistd.h>
61 
62 static FILE *fscript;
63 static int master, slave;
64 static int child;
65 static const char *fname;
66 static int qflg, ttyflg;
67 
68 static struct termios tt;
69 
70 static void done(int) __dead2;
71 static void doshell(char **);
72 static void fail(void);
73 static void finish(void);
74 static void usage(void);
75 
76 int
77 main(int argc, char *argv[])
78 {
79 	int cc;
80 	struct termios rtt, stt;
81 	struct winsize win;
82 	int aflg, kflg, ch, n;
83 	struct timeval tv, *tvp;
84 	time_t tvec, start;
85 	char obuf[BUFSIZ];
86 	char ibuf[BUFSIZ];
87 	fd_set rfd;
88 	int flushtime = 30;
89 	int readstdin;
90 
91 	aflg = kflg = 0;
92 	while ((ch = getopt(argc, argv, "aqkt:")) != -1)
93 		switch(ch) {
94 		case 'a':
95 			aflg = 1;
96 			break;
97 		case 'q':
98 			qflg = 1;
99 			break;
100 		case 'k':
101 			kflg = 1;
102 			break;
103 		case 't':
104 			flushtime = atoi(optarg);
105 			if (flushtime < 0)
106 				err(1, "invalid flush time %d", flushtime);
107 			break;
108 		case '?':
109 		default:
110 			usage();
111 		}
112 	argc -= optind;
113 	argv += optind;
114 
115 	if (argc > 0) {
116 		fname = argv[0];
117 		argv++;
118 		argc--;
119 	} else
120 		fname = "typescript";
121 
122 	if ((fscript = fopen(fname, aflg ? "a" : "w")) == NULL)
123 		err(1, "%s", fname);
124 
125 	if ((ttyflg = isatty(STDIN_FILENO)) != 0) {
126 		if (tcgetattr(STDIN_FILENO, &tt) == -1)
127 			err(1, "tcgetattr");
128 		if (ioctl(STDIN_FILENO, TIOCGWINSZ, &win) == -1)
129 			err(1, "ioctl");
130 		if (openpty(&master, &slave, NULL, &tt, &win) == -1)
131 			err(1, "openpty");
132 	} else {
133 		if (openpty(&master, &slave, NULL, NULL, NULL) == -1)
134 			err(1, "openpty");
135 	}
136 
137 	if (!qflg) {
138 		tvec = time(NULL);
139 		(void)printf("Script started, output file is %s\n", fname);
140 		(void)fprintf(fscript, "Script started on %s", ctime(&tvec));
141 		fflush(fscript);
142 	}
143 	if (ttyflg) {
144 		rtt = tt;
145 		cfmakeraw(&rtt);
146 		rtt.c_lflag &= ~ECHO;
147 		(void)tcsetattr(STDIN_FILENO, TCSAFLUSH, &rtt);
148 	}
149 
150 	child = fork();
151 	if (child < 0) {
152 		warn("fork");
153 		done(1);
154 	}
155 	if (child == 0)
156 		doshell(argv);
157 	close(slave);
158 
159 	start = tvec = time(0);
160 	readstdin = 1;
161 	for (;;) {
162 		FD_ZERO(&rfd);
163 		FD_SET(master, &rfd);
164 		if (readstdin)
165 			FD_SET(STDIN_FILENO, &rfd);
166 		if ((!readstdin && ttyflg) || flushtime > 0) {
167 			tv.tv_sec = !readstdin && ttyflg ? 1 :
168 			    flushtime - (tvec - start);
169 			tv.tv_usec = 0;
170 			tvp = &tv;
171 			readstdin = 1;
172 		} else {
173 			tvp = NULL;
174 		}
175 		n = select(master + 1, &rfd, 0, 0, tvp);
176 		if (n < 0 && errno != EINTR)
177 			break;
178 		if (n > 0 && FD_ISSET(STDIN_FILENO, &rfd)) {
179 			cc = read(STDIN_FILENO, ibuf, BUFSIZ);
180 			if (cc < 0)
181 				break;
182 			if (cc == 0) {
183 				if (tcgetattr(master, &stt) == 0 &&
184 				    (stt.c_lflag & ICANON) != 0) {
185 					(void)write(master, &stt.c_cc[VEOF], 1);
186 				}
187 				readstdin = 0;
188 			}
189 			if (cc > 0) {
190 				(void)write(master, ibuf, cc);
191 				if (kflg && tcgetattr(master, &stt) >= 0 &&
192 				    ((stt.c_lflag & ECHO) == 0)) {
193 					(void)fwrite(ibuf, 1, cc, fscript);
194 				}
195 			}
196 		}
197 		if (n > 0 && FD_ISSET(master, &rfd)) {
198 			cc = read(master, obuf, sizeof (obuf));
199 			if (cc <= 0)
200 				break;
201 			(void)write(STDOUT_FILENO, obuf, cc);
202 			(void)fwrite(obuf, 1, cc, fscript);
203 		}
204 		tvec = time(0);
205 		if (tvec - start >= flushtime) {
206 			fflush(fscript);
207 			start = tvec;
208 		}
209 	}
210 	finish();
211 	done(0);
212 }
213 
214 static void
215 usage(void)
216 {
217 	(void)fprintf(stderr,
218 	    "usage: script [-akq] [-t time] [file [command ...]]\n");
219 	exit(1);
220 }
221 
222 static void
223 finish(void)
224 {
225 	int e, status;
226 
227 	if (waitpid(child, &status, 0) == child) {
228 		if (WIFEXITED(status))
229 			e = WEXITSTATUS(status);
230 		else if (WIFSIGNALED(status))
231 			e = WTERMSIG(status);
232 		else /* can't happen */
233 			e = 1;
234 		done(e);
235 	}
236 }
237 
238 static void
239 doshell(char **av)
240 {
241 	const char *shell;
242 	int k;
243 
244 	shell = getenv("SHELL");
245 	if (shell == NULL)
246 		shell = _PATH_BSHELL;
247 
248 	if (av[0])
249 		for (k = 0 ; av[k] ; ++k)
250 			fprintf(fscript, "%s%s", k ? " " : "", av[k]);
251 		fprintf(fscript, "\r\n");
252 
253 	(void)close(master);
254 	(void)fclose(fscript);
255 	login_tty(slave);
256 	setenv("SCRIPT", fname, 1);
257 	if (av[0]) {
258 		execvp(av[0], av);
259 		warn("%s", av[0]);
260 	} else {
261 		execl(shell, shell, "-i", (char *)NULL);
262 		warn("%s", shell);
263 	}
264 	fail();
265 }
266 
267 static void
268 fail(void)
269 {
270 	(void)kill(0, SIGTERM);
271 	done(1);
272 }
273 
274 static void
275 done(int eno)
276 {
277 	time_t tvec;
278 
279 	if (ttyflg)
280 		(void)tcsetattr(STDIN_FILENO, TCSAFLUSH, &tt);
281 	tvec = time(NULL);
282 	if (!qflg) {
283 		(void)fprintf(fscript,"\nScript done on %s", ctime(&tvec));
284 		(void)printf("\nScript done, output file is %s\n", fname);
285 	}
286 	(void)fclose(fscript);
287 	(void)close(master);
288 	exit(eno);
289 }
290