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