2.9BSD/usr/src/ucb/lock.c
#ifndef lint
static char *sccsid = "@(#)lock.c 4.1 (Berkeley) 10/1/80";
#endif
#include <whoami.h>
#include <stdio.h>
#include <sys/types.h>
#include <stat.h>
#include <signal.h>
#include <sgtty.h>
/*
* Lock a terminal up until the knowledgeable Joe returns.
*/
char masterp[] = "knowledgeable Joe\n";
struct sgttyb tty, ntty;
char s[BUFSIZ], s1[BUFSIZ];
main(argc, argv)
char **argv;
{
register int t;
for (t = 1; t <= 16; t++)
if (t != SIGHUP)
signal(t, SIG_IGN);
#ifdef SIGTSTP
signal(SIGTSTP, SIG_IGN);
#endif
if (argc > 0)
argv[0] = 0;
if (gtty(0, &tty))
exit(1);
ntty = tty; ntty.sg_flags &= ~ECHO;
stty(0, &ntty);
printf("Key: ");
fgets(s, sizeof s, stdin);
printf("\nAgain: ");
fgets(s1, sizeof s1, stdin);
putchar('\n');
if (strcmp(s1, s)) {
putchar(07);
stty(0, &tty);
exit(1);
}
s[0] = 0;
for (;;) {
fgets(s, sizeof s, stdin);
if (strcmp(s1, s) == 0)
break;
if (strcmp(s, masterp) == 0)
break;
putchar(07);
if (gtty(0, &ntty))
exit(1);
}
stty(0, &tty);
}