1999-10-27 03:42:43 +00:00
|
|
|
/*
|
1999-11-24 13:26:21 +00:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Password authentication. This file contains the functions to check whether
|
|
|
|
* the password is valid for the user.
|
2000-09-16 02:29:08 +00:00
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Dug Song. All rights reserved.
|
|
|
|
* Copyright (c) 2000 Markus Friedl. 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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-11-24 13:26:21 +00:00
|
|
|
*/
|
1999-10-27 03:42:43 +00:00
|
|
|
|
|
|
|
#include "includes.h"
|
2002-06-21 06:05:12 +00:00
|
|
|
RCSID("$OpenBSD: auth-passwd.c,v 1.27 2002/05/24 16:45:16 stevesk Exp $");
|
1999-10-27 03:42:43 +00:00
|
|
|
|
|
|
|
#include "packet.h"
|
2001-01-22 05:34:40 +00:00
|
|
|
#include "log.h"
|
|
|
|
#include "servconf.h"
|
2001-01-19 04:26:52 +00:00
|
|
|
#include "auth.h"
|
2003-07-24 06:52:13 +00:00
|
|
|
#include "openbsd-compat/xcrypt.h"
|
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
|
|
|
# include "buffer.h"
|
|
|
|
# include "canohost.h"
|
|
|
|
extern Buffer loginmsg;
|
|
|
|
#endif
|
2001-02-18 06:01:00 +00:00
|
|
|
|
|
|
|
extern ServerOptions options;
|
|
|
|
|
1999-11-24 13:26:21 +00:00
|
|
|
/*
|
|
|
|
* Tries to authenticate the user using password. Returns true if
|
|
|
|
* authentication succeeds.
|
|
|
|
*/
|
2000-04-16 01:18:38 +00:00
|
|
|
int
|
2001-02-18 06:01:00 +00:00
|
|
|
auth_password(Authctxt *authctxt, const char *password)
|
1999-10-27 03:42:43 +00:00
|
|
|
{
|
2002-05-10 02:40:15 +00:00
|
|
|
struct passwd * pw = authctxt->pw;
|
2003-04-29 13:22:40 +00:00
|
|
|
int ok = authctxt->valid;
|
1999-10-27 03:42:43 +00:00
|
|
|
|
1999-12-29 22:48:15 +00:00
|
|
|
/* deny if no user. */
|
|
|
|
if (pw == NULL)
|
2003-04-29 13:22:40 +00:00
|
|
|
ok = 0;
|
2000-09-05 05:13:06 +00:00
|
|
|
#ifndef HAVE_CYGWIN
|
2003-04-29 13:22:40 +00:00
|
|
|
if (pw && pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
|
|
|
|
ok = 0;
|
2000-09-05 05:13:06 +00:00
|
|
|
#endif
|
2002-05-10 02:40:15 +00:00
|
|
|
if (*password == '\0' && options.permit_empty_passwd == 0)
|
2003-04-29 13:22:40 +00:00
|
|
|
ok = 0;
|
2003-01-22 04:42:26 +00:00
|
|
|
|
2003-04-29 13:22:40 +00:00
|
|
|
if (!ok)
|
|
|
|
return 0;
|
2003-07-24 06:52:13 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_OSF_SIA)
|
2003-01-22 04:42:26 +00:00
|
|
|
return auth_sia_password(authctxt, password);
|
|
|
|
#else
|
|
|
|
# ifdef KRB5
|
2001-07-04 04:21:14 +00:00
|
|
|
if (options.kerberos_authentication == 1) {
|
|
|
|
int ret = auth_krb5_password(authctxt, password);
|
|
|
|
if (ret == 1 || ret == 0)
|
|
|
|
return ret;
|
|
|
|
/* Fall back to ordinary passwd authentication. */
|
|
|
|
}
|
2003-01-22 04:42:26 +00:00
|
|
|
# endif
|
|
|
|
# ifdef HAVE_CYGWIN
|
2000-09-05 05:13:06 +00:00
|
|
|
if (is_winnt) {
|
|
|
|
HANDLE hToken = cygwin_logon_user(pw, password);
|
|
|
|
|
|
|
|
if (hToken == INVALID_HANDLE_VALUE)
|
2003-06-03 00:25:48 +00:00
|
|
|
return (0);
|
2000-09-05 05:13:06 +00:00
|
|
|
cygwin_set_impersonation_token(hToken);
|
2003-06-03 00:25:48 +00:00
|
|
|
return (1);
|
2000-09-05 05:13:06 +00:00
|
|
|
}
|
2003-01-22 04:42:26 +00:00
|
|
|
# endif
|
|
|
|
# ifdef WITH_AIXAUTHENTICATE
|
2003-07-24 06:52:13 +00:00
|
|
|
{
|
|
|
|
char *authmsg;
|
|
|
|
int reenter = 1;
|
|
|
|
int authsuccess = (authenticate(pw->pw_name, password,
|
|
|
|
&reenter, &authmsg) == 0);
|
|
|
|
aix_remove_embedded_newlines(authmsg);
|
|
|
|
|
|
|
|
if (authsuccess) {
|
|
|
|
char *msg;
|
|
|
|
char *host =
|
|
|
|
(char *)get_canonical_hostname(options.use_dns);
|
|
|
|
|
|
|
|
debug3("AIX/authenticate succeeded for user %s: %.100s",
|
|
|
|
pw->pw_name, authmsg);
|
|
|
|
|
|
|
|
/* No pty yet, so just label the line as "ssh" */
|
|
|
|
if (loginsuccess(authctxt->user, host, "ssh",
|
|
|
|
&msg) == 0){
|
|
|
|
if (msg != NULL) {
|
|
|
|
debug("%s: msg %s", __func__, msg);
|
|
|
|
buffer_append(&loginmsg, msg,
|
|
|
|
strlen(msg));
|
|
|
|
xfree(msg);
|
|
|
|
}
|
2003-07-08 12:59:59 +00:00
|
|
|
}
|
2003-07-24 06:52:13 +00:00
|
|
|
} else
|
|
|
|
debug3("AIX/authenticate failed for user %s: %.100s",
|
|
|
|
pw->pw_name, authmsg);
|
|
|
|
|
|
|
|
if (authmsg != NULL)
|
|
|
|
xfree(authmsg);
|
2002-09-25 23:14:14 +00:00
|
|
|
|
2003-07-24 06:52:13 +00:00
|
|
|
return (authsuccess);
|
|
|
|
}
|
2003-01-22 04:42:26 +00:00
|
|
|
# endif
|
|
|
|
# ifdef KRB4
|
1999-12-06 00:47:28 +00:00
|
|
|
if (options.kerberos_authentication == 1) {
|
2001-07-04 04:21:14 +00:00
|
|
|
int ret = auth_krb4_password(authctxt, password);
|
1999-12-06 00:47:28 +00:00
|
|
|
if (ret == 1 || ret == 0)
|
|
|
|
return ret;
|
1999-11-24 13:26:21 +00:00
|
|
|
/* Fall back to ordinary passwd authentication. */
|
1999-10-27 03:42:43 +00:00
|
|
|
}
|
2003-01-22 04:42:26 +00:00
|
|
|
# endif
|
|
|
|
# ifdef BSD_AUTH
|
2001-07-04 04:21:14 +00:00
|
|
|
if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
|
|
|
|
(char *)password) == 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
2003-07-24 06:52:13 +00:00
|
|
|
# else
|
|
|
|
{
|
|
|
|
char *pw_password = shadow_pw(pw);
|
2000-09-16 04:55:52 +00:00
|
|
|
|
|
|
|
/* Check for users with no password. */
|
2003-07-24 06:52:13 +00:00
|
|
|
/* XXX Reverted back to OpenBSD, why was this changed again? */
|
|
|
|
if (strcmp(pw_password, "") == 0 && strcmp(pw->pw_passwd, "") == 0)
|
2000-09-16 04:55:52 +00:00
|
|
|
return 1;
|
2003-07-24 06:52:13 +00:00
|
|
|
else {
|
|
|
|
/* Encrypt the candidate password using the proper salt. */
|
|
|
|
char *encrypted_password = xcrypt(password,
|
|
|
|
(pw_password[0] && pw_password[1]) ? pw_password : "xx");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Authentication is accepted if the encrypted passwords
|
|
|
|
* are identical.
|
|
|
|
*/
|
|
|
|
return (strcmp(encrypted_password, pw_password) == 0);
|
|
|
|
}
|
1999-11-13 04:40:10 +00:00
|
|
|
|
2003-07-24 06:52:13 +00:00
|
|
|
}
|
|
|
|
# endif
|
2003-05-10 09:28:02 +00:00
|
|
|
#endif /* !HAVE_OSF_SIA */
|
2002-04-04 19:02:28 +00:00
|
|
|
}
|