blob: 26f16ebf5bacac11e7b613421f21a17e692db588 [file] [log] [blame]
Denis Vlasenko5014dad2008-02-27 11:54:59 +00001/* vi: set sw=4 ts=4: */
2/*
3 * script implementation for busybox
4 *
5 * pascal.bellard@ads-lu.com
6 *
7 * Based on code from util-linux v 2.12r
8 * Copyright (c) 1980
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02009 * The Regents of the University of California. All rights reserved.
Denis Vlasenko5014dad2008-02-27 11:54:59 +000010 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020011 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenko5014dad2008-02-27 11:54:59 +000012 */
Pere Orga5bc8c002011-04-11 03:29:49 +020013
14//usage:#define script_trivial_usage
15//usage: "[-afq" IF_SCRIPTREPLAY("t") "] [-c PROG] [OUTFILE]"
16//usage:#define script_full_usage "\n\n"
17//usage: "Options:"
18//usage: "\n -a Append output"
19//usage: "\n -c PROG Run PROG, not shell"
20//usage: "\n -f Flush output after each write"
21//usage: "\n -q Quiet"
22//usage: IF_SCRIPTREPLAY(
23//usage: "\n -t Send timing to stderr"
24//usage: )
25
Denis Vlasenko5014dad2008-02-27 11:54:59 +000026#include "libbb.h"
27
Denis Vlasenko68404f12008-03-17 09:00:54 +000028int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000029int script_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko5014dad2008-02-27 11:54:59 +000030{
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000031 int opt;
Denis Vlasenko5014dad2008-02-27 11:54:59 +000032 int mode;
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000033 int child_pid;
34 int attr_ok; /* NB: 0: ok */
35 int winsz_ok;
36 int pty;
Denis Vlasenko85c24712008-03-17 09:04:04 +000037 char pty_line[GETPTY_BUFSIZE];
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000038 struct termios tt, rtt;
Denis Vlasenko5014dad2008-02-27 11:54:59 +000039 struct winsize win;
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000040 const char *fname = "typescript";
Denis Vlasenko5014dad2008-02-27 11:54:59 +000041 const char *shell;
42 char shell_opt[] = "-i";
43 char *shell_arg = NULL;
Denys Vlasenko5e611152009-05-19 17:36:16 +020044 enum {
45 OPT_a = (1 << 0),
46 OPT_c = (1 << 1),
47 OPT_f = (1 << 2),
48 OPT_q = (1 << 3),
Denys Vlasenko5e611152009-05-19 17:36:16 +020049 OPT_t = (1 << 4),
Denys Vlasenko5e611152009-05-19 17:36:16 +020050 };
Denis Vlasenko5014dad2008-02-27 11:54:59 +000051
Denys Vlasenkof3b92d32009-06-19 12:10:38 +020052#if ENABLE_LONG_OPTS
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000053 static const char getopt_longopts[] ALIGN1 =
54 "append\0" No_argument "a"
55 "command\0" Required_argument "c"
56 "flush\0" No_argument "f"
57 "quiet\0" No_argument "q"
Denys Vlasenko2634bf32009-06-09 18:40:07 +020058 IF_SCRIPTREPLAY("timing\0" No_argument "t")
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000059 ;
60
Denys Vlasenko2634bf32009-06-09 18:40:07 +020061 applet_long_options = getopt_longopts;
62#endif
Denys Vlasenko53f17912009-06-05 14:55:26 +020063
Denis Vlasenko5014dad2008-02-27 11:54:59 +000064 opt_complementary = "?1"; /* max one arg */
Denys Vlasenko5e611152009-05-19 17:36:16 +020065 opt = getopt32(argv, "ac:fq" IF_SCRIPTREPLAY("t") , &shell_arg);
Denis Vlasenko5014dad2008-02-27 11:54:59 +000066 //argc -= optind;
67 argv += optind;
68 if (argv[0]) {
69 fname = argv[0];
70 }
71 mode = O_CREAT|O_TRUNC|O_WRONLY;
Denys Vlasenko5e611152009-05-19 17:36:16 +020072 if (opt & OPT_a) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000073 mode = O_CREAT|O_APPEND|O_WRONLY;
74 }
Denys Vlasenko5e611152009-05-19 17:36:16 +020075 if (opt & OPT_c) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000076 shell_opt[1] = 'c';
77 }
Denys Vlasenko5e611152009-05-19 17:36:16 +020078 if (!(opt & OPT_q)) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000079 printf("Script started, file is %s\n", fname);
80 }
Denys Vlasenko681efe22011-03-08 21:00:36 +010081 shell = get_shell_name();
Denis Vlasenko5014dad2008-02-27 11:54:59 +000082
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000083 pty = xgetpty(pty_line);
Denis Vlasenko5014dad2008-02-27 11:54:59 +000084
85 /* get current stdin's tty params */
86 attr_ok = tcgetattr(0, &tt);
87 winsz_ok = ioctl(0, TIOCGWINSZ, (char *)&win);
88
89 rtt = tt;
90 cfmakeraw(&rtt);
91 rtt.c_lflag &= ~ECHO;
92 tcsetattr(0, TCSAFLUSH, &rtt);
93
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000094 /* "script" from util-linux exits when child exits,
95 * we wouldn't wait for EOF from slave pty
96 * (output may be produced by grandchildren of child) */
Denys Vlasenko5e611152009-05-19 17:36:16 +020097 signal(SIGCHLD, record_signo);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000098
99 /* TODO: SIGWINCH? pass window size changes down to slave? */
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000100
Pascal Bellard926031b2010-07-04 15:32:38 +0200101 child_pid = xvfork();
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000102
103 if (child_pid) {
104 /* parent */
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000105#define buf bb_common_bufsiz1
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000106 struct pollfd pfd[2];
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000107 int outfd, count, loop;
Denys Vlasenko53f17912009-06-05 14:55:26 +0200108 double oldtime = ENABLE_SCRIPTREPLAY ? time(NULL) : 0;
Denys Vlasenko5e611152009-05-19 17:36:16 +0200109 smallint fd_count = 2;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000110
111 outfd = xopen(fname, mode);
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000112 pfd[0].fd = pty;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000113 pfd[0].events = POLLIN;
Denys Vlasenko5e611152009-05-19 17:36:16 +0200114 pfd[1].fd = STDIN_FILENO;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000115 pfd[1].events = POLLIN;
116 ndelay_on(pty); /* this descriptor is not shared, can do this */
Denys Vlasenko5e611152009-05-19 17:36:16 +0200117 /* ndelay_on(STDIN_FILENO); - NO, stdin can be shared! Pity :( */
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000118
119 /* copy stdin to pty master input,
120 * copy pty master output to stdout and file */
121 /* TODO: don't use full_write's, use proper write buffering */
Denys Vlasenko5e611152009-05-19 17:36:16 +0200122 while (fd_count && !bb_got_signal) {
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000123 /* not safe_poll! we want SIGCHLD to EINTR poll */
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000124 if (poll(pfd, fd_count, -1) < 0 && errno != EINTR) {
Denis Vlasenko9dedf722008-04-01 16:12:17 +0000125 /* If child exits too quickly, we may get EIO:
126 * for example, try "script -c true" */
127 break;
128 }
Denys Vlasenko88aa5582010-03-02 15:02:45 +0100129 if (pfd[0].revents) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000130 errno = 0;
131 count = safe_read(pty, buf, sizeof(buf));
132 if (count <= 0 && errno != EAGAIN) {
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000133 /* err/eof from pty: exit */
134 goto restore;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000135 }
136 if (count > 0) {
Denys Vlasenko53f17912009-06-05 14:55:26 +0200137 if (ENABLE_SCRIPTREPLAY && (opt & OPT_t)) {
Denys Vlasenko5e611152009-05-19 17:36:16 +0200138 struct timeval tv;
139 double newtime;
140
141 gettimeofday(&tv, NULL);
142 newtime = tv.tv_sec + (double) tv.tv_usec / 1000000;
143 fprintf(stderr, "%f %u\n", newtime - oldtime, count);
144 oldtime = newtime;
145 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000146 full_write(STDOUT_FILENO, buf, count);
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000147 full_write(outfd, buf, count);
Denys Vlasenko5e611152009-05-19 17:36:16 +0200148 if (opt & OPT_f) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000149 fsync(outfd);
150 }
151 }
152 }
Denys Vlasenko88aa5582010-03-02 15:02:45 +0100153 if (pfd[1].revents) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000154 count = safe_read(STDIN_FILENO, buf, sizeof(buf));
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000155 if (count <= 0) {
156 /* err/eof from stdin: don't read stdin anymore */
157 pfd[1].revents = 0;
158 fd_count--;
159 } else {
160 full_write(pty, buf, count);
161 }
162 }
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000163 }
Denys Vlasenko5e611152009-05-19 17:36:16 +0200164 /* If loop was exited because SIGCHLD handler set bb_got_signal,
165 * there still can be some buffered output. But dont loop forever:
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000166 * we won't pump orphaned grandchildren's output indefinitely.
167 * Testcase: running this in script:
168 * exec dd if=/dev/zero bs=1M count=1
169 * must have "1+0 records in, 1+0 records out" captured too.
170 * (util-linux's script doesn't do this. buggy :) */
171 loop = 999;
172 /* pty is in O_NONBLOCK mode, we exit as soon as buffer is empty */
173 while (--loop && (count = safe_read(pty, buf, sizeof(buf))) > 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000174 full_write(STDOUT_FILENO, buf, count);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000175 full_write(outfd, buf, count);
176 }
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000177 restore:
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000178 if (attr_ok == 0)
179 tcsetattr(0, TCSAFLUSH, &tt);
Denys Vlasenko5e611152009-05-19 17:36:16 +0200180 if (!(opt & OPT_q))
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000181 printf("Script done, file is %s\n", fname);
182 return EXIT_SUCCESS;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000183 }
184
185 /* child: make pty slave to be input, output, error; run shell */
186 close(pty); /* close pty master */
187 /* open pty slave to fd 0,1,2 */
Denis Vlasenko42cc3042008-03-24 02:05:58 +0000188 close(0);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000189 xopen(pty_line, O_RDWR); /* uses fd 0 */
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000190 xdup2(0, 1);
191 xdup2(0, 2);
192 /* copy our original stdin tty's parameters to pty */
193 if (attr_ok == 0)
194 tcsetattr(0, TCSAFLUSH, &tt);
195 if (winsz_ok == 0)
196 ioctl(0, TIOCSWINSZ, (char *)&win);
197 /* set pty as a controlling tty */
198 setsid();
199 ioctl(0, TIOCSCTTY, 0 /* 0: don't forcibly steal */);
200
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000201 /* Non-ignored signals revert to SIG_DFL on exec anyway */
202 /*signal(SIGCHLD, SIG_DFL);*/
Denis Vlasenkof09f4e02009-02-26 12:29:59 +0000203 execl(shell, shell, shell_opt, shell_arg, (char *) NULL);
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000204 bb_simple_perror_msg_and_die(shell);
205}