1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
/*
* Copyright (C) 2019, Karel Zak <kzak@redhat.com>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <limits.h>
#include <math.h>
#include <sys/select.h>
#include <unistd.h>
#include <getopt.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <termios.h>
#include <paths.h>
#include "c.h"
#include "xalloc.h"
#include "closestream.h"
#include "nls.h"
#include "strutils.h"
#include "optutils.h"
#include "pty-session.h"
#include "script-playutils.h"
#include "monotonic.h"
#define SCRIPT_MIN_DELAY 0.0001 /* from original sripreplay.pl */
struct scriptlive {
struct ul_pty *pty;
struct replay_setup *setup;
struct replay_step *step;
};
static void __attribute__((__noreturn__))
usage(void)
{
FILE *out = stdout;
fputs(USAGE_HEADER, out);
fprintf(out,
_(" %s [options]\n"),
program_invocation_short_name);
fprintf(out,
_(" %s [-t] timingfile [-I|-B] typescript\n"),
program_invocation_short_name);
fputs(USAGE_SEPARATOR, out);
fputs(_("Execute terminal typescript.\n"), out);
fputs(USAGE_OPTIONS, out);
fputs(_(" -t, --timing <file> script timing log file\n"), out);
fputs(_(" -T, --log-timing <file> alias to -t\n"), out);
fputs(_(" -I, --log-in <file> script stdin log file\n"), out);
fputs(_(" -B, --log-io <file> script stdin and stdout log file\n"), out);
fputs(USAGE_SEPARATOR, out);
fputs(_(" -c, --command <command> run command rather than interactive shell\n"), out);
fputs(_(" -d, --divisor <num> speed up or slow down execution with time divisor\n"), out);
fputs(_(" -m, --maxdelay <num> wait at most this many seconds between updates\n"), out);
printf(USAGE_HELP_OPTIONS(25));
printf(USAGE_MAN_TAIL("scriptlive(1)"));
exit(EXIT_SUCCESS);
}
static double
getnum(const char *s)
{
const double d = strtod_or_err(s, _("failed to parse number"));
if (isnan(d)) {
errno = EINVAL;
err(EXIT_FAILURE, "%s: %s", _("failed to parse number"), s);
}
return d;
}
static void callback_child_sigstop(
void *data __attribute__((__unused__)),
pid_t child)
{
kill(getpid(), SIGSTOP);
kill(child, SIGCONT);
}
static int process_next_step(struct scriptlive *ss)
{
int rc = 0, fd = ul_pty_get_childfd(ss->pty);
/* read next step(s) */
do {
struct timeval *delay;
rc = replay_get_next_step(ss->setup, "I", &ss->step);
if (rc == 1) {
ul_pty_write_eof_to_child(ss->pty);
rc = 0;
break;
}
if (rc)
break;
delay = replay_step_get_delay(ss->step);
if (timerisset(delay)) {
/* wait until now+delay in mainloop */
struct timeval now, target;
gettime_monotonic(&now);
timeradd(&now, delay, &target);
ul_pty_set_mainloop_time(ss->pty, &target);
break;
}
/* no delay -- immediately write */
rc = replay_emit_step_data(ss->setup, ss->step, fd);
fdatasync(fd);
} while (rc == 0);
return rc;
}
static int mainloop_cb(void *data)
{
struct scriptlive *ss = (struct scriptlive *) data;
int rc = 0;
/* emit previous waiting step */
if (ss->step && !replay_step_is_empty(ss->step)) {
int fd = ul_pty_get_childfd(ss->pty);;
rc = replay_emit_step_data(ss->setup, ss->step, fd);
fdatasync(fd);
if (rc)
return rc;
}
return process_next_step(ss);
}
int
main(int argc, char *argv[])
{
static const struct timeval mindelay = { .tv_sec = 0, .tv_usec = 100 };
struct timeval maxdelay;
const char *log_in = NULL, *log_io = NULL, *log_tm = NULL,
*shell = NULL, *command = NULL;
double divi = 1;
int diviopt = FALSE, idx;
int ch, caught_signal = 0;
struct ul_pty_callbacks *cb;
struct scriptlive ss = { .pty = NULL };
pid_t child;
static const struct option longopts[] = {
{ "command", required_argument, 0, 'c' },
{ "timing", required_argument, 0, 't' },
{ "log-timing", required_argument, 0, 'T' },
{ "log-in", required_argument, 0, 'I'},
{ "log-io", required_argument, 0, 'B'},
{ "divisor", required_argument, 0, 'd' },
{ "maxdelay", required_argument, 0, 'm' },
{ "version", no_argument, 0, 'V' },
{ "help", no_argument, 0, 'h' },
{ NULL, 0, 0, 0 }
};
static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'B', 'I' },
{ 0 }
};
int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
/* Because we use space as a separator, we can't afford to use any
* locale which tolerates a space in a number. In any case, script.c
* sets the LC_NUMERIC locale to C, anyway.
*/
setlocale(LC_ALL, "");
setlocale(LC_NUMERIC, "C");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
close_stdout_atexit();
replay_init_debug();
timerclear(&maxdelay);
while ((ch = getopt_long(argc, argv, "c:B:I:T:t:d:m:Vh", longopts, NULL)) != -1) {
err_exclusive_options(ch, longopts, excl, excl_st);
switch(ch) {
case 'c':
command = optarg;
break;
case 't':
case 'T':
log_tm = optarg;
break;
case 'I':
log_in = optarg;
break;
case 'B':
log_io = optarg;
break;
case 'd':
diviopt = TRUE;
divi = getnum(optarg);
break;
case 'm':
strtotimeval_or_err(optarg, &maxdelay, _("failed to parse maximal delay argument"));
break;
case 'V':
print_version(EXIT_SUCCESS);
case 'h':
usage();
default:
errtryhelp(EXIT_FAILURE);
}
}
argc -= optind;
argv += optind;
idx = 0;
if (!log_tm && idx < argc)
log_tm = argv[idx++];
if (!log_in && !log_io && idx < argc)
log_in = argv[idx++];
if (!diviopt)
divi = idx < argc ? getnum(argv[idx]) : 1;
if (!log_tm)
errx(EXIT_FAILURE, _("timing file not specified"));
if (!(log_in || log_io))
errx(EXIT_FAILURE, _("stdin typescript file not specified"));
ss.setup = replay_new_setup();
if (replay_set_timing_file(ss.setup, log_tm) != 0)
err(EXIT_FAILURE, _("cannot open %s"), log_tm);
if (log_in && replay_associate_log(ss.setup, "I", log_in) != 0)
err(EXIT_FAILURE, _("cannot open %s"), log_in);
if (log_io && replay_associate_log(ss.setup, "IO", log_io) != 0)
err(EXIT_FAILURE, _("cannot open %s"), log_io);
replay_set_default_type(ss.setup, 'I');
replay_set_crmode(ss.setup, REPLAY_CRMODE_NEVER);
if (divi != 1)
replay_set_delay_div(ss.setup, divi);
if (timerisset(&maxdelay))
replay_set_delay_max(ss.setup, &maxdelay);
replay_set_delay_min(ss.setup, &mindelay);
shell = getenv("SHELL");
if (shell == NULL)
shell = _PATH_BSHELL;
fprintf(stdout, _(">>> scriptlive: Starting your typescript execution by %s.\n"),
command ? command : shell);
ul_pty_init_debug(0);
ss.pty = ul_new_pty(isatty(STDIN_FILENO));
if (!ss.pty)
err(EXIT_FAILURE, _("failed to allocate PTY handler"));
ul_pty_set_callback_data(ss.pty, (void *) &ss);
cb = ul_pty_get_callbacks(ss.pty);
cb->child_sigstop = callback_child_sigstop;
cb->mainloop = mainloop_cb;
if (!isatty(STDIN_FILENO))
/* We keep ECHO flag for compatibility with script(1) */
ul_pty_slave_echo(ss.pty, 1);
if (ul_pty_setup(ss.pty))
err(EXIT_FAILURE, _("failed to create pseudo-terminal"));
fflush(stdout); /* ??? */
switch ((int) (child = fork())) {
case -1: /* error */
ul_pty_cleanup(ss.pty);
err(EXIT_FAILURE, _("cannot create child process"));
break;
case 0: /* child */
{
const char *shname;
ul_pty_init_slave(ss.pty);
signal(SIGTERM, SIG_DFL); /* because /etc/csh.login */
shname = strrchr(shell, '/');
shname = shname ? shname + 1 : shell;
if (access(shell, X_OK) == 0) {
if (command)
execl(shell, shname, "-c", command, (char *)NULL);
else
execl(shell, shname, "-i", (char *)NULL);
} else {
if (command)
execlp(shname, "-c", command, (char *)NULL);
else
execlp(shname, "-i", (char *)NULL);
}
err(EXIT_FAILURE, "failed to execute %s", shell);
break;
}
default:
break;
}
/* parent */
ul_pty_set_child(ss.pty, child);
/* read the first step and set initial delay for pty main loop; the
* next steps will be processed by mainloop_cb() */
process_next_step(&ss);
/* this is the main loop */
ul_pty_proxy_master(ss.pty);
/* all done; cleanup and kill */
caught_signal = ul_pty_get_delivered_signal(ss.pty);
if (!caught_signal && ul_pty_get_child(ss.pty) != (pid_t)-1)
ul_pty_wait_for_child(ss.pty); /* final wait */
if (caught_signal && ul_pty_get_child(ss.pty) != (pid_t)-1) {
fprintf(stderr, _("\nSession terminated, killing shell..."));
kill(child, SIGTERM);
sleep(2);
kill(child, SIGKILL);
fprintf(stderr, " ...killed.\n");
}
ul_pty_cleanup(ss.pty);
ul_free_pty(ss.pty);
replay_free_setup(ss.setup);
fprintf(stdout, _("\n>>> scriptlive: done.\n"));
return EXIT_SUCCESS;
}
|