NetBSD/lib/libskey/skeylogin.c

367 lines
7.4 KiB
C
Raw Normal View History

1998-07-27 01:58:46 +04:00
/* $NetBSD: skeylogin.c,v 1.9 1998/07/26 21:58:46 mycroft Exp $ */
1996-09-19 23:39:36 +04:00
1994-05-21 09:45:58 +04:00
/* S/KEY v1.1b (skeylogin.c)
*
* Authors:
* Neil M. Haller <nmh@thumper.bellcore.com>
* Philip R. Karn <karn@chicago.qualcomm.com>
* John S. Walden <jsw@thumper.bellcore.com>
* Scott Chasin <chasin@crimelab.com>
*
* S/KEY verification check, lookups, and authentication.
*/
#include <sys/param.h>
#ifdef QUOTA
#include <sys/quota.h>
#endif
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/timeb.h>
#include <sys/resource.h>
1994-05-21 09:45:58 +04:00
#include <stdio.h>
#include <stdlib.h>
1994-05-21 09:45:58 +04:00
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <errno.h>
#include "skey.h"
1994-05-21 09:45:58 +04:00
#define _PATH_KEYFILE "/etc/skeykeys"
1994-05-21 09:45:58 +04:00
/* Issue a skey challenge for user 'name'. If successful,
* fill in the caller's skey structure and return 0. If unsuccessful
* (e.g., if name is unknown) return -1.
*
* The file read/write pointer is left at the start of the
* record.
*/
int
getskeyprompt(mp,name,prompt)
struct skey *mp;
char *name;
char *prompt;
1994-05-21 09:45:58 +04:00
{
int rval;
sevenbit(name);
rval = skeylookup(mp,name);
#if 0
strcpy(prompt, "s/key 55 latour1\n");
#endif
switch (rval) {
1994-05-21 09:45:58 +04:00
case -1: /* File error */
return -1;
case 0: /* Lookup succeeded, return challenge */
sprintf(prompt,"s/key %d %s\n",mp->n - 1,mp->seed); /* XXX: sprintf (getskeyprompt()) appears unused */
1994-05-21 09:45:58 +04:00
return 0;
case 1: /* User not found */
fclose(mp->keyfile);
return -1;
}
return -1; /* Can't happen */
}
1994-05-21 09:45:58 +04:00
/* Return a skey challenge string for user 'name'. If successful,
* fill in the caller's skey structure and return 0. If unsuccessful
* (e.g., if name is unknown) return -1.
*
* The file read/write pointer is left at the start of the
* record.
*/
int
skeychallenge(mp,name, ss, sslen)
struct skey *mp;
1998-07-27 01:58:46 +04:00
const char *name;
char *ss;
int sslen;
1994-05-21 09:45:58 +04:00
{
int rval;
rval = skeylookup(mp,name);
switch(rval){
case -1: /* File error */
return -1;
case 0: /* Lookup succeeded, issue challenge */
(void)snprintf(ss, sslen, "s/key %d %s",mp->n - 1,mp->seed);
1994-05-21 09:45:58 +04:00
return 0;
case 1: /* User not found */
fclose(mp->keyfile);
return -1;
}
return -1; /* Can't happen */
}
/* Find an entry in the One-time Password database.
* Return codes:
* -1: error in opening database
* 0: entry found, file R/W pointer positioned at beginning of record
* 1: entry not found, file R/W pointer positioned at EOF
*/
int
skeylookup(mp,name)
struct skey *mp;
1998-07-27 01:58:46 +04:00
const char *name;
1994-05-21 09:45:58 +04:00
{
int found;
int len;
long recstart = 0;
1994-05-21 09:45:58 +04:00
char *cp;
struct stat statbuf;
/* See if the _PATH_KEYFILE exists, and create it if not */
1994-05-31 12:50:31 +04:00
if (stat(_PATH_KEYFILE,&statbuf) == -1 && errno == ENOENT) {
mp->keyfile = fopen(_PATH_KEYFILE,"w+");
if (mp->keyfile)
chmod(_PATH_KEYFILE, 0644);
1994-05-21 09:45:58 +04:00
} else {
/* Otherwise open normally for update */
mp->keyfile = fopen(_PATH_KEYFILE,"r+");
1994-05-21 09:45:58 +04:00
}
if (mp->keyfile == NULL)
1994-05-21 09:45:58 +04:00
return -1;
/* Look up user name in database */
len = strlen(name);
if( len > 8 ) len = 8; /* Added 8/2/91 - nmh */
found = 0;
while (!feof(mp->keyfile)) {
1994-05-21 09:45:58 +04:00
recstart = ftell(mp->keyfile);
mp->recstart = recstart;
if (fgets(mp->buf,sizeof(mp->buf),mp->keyfile) != mp->buf) {
1994-05-21 09:45:58 +04:00
break;
}
rip(mp->buf);
if (mp->buf[0] == '#')
1994-05-21 09:45:58 +04:00
continue; /* Comment */
if ((mp->logname = strtok(mp->buf," \t")) == NULL)
1994-05-21 09:45:58 +04:00
continue;
if ((cp = strtok(NULL," \t")) == NULL)
1994-05-21 09:45:58 +04:00
continue;
mp->n = atoi(cp);
if ((mp->seed = strtok(NULL," \t")) == NULL)
1994-05-21 09:45:58 +04:00
continue;
if ((mp->val = strtok(NULL," \t")) == NULL)
1994-05-21 09:45:58 +04:00
continue;
if (strlen(mp->logname) == len
1994-05-21 09:45:58 +04:00
&& strncmp(mp->logname,name,len) == 0){
found = 1;
break;
}
}
if (found) {
1994-05-21 09:45:58 +04:00
fseek(mp->keyfile,recstart,0);
return 0;
} else
return 1;
}
/* Verify response to a s/key challenge.
*
* Return codes:
* -1: Error of some sort; database unchanged
* 0: Verify successful, database updated
* 1: Verify failed, database unchanged
*
* The database file is always closed by this call.
*/
int
skeyverify(mp,response)
struct skey *mp;
char *response;
1994-05-21 09:45:58 +04:00
{
char key[8];
char fkey[8];
char filekey[8];
time_t now;
struct tm *tm;
char tbuf[27];
1994-05-21 09:45:58 +04:00
char *cp;
time(&now);
tm = localtime(&now);
strftime(tbuf, sizeof(tbuf), " %b %d,%Y %T", tm);
if (response == NULL) {
1994-05-21 09:45:58 +04:00
fclose(mp->keyfile);
return -1;
}
rip(response);
1994-05-21 09:45:58 +04:00
/* Convert response to binary */
if (etob(key, response) != 1 && atob8(key, response) != 0) {
1994-05-21 09:45:58 +04:00
/* Neither english words or ascii hex */
fclose(mp->keyfile);
return -1;
}
/* Compute fkey = f(key) */
memcpy(fkey,key,sizeof(key));
fflush (stdout);
f(fkey);
/*
* in order to make the window of update as short as possible
* we must do the comparison here and if OK write it back
* other wise the same password can be used twice to get in
* to the system
*/
1994-05-21 09:45:58 +04:00
setpriority(PRIO_PROCESS, 0, -4);
/* reread the file record NOW*/
fseek(mp->keyfile,mp->recstart,0);
if (fgets(mp->buf,sizeof(mp->buf),mp->keyfile) != mp->buf){
1994-05-21 09:45:58 +04:00
setpriority(PRIO_PROCESS, 0, 0);
fclose(mp->keyfile);
return -1;
}
rip(mp->buf);
mp->logname = strtok(mp->buf," \t");
cp = strtok(NULL," \t") ;
mp->seed = strtok(NULL," \t");
mp->val = strtok(NULL," \t");
/* And convert file value to hex for comparison */
atob8(filekey,mp->val);
/* Do actual comparison */
fflush (stdout);
if (memcmp(filekey,fkey,8) != 0){
1994-05-21 09:45:58 +04:00
/* Wrong response */
setpriority(PRIO_PROCESS, 0, 0);
fclose(mp->keyfile);
return 1;
}
/*
* Update key in database by overwriting entire record. Note
1994-05-21 09:45:58 +04:00
* that we must write exactly the same number of bytes as in
* the original record (note fixed width field for N)
*/
btoa8(mp->val,key);
mp->n--;
fseek(mp->keyfile,mp->recstart,0);
fprintf(mp->keyfile, "%s %04d %-16s %s %-21s\n",
mp->logname,mp->n,mp->seed, mp->val, tbuf);
1994-05-21 09:45:58 +04:00
fclose(mp->keyfile);
setpriority(PRIO_PROCESS, 0, 0);
return 0;
}
/*
* skey_haskey ()
*
* Returns: 1 user doesnt exist, -1 fle error, 0 user exists.
*
*/
int
1994-05-21 09:45:58 +04:00
skey_haskey (username)
1998-07-27 01:58:46 +04:00
const char *username;
1994-05-21 09:45:58 +04:00
{
struct skey skey;
1994-05-21 09:45:58 +04:00
return (skeylookup (&skey, username));
1994-05-21 09:45:58 +04:00
}
/*
* skey_keyinfo ()
*
* Returns the current sequence number and
* seed for the passed user.
*
*/
char *
skey_keyinfo (username)
1998-07-27 01:58:46 +04:00
const char *username;
1994-05-21 09:45:58 +04:00
{
int i;
static char str [50];
struct skey skey;
i = skeychallenge (&skey, username, str, sizeof str);
if (i == -1)
return 0;
1994-05-21 09:45:58 +04:00
return str;
1994-05-21 09:45:58 +04:00
}
/*
* skey_passcheck ()
*
* Check to see if answer is the correct one to the current
* challenge.
*
* Returns: 0 success, -1 failure
*
*/
int
1994-05-21 09:45:58 +04:00
skey_passcheck (username, passwd)
1998-07-27 01:58:46 +04:00
const char *username;
char *passwd;
1994-05-21 09:45:58 +04:00
{
int i;
struct skey skey;
i = skeylookup (&skey, username);
if (i == -1 || i == 1)
return -1;
if (skeyverify (&skey, passwd) == 0)
return skey.n;
return -1;
1994-05-21 09:45:58 +04:00
}
/*
* skey_authenticate ()
*
* Used when calling program will allow input of the user's
* response to the challenge.
*
* Returns: 0 success, -1 failure
*
*/
int
1994-05-21 09:45:58 +04:00
skey_authenticate (username)
1998-07-27 01:58:46 +04:00
const char *username;
1994-05-21 09:45:58 +04:00
{
int i;
char pbuf[256], skeyprompt[50];
struct skey skey;
/* Attempt a S/Key challenge */
i = skeychallenge (&skey, username, skeyprompt, sizeof skeyprompt);
1994-05-21 09:45:58 +04:00
if (i == -2)
return 0;
printf("[%s]\n", skeyprompt);
fflush(stdout);
printf("Response: ");
readskey(pbuf, sizeof (pbuf));
rip(pbuf);
/* Is it a valid response? */
if (i == 0 && skeyverify (&skey, pbuf) == 0) {
if (skey.n < 5) {
printf ("\nWarning! Key initialization needed soon. ");
printf ("(%d logins left)\n", skey.n);
}
return 0;
}
return -1;
}