]> git.ipfire.org Git - thirdparty/util-linux.git/blob - term-utils/script.c
script: fix signalfd use
[thirdparty/util-linux.git] / term-utils / script.c
1 /*
2 * Copyright (C) 1980 Regents of the University of California.
3 * Copyright (C) 2013-2019 Karel Zak <kzak@redhat.com>
4 *
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <paths.h>
38 #include <time.h>
39 #include <sys/stat.h>
40 #include <termios.h>
41 #include <sys/ioctl.h>
42 #include <sys/time.h>
43 #include <signal.h>
44 #include <errno.h>
45 #include <string.h>
46 #include <getopt.h>
47 #include <unistd.h>
48 #include <fcntl.h>
49 #include <limits.h>
50 #include <locale.h>
51 #include <stddef.h>
52 #include <sys/wait.h>
53 #include <poll.h>
54 #include <sys/signalfd.h>
55 #include <assert.h>
56 #include <inttypes.h>
57
58 #include "closestream.h"
59 #include "nls.h"
60 #include "c.h"
61 #include "ttyutils.h"
62 #include "all-io.h"
63 #include "monotonic.h"
64 #include "timeutils.h"
65 #include "strutils.h"
66 #include "xalloc.h"
67 #include "optutils.h"
68 #include "signames.h"
69 #include "pty-session.h"
70 #include "debug.h"
71
72 static UL_DEBUG_DEFINE_MASK(script);
73 UL_DEBUG_DEFINE_MASKNAMES(script) = UL_DEBUG_EMPTY_MASKNAMES;
74
75 #define SCRIPT_DEBUG_INIT (1 << 1)
76 #define SCRIPT_DEBUG_PTY (1 << 2)
77 #define SCRIPT_DEBUG_IO (1 << 3)
78 #define SCRIPT_DEBUG_SIGNAL (1 << 4)
79 #define SCRIPT_DEBUG_MISC (1 << 5)
80 #define SCRIPT_DEBUG_ALL 0xFFFF
81
82 #define DBG(m, x) __UL_DBG(script, SCRIPT_DEBUG_, m, x)
83 #define ON_DBG(m, x) __UL_DBG_CALL(script, SCRIPT_DEBUG_, m, x)
84
85 #ifdef HAVE_LIBUTEMPTER
86 # include <utempter.h>
87 #endif
88
89 #define DEFAULT_TYPESCRIPT_FILENAME "typescript"
90
91 /*
92 * Script is driven by stream (stdout/stdin) activity. It's possible to
93 * associate arbitrary number of log files with the stream. We have two basic
94 * types of log files: "timing file" (simple or multistream) and "data file"
95 * (raw).
96 *
97 * The same log file maybe be shared between both streams. For exmaple
98 * multi-stream timing file is possible to use for stdin as well as for stdout.
99 */
100 enum {
101 SCRIPT_FMT_RAW = 1, /* raw slave/master data */
102 SCRIPT_FMT_TIMING_SIMPLE, /* (classic) in format "<delta> <offset>" */
103 SCRIPT_FMT_TIMING_MULTI, /* (advanced) multiple streams in format "<type> <delta> <offset|etc> */
104 };
105
106 struct script_log {
107 FILE *fp; /* file pointer (handler) */
108 int format; /* SCRIPT_FMT_* */
109 char *filename; /* on command line specified name */
110 struct timeval oldtime; /* previous entry log time (SCRIPT_FMT_TIMING_* only) */
111 struct timeval starttime;
112
113 unsigned int initialized : 1;
114 };
115
116 struct script_stream {
117 struct script_log **logs; /* logs where to write data from stream */
118 size_t nlogs; /* number of logs */
119 char ident; /* stream identifier */
120 };
121
122 struct script_control {
123 uint64_t outsz; /* current output files size */
124 uint64_t maxsz; /* maximum output files size */
125
126 struct script_stream out; /* output */
127 struct script_stream in; /* input */
128
129 struct script_log *siglog; /* log for signal entries */
130 struct script_log *infolog; /* log for info entries */
131
132 const char *ttyname;
133 const char *ttytype;
134 int ttycols;
135 int ttylines;
136
137 struct ul_pty *pty; /* pseudo-terminal */
138 pid_t child; /* child pid */
139 int childstatus; /* child process exit value */
140
141 unsigned int
142 append:1, /* append output */
143 rc_wanted:1, /* return child exit value */
144 flush:1, /* flush after each write */
145 quiet:1, /* suppress most output */
146 force:1, /* write output to links */
147 isterm:1; /* is child process running as terminal */
148 };
149
150 static ssize_t log_info(struct script_control *ctl, const char *name, const char *msgfmt, ...);
151
152 static void script_init_debug(void)
153 {
154 __UL_INIT_DEBUG_FROM_ENV(script, SCRIPT_DEBUG_, 0, SCRIPT_DEBUG);
155 }
156
157 static void init_terminal_info(struct script_control *ctl)
158 {
159 if (ctl->ttyname || !ctl->isterm)
160 return; /* already initialized */
161
162 get_terminal_dimension(&ctl->ttycols, &ctl->ttylines);
163 get_terminal_name(&ctl->ttyname, NULL, NULL);
164 get_terminal_type(&ctl->ttytype);
165 }
166
167 /*
168 * For tests we want to be able to control time output
169 */
170 #ifdef TEST_SCRIPT
171 static inline time_t script_time(time_t *t)
172 {
173 const char *str = getenv("SCRIPT_TEST_SECOND_SINCE_EPOCH");
174 int64_t sec;
175
176 if (!str || sscanf(str, "%"SCNi64, &sec) != 1)
177 return time(t);
178 if (t)
179 *t = (time_t)sec;
180 return (time_t)sec;
181 }
182 #else /* !TEST_SCRIPT */
183 # define script_time(x) time(x)
184 #endif
185
186 static void __attribute__((__noreturn__)) usage(void)
187 {
188 FILE *out = stdout;
189 fputs(USAGE_HEADER, out);
190 fprintf(out, _(" %s [options] [file]\n"), program_invocation_short_name);
191
192 fputs(USAGE_SEPARATOR, out);
193 fputs(_("Make a typescript of a terminal session.\n"), out);
194
195 fputs(USAGE_OPTIONS, out);
196 fputs(_(" -I, --log-in <file> log stdin to file\n"), out);
197 fputs(_(" -O, --log-out <file> log stdout to file (default)\n"), out);
198 fputs(_(" -B, --log-io <file> log stdin and stdout to file\n"), out);
199 fputs(USAGE_SEPARATOR, out);
200
201 fputs(_(" -T, --log-timing <file> log timing information to file\n"), out);
202 fputs(_(" -t[<file>], --timing[=<file>] deprecated alias to -T (default file is stderr)\n"), out);
203 fputs(_(" -m, --logging-format <name> force to 'classic' or 'advanced' format\n"), out);
204 fputs(USAGE_SEPARATOR, out);
205
206 fputs(_(" -a, --append append to the log file\n"), out);
207 fputs(_(" -c, --command <command> run command rather than interactive shell\n"), out);
208 fputs(_(" -e, --return return exit code of the child process\n"), out);
209 fputs(_(" -f, --flush run flush after each write\n"), out);
210 fputs(_(" --force use output file even when it is a link\n"), out);
211 fputs(_(" -o, --output-limit <size> terminate if output files exceed size\n"), out);
212 fputs(_(" -q, --quiet be quiet\n"), out);
213
214 fputs(USAGE_SEPARATOR, out);
215 printf(USAGE_HELP_OPTIONS(31));
216 printf(USAGE_MAN_TAIL("script(1)"));
217
218 exit(EXIT_SUCCESS);
219 }
220
221 static struct script_log *get_log_by_name(struct script_stream *stream,
222 const char *name)
223 {
224 size_t i;
225
226 for (i = 0; i < stream->nlogs; i++) {
227 struct script_log *log = stream->logs[i];
228 if (strcmp(log->filename, name) == 0)
229 return log;
230 }
231 return NULL;
232 }
233
234 static struct script_log *log_associate(struct script_control *ctl,
235 struct script_stream *stream,
236 const char *filename, int format)
237 {
238 struct script_log *log;
239
240 DBG(MISC, ul_debug("associate %s with stream", filename));
241
242 assert(ctl);
243 assert(filename);
244 assert(stream);
245
246 log = get_log_by_name(stream, filename);
247 if (log)
248 return log; /* already defined */
249
250 log = get_log_by_name(stream == &ctl->out ? &ctl->in : &ctl->out, filename);
251 if (!log) {
252 /* create a new log */
253 log = xcalloc(1, sizeof(*log));
254 log->filename = xstrdup(filename);
255 log->format = format;
256 }
257
258 /* add log to the stream */
259 stream->logs = xrealloc(stream->logs,
260 (stream->nlogs + 1) * sizeof(log));
261 stream->logs[stream->nlogs] = log;
262 stream->nlogs++;
263
264 /* remember where to write info about signals */
265 if (format == SCRIPT_FMT_TIMING_MULTI) {
266 if (!ctl->siglog)
267 ctl->siglog = log;
268 if (!ctl->infolog)
269 ctl->infolog = log;
270 }
271
272 return log;
273 }
274
275 static int log_close(struct script_control *ctl,
276 struct script_log *log,
277 const char *msg,
278 int status)
279 {
280 int rc = 0;
281
282 if (!log || !log->initialized)
283 return 0;
284
285 DBG(MISC, ul_debug("closing %s", log->filename));
286
287 switch (log->format) {
288 case SCRIPT_FMT_RAW:
289 {
290 char buf[FORMAT_TIMESTAMP_MAX];
291 time_t tvec = script_time((time_t *)NULL);
292
293 strtime_iso(&tvec, ISO_TIMESTAMP, buf, sizeof(buf));
294 if (msg)
295 fprintf(log->fp, _("\nScript done on %s [<%s>]\n"), buf, msg);
296 else
297 fprintf(log->fp, _("\nScript done on %s [COMMAND_EXIT_CODE=\"%d\"]\n"), buf, status);
298 break;
299 }
300 case SCRIPT_FMT_TIMING_MULTI:
301 {
302 struct timeval now, delta;
303
304 gettime_monotonic(&now);
305 timersub(&now, &log->starttime, &delta);
306
307 log_info(ctl, "DURATION", "%ld.%06ld",
308 (long)delta.tv_sec, (long)delta.tv_usec);
309 log_info(ctl, "EXIT_CODE", "%d", status);
310 break;
311 }
312 case SCRIPT_FMT_TIMING_SIMPLE:
313 break;
314 }
315
316 if (close_stream(log->fp) != 0) {
317 warn(_("write failed: %s"), log->filename);
318 rc = -errno;
319 }
320
321 free(log->filename);
322 memset(log, 0, sizeof(*log));
323
324 return rc;
325 }
326
327 static void log_free(struct script_control *ctl, struct script_log *log)
328 {
329 size_t i;
330
331 if (!log)
332 return;
333
334 /* the same log is possible to reference from more places, remove all
335 * (TODO: maybe use include/list.h to make it more elegant)
336 */
337 if (ctl->siglog == log)
338 ctl->siglog = NULL;
339 else if (ctl->infolog == log)
340 ctl->infolog = NULL;
341
342 for (i = 0; i < ctl->out.nlogs; i++) {
343 if (ctl->out.logs[i] == log)
344 ctl->out.logs[i] = NULL;
345 }
346 for (i = 0; i < ctl->in.nlogs; i++) {
347 if (ctl->in.logs[i] == log)
348 ctl->in.logs[i] = NULL;
349 }
350 free(log);
351 }
352
353 static int log_start(struct script_control *ctl,
354 struct script_log *log)
355 {
356 if (log->initialized)
357 return 0;
358
359 DBG(MISC, ul_debug("opening %s", log->filename));
360
361 assert(log->fp == NULL);
362
363 /* open the log */
364 log->fp = fopen(log->filename,
365 ctl->append && log->format == SCRIPT_FMT_RAW ?
366 "a" UL_CLOEXECSTR :
367 "w" UL_CLOEXECSTR);
368 if (!log->fp) {
369 warn(_("cannot open %s"), log->filename);
370 return -errno;
371 }
372
373 /* write header, etc. */
374 switch (log->format) {
375 case SCRIPT_FMT_RAW:
376 {
377 char buf[FORMAT_TIMESTAMP_MAX];
378 time_t tvec = script_time((time_t *)NULL);
379
380 strtime_iso(&tvec, ISO_TIMESTAMP, buf, sizeof(buf));
381 fprintf(log->fp, _("Script started on %s ["), buf);
382
383 if (ctl->isterm) {
384 init_terminal_info(ctl);
385
386 if (ctl->ttytype)
387 fprintf(log->fp, "TERM=\"%s\" ", ctl->ttytype);
388 if (ctl->ttyname)
389 fprintf(log->fp, "TTY=\"%s\" ", ctl->ttyname);
390
391 fprintf(log->fp, "COLUMNS=\"%d\" LINES=\"%d\"", ctl->ttycols, ctl->ttylines);
392 } else
393 fprintf(log->fp, _("<not executed on terminal>"));
394
395 fputs("]\n", log->fp);
396 break;
397 }
398 case SCRIPT_FMT_TIMING_SIMPLE:
399 case SCRIPT_FMT_TIMING_MULTI:
400 gettime_monotonic(&log->oldtime);
401 gettime_monotonic(&log->starttime);
402 break;
403 }
404
405 log->initialized = 1;
406 return 0;
407 }
408
409 static int logging_start(struct script_control *ctl)
410 {
411 size_t i;
412
413 /* start all output logs */
414 for (i = 0; i < ctl->out.nlogs; i++) {
415 int rc = log_start(ctl, ctl->out.logs[i]);
416 if (rc)
417 return rc;
418 }
419
420 /* start all input logs */
421 for (i = 0; i < ctl->in.nlogs; i++) {
422 int rc = log_start(ctl, ctl->in.logs[i]);
423 if (rc)
424 return rc;
425 }
426 return 0;
427 }
428
429 static ssize_t log_write(struct script_control *ctl,
430 struct script_stream *stream,
431 struct script_log *log,
432 char *obuf, size_t bytes)
433 {
434 int rc;
435 ssize_t ssz = 0;
436 struct timeval now, delta;
437
438 if (!log->fp)
439 return 0;
440
441 DBG(IO, ul_debug(" writing [file=%s]", log->filename));
442
443 switch (log->format) {
444 case SCRIPT_FMT_RAW:
445 DBG(IO, ul_debug(" log raw data"));
446 rc = fwrite_all(obuf, 1, bytes, log->fp);
447 if (rc) {
448 warn(_("cannot write %s"), log->filename);
449 return rc;
450 }
451 ssz = bytes;
452 break;
453
454 case SCRIPT_FMT_TIMING_SIMPLE:
455 DBG(IO, ul_debug(" log timing info"));
456
457 gettime_monotonic(&now);
458 timersub(&now, &log->oldtime, &delta);
459 ssz = fprintf(log->fp, "%ld.%06ld %zd\n",
460 (long)delta.tv_sec, (long)delta.tv_usec, bytes);
461 if (ssz < 0)
462 return -errno;
463
464 log->oldtime = now;
465 break;
466
467 case SCRIPT_FMT_TIMING_MULTI:
468 DBG(IO, ul_debug(" log multi-stream timing info"));
469
470 gettime_monotonic(&now);
471 timersub(&now, &log->oldtime, &delta);
472 ssz = fprintf(log->fp, "%c %ld.%06ld %zd\n",
473 stream->ident,
474 (long)delta.tv_sec, (long)delta.tv_usec, bytes);
475 if (ssz < 0)
476 return -errno;
477
478 log->oldtime = now;
479 break;
480 default:
481 break;
482 }
483
484 if (ctl->flush)
485 fflush(log->fp);
486 return ssz;
487 }
488
489 static ssize_t log_stream_activity(
490 struct script_control *ctl,
491 struct script_stream *stream,
492 char *buf, size_t bytes)
493 {
494 size_t i;
495 ssize_t outsz = 0;
496
497 for (i = 0; i < stream->nlogs; i++) {
498 ssize_t ssz = log_write(ctl, stream, stream->logs[i], buf, bytes);
499
500 if (ssz < 0)
501 return ssz;
502 outsz += ssz;
503 }
504
505 return outsz;
506 }
507
508 static ssize_t log_signal(struct script_control *ctl, int signum, char *msgfmt, ...)
509 {
510 struct script_log *log;
511 struct timeval now, delta;
512 char msg[BUFSIZ] = {0};
513 va_list ap;
514 ssize_t sz;
515
516 assert(ctl);
517
518 log = ctl->siglog;
519 if (!log)
520 return 0;
521
522 assert(log->format == SCRIPT_FMT_TIMING_MULTI);
523 DBG(IO, ul_debug(" writing signal to multi-stream timing"));
524
525 gettime_monotonic(&now);
526 timersub(&now, &log->oldtime, &delta);
527
528 if (msgfmt) {
529 int rc;
530 va_start(ap, msgfmt);
531 rc = vsnprintf(msg, sizeof(msg), msgfmt, ap);
532 va_end(ap);
533 if (rc < 0)
534 *msg = '\0';;
535 }
536
537 if (*msg)
538 sz = fprintf(log->fp, "S %ld.%06ld SIG%s %s\n",
539 (long)delta.tv_sec, (long)delta.tv_usec,
540 signum_to_signame(signum), msg);
541 else
542 sz = fprintf(log->fp, "S %ld.%06ld SIG%s\n",
543 (long)delta.tv_sec, (long)delta.tv_usec,
544 signum_to_signame(signum));
545
546 log->oldtime = now;
547 return sz;
548 }
549
550 static ssize_t log_info(struct script_control *ctl, const char *name, const char *msgfmt, ...)
551 {
552 struct script_log *log;
553 char msg[BUFSIZ] = {0};
554 va_list ap;
555 ssize_t sz;
556
557 assert(ctl);
558
559 log = ctl->infolog;
560 if (!log)
561 return 0;
562
563 assert(log->format == SCRIPT_FMT_TIMING_MULTI);
564 DBG(IO, ul_debug(" writing info to multi-stream log"));
565
566 if (msgfmt) {
567 int rc;
568 va_start(ap, msgfmt);
569 rc = vsnprintf(msg, sizeof(msg), msgfmt, ap);
570 va_end(ap);
571 if (rc < 0)
572 *msg = '\0';;
573 }
574
575 if (*msg)
576 sz = fprintf(log->fp, "H %f %s %s\n", 0.0, name, msg);
577 else
578 sz = fprintf(log->fp, "H %f %s\n", 0.0, name);
579
580 return sz;
581 }
582
583
584 static void logging_done(struct script_control *ctl, const char *msg)
585 {
586 int status;
587 size_t i;
588
589 DBG(MISC, ul_debug("stop logging"));
590
591 if (WIFSIGNALED(ctl->childstatus))
592 status = WTERMSIG(ctl->childstatus) + 0x80;
593 else
594 status = WEXITSTATUS(ctl->childstatus);
595
596 DBG(MISC, ul_debug(" status=%d", status));
597
598 /* close all output logs */
599 for (i = 0; i < ctl->out.nlogs; i++) {
600 struct script_log *log = ctl->out.logs[i];
601 log_close(ctl, log, msg, status);
602 log_free(ctl, log);
603 }
604 free(ctl->out.logs);
605 ctl->out.logs = NULL;
606 ctl->out.nlogs = 0;
607
608 /* close all input logs */
609 for (i = 0; i < ctl->in.nlogs; i++) {
610 struct script_log *log = ctl->in.logs[i];
611 log_close(ctl, log, msg, status);
612 log_free(ctl, log);
613 }
614 free(ctl->in.logs);
615 ctl->in.logs = NULL;
616 ctl->in.nlogs = 0;
617 }
618
619 static void callback_child_die(
620 void *data,
621 pid_t child __attribute__((__unused__)),
622 int status)
623 {
624 struct script_control *ctl = (struct script_control *) data;
625
626 ctl->child = (pid_t) -1;
627 ctl->childstatus = status;
628 }
629
630 static void callback_child_sigstop(
631 void *data __attribute__((__unused__)),
632 pid_t child)
633 {
634 DBG(SIGNAL, ul_debug(" child stop by SIGSTOP -- stop parent too"));
635 kill(getpid(), SIGSTOP);
636 DBG(SIGNAL, ul_debug(" resume"));
637 kill(child, SIGCONT);
638 }
639
640 static int callback_log_stream_activity(void *data, int fd, char *buf, size_t bufsz)
641 {
642 struct script_control *ctl = (struct script_control *) data;
643 ssize_t ssz = 0;
644
645 DBG(IO, ul_debug("stream activity callback"));
646
647 /* from stdin (user) to command */
648 if (fd == STDIN_FILENO)
649 ssz = log_stream_activity(ctl, &ctl->in, buf, (size_t) bufsz);
650
651 /* from command (master) to stdout and log */
652 else if (fd == ul_pty_get_childfd(ctl->pty))
653 ssz = log_stream_activity(ctl, &ctl->out, buf, (size_t) bufsz);
654
655 if (ssz < 0)
656 return (int) ssz;
657
658 DBG(IO, ul_debug(" append %ld bytes [summary=%zu, max=%zu]", ssz,
659 ctl->outsz, ctl->maxsz));
660
661 ctl->outsz += ssz;
662
663
664 /* check output limit */
665 if (ctl->maxsz != 0 && ctl->outsz >= ctl->maxsz) {
666 if (!ctl->quiet)
667 printf(_("Script terminated, max output files size %"PRIu64" exceeded.\n"), ctl->maxsz);
668 DBG(IO, ul_debug("output size %"PRIu64", exceeded limit %"PRIu64, ctl->outsz, ctl->maxsz));
669 logging_done(ctl, _("max output size exceeded"));
670 return 1;
671 }
672 return 0;
673 }
674
675 static int callback_log_signal(void *data, struct signalfd_siginfo *info, void *sigdata)
676 {
677 struct script_control *ctl = (struct script_control *) data;
678 ssize_t ssz = 0;
679
680 switch (info->ssi_signo) {
681 case SIGWINCH:
682 {
683 struct winsize *win = (struct winsize *) sigdata;
684 ssz = log_signal(ctl, info->ssi_signo, "ROWS=%d COLS=%d",
685 win->ws_row, win->ws_col);
686 break;
687 }
688 case SIGTERM:
689 /* fallthrough */
690 case SIGINT:
691 /* fallthrough */
692 case SIGQUIT:
693 ssz = log_signal(ctl, info->ssi_signo, NULL);
694 break;
695 default:
696 /* no log */
697 break;
698 }
699
700 return ssz < 0 ? ssz : 0;
701 }
702
703 static void die_if_link(struct script_control *ctl, const char *filename)
704 {
705 struct stat s;
706
707 if (ctl->force)
708 return;
709 if (lstat(filename, &s) == 0 && (S_ISLNK(s.st_mode) || s.st_nlink > 1))
710 errx(EXIT_FAILURE,
711 _("output file `%s' is a link\n"
712 "Use --force if you really want to use it.\n"
713 "Program not started."), filename);
714 }
715
716 int main(int argc, char **argv)
717 {
718 struct script_control ctl = {
719 .out = { .ident = 'O' },
720 .in = { .ident = 'I' },
721 };
722 struct ul_pty_callbacks *cb;
723 int ch, format = 0, caught_signal = 0, rc = 0;
724 const char *outfile = NULL, *infile = NULL;
725 const char *timingfile = NULL, *shell = NULL, *command = NULL;
726
727 enum { FORCE_OPTION = CHAR_MAX + 1 };
728
729 static const struct option longopts[] = {
730 {"append", no_argument, NULL, 'a'},
731 {"command", required_argument, NULL, 'c'},
732 {"return", no_argument, NULL, 'e'},
733 {"flush", no_argument, NULL, 'f'},
734 {"force", no_argument, NULL, FORCE_OPTION,},
735 {"log-in", required_argument, NULL, 'I'},
736 {"log-out", required_argument, NULL, 'O'},
737 {"log-io", required_argument, NULL, 'B'},
738 {"log-timing", required_argument, NULL, 'T'},
739 {"logging-format", required_argument, NULL, 'm'},
740 {"output-limit", required_argument, NULL, 'o'},
741 {"quiet", no_argument, NULL, 'q'},
742 {"timing", optional_argument, NULL, 't'},
743 {"version", no_argument, NULL, 'V'},
744 {"help", no_argument, NULL, 'h'},
745 {NULL, 0, NULL, 0}
746 };
747 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
748 { 'T', 't' },
749 { 0 }
750 };
751 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
752 setlocale(LC_ALL, "");
753 /*
754 * script -t prints time delays as floating point numbers. The example
755 * program (scriptreplay) that we provide to handle this timing output
756 * is a perl script, and does not handle numbers in locale format (not
757 * even when "use locale;" is added). So, since these numbers are not
758 * for human consumption, it seems easiest to set LC_NUMERIC here.
759 */
760 setlocale(LC_NUMERIC, "C");
761 bindtextdomain(PACKAGE, LOCALEDIR);
762 textdomain(PACKAGE);
763 close_stdout_atexit();
764
765 script_init_debug();
766 ON_DBG(PTY, ul_pty_init_debug(0xFFFF));
767
768 while ((ch = getopt_long(argc, argv, "aB:c:efI:O:o:qm:T:t::Vh", longopts, NULL)) != -1) {
769
770 err_exclusive_options(ch, longopts, excl, excl_st);
771
772 switch (ch) {
773 case 'a':
774 ctl.append = 1;
775 break;
776 case 'c':
777 command = optarg;
778 break;
779 case 'e':
780 ctl.rc_wanted = 1;
781 break;
782 case 'f':
783 ctl.flush = 1;
784 break;
785 case FORCE_OPTION:
786 ctl.force = 1;
787 break;
788 case 'B':
789 log_associate(&ctl, &ctl.in, optarg, SCRIPT_FMT_RAW);
790 log_associate(&ctl, &ctl.out, optarg, SCRIPT_FMT_RAW);
791 infile = outfile = optarg;
792 break;
793 case 'I':
794 log_associate(&ctl, &ctl.in, optarg, SCRIPT_FMT_RAW);
795 infile = optarg;
796 break;
797 case 'O':
798 log_associate(&ctl, &ctl.out, optarg, SCRIPT_FMT_RAW);
799 outfile = optarg;
800 break;
801 case 'o':
802 ctl.maxsz = strtosize_or_err(optarg, _("failed to parse output limit size"));
803 break;
804 case 'q':
805 ctl.quiet = 1;
806 break;
807 case 'm':
808 if (strcasecmp(optarg, "classic") == 0)
809 format = SCRIPT_FMT_TIMING_SIMPLE;
810 else if (strcasecmp(optarg, "advanced") == 0)
811 format = SCRIPT_FMT_TIMING_MULTI;
812 else
813 errx(EXIT_FAILURE, _("unssuported logging format: '%s'"), optarg);
814 break;
815 case 't':
816 if (optarg && *optarg == '=')
817 optarg++;
818 log_associate(&ctl, &ctl.out,
819 optarg ? optarg : "/dev/stderr",
820 SCRIPT_FMT_TIMING_SIMPLE);
821 /* used for message only */
822 timingfile = optarg ? optarg : "stderr";
823 break;
824 case 'T' :
825 timingfile = optarg;
826 break;
827 case 'V':
828 print_version(EXIT_SUCCESS);
829 case 'h':
830 usage();
831 default:
832 errtryhelp(EXIT_FAILURE);
833 }
834 }
835 argc -= optind;
836 argv += optind;
837
838 /* default if no --log-* specified */
839 if (!outfile && !infile) {
840 if (argc > 0)
841 outfile = argv[0];
842 else {
843 die_if_link(&ctl, DEFAULT_TYPESCRIPT_FILENAME);
844 outfile = DEFAULT_TYPESCRIPT_FILENAME;
845 }
846
847 /* associate stdout with typescript file */
848 log_associate(&ctl, &ctl.out, outfile, SCRIPT_FMT_RAW);
849 }
850
851 if (timingfile) {
852 /* the old SCRIPT_FMT_TIMING_SIMPLE should be used when
853 * recoding output only (just for backward compatibility),
854 * otherwise switch to new format. */
855 if (!format)
856 format = infile || (outfile && infile) ?
857 SCRIPT_FMT_TIMING_MULTI :
858 SCRIPT_FMT_TIMING_SIMPLE;
859
860 else if (format == SCRIPT_FMT_TIMING_SIMPLE && outfile && infile)
861 errx(EXIT_FAILURE, _("log multiple streams is mutually "
862 "exclusive with 'classic' format"));
863 if (outfile)
864 log_associate(&ctl, &ctl.out, timingfile, format);
865 if (infile)
866 log_associate(&ctl, &ctl.in, timingfile, format);
867 }
868
869 shell = getenv("SHELL");
870 if (!shell)
871 shell = _PATH_BSHELL;
872
873 ctl.isterm = isatty(STDIN_FILENO);
874 ctl.pty = ul_new_pty(ctl.isterm);
875 if (!ctl.pty)
876 err(EXIT_FAILURE, "failed to allocate PTY handler");
877
878 ul_pty_set_callback_data(ctl.pty, (void *) &ctl);
879 cb = ul_pty_get_callbacks(ctl.pty);
880 cb->child_die = callback_child_die;
881 cb->child_sigstop = callback_child_sigstop;
882 cb->log_stream_activity = callback_log_stream_activity;
883 cb->log_signal = callback_log_signal;
884
885 if (!ctl.quiet) {
886 printf(_("Script started"));
887 if (outfile)
888 printf(_(", output log file is '%s'"), outfile);
889 if (infile)
890 printf(_(", input log file is '%s'"), infile);
891 if (timingfile)
892 printf(_(", timing file is '%s'"), timingfile);
893 printf(_(".\n"));
894 }
895
896 #ifdef HAVE_LIBUTEMPTER
897 utempter_add_record(ul_pty_get_childfd(ctl.pty), NULL);
898 #endif
899
900 if (ul_pty_setup(ctl.pty))
901 err(EXIT_FAILURE, _("failed to create pseudo-terminal"));
902
903 fflush(stdout);
904
905 /*
906 * We have terminal, do not use err() from now, use "goto done"
907 */
908
909 switch ((int) (ctl.child = fork())) {
910 case -1: /* error */
911 warn(_("cannot create child process"));
912 rc = -errno;
913 goto done;
914
915 case 0: /* child */
916 {
917 const char *shname;
918
919 ul_pty_init_slave(ctl.pty);
920
921 signal(SIGTERM, SIG_DFL); /* because /etc/csh.login */
922
923 shname = strrchr(shell, '/');
924 shname = shname ? shname + 1 : shell;
925
926 if (command)
927 execl(shell, shname, "-c", command, NULL);
928 else
929 execl(shell, shname, "-i", NULL);
930 err(EXIT_FAILURE, "failed to execute %s", shell);
931 break;
932 }
933 default:
934 break;
935 }
936
937 /* parent */
938 ul_pty_set_child(ctl.pty, ctl.child);
939
940 rc = logging_start(&ctl);
941 if (rc)
942 goto done;
943
944 /* add extra info to advanced timing file */
945 if (timingfile && format == SCRIPT_FMT_TIMING_MULTI) {
946 char buf[FORMAT_TIMESTAMP_MAX];
947 time_t tvec = script_time((time_t *)NULL);
948
949 strtime_iso(&tvec, ISO_TIMESTAMP, buf, sizeof(buf));
950 log_info(&ctl, "START_TIME", buf);
951
952 if (ctl.isterm) {
953 init_terminal_info(&ctl);
954 log_info(&ctl, "TERM", ctl.ttytype);
955 log_info(&ctl, "TTY", ctl.ttyname);
956 log_info(&ctl, "COLUMNS", "%d", ctl.ttycols);
957 log_info(&ctl, "LINES", "%d", ctl.ttylines);
958 }
959 log_info(&ctl, "SHELL", shell);
960 if (command)
961 log_info(&ctl, "COMMAND", command);
962 log_info(&ctl, "TIMING_LOG", timingfile);
963 if (outfile)
964 log_info(&ctl, "OUTPUT_LOG", outfile);
965 if (infile)
966 log_info(&ctl, "INPUT_LOG", infile);
967 }
968
969 /* this is the main loop */
970 rc = ul_pty_proxy_master(ctl.pty);
971
972 /* all done; cleanup and kill */
973 caught_signal = ul_pty_get_delivered_signal(ctl.pty);
974
975 if (!caught_signal && ctl.child != (pid_t)-1)
976 ul_pty_wait_for_child(ctl.pty); /* final wait */
977
978 if (caught_signal && ctl.child != (pid_t)-1) {
979 fprintf(stderr, "\nSession terminated, killing shell...");
980 kill(ctl.child, SIGTERM);
981 sleep(2);
982 kill(ctl.child, SIGKILL);
983 fprintf(stderr, " ...killed.\n");
984 }
985
986 done:
987 ul_pty_cleanup(ctl.pty);
988 logging_done(&ctl, NULL);
989
990 if (!ctl.quiet)
991 printf(_("Script done.\n"));
992
993 #ifdef HAVE_LIBUTEMPTER
994 if (ul_pty_get_childfd(ctl.pty) >= 0)
995 utempter_remove_record(ul_pty_get_childfd(ctl.pty));
996 #endif
997 ul_free_pty(ctl.pty);
998
999 /* default exit code */
1000 rc = rc ? EXIT_FAILURE : EXIT_SUCCESS;
1001
1002 /* exit code based on child status */
1003 if (ctl.rc_wanted && rc == EXIT_SUCCESS) {
1004 if (WIFSIGNALED(ctl.childstatus))
1005 rc = WTERMSIG(ctl.childstatus) + 0x80;
1006 else
1007 rc = WEXITSTATUS(ctl.childstatus);
1008 }
1009
1010 DBG(MISC, ul_debug("done [rc=%d]", rc));
1011 return rc;
1012 }