2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-28 21:07:55 +00:00
sudo/auth/rfc1938.c

137 lines
3.9 KiB
C
Raw Normal View History

1999-07-11 00:32:11 +00:00
/*
1999-07-22 11:00:49 +00:00
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
* All rights reserved.
1999-07-11 00:32:11 +00:00
*
1999-07-22 11:00:49 +00: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. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
1999-07-11 00:32:11 +00:00
*
1999-07-22 11:00:49 +00:00
* THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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.
1999-07-11 00:32:11 +00:00
*/
#include "config.h"
#include <stdio.h>
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif /* STDC_HEADERS */
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
#ifdef HAVE_STRING_H
#include <string.h>
#endif /* HAVE_STRING_H */
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif /* HAVE_STRINGS_H */
#include <sys/param.h>
#include <sys/types.h>
#include <pwd.h>
1999-07-11 18:42:34 +00:00
#if defined(HAVE_SKEY)
1999-07-11 00:32:11 +00:00
#include <skey.h>
1999-07-11 18:42:34 +00:00
#define RFC1938 skey
#define rfc1938challenge skeychallenge
#define rfc1938verify skeyverify
#elif defined(HAVE_OPIE)
#include <opie.h>
#define RFC1938 opie
#define rfc1938challenge opiechallenge
#define rfc1938verify opieverify
#endif
1999-07-11 00:32:11 +00:00
#include "sudo.h"
#include "sudo_auth.h"
#ifndef lint
static const char rcsid[] = "$Sudo$";
#endif /* lint */
int
1999-07-11 18:42:34 +00:00
rfc1938_setup(pw, promptp, data)
1999-07-11 00:32:11 +00:00
struct passwd *pw;
char **promptp;
void **data;
{
char challenge[256];
static char *orig_prompt = NULL, *new_prompt = NULL;
static int op_len, np_size;
1999-07-11 18:42:34 +00:00
static struct RFC1938 rfc1938;
1999-07-11 00:32:11 +00:00
1999-07-11 18:42:34 +00:00
/* Stash a pointer to the rfc1938 struct if we have not initialized */
1999-07-11 00:32:11 +00:00
if (!*data)
1999-07-11 18:42:34 +00:00
*data = &rfc1938;
1999-07-11 00:32:11 +00:00
/* Save the original prompt */
if (orig_prompt == NULL) {
orig_prompt = *promptp;
op_len = strlen(orig_prompt);
/* Ignore trailing colon (we will add our own) */
if (orig_prompt[op_len - 1] == ':')
op_len--;
}
1999-07-11 18:42:34 +00:00
#ifdef HAVE_SKEY
1999-07-11 00:32:11 +00:00
/* Close old stream */
1999-07-11 18:42:34 +00:00
if (rfc1938.keyfile)
(void) fclose(rfc1938.keyfile);
#endif
1999-07-11 00:32:11 +00:00
1999-07-11 18:42:34 +00:00
/* Get the rfc1938 part of the prompt */
if (rfc1938challenge(&rfc1938, pw->pw_name, challenge) != 0) {
1999-07-11 00:32:11 +00:00
#ifdef OTP_ONLY
(void) fprintf(stderr,
1999-07-11 18:42:34 +00:00
"%s: You do not exist in the OTP database.\n",
1999-07-11 00:32:11 +00:00
Argv[0]);
return(AUTH_FATAL);
#else
return(AUTH_FAILURE);
#endif /* OTP_ONLY */
}
/* Get space for new prompt with embedded S/Key challenge */
if (np_size < op_len + strlen(challenge) + 7) {
np_size = op_len + strlen(challenge) + 7;
new_prompt = (char *) erealloc(new_prompt, np_size);
}
#ifdef LONG_OTP_PROMPT
(void) sprintf(new_prompt, "%s\n%s", challenge, orig_prompt);
#else
(void) sprintf(new_prompt, "%.*s [ %s ]:", op_len, orig_prompt, challenge);
#endif /* LONG_OTP_PROMPT */
*promptp = new_prompt;
return(AUTH_SUCCESS);
}
int
1999-07-11 18:42:34 +00:00
rfc1938_verify(pw, pass, data)
1999-07-11 00:32:11 +00:00
struct passwd *pw;
char *pass;
void **data;
{
1999-07-11 18:42:34 +00:00
if (rfc1938verify((struct RFC1938 *) (*data), pass) == 0)
1999-07-11 00:32:11 +00:00
return(AUTH_SUCCESS);
else
return(AUTH_FAILURE);
}