getopt32: remove applet_long_options
[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 //config:config SCRIPT
14 //config:       bool "script (8 kb)"
15 //config:       default y
16 //config:       help
17 //config:       The script makes typescript of terminal session.
18
19 //applet:IF_SCRIPT(APPLET(script, BB_DIR_USR_BIN, BB_SUID_DROP))
20
21 //kbuild:lib-$(CONFIG_SCRIPT) += script.o
22
23 //usage:#define script_trivial_usage
24 //usage:       "[-afq] [-t[FILE]] [-c PROG] [OUTFILE]"
25 //usage:#define script_full_usage "\n\n"
26 //usage:       "Default OUTFILE is 'typescript'"
27 //usage:     "\n"
28 //usage:     "\n        -a      Append output"
29 //usage:     "\n        -c PROG Run PROG, not shell"
30 /* Accepted but has no effect (we never buffer output) */
31 /*//usage:     "\n      -f      Flush output after each write"*/
32 //usage:     "\n        -q      Quiet"
33 //usage:     "\n        -t[FILE] Send timing to stderr or FILE"
34
35 //util-linux-2.28:
36 //-e: return exit code of the child
37
38 //FYI (reported as bbox bug #2749):
39 // > script -q -c 'echo -e -n "1\n2\n3\n"' /dev/null </dev/null >123.txt
40 // > The output file on full-blown ubuntu system contains 6 bytes.
41 // > Output on Busybox system (arm-linux) contains extra '\r' byte in each line.
42 //however, in my test, "script" from util-linux-2.28 seems to also add '\r' bytes.
43
44 #include "libbb.h"
45 #include "common_bufsiz.h"
46
47 int script_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
48 int script_main(int argc UNUSED_PARAM, char **argv)
49 {
50         int opt;
51         int mode;
52         int child_pid;
53         int attr_ok; /* NB: 0: ok */
54         int winsz_ok;
55         int pty;
56         char pty_line[GETPTY_BUFSIZE];
57         struct termios tt, rtt;
58         struct winsize win;
59         FILE *timing_fp;
60         const char *str_t = NULL;
61         const char *fname = "typescript";
62         const char *shell;
63         char shell_opt[] = "-i";
64         char *shell_arg = NULL;
65         enum {
66                 OPT_a = (1 << 0),
67                 OPT_c = (1 << 1),
68                 OPT_f = (1 << 2),
69                 OPT_q = (1 << 3),
70                 OPT_t = (1 << 4),
71         };
72
73 #if ENABLE_LONG_OPTS
74         static const char script_longopts[] ALIGN1 =
75                 "append\0"  No_argument       "a"
76                 "command\0" Required_argument "c"
77                 "flush\0"   No_argument       "f"
78                 "quiet\0"   No_argument       "q"
79                 "timing\0"  Optional_argument "t"
80                 ;
81 #endif
82
83         opt_complementary = "?1"; /* max one arg */
84         opt = getopt32long(argv, "ac:fqt::", script_longopts, &shell_arg, &str_t);
85         //argc -= optind;
86         argv += optind;
87         if (argv[0]) {
88                 fname = argv[0];
89         }
90         mode = O_CREAT|O_TRUNC|O_WRONLY;
91         if (opt & OPT_a) {
92                 mode = O_CREAT|O_APPEND|O_WRONLY;
93         }
94         if (opt & OPT_c) {
95                 shell_opt[1] = 'c';
96         }
97         if (!(opt & OPT_q)) {
98                 printf("Script started, file is %s\n", fname);
99         }
100         timing_fp = stderr;
101         if (str_t) {
102                 timing_fp = xfopen_for_write(str_t);
103         }
104
105         shell = get_shell_name();
106
107         /* Some people run "script ... 0>&-".
108          * Our code assumes that STDIN_FILENO != pty.
109          * Ensure STDIN_FILENO is not closed:
110          */
111         bb_sanitize_stdio();
112
113         pty = xgetpty(pty_line);
114
115         /* get current stdin's tty params */
116         attr_ok = tcgetattr(0, &tt);
117         winsz_ok = ioctl(0, TIOCGWINSZ, (char *)&win);
118
119         rtt = tt;
120         cfmakeraw(&rtt);
121         rtt.c_lflag &= ~ECHO;
122         tcsetattr(0, TCSAFLUSH, &rtt);
123
124         /* "script" from util-linux exits when child exits,
125          * we wouldn't wait for EOF from slave pty
126          * (output may be produced by grandchildren of child) */
127         signal(SIGCHLD, record_signo);
128
129         /* TODO: SIGWINCH? pass window size changes down to slave? */
130
131         child_pid = xvfork();
132
133         if (child_pid) {
134                 /* parent */
135                 struct pollfd pfd[2];
136                 int outfd, count, loop;
137                 double oldtime = time(NULL);
138                 smallint fd_count = 2;
139
140 #define buf bb_common_bufsiz1
141                 setup_common_bufsiz();
142
143                 outfd = xopen(fname, mode);
144                 pfd[0].fd = pty;
145                 pfd[0].events = POLLIN;
146                 pfd[1].fd = STDIN_FILENO;
147                 pfd[1].events = POLLIN;
148                 ndelay_on(pty); /* this descriptor is not shared, can do this */
149                 /* ndelay_on(STDIN_FILENO); - NO, stdin can be shared! Pity :( */
150
151                 /* copy stdin to pty master input,
152                  * copy pty master output to stdout and file */
153                 /* TODO: don't use full_write's, use proper write buffering */
154                 while (fd_count && !bb_got_signal) {
155                         /* not safe_poll! we want SIGCHLD to EINTR poll */
156                         if (poll(pfd, fd_count, -1) < 0 && errno != EINTR) {
157                                 /* If child exits too quickly, we may get EIO:
158                                  * for example, try "script -c true" */
159                                 break;
160                         }
161                         if (pfd[0].revents) {
162                                 errno = 0;
163                                 count = safe_read(pty, buf, COMMON_BUFSIZE);
164                                 if (count <= 0 && errno != EAGAIN) {
165                                         /* err/eof from pty: exit */
166                                         goto restore;
167                                 }
168                                 if (count > 0) {
169                                         if (opt & OPT_t) {
170                                                 struct timeval tv;
171                                                 double newtime;
172
173                                                 gettimeofday(&tv, NULL);
174                                                 newtime = tv.tv_sec + (double) tv.tv_usec / 1000000;
175                                                 fprintf(timing_fp, "%f %u\n", newtime - oldtime, count);
176                                                 oldtime = newtime;
177                                         }
178                                         full_write(STDOUT_FILENO, buf, count);
179                                         full_write(outfd, buf, count);
180                                         // If we'd be using (buffered) FILE i/o, we'd need this:
181                                         //if (opt & OPT_f) {
182                                         //      fflush(outfd);
183                                         //}
184                                 }
185                         }
186                         if (pfd[1].revents) {
187                                 count = safe_read(STDIN_FILENO, buf, COMMON_BUFSIZE);
188                                 if (count <= 0) {
189                                         /* err/eof from stdin: don't read stdin anymore */
190                                         pfd[1].revents = 0;
191                                         fd_count--;
192                                 } else {
193                                         full_write(pty, buf, count);
194                                 }
195                         }
196                 }
197                 /* If loop was exited because SIGCHLD handler set bb_got_signal,
198                  * there still can be some buffered output. But dont loop forever:
199                  * we won't pump orphaned grandchildren's output indefinitely.
200                  * Testcase: running this in script:
201                  *      exec dd if=/dev/zero bs=1M count=1
202                  * must have "1+0 records in, 1+0 records out" captured too.
203                  * (util-linux's script doesn't do this. buggy :) */
204                 loop = 999;
205                 /* pty is in O_NONBLOCK mode, we exit as soon as buffer is empty */
206                 while (--loop && (count = safe_read(pty, buf, COMMON_BUFSIZE)) > 0) {
207                         full_write(STDOUT_FILENO, buf, count);
208                         full_write(outfd, buf, count);
209                 }
210  restore:
211                 if (attr_ok == 0)
212                         tcsetattr(0, TCSAFLUSH, &tt);
213                 if (!(opt & OPT_q))
214                         printf("Script done, file is %s\n", fname);
215                 return EXIT_SUCCESS;
216         }
217
218         /* child: make pty slave to be input, output, error; run shell */
219         close(pty); /* close pty master */
220         /* open pty slave to fd 0,1,2 */
221         close(0);
222         xopen(pty_line, O_RDWR); /* uses fd 0 */
223         xdup2(0, 1);
224         xdup2(0, 2);
225         /* copy our original stdin tty's parameters to pty */
226         if (attr_ok == 0)
227                 tcsetattr(0, TCSAFLUSH, &tt);
228         if (winsz_ok == 0)
229                 ioctl(0, TIOCSWINSZ, (char *)&win);
230         /* set pty as a controlling tty */
231         setsid();
232         ioctl(0, TIOCSCTTY, 0 /* 0: don't forcibly steal */);
233
234         /* Non-ignored signals revert to SIG_DFL on exec anyway */
235         /*signal(SIGCHLD, SIG_DFL);*/
236         execl(shell, shell, shell_opt, shell_arg, (char *) NULL);
237         bb_simple_perror_msg_and_die(shell);
238 }