/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint char copyright[] = "@(#) Copyright (c) 1980 Regents of the University of California.\n\ All rights reserved.\n"; #endif not lint #ifndef lint static char sccsid[] = "@(#)script.c 1.1 94/10/31 SMI"; /* from UCB 5.4 11/13/85 */ #endif not lint /* * script */ #include #include #include #include #include #include #include #include #include #define ADD 1 #define REMOVE (-1) char *getenv(); char *ctime(); char *shell; FILE *fscript; int master; int slave; int child; int subchild; char *fname = "typescript"; int sigwinch(); int finish(); int ttyslot(); struct termios b; struct winsize size; int lb; int l; char *line = "/dev/ptyXX"; int aflg; main(argc, argv) int argc; char *argv[]; { shell = getenv("SHELL"); if (shell == 0) shell = "/bin/sh"; argc--, argv++; while (argc > 0 && argv[0][0] == '-') { switch (argv[0][1]) { case 'a': aflg++; break; default: fprintf(stderr, "usage: script [ -a ] [ typescript ]\n"); exit(1); } argc--, argv++; } if (argc > 0) fname = argv[0]; if ((fscript = fopen(fname, aflg ? "a" : "w")) == NULL) { perror(fname); fail(); } getmaster(); printf("Script started, file is %s\n", fname); fixtty(); (void) signal(SIGCHLD, finish); child = fork(); if (child < 0) { perror("fork"); fail(); } if (child == 0) { subchild = child = fork(); if (child < 0) { perror("fork"); fail(); } if (child) dooutput(); else doshell(); } doinput(); /* NOTREACHED */ } doinput() { char ibuf[BUFSIZ]; int cc; (void) fclose(fscript); signal(SIGWINCH, sigwinch); while ((cc = read(0, ibuf, BUFSIZ)) > 0) (void) write(master, ibuf, cc); done(); } sigwinch() { struct winsize ws; if (ioctl(0, TIOCGWINSZ, &ws) == 0) (void) ioctl(master, TIOCSWINSZ, &ws); } #include finish() { union wait status; register int pid; register int die = 0; while ((pid = wait3(&status, WNOHANG, 0)) > 0) if (pid == child) die = 1; if (die) done(); } dooutput() { time_t tvec; char obuf[BUFSIZ]; int cc; (void) close(0); tvec = time((time_t *)0); fprintf(fscript, "Script started on %s", ctime(&tvec)); for (;;) { cc = read(master, obuf, sizeof (obuf)); if (cc <= 0) break; (void) write(1, obuf, cc); (void) fwrite(obuf, 1, cc, fscript); } done(); } doshell() { int t; t = open("/dev/tty", O_RDWR); if (t >= 0) { (void) ioctl(t, TIOCNOTTY, (char *)0); (void) close(t); } getslave(); (void) close(master); (void) fclose(fscript); (void) dup2(slave, 0); (void) dup2(slave, 1); (void) dup2(slave, 2); (void) close(slave); utent(ADD); execl(shell, "sh", "-i", (char *)0); perror(shell); fail(); } fixtty() { struct termios sbuf; sbuf = b; sbuf.c_iflag &= ~(INLCR|IGNCR|ICRNL|IUCLC|IXON); sbuf.c_oflag &= ~OPOST; sbuf.c_lflag &= ~(ICANON|ISIG|ECHO); sbuf.c_cc[VMIN] = 1; sbuf.c_cc[VTIME] = 0; (void) ioctl(0, TCSETSW, (char *)&sbuf); } fail() { (void) kill(0, SIGTERM); done(); } done() { time_t tvec; if (subchild) { tvec = time((time_t *)0); fprintf(fscript,"\nscript done on %s", ctime(&tvec)); (void) fclose(fscript); (void) close(master); utent(REMOVE); } else { (void) ioctl(0, TCSETSW, (char *)&b); printf("Script done, file is %s\n", fname); } exit(0); } getmaster() { char *pty, *bank, *cp; struct stat stb; pty = &line[strlen("/dev/ptyp")]; for (bank = "pqrstuvwxyzPQRST"; *bank; bank++) { line[strlen("/dev/pty")] = *bank; *pty = '0'; if (stat(line, &stb) < 0) break; for (cp = "0123456789abcdef"; *cp; cp++) { *pty = *cp; master = open(line, O_RDWR); if (master >= 0) { char *tp = &line[strlen("/dev/")]; int ok; /* verify slave side is usable */ *tp = 't'; ok = access(line, R_OK|W_OK) == 0; *tp = 'p'; if (ok) { (void) ioctl(0, TCGETS, (char *)&b); (void) ioctl(0, TIOCGWINSZ, (char *)&size); return; } (void) close(master); } } } fprintf(stderr, "Out of pty's\n"); fail(); } getslave() { line[strlen("/dev/")] = 't'; slave = open(line, O_RDWR); if (slave < 0) { perror(line); fail(); } (void) ioctl(slave, TCSETSF, (char *)&b); (void) ioctl(slave, TIOCSWINSZ, (char *)&size); } utent(mode) int mode; { struct utmp utmp; struct passwd *pw; char *tp = &line[strlen("/dev/")]; int slot = 0; int f, i; if ((f = open("/etc/utmp", O_RDWR)) < 0) { fprintf(stderr, "warning: could not update utmp entry\n"); return; } *tp = 't'; if (mode == ADD) { slot = ttyslot(); pw = getpwuid(getuid()); strncpy(utmp.ut_name, pw ? pw->pw_name : "?", sizeof (utmp.ut_name)); } else { for(i=0; read(f, &utmp, sizeof (utmp)) == sizeof (utmp); i++) { if ( strncmp(utmp.ut_line, tp, sizeof (utmp.ut_line)) ) continue; slot = i; break; } *utmp.ut_name = 0; } strncpy(utmp.ut_line, tp, sizeof(utmp.ut_line)); time(&utmp.ut_time); *utmp.ut_host = 0; if (slot) { lseek(f, (long)(slot*sizeof (utmp)), 0); write(f, (char *)&utmp, sizeof(utmp)); } close(f); }