1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01: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 04:29:08 +02: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 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
2003-09-02 23:32:45 +02:00
|
|
|
RCSID("$OpenBSD: auth-passwd.c,v 1.29 2003/08/26 09:58:43 markus Exp $");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "packet.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "log.h"
|
|
|
|
#include "servconf.h"
|
2001-01-19 05:26:52 +01:00
|
|
|
#include "auth.h"
|
2003-07-24 08:52:13 +02:00
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
|
|
|
# include "buffer.h"
|
|
|
|
# include "canohost.h"
|
|
|
|
extern Buffer loginmsg;
|
|
|
|
#endif
|
2001-02-18 07:01:00 +01:00
|
|
|
|
|
|
|
extern ServerOptions options;
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Tries to authenticate the user using password. Returns true if
|
|
|
|
* authentication succeeds.
|
|
|
|
*/
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2001-02-18 07:01:00 +01:00
|
|
|
auth_password(Authctxt *authctxt, const char *password)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2002-05-10 04:40:15 +02:00
|
|
|
struct passwd * pw = authctxt->pw;
|
2003-04-29 15:22:40 +02:00
|
|
|
int ok = authctxt->valid;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-12-29 23:48:15 +01:00
|
|
|
/* deny if no user. */
|
|
|
|
if (pw == NULL)
|
2003-09-02 23:32:45 +02:00
|
|
|
return 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
#ifndef HAVE_CYGWIN
|
2003-04-29 15:22:40 +02:00
|
|
|
if (pw && pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
|
|
|
|
ok = 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
#endif
|
2002-05-10 04:40:15 +02:00
|
|
|
if (*password == '\0' && options.permit_empty_passwd == 0)
|
2003-04-29 15:22:40 +02:00
|
|
|
return 0;
|
2003-07-24 08:52:13 +02:00
|
|
|
|
|
|
|
#if defined(HAVE_OSF_SIA)
|
2003-09-02 23:32:45 +02:00
|
|
|
return auth_sia_password(authctxt, password) && ok;
|
2003-01-22 05:42:26 +01:00
|
|
|
#else
|
|
|
|
# ifdef KRB5
|
2001-07-04 06:21:14 +02:00
|
|
|
if (options.kerberos_authentication == 1) {
|
|
|
|
int ret = auth_krb5_password(authctxt, password);
|
|
|
|
if (ret == 1 || ret == 0)
|
2003-09-02 23:32:45 +02:00
|
|
|
return ret && ok;
|
2001-07-04 06:21:14 +02:00
|
|
|
/* Fall back to ordinary passwd authentication. */
|
|
|
|
}
|
2003-01-22 05:42:26 +01:00
|
|
|
# endif
|
|
|
|
# ifdef HAVE_CYGWIN
|
2000-09-05 07:13:06 +02:00
|
|
|
if (is_winnt) {
|
|
|
|
HANDLE hToken = cygwin_logon_user(pw, password);
|
|
|
|
|
|
|
|
if (hToken == INVALID_HANDLE_VALUE)
|
2003-09-02 23:32:45 +02:00
|
|
|
return 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
cygwin_set_impersonation_token(hToken);
|
2003-09-02 23:32:45 +02:00
|
|
|
return ok;
|
2000-09-05 07:13:06 +02:00
|
|
|
}
|
2003-01-22 05:42:26 +01:00
|
|
|
# endif
|
|
|
|
# ifdef WITH_AIXAUTHENTICATE
|
2003-07-24 08:52:13 +02:00
|
|
|
{
|
2003-09-02 23:32:45 +02:00
|
|
|
char *authmsg = NULL;
|
2003-07-24 08:52:13 +02:00
|
|
|
int reenter = 1;
|
2003-09-02 23:32:45 +02:00
|
|
|
int authsuccess = 0;
|
2003-07-24 08:52:13 +02:00
|
|
|
|
2003-09-02 23:32:45 +02:00
|
|
|
if (authenticate(pw->pw_name, password, &reenter,
|
|
|
|
&authmsg) == 0 && ok) {
|
2003-07-24 08:52:13 +02:00
|
|
|
char *msg;
|
|
|
|
char *host =
|
|
|
|
(char *)get_canonical_hostname(options.use_dns);
|
|
|
|
|
2003-09-02 23:32:45 +02:00
|
|
|
authsuccess = 1;
|
|
|
|
aix_remove_embedded_newlines(authmsg);
|
|
|
|
|
2003-07-24 08:52:13 +02:00
|
|
|
debug3("AIX/authenticate succeeded for user %s: %.100s",
|
|
|
|
pw->pw_name, authmsg);
|
|
|
|
|
|
|
|
/* No pty yet, so just label the line as "ssh" */
|
2003-09-13 02:41:56 +02:00
|
|
|
aix_setauthdb(authctxt->user);
|
2003-07-24 08:52:13 +02:00
|
|
|
if (loginsuccess(authctxt->user, host, "ssh",
|
2003-09-02 23:32:45 +02:00
|
|
|
&msg) == 0) {
|
2003-07-24 08:52:13 +02:00
|
|
|
if (msg != NULL) {
|
|
|
|
debug("%s: msg %s", __func__, msg);
|
|
|
|
buffer_append(&loginmsg, msg,
|
|
|
|
strlen(msg));
|
|
|
|
xfree(msg);
|
|
|
|
}
|
2003-07-08 14:59:59 +02:00
|
|
|
}
|
2003-09-02 23:32:45 +02:00
|
|
|
} else {
|
2003-07-24 08:52:13 +02:00
|
|
|
debug3("AIX/authenticate failed for user %s: %.100s",
|
|
|
|
pw->pw_name, authmsg);
|
2003-09-02 23:32:45 +02:00
|
|
|
}
|
2003-07-24 08:52:13 +02:00
|
|
|
|
|
|
|
if (authmsg != NULL)
|
|
|
|
xfree(authmsg);
|
2002-09-26 01:14:14 +02:00
|
|
|
|
2003-09-02 23:32:45 +02:00
|
|
|
return authsuccess;
|
2003-07-24 08:52:13 +02:00
|
|
|
}
|
2003-01-22 05:42:26 +01:00
|
|
|
# endif
|
|
|
|
# ifdef BSD_AUTH
|
2001-07-04 06:21:14 +02:00
|
|
|
if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
|
|
|
|
(char *)password) == 0)
|
|
|
|
return 0;
|
|
|
|
else
|
2003-09-02 23:32:45 +02:00
|
|
|
return ok;
|
2003-07-24 08:52:13 +02:00
|
|
|
# else
|
|
|
|
{
|
2003-09-02 23:32:45 +02:00
|
|
|
/* Just use the supplied fake password if authctxt is invalid */
|
|
|
|
char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
|
2000-09-16 06:55:52 +02:00
|
|
|
|
|
|
|
/* Check for users with no password. */
|
2003-09-18 10:25:46 +02:00
|
|
|
if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0)
|
2003-09-02 23:32:45 +02:00
|
|
|
return ok;
|
2003-07-24 08:52:13 +02: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.
|
|
|
|
*/
|
2003-09-02 23:32:45 +02:00
|
|
|
return (strcmp(encrypted_password, pw_password) == 0) && ok;
|
2003-07-24 08:52:13 +02:00
|
|
|
}
|
1999-11-13 05:40:10 +01:00
|
|
|
|
2003-07-24 08:52:13 +02:00
|
|
|
}
|
|
|
|
# endif
|
2003-05-10 11:28:02 +02:00
|
|
|
#endif /* !HAVE_OSF_SIA */
|
2002-04-04 21:02:28 +02:00
|
|
|
}
|