Home | History | Annotate | Line # | Download | only in lock
lock.c revision 1.3
      1  1.1      cgd /*
      2  1.1      cgd  * Copyright (c) 1980, 1987 Regents of the University of California.
      3  1.1      cgd  * All rights reserved.
      4  1.1      cgd  *
      5  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      6  1.1      cgd  * modification, are permitted provided that the following conditions
      7  1.1      cgd  * are met:
      8  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
      9  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     10  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     12  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     13  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     14  1.1      cgd  *    must display the following acknowledgement:
     15  1.1      cgd  *	This product includes software developed by the University of
     16  1.1      cgd  *	California, Berkeley and its contributors.
     17  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     18  1.1      cgd  *    may be used to endorse or promote products derived from this software
     19  1.1      cgd  *    without specific prior written permission.
     20  1.1      cgd  *
     21  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1      cgd  * SUCH DAMAGE.
     32  1.1      cgd  */
     33  1.1      cgd 
     34  1.1      cgd #ifndef lint
     35  1.1      cgd char copyright[] =
     36  1.1      cgd "@(#) Copyright (c) 1980, 1987 Regents of the University of California.\n\
     37  1.1      cgd  All rights reserved.\n";
     38  1.1      cgd #endif /* not lint */
     39  1.1      cgd 
     40  1.1      cgd #ifndef lint
     41  1.2  mycroft /*static char sccsid[] = "from: @(#)lock.c	5.13 (Berkeley) 6/1/90";*/
     42  1.3  deraadt static char rcsid[] = "$Id: lock.c,v 1.3 1994/06/30 03:49:48 deraadt Exp $";
     43  1.1      cgd #endif /* not lint */
     44  1.1      cgd 
     45  1.1      cgd /*
     46  1.1      cgd  * Lock a terminal up until the given key is entered, until the root
     47  1.1      cgd  * password is entered, or the given interval times out.
     48  1.1      cgd  *
     49  1.1      cgd  * Timeout interval is by default TIMEOUT, it can be changed with
     50  1.1      cgd  * an argument of the form -time where time is in minutes
     51  1.1      cgd  */
     52  1.1      cgd 
     53  1.1      cgd #include <sys/param.h>
     54  1.1      cgd #include <sys/stat.h>
     55  1.1      cgd #include <sys/time.h>
     56  1.1      cgd #include <sys/signal.h>
     57  1.1      cgd #include <sgtty.h>
     58  1.1      cgd #include <pwd.h>
     59  1.1      cgd #include <stdio.h>
     60  1.1      cgd #include <ctype.h>
     61  1.1      cgd #include <string.h>
     62  1.1      cgd 
     63  1.1      cgd #define	TIMEOUT	15
     64  1.1      cgd 
     65  1.1      cgd void quit(), bye(), hi();
     66  1.1      cgd 
     67  1.1      cgd struct timeval	timeout;
     68  1.1      cgd struct timeval	zerotime;
     69  1.1      cgd struct sgttyb	tty, ntty;
     70  1.1      cgd long	nexttime;			/* keep the timeout time */
     71  1.1      cgd 
     72  1.1      cgd /*ARGSUSED*/
     73  1.1      cgd main(argc, argv)
     74  1.1      cgd 	int argc;
     75  1.1      cgd 	char **argv;
     76  1.1      cgd {
     77  1.1      cgd 	extern char *optarg;
     78  1.1      cgd 	extern int errno, optind;
     79  1.1      cgd 	struct passwd *pw;
     80  1.1      cgd 	struct timeval timval;
     81  1.1      cgd 	struct itimerval ntimer, otimer;
     82  1.1      cgd 	struct tm *timp;
     83  1.1      cgd 	int ch, sectimeout, usemine;
     84  1.1      cgd 	char *ap, *mypw, *ttynam, *tzn;
     85  1.1      cgd 	char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
     86  1.1      cgd 	char *crypt(), *ttyname();
     87  1.1      cgd 
     88  1.1      cgd 	sectimeout = TIMEOUT;
     89  1.1      cgd 	mypw = NULL;
     90  1.1      cgd 	usemine = 0;
     91  1.3  deraadt 
     92  1.3  deraadt 	if (!(pw = getpwuid(getuid()))) {
     93  1.3  deraadt 		(void)fprintf(stderr,
     94  1.3  deraadt 		    "lock: unknown uid %d.\n", getuid());
     95  1.3  deraadt 		exit(1);
     96  1.3  deraadt 	}
     97  1.3  deraadt 
     98  1.1      cgd 	while ((ch = getopt(argc, argv, "pt:")) != EOF)
     99  1.1      cgd 		switch((char)ch) {
    100  1.1      cgd 		case 't':
    101  1.1      cgd 			if ((sectimeout = atoi(optarg)) <= 0) {
    102  1.1      cgd 				(void)fprintf(stderr,
    103  1.1      cgd 				    "lock: illegal timeout value.\n");
    104  1.1      cgd 				exit(1);
    105  1.1      cgd 			}
    106  1.1      cgd 			break;
    107  1.1      cgd 		case 'p':
    108  1.1      cgd 			usemine = 1;
    109  1.1      cgd 			mypw = strdup(pw->pw_passwd);
    110  1.1      cgd 			break;
    111  1.1      cgd 		case '?':
    112  1.1      cgd 		default:
    113  1.1      cgd 			(void)fprintf(stderr,
    114  1.1      cgd 			    "usage: lock [-p] [-t timeout]\n");
    115  1.1      cgd 			exit(1);
    116  1.1      cgd 	}
    117  1.1      cgd 	timeout.tv_sec = sectimeout * 60;
    118  1.1      cgd 
    119  1.1      cgd 	setuid(getuid());		/* discard privs */
    120  1.1      cgd 
    121  1.1      cgd 	if (ioctl(0, TIOCGETP, &tty))	/* get information for header */
    122  1.1      cgd 		exit(1);
    123  1.1      cgd 	gethostname(hostname, sizeof(hostname));
    124  1.1      cgd 	if (!(ttynam = ttyname(0))) {
    125  1.1      cgd 		(void)printf("lock: not a terminal?\n");
    126  1.1      cgd 		exit(1);
    127  1.1      cgd 	}
    128  1.1      cgd 	if (gettimeofday(&timval, (struct timezone *)NULL)) {
    129  1.1      cgd 		(void)fprintf(stderr,
    130  1.1      cgd 		    "lock: gettimeofday: %s\n", strerror(errno));
    131  1.1      cgd 		exit(1);
    132  1.1      cgd 	}
    133  1.1      cgd 	nexttime = timval.tv_sec + (sectimeout * 60);
    134  1.1      cgd 	timp = localtime(&timval.tv_sec);
    135  1.1      cgd 	ap = asctime(timp);
    136  1.1      cgd 	tzn = timp->tm_zone;
    137  1.1      cgd 
    138  1.1      cgd 	(void)signal(SIGINT, quit);
    139  1.1      cgd 	(void)signal(SIGQUIT, quit);
    140  1.1      cgd 	ntty = tty; ntty.sg_flags &= ~ECHO;
    141  1.1      cgd 	(void)ioctl(0, TIOCSETP, &ntty);
    142  1.1      cgd 
    143  1.1      cgd 	if (!mypw) {
    144  1.1      cgd 		/* get key and check again */
    145  1.1      cgd 		(void)printf("Key: ");
    146  1.1      cgd 		if (!fgets(s, sizeof(s), stdin) || *s == '\n')
    147  1.1      cgd 			quit();
    148  1.1      cgd 		(void)printf("\nAgain: ");
    149  1.1      cgd 		/*
    150  1.1      cgd 		 * Don't need EOF test here, if we get EOF, then s1 != s
    151  1.1      cgd 		 * and the right things will happen.
    152  1.1      cgd 		 */
    153  1.1      cgd 		(void)fgets(s1, sizeof(s1), stdin);
    154  1.1      cgd 		(void)putchar('\n');
    155  1.1      cgd 		if (strcmp(s1, s)) {
    156  1.1      cgd 			(void)printf("\07lock: passwords didn't match.\n");
    157  1.1      cgd 			ioctl(0, TIOCSETP, &tty);
    158  1.1      cgd 			exit(1);
    159  1.1      cgd 		}
    160  1.1      cgd 		s[0] = NULL;
    161  1.1      cgd 		mypw = s1;
    162  1.1      cgd 	}
    163  1.1      cgd 
    164  1.1      cgd 	/* set signal handlers */
    165  1.1      cgd 	(void)signal(SIGINT, hi);
    166  1.1      cgd 	(void)signal(SIGQUIT, hi);
    167  1.1      cgd 	(void)signal(SIGTSTP, hi);
    168  1.1      cgd 	(void)signal(SIGALRM, bye);
    169  1.1      cgd 
    170  1.1      cgd 	ntimer.it_interval = zerotime;
    171  1.1      cgd 	ntimer.it_value = timeout;
    172  1.1      cgd 	setitimer(ITIMER_REAL, &ntimer, &otimer);
    173  1.1      cgd 
    174  1.1      cgd 	/* header info */
    175  1.1      cgd (void)printf("lock: %s on %s. timeout in %d minutes\ntime now is %.20s%s%s",
    176  1.1      cgd 	    ttynam, hostname, sectimeout, ap, tzn, ap + 19);
    177  1.1      cgd 
    178  1.1      cgd 	for (;;) {
    179  1.1      cgd 		(void)printf("Key: ");
    180  1.1      cgd 		if (!fgets(s, sizeof(s), stdin)) {
    181  1.1      cgd 			clearerr(stdin);
    182  1.1      cgd 			hi();
    183  1.1      cgd 			continue;
    184  1.1      cgd 		}
    185  1.1      cgd 		if (usemine) {
    186  1.1      cgd 			s[strlen(s) - 1] = '\0';
    187  1.3  deraadt #ifdef SKEY
    188  1.3  deraadt 			if (strcasecmp(s, "s/key") == 0) {
    189  1.3  deraadt 				if (skey_auth(pw->pw_name))
    190  1.3  deraadt 					break;
    191  1.3  deraadt 			}
    192  1.3  deraadt #endif
    193  1.1      cgd 			if (!strcmp(mypw, crypt(s, mypw)))
    194  1.1      cgd 				break;
    195  1.1      cgd 		}
    196  1.1      cgd 		else if (!strcmp(s, s1))
    197  1.1      cgd 			break;
    198  1.1      cgd 		(void)printf("\07\n");
    199  1.1      cgd 		if (ioctl(0, TIOCGETP, &ntty))
    200  1.1      cgd 			exit(1);
    201  1.1      cgd 	}
    202  1.1      cgd 	quit();
    203  1.1      cgd }
    204  1.3  deraadt 
    205  1.3  deraadt #ifdef SKEY
    206  1.3  deraadt /*
    207  1.3  deraadt  * We can't use libskey's skey_authenticate() since it
    208  1.3  deraadt  * handles signals in a way that's inappropriate
    209  1.3  deraadt  * for our needs. Instead we roll our own.
    210  1.3  deraadt  */
    211  1.3  deraadt int
    212  1.3  deraadt skey_auth(char *user)
    213  1.3  deraadt {
    214  1.3  deraadt 	char s[128], *ask, *skey_keyinfo __P((char *name));
    215  1.3  deraadt 	int ret = 0;
    216  1.3  deraadt 
    217  1.3  deraadt 	if (!skey_haskey(user) && (ask = skey_keyinfo(user))) {
    218  1.3  deraadt 		printf("\n[%s]\nResponse: ", ask);
    219  1.3  deraadt 		if (!fgets(s, sizeof(s), stdin) || *s == '\n')
    220  1.3  deraadt 			clearerr(stdin);
    221  1.3  deraadt 		else {
    222  1.3  deraadt 			s[strlen(s) - 1] = '\0';
    223  1.3  deraadt 			if (skey_passcheck(user, s) != -1)
    224  1.3  deraadt 				ret = 1;
    225  1.3  deraadt 		}
    226  1.3  deraadt 	} else
    227  1.3  deraadt 		printf("Sorry, you have no s/key.\n");
    228  1.3  deraadt 	return ret;
    229  1.3  deraadt }
    230  1.3  deraadt #endif
    231  1.1      cgd 
    232  1.1      cgd void
    233  1.1      cgd hi()
    234  1.1      cgd {
    235  1.1      cgd 	struct timeval timval;
    236  1.1      cgd 
    237  1.1      cgd 	if (!gettimeofday(&timval, (struct timezone *)NULL))
    238  1.1      cgd (void)printf("lock: type in the unlock key. timeout in %ld:%ld minutes\n",
    239  1.1      cgd 	    (nexttime - timval.tv_sec) / 60, (nexttime - timval.tv_sec) % 60);
    240  1.1      cgd }
    241  1.1      cgd 
    242  1.1      cgd void
    243  1.1      cgd quit()
    244  1.1      cgd {
    245  1.1      cgd 	(void)putchar('\n');
    246  1.1      cgd 	(void)ioctl(0, TIOCSETP, &tty);
    247  1.1      cgd 	exit(0);
    248  1.1      cgd }
    249  1.1      cgd 
    250  1.1      cgd void
    251  1.1      cgd bye()
    252  1.1      cgd {
    253  1.1      cgd 	(void)ioctl(0, TIOCSETP, &tty);
    254  1.1      cgd 	(void)printf("lock: timeout\n");
    255  1.1      cgd 	exit(1);
    256  1.1      cgd }
    257