blob: 0860bb08332eb57d02b4c7fdbf9a77b1e1882cb4 [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
9 * The Regents of the University of California. All rights reserved.
10 *
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 */
Denis Vlasenko5014dad2008-02-27 11:54:59 +000013#include "libbb.h"
14
Denis Vlasenko68404f12008-03-17 09:00:54 +000015int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000016int script_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko5014dad2008-02-27 11:54:59 +000017{
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000018 int opt;
Denis Vlasenko5014dad2008-02-27 11:54:59 +000019 int mode;
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000020 int child_pid;
21 int attr_ok; /* NB: 0: ok */
22 int winsz_ok;
23 int pty;
Denis Vlasenko85c24712008-03-17 09:04:04 +000024 char pty_line[GETPTY_BUFSIZE];
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000025 struct termios tt, rtt;
Denis Vlasenko5014dad2008-02-27 11:54:59 +000026 struct winsize win;
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000027 const char *fname = "typescript";
Denis Vlasenko5014dad2008-02-27 11:54:59 +000028 const char *shell;
29 char shell_opt[] = "-i";
30 char *shell_arg = NULL;
Denys Vlasenko5e611152009-05-19 17:36:16 +020031 enum {
32 OPT_a = (1 << 0),
33 OPT_c = (1 << 1),
34 OPT_f = (1 << 2),
35 OPT_q = (1 << 3),
Denys Vlasenko5e611152009-05-19 17:36:16 +020036 OPT_t = (1 << 4),
Denys Vlasenko5e611152009-05-19 17:36:16 +020037 };
Denis Vlasenko5014dad2008-02-27 11:54:59 +000038
Denys Vlasenkof3b92d32009-06-19 12:10:38 +020039#if ENABLE_LONG_OPTS
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000040 static const char getopt_longopts[] ALIGN1 =
41 "append\0" No_argument "a"
42 "command\0" Required_argument "c"
43 "flush\0" No_argument "f"
44 "quiet\0" No_argument "q"
Denys Vlasenko2634bf32009-06-09 18:40:07 +020045 IF_SCRIPTREPLAY("timing\0" No_argument "t")
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000046 ;
47
Denys Vlasenko2634bf32009-06-09 18:40:07 +020048 applet_long_options = getopt_longopts;
49#endif
Denys Vlasenko53f17912009-06-05 14:55:26 +020050
Denis Vlasenko5014dad2008-02-27 11:54:59 +000051 opt_complementary = "?1"; /* max one arg */
Denys Vlasenko5e611152009-05-19 17:36:16 +020052 opt = getopt32(argv, "ac:fq" IF_SCRIPTREPLAY("t") , &shell_arg);
Denis Vlasenko5014dad2008-02-27 11:54:59 +000053 //argc -= optind;
54 argv += optind;
55 if (argv[0]) {
56 fname = argv[0];
57 }
58 mode = O_CREAT|O_TRUNC|O_WRONLY;
Denys Vlasenko5e611152009-05-19 17:36:16 +020059 if (opt & OPT_a) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000060 mode = O_CREAT|O_APPEND|O_WRONLY;
61 }
Denys Vlasenko5e611152009-05-19 17:36:16 +020062 if (opt & OPT_c) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000063 shell_opt[1] = 'c';
64 }
Denys Vlasenko5e611152009-05-19 17:36:16 +020065 if (!(opt & OPT_q)) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +000066 printf("Script started, file is %s\n", fname);
67 }
68 shell = getenv("SHELL");
69 if (shell == NULL) {
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000070 shell = DEFAULT_SHELL;
Denis Vlasenko5014dad2008-02-27 11:54:59 +000071 }
72
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000073 pty = xgetpty(pty_line);
Denis Vlasenko5014dad2008-02-27 11:54:59 +000074
75 /* get current stdin's tty params */
76 attr_ok = tcgetattr(0, &tt);
77 winsz_ok = ioctl(0, TIOCGWINSZ, (char *)&win);
78
79 rtt = tt;
80 cfmakeraw(&rtt);
81 rtt.c_lflag &= ~ECHO;
82 tcsetattr(0, TCSAFLUSH, &rtt);
83
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000084 /* "script" from util-linux exits when child exits,
85 * we wouldn't wait for EOF from slave pty
86 * (output may be produced by grandchildren of child) */
Denys Vlasenko5e611152009-05-19 17:36:16 +020087 signal(SIGCHLD, record_signo);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000088
89 /* TODO: SIGWINCH? pass window size changes down to slave? */
Denis Vlasenko5014dad2008-02-27 11:54:59 +000090
Pascal Bellard926031b2010-07-04 15:32:38 +020091 child_pid = xvfork();
Denis Vlasenko5014dad2008-02-27 11:54:59 +000092
93 if (child_pid) {
94 /* parent */
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000095#define buf bb_common_bufsiz1
Denis Vlasenko5014dad2008-02-27 11:54:59 +000096 struct pollfd pfd[2];
Denis Vlasenko32fd76c2008-02-28 10:10:10 +000097 int outfd, count, loop;
Denys Vlasenko53f17912009-06-05 14:55:26 +020098 double oldtime = ENABLE_SCRIPTREPLAY ? time(NULL) : 0;
Denys Vlasenko5e611152009-05-19 17:36:16 +020099 smallint fd_count = 2;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000100
101 outfd = xopen(fname, mode);
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000102 pfd[0].fd = pty;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000103 pfd[0].events = POLLIN;
Denys Vlasenko5e611152009-05-19 17:36:16 +0200104 pfd[1].fd = STDIN_FILENO;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000105 pfd[1].events = POLLIN;
106 ndelay_on(pty); /* this descriptor is not shared, can do this */
Denys Vlasenko5e611152009-05-19 17:36:16 +0200107 /* ndelay_on(STDIN_FILENO); - NO, stdin can be shared! Pity :( */
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000108
109 /* copy stdin to pty master input,
110 * copy pty master output to stdout and file */
111 /* TODO: don't use full_write's, use proper write buffering */
Denys Vlasenko5e611152009-05-19 17:36:16 +0200112 while (fd_count && !bb_got_signal) {
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000113 /* not safe_poll! we want SIGCHLD to EINTR poll */
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000114 if (poll(pfd, fd_count, -1) < 0 && errno != EINTR) {
Denis Vlasenko9dedf722008-04-01 16:12:17 +0000115 /* If child exits too quickly, we may get EIO:
116 * for example, try "script -c true" */
117 break;
118 }
Denys Vlasenko88aa5582010-03-02 15:02:45 +0100119 if (pfd[0].revents) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000120 errno = 0;
121 count = safe_read(pty, buf, sizeof(buf));
122 if (count <= 0 && errno != EAGAIN) {
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000123 /* err/eof from pty: exit */
124 goto restore;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000125 }
126 if (count > 0) {
Denys Vlasenko53f17912009-06-05 14:55:26 +0200127 if (ENABLE_SCRIPTREPLAY && (opt & OPT_t)) {
Denys Vlasenko5e611152009-05-19 17:36:16 +0200128 struct timeval tv;
129 double newtime;
130
131 gettimeofday(&tv, NULL);
132 newtime = tv.tv_sec + (double) tv.tv_usec / 1000000;
133 fprintf(stderr, "%f %u\n", newtime - oldtime, count);
134 oldtime = newtime;
135 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000136 full_write(STDOUT_FILENO, buf, count);
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000137 full_write(outfd, buf, count);
Denys Vlasenko5e611152009-05-19 17:36:16 +0200138 if (opt & OPT_f) {
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000139 fsync(outfd);
140 }
141 }
142 }
Denys Vlasenko88aa5582010-03-02 15:02:45 +0100143 if (pfd[1].revents) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000144 count = safe_read(STDIN_FILENO, buf, sizeof(buf));
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000145 if (count <= 0) {
146 /* err/eof from stdin: don't read stdin anymore */
147 pfd[1].revents = 0;
148 fd_count--;
149 } else {
150 full_write(pty, buf, count);
151 }
152 }
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000153 }
Denys Vlasenko5e611152009-05-19 17:36:16 +0200154 /* If loop was exited because SIGCHLD handler set bb_got_signal,
155 * there still can be some buffered output. But dont loop forever:
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000156 * we won't pump orphaned grandchildren's output indefinitely.
157 * Testcase: running this in script:
158 * exec dd if=/dev/zero bs=1M count=1
159 * must have "1+0 records in, 1+0 records out" captured too.
160 * (util-linux's script doesn't do this. buggy :) */
161 loop = 999;
162 /* pty is in O_NONBLOCK mode, we exit as soon as buffer is empty */
163 while (--loop && (count = safe_read(pty, buf, sizeof(buf))) > 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000164 full_write(STDOUT_FILENO, buf, count);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000165 full_write(outfd, buf, count);
166 }
Denis Vlasenko06ebc162008-05-06 19:11:41 +0000167 restore:
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000168 if (attr_ok == 0)
169 tcsetattr(0, TCSAFLUSH, &tt);
Denys Vlasenko5e611152009-05-19 17:36:16 +0200170 if (!(opt & OPT_q))
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000171 printf("Script done, file is %s\n", fname);
172 return EXIT_SUCCESS;
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000173 }
174
175 /* child: make pty slave to be input, output, error; run shell */
176 close(pty); /* close pty master */
177 /* open pty slave to fd 0,1,2 */
Denis Vlasenko42cc3042008-03-24 02:05:58 +0000178 close(0);
Denis Vlasenko32fd76c2008-02-28 10:10:10 +0000179 xopen(pty_line, O_RDWR); /* uses fd 0 */
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000180 xdup2(0, 1);
181 xdup2(0, 2);
182 /* copy our original stdin tty's parameters to pty */
183 if (attr_ok == 0)
184 tcsetattr(0, TCSAFLUSH, &tt);
185 if (winsz_ok == 0)
186 ioctl(0, TIOCSWINSZ, (char *)&win);
187 /* set pty as a controlling tty */
188 setsid();
189 ioctl(0, TIOCSCTTY, 0 /* 0: don't forcibly steal */);
190
Denis Vlasenko3fa36e22008-11-09 00:15:11 +0000191 /* Non-ignored signals revert to SIG_DFL on exec anyway */
192 /*signal(SIGCHLD, SIG_DFL);*/
Denis Vlasenkof09f4e02009-02-26 12:29:59 +0000193 execl(shell, shell, shell_opt, shell_arg, (char *) NULL);
Denis Vlasenko5014dad2008-02-27 11:54:59 +0000194 bb_simple_perror_msg_and_die(shell);
195}