
gain us anything to run as the user since an attacker can just have an setuid(0) in their egg. Running as root solves potential problems wrt signalling.
220 lines
6.1 KiB
C
220 lines
6.1 KiB
C
/*
|
|
* Copyright (c) 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
* All rights reserved.
|
|
*
|
|
* 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.
|
|
*
|
|
* 4. Products derived from this software may not be called "Sudo" nor
|
|
* may "Sudo" appear in their names without specific prior written
|
|
* permission from the author.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#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>
|
|
#include <time.h>
|
|
|
|
#include "sudo.h"
|
|
#include "sudo_auth.h"
|
|
#include "insults.h"
|
|
|
|
#ifndef lint
|
|
static const char rcsid[] = "$Sudo$";
|
|
#endif /* lint */
|
|
|
|
sudo_auth auth_switch[] = {
|
|
#ifdef AUTH_STANDALONE
|
|
AUTH_STANDALONE
|
|
#else
|
|
# ifndef WITHOUT_PASSWD
|
|
AUTH_ENTRY(0, "passwd", NULL, NULL, passwd_verify, NULL)
|
|
# endif
|
|
# if defined(HAVE_SECUREWARE) && !defined(WITHOUT_PASSWD)
|
|
AUTH_ENTRY(0, "secureware", secureware_init, NULL, secureware_verify, NULL)
|
|
# endif
|
|
# ifdef HAVE_AFS
|
|
AUTH_ENTRY(0, "afs", NULL, NULL, afs_verify, NULL)
|
|
# endif
|
|
# ifdef HAVE_KERB4
|
|
AUTH_ENTRY(0, "kerb4", kerb4_init, NULL, kerb4_verify, NULL)
|
|
# endif
|
|
# ifdef HAVE_KERB5
|
|
AUTH_ENTRY(0, "kerb5", kerb5_init, NULL, kerb5_verify, NULL)
|
|
# endif
|
|
# ifdef HAVE_SKEY
|
|
AUTH_ENTRY(0, "S/Key", NULL, rfc1938_setup, rfc1938_verify, NULL)
|
|
# endif
|
|
# ifdef HAVE_OPIE
|
|
AUTH_ENTRY(0, "OPIE", NULL, rfc1938_setup, rfc1938_verify, NULL)
|
|
# endif
|
|
#endif /* AUTH_STANDALONE */
|
|
AUTH_ENTRY(0, NULL, NULL, NULL, NULL, NULL)
|
|
};
|
|
|
|
int nil_pw; /* I hate resorting to globals like this... */
|
|
|
|
void
|
|
verify_user()
|
|
{
|
|
short counter = TRIES_FOR_PASSWORD + 1;
|
|
short success = AUTH_FAILURE;
|
|
short status;
|
|
char *p;
|
|
sudo_auth *auth;
|
|
|
|
/* Set FLAG_ONEANDONLY if there is only one auth method. */
|
|
if (auth_switch[0].name && !auth_switch[1].name)
|
|
auth_switch[0].flags |= FLAG_ONEANDONLY;
|
|
|
|
/* Initialize auth methods and unconfigure the method if necessary. */
|
|
for (auth = auth_switch; auth->name; auth++) {
|
|
if (auth->init && IS_CONFIGURED(auth)) {
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_USER, 0);
|
|
|
|
status = (auth->init)(sudo_user.pw, &user_prompt, auth);
|
|
if (status == AUTH_FAILURE)
|
|
auth->flags &= ~FLAG_CONFIGURED;
|
|
else if (status == AUTH_FATAL) /* XXX log */
|
|
exit(1); /* assume error msg already printed */
|
|
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_ROOT, 0);
|
|
}
|
|
}
|
|
|
|
while (--counter) {
|
|
/* Do any per-method setup and unconfigure the method if needed */
|
|
for (auth = auth_switch; auth->name; auth++) {
|
|
if (auth->setup && IS_CONFIGURED(auth)) {
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_USER, 0);
|
|
|
|
status = (auth->setup)(sudo_user.pw, &user_prompt, auth);
|
|
if (status == AUTH_FAILURE)
|
|
auth->flags &= ~FLAG_CONFIGURED;
|
|
else if (status == AUTH_FATAL) /* XXX log */
|
|
exit(1); /* assume error msg already printed */
|
|
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_ROOT, 0);
|
|
}
|
|
}
|
|
|
|
/* Get the password unless the auth function will do it for us */
|
|
nil_pw = 0;
|
|
#if defined(AUTH_STANDALONE)
|
|
p = user_prompt;
|
|
#else
|
|
p = (char *) tgetpass(user_prompt, PASSWORD_TIMEOUT * 60, 1);
|
|
if (!p || *p == '\0')
|
|
nil_pw = 1;
|
|
#endif /* AUTH_STANDALONE */
|
|
|
|
/* Call authentication functions. */
|
|
for (auth = auth_switch; auth->name; auth++) {
|
|
if (!IS_CONFIGURED(auth))
|
|
continue;
|
|
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_USER, 0);
|
|
|
|
success = auth->status = (auth->verify)(sudo_user.pw, p, auth);
|
|
(void) memset(p, 0, strlen(p));
|
|
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_ROOT, 0);
|
|
|
|
if (auth->status != AUTH_FAILURE)
|
|
goto cleanup;
|
|
}
|
|
|
|
/* Exit loop on nil password, but give it a chance to match first. */
|
|
if (nil_pw) {
|
|
if (counter == TRIES_FOR_PASSWORD)
|
|
exit(1);
|
|
else
|
|
break;
|
|
}
|
|
|
|
pass_warn(stderr);
|
|
}
|
|
|
|
cleanup:
|
|
/* Call cleanup routines. */
|
|
for (auth = auth_switch; auth->name; auth++) {
|
|
if (auth->cleanup && IS_CONFIGURED(auth)) {
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_USER, 0);
|
|
|
|
status = (auth->cleanup)(sudo_user.pw, auth);
|
|
if (status == AUTH_FATAL) /* XXX log */
|
|
exit(1); /* assume error msg already printed */
|
|
|
|
if (NEEDS_USER(auth))
|
|
set_perms(PERM_ROOT, 0);
|
|
}
|
|
}
|
|
|
|
switch (success) {
|
|
case AUTH_SUCCESS:
|
|
return;
|
|
case AUTH_FAILURE:
|
|
log_error(NO_MAIL, "%d incorrect password attempt%s",
|
|
TRIES_FOR_PASSWORD - counter,
|
|
(TRIES_FOR_PASSWORD - counter == 1) ? "" : "s");
|
|
case AUTH_FATAL:
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
void
|
|
pass_warn(fp)
|
|
FILE *fp;
|
|
{
|
|
|
|
#ifdef USE_INSULTS
|
|
(void) fprintf(fp, "%s\n", INSULT);
|
|
#else
|
|
(void) fprintf(fp, "%s\n", INCORRECT_PASSWORD);
|
|
#endif /* USE_INSULTS */
|
|
}
|