2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. 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.
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
29 * @(#) Copyright (c) 1980, 1992, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)script.c 8.1 (Berkeley) 6/6/93
31 * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/usr.bin/script/script.c,v 1.11.2.2 2004/03/13 09:21:00 cperciva Exp $
34 #include <sys/types.h>
37 #include <sys/ioctl.h>
53 static int master
, slave
;
54 static const char *fname
;
55 static int qflg
, ttyflg
;
59 static void done(int) __dead2
;
60 static void doshell(char **);
61 static int reap(pid_t
);
62 static void usage(void);
65 main(int argc
, char **argv
)
68 struct termios rtt
, stt
;
70 int aflg
, kflg
, ch
, n
;
71 struct timeval tv
, *tvp
;
80 while ((ch
= getopt(argc
, argv
, "aqkt:")) != -1) {
92 flushtime
= atoi(optarg
);
94 errx(1, "invalid flush time %d", flushtime
);
109 fname
= "typescript";
111 if ((fscript
= fopen(fname
, aflg
? "a" : "w")) == NULL
)
114 if ((ttyflg
= isatty(STDIN_FILENO
)) != 0) {
115 if (tcgetattr(STDIN_FILENO
, &tt
) == -1)
117 if (ioctl(STDIN_FILENO
, TIOCGWINSZ
, &win
) == -1)
119 if (openpty(&master
, &slave
, NULL
, &tt
, &win
) == -1)
122 if (openpty(&master
, &slave
, NULL
, NULL
, NULL
) == -1)
128 printf("Script started, output file is %s\n", fname
);
129 fprintf(fscript
, "Script started on %s", ctime(&tvec
));
136 rtt
.c_lflag
&= ~ECHO
;
137 tcsetattr(STDIN_FILENO
, TCSAFLUSH
, &rtt
);
157 FD_SET(master
, &rfd
);
158 FD_SET(STDIN_FILENO
, &rfd
);
160 tv
.tv_sec
= flushtime
;
163 n
= select(master
+ 1, &rfd
, 0, 0, tvp
);
164 if (n
< 0 && errno
!= EINTR
)
166 if (n
> 0 && FD_ISSET(STDIN_FILENO
, &rfd
)) {
167 cc
= read(STDIN_FILENO
, ibuf
, sizeof(ibuf
));
171 write(master
, ibuf
, 0);
173 write(master
, ibuf
, cc
);
174 if (kflg
&& tcgetattr(master
, &stt
) >= 0 &&
175 ((stt
.c_lflag
& ECHO
) == 0)) {
176 fwrite(ibuf
, 1, cc
, fscript
);
180 if (n
> 0 && FD_ISSET(master
, &rfd
)) {
181 cc
= read(master
, obuf
, sizeof(obuf
));
184 write(STDOUT_FILENO
, obuf
, cc
);
185 fwrite(obuf
, 1, cc
, fscript
);
188 if (tvec
- start
>= flushtime
) {
200 "usage: script [-a] [-q] [-k] [-t time] [file] [command]\n");
212 while ((pid
= wait3(&status
, WNOHANG
, NULL
)) > 0) {
214 if (WIFEXITED(status
))
215 e
= WEXITSTATUS(status
);
216 else if (WIFSIGNALED(status
))
217 e
= WTERMSIG(status
);
218 else /* can't happen */
231 shell
= getenv("SHELL");
233 shell
= _PATH_BSHELL
;
242 execl(shell
, shell
, "-i", NULL
);
255 tcsetattr(STDIN_FILENO
, TCSAFLUSH
, &tt
);
258 fprintf(fscript
,"\nScript done on %s", ctime(&tvec
));
259 printf("\nScript done, output file is '%s'\n", fname
);