move remaining help text from include/usage.src.h
[oweals/busybox.git] / util-linux / script.c
1 /* 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  *
11  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
12  */
13
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
26 #include "libbb.h"
27
28 int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29 int script_main(int argc UNUSED_PARAM, char **argv)
30 {
31         int opt;
32         int mode;
33         int child_pid;
34         int attr_ok; /* NB: 0: ok */
35         int winsz_ok;
36         int pty;
37         char pty_line[GETPTY_BUFSIZE];
38         struct termios tt, rtt;
39         struct winsize win;
40         const char *fname = "typescript";
41         const char *shell;
42         char shell_opt[] = "-i";
43         char *shell_arg = NULL;
44         enum {
45                 OPT_a = (1 << 0),
46                 OPT_c = (1 << 1),
47                 OPT_f = (1 << 2),
48                 OPT_q = (1 << 3),
49                 OPT_t = (1 << 4),
50         };
51
52 #if ENABLE_LONG_OPTS
53         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"
58                 IF_SCRIPTREPLAY("timing\0" No_argument "t")
59                 ;
60
61         applet_long_options = getopt_longopts;
62 #endif
63
64         opt_complementary = "?1"; /* max one arg */
65         opt = getopt32(argv, "ac:fq" IF_SCRIPTREPLAY("t") , &shell_arg);
66         //argc -= optind;
67         argv += optind;
68         if (argv[0]) {
69                 fname = argv[0];
70         }
71         mode = O_CREAT|O_TRUNC|O_WRONLY;
72         if (opt & OPT_a) {
73                 mode = O_CREAT|O_APPEND|O_WRONLY;
74         }
75         if (opt & OPT_c) {
76                 shell_opt[1] = 'c';
77         }
78         if (!(opt & OPT_q)) {
79                 printf("Script started, file is %s\n", fname);
80         }
81         shell = get_shell_name();
82
83         pty = xgetpty(pty_line);
84
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
94         /* "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) */
97         signal(SIGCHLD, record_signo);
98
99         /* TODO: SIGWINCH? pass window size changes down to slave? */
100
101         child_pid = xvfork();
102
103         if (child_pid) {
104                 /* parent */
105 #define buf bb_common_bufsiz1
106                 struct pollfd pfd[2];
107                 int outfd, count, loop;
108                 double oldtime = ENABLE_SCRIPTREPLAY ? time(NULL) : 0;
109                 smallint fd_count = 2;
110
111                 outfd = xopen(fname, mode);
112                 pfd[0].fd = pty;
113                 pfd[0].events = POLLIN;
114                 pfd[1].fd = STDIN_FILENO;
115                 pfd[1].events = POLLIN;
116                 ndelay_on(pty); /* this descriptor is not shared, can do this */
117                 /* ndelay_on(STDIN_FILENO); - NO, stdin can be shared! Pity :( */
118
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 */
122                 while (fd_count && !bb_got_signal) {
123                         /* not safe_poll! we want SIGCHLD to EINTR poll */
124                         if (poll(pfd, fd_count, -1) < 0 && errno != EINTR) {
125                                 /* If child exits too quickly, we may get EIO:
126                                  * for example, try "script -c true" */
127                                 break;
128                         }
129                         if (pfd[0].revents) {
130                                 errno = 0;
131                                 count = safe_read(pty, buf, sizeof(buf));
132                                 if (count <= 0 && errno != EAGAIN) {
133                                         /* err/eof from pty: exit */
134                                         goto restore;
135                                 }
136                                 if (count > 0) {
137                                         if (ENABLE_SCRIPTREPLAY && (opt & OPT_t)) {
138                                                 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                                         }
146                                         full_write(STDOUT_FILENO, buf, count);
147                                         full_write(outfd, buf, count);
148                                         if (opt & OPT_f) {
149                                                 fsync(outfd);
150                                         }
151                                 }
152                         }
153                         if (pfd[1].revents) {
154                                 count = safe_read(STDIN_FILENO, buf, sizeof(buf));
155                                 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                         }
163                 }
164                 /* If loop was exited because SIGCHLD handler set bb_got_signal,
165                  * there still can be some buffered output. But dont loop forever:
166                  * 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) {
174                         full_write(STDOUT_FILENO, buf, count);
175                         full_write(outfd, buf, count);
176                 }
177  restore:
178                 if (attr_ok == 0)
179                         tcsetattr(0, TCSAFLUSH, &tt);
180                 if (!(opt & OPT_q))
181                         printf("Script done, file is %s\n", fname);
182                 return EXIT_SUCCESS;
183         }
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 */
188         close(0);
189         xopen(pty_line, O_RDWR); /* uses fd 0 */
190         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
201         /* Non-ignored signals revert to SIG_DFL on exec anyway */
202         /*signal(SIGCHLD, SIG_DFL);*/
203         execl(shell, shell, shell_opt, shell_arg, (char *) NULL);
204         bb_simple_perror_msg_and_die(shell);
205 }