NetBSD/usr.bin/lock/lock.c

296 lines
7.3 KiB
C
Raw Normal View History

2002-11-16 18:59:26 +03:00
/* $NetBSD: lock.c,v 1.20 2002/11/16 15:59:28 itojun Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1980, 1987, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Bob Toxen.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1980, 1987, 1993\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)lock.c 8.1 (Berkeley) 6/6/93";
#endif
2002-11-16 18:59:26 +03:00
__RCSID("$NetBSD: lock.c,v 1.20 2002/11/16 15:59:28 itojun Exp $");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
/*
* Lock a terminal up until the given key is entered, until the root
* password is entered, or the given interval times out.
*
* Timeout interval is by default TIMEOUT, it can be changed with
* an argument of the form -time where time is in minutes
*/
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
1995-06-27 04:16:17 +04:00
#include <signal.h>
#include <ctype.h>
#include <err.h>
1993-03-21 12:45:37 +03:00
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
1993-03-21 12:45:37 +03:00
#include <string.h>
#include <termios.h>
#include <time.h>
#include <unistd.h>
#ifdef SKEY
#include <skey.h>
#endif
1993-03-21 12:45:37 +03:00
#define TIMEOUT 15
void bye __P((int));
void hi __P((int));
int main __P((int, char **));
void quit __P((int));
#ifdef SKEY
1998-07-27 01:58:46 +04:00
int skey_auth __P((const char *));
#endif
1993-03-21 12:45:37 +03:00
struct timeval timeout;
struct timeval zerotime;
struct termios tty, ntty;
int notimeout; /* no timeout at all */
1993-03-21 12:45:37 +03:00
long nexttime; /* keep the timeout time */
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
char **argv;
{
struct passwd *pw;
struct timeval timval;
struct itimerval ntimer, otimer;
struct tm *timp;
time_t curtime;
1993-03-21 12:45:37 +03:00
int ch, sectimeout, usemine;
1998-07-26 19:23:39 +04:00
char *ap, *mypw, *ttynam;
const char *tzn;
char hostname[MAXHOSTNAMELEN + 1], s[BUFSIZ], s1[BUFSIZ];
1993-03-21 12:45:37 +03:00
if (!(pw = getpwuid(getuid())))
errx(1, "unknown uid %ld.", (u_long) getuid());
setuid(getuid()); /* discard privs */
notimeout = 0;
1993-03-21 12:45:37 +03:00
sectimeout = TIMEOUT;
mypw = NULL;
usemine = 0;
1994-06-30 07:49:43 +04:00
while ((ch = getopt(argc, argv, "npt:")) != -1)
switch ((char)ch) {
case 'n':
notimeout = 1;
break;
1993-03-21 12:45:37 +03:00
case 't':
if ((sectimeout = atoi(optarg)) <= 0)
errx(1, "illegal timeout value: %s", optarg);
1993-03-21 12:45:37 +03:00
break;
case 'p':
usemine = 1;
mypw = strdup(pw->pw_passwd);
2002-11-16 18:59:26 +03:00
if (!mypw)
err(1, "strdup");
1993-03-21 12:45:37 +03:00
break;
case '?':
default:
(void)fprintf(stderr,
"usage: lock [-p] [-t timeout]\n");
exit(1);
}
1993-03-21 12:45:37 +03:00
timeout.tv_sec = sectimeout * 60;
if (tcgetattr(0, &tty) < 0) /* get information for header */
1993-03-21 12:45:37 +03:00
exit(1);
gethostname(hostname, sizeof(hostname));
hostname[sizeof(hostname) - 1] = '\0';
if (!(ttynam = ttyname(0)))
errx(1, "not a terminal?");
if (gettimeofday(&timval, (struct timezone *)NULL))
err(1, "gettimeofday");
curtime = timval.tv_sec;
1993-03-21 12:45:37 +03:00
nexttime = timval.tv_sec + (sectimeout * 60);
timp = localtime(&curtime);
1993-03-21 12:45:37 +03:00
ap = asctime(timp);
#ifdef __SVR4
tzn = tzname[0];
#else
1993-03-21 12:45:37 +03:00
tzn = timp->tm_zone;
#endif
1993-03-21 12:45:37 +03:00
(void)signal(SIGINT, quit);
(void)signal(SIGQUIT, quit);
ntty = tty; ntty.c_lflag &= ~ECHO;
(void)tcsetattr(0, TCSADRAIN, &ntty);
1993-03-21 12:45:37 +03:00
if (!mypw) {
/* get key and check again */
(void)printf("Key: ");
if (!fgets(s, sizeof(s), stdin) || *s == '\n')
quit(0);
1993-03-21 12:45:37 +03:00
(void)printf("\nAgain: ");
/*
* Don't need EOF test here, if we get EOF, then s1 != s
* and the right things will happen.
*/
(void)fgets(s1, sizeof(s1), stdin);
(void)putchar('\n');
if (strcmp(s1, s)) {
(void)printf("\alock: passwords didn't match.\n");
(void)tcsetattr(0, TCSADRAIN, &tty);
1993-03-21 12:45:37 +03:00
exit(1);
}
1997-05-17 23:47:50 +04:00
s[0] = '\0';
1993-03-21 12:45:37 +03:00
mypw = s1;
}
/* set signal handlers */
(void)signal(SIGINT, hi);
(void)signal(SIGQUIT, hi);
(void)signal(SIGTSTP, hi);
if (notimeout) {
(void)signal(SIGALRM, hi);
(void)printf("lock: %s on %s. no timeout.\ntime now is %.20s%s%s",
ttynam, hostname, ap, tzn, ap + 19);
}
else {
(void)signal(SIGALRM, bye);
ntimer.it_interval = zerotime;
ntimer.it_value = timeout;
setitimer(ITIMER_REAL, &ntimer, &otimer);
1993-03-21 12:45:37 +03:00
/* header info */
1993-03-21 12:45:37 +03:00
(void)printf("lock: %s on %s. timeout in %d minutes\ntime now is %.20s%s%s",
ttynam, hostname, sectimeout, ap, tzn, ap + 19);
}
1993-03-21 12:45:37 +03:00
for (;;) {
(void)printf("Key: ");
if (!fgets(s, sizeof(s), stdin)) {
clearerr(stdin);
hi(0);
1993-03-21 12:45:37 +03:00
continue;
}
if (usemine) {
s[strlen(s) - 1] = '\0';
1994-06-30 07:49:43 +04:00
#ifdef SKEY
if (strcasecmp(s, "s/key") == 0) {
if (skey_auth(pw->pw_name))
break;
}
#endif
1993-03-21 12:45:37 +03:00
if (!strcmp(mypw, crypt(s, mypw)))
break;
}
else if (!strcmp(s, s1))
break;
(void)printf("\a\n");
if (tcsetattr(0, TCSADRAIN, &ntty) < 0)
1993-03-21 12:45:37 +03:00
exit(1);
}
quit(0);
/* NOTREACHED */
return (0);
1993-03-21 12:45:37 +03:00
}
1994-06-30 07:49:43 +04:00
#ifdef SKEY
/*
* We can't use libskey's skey_authenticate() since it
* handles signals in a way that's inappropriate
* for our needs. Instead we roll our own.
*/
int
skey_auth(user)
1998-07-27 01:58:46 +04:00
const char *user;
1994-06-30 07:49:43 +04:00
{
2000-07-29 12:40:38 +04:00
char s[128];
const char *ask;
1994-06-30 07:49:43 +04:00
int ret = 0;
if (!skey_haskey(user) && (ask = skey_keyinfo(user))) {
1997-05-17 23:47:50 +04:00
printf("\n[%s]\nResponse: ", ask);
1994-06-30 07:49:43 +04:00
if (!fgets(s, sizeof(s), stdin) || *s == '\n')
clearerr(stdin);
else {
s[strlen(s) - 1] = '\0';
if (skey_passcheck(user, s) != -1)
ret = 1;
}
} else
printf("Sorry, you have no s/key.\n");
return ret;
}
#endif
1993-03-21 12:45:37 +03:00
void
hi(dummy)
int dummy;
1993-03-21 12:45:37 +03:00
{
struct timeval timval;
if (notimeout)
(void)printf("lock: type in the unlock key.\n");
else if (!gettimeofday(&timval, (struct timezone *)NULL))
1993-03-21 12:45:37 +03:00
(void)printf("lock: type in the unlock key. timeout in %ld:%ld minutes\n",
(nexttime - timval.tv_sec) / 60, (nexttime - timval.tv_sec) % 60);
}
void
quit(dummy)
int dummy;
1993-03-21 12:45:37 +03:00
{
(void)putchar('\n');
(void)tcsetattr(0, TCSADRAIN, &tty);
1993-03-21 12:45:37 +03:00
exit(0);
}
void
bye(dummy)
int dummy;
1993-03-21 12:45:37 +03:00
{
(void)tcsetattr(0, TCSADRAIN, &tty);
1993-03-21 12:45:37 +03:00
(void)printf("lock: timeout\n");
exit(1);
}