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"
|
2001-03-22 02:22:03 +01:00
|
|
|
RCSID("$OpenBSD: auth-passwd.c,v 1.22 2001/03/20 18:57:04 markus Exp $");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-06-28 07:22:41 +02:00
|
|
|
#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "packet.h"
|
|
|
|
#include "xmalloc.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"
|
|
|
|
|
2000-01-23 00:32:03 +01:00
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
2000-04-29 16:47:29 +02:00
|
|
|
# include <login.h>
|
|
|
|
#endif
|
2000-09-16 06:55:52 +02:00
|
|
|
#ifdef __hpux
|
2000-04-29 16:47:29 +02:00
|
|
|
# include <hpsecurity.h>
|
|
|
|
# include <prot.h>
|
2000-01-23 00:32:03 +01:00
|
|
|
#endif
|
2000-09-29 14:01:36 +02:00
|
|
|
#ifdef HAVE_SCO_PROTECTED_PW
|
|
|
|
# include <sys/security.h>
|
|
|
|
# include <sys/audit.h>
|
|
|
|
# include <prot.h>
|
|
|
|
#endif /* HAVE_SCO_PROTECTED_PW */
|
2000-09-16 06:55:52 +02:00
|
|
|
#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
|
1999-12-28 05:09:35 +01:00
|
|
|
# include <shadow.h>
|
1999-11-19 05:53:20 +01:00
|
|
|
#endif
|
2000-09-16 06:55:52 +02:00
|
|
|
#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
|
2000-05-20 07:02:59 +02:00
|
|
|
# include <sys/label.h>
|
|
|
|
# include <sys/audit.h>
|
|
|
|
# include <pwdadj.h>
|
|
|
|
#endif
|
1999-12-28 05:09:35 +01:00
|
|
|
#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
|
|
|
|
# include "md5crypt.h"
|
|
|
|
#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
|
1999-11-19 05:53:20 +01:00
|
|
|
|
2000-09-05 07:13:06 +02:00
|
|
|
#ifdef HAVE_CYGWIN
|
|
|
|
#undef ERROR
|
|
|
|
#include <windows.h>
|
|
|
|
#include <sys/cygwin.h>
|
|
|
|
#define is_winnt (GetVersion() < 0x80000000)
|
|
|
|
#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
|
|
|
{
|
2001-02-18 07:01:00 +01:00
|
|
|
struct passwd * pw = authctxt->pw;
|
1999-11-24 14:26:21 +01:00
|
|
|
char *encrypted_password;
|
1999-12-25 00:11:29 +01:00
|
|
|
char *pw_password;
|
|
|
|
char *salt;
|
2000-09-16 06:55:52 +02:00
|
|
|
#ifdef __hpux
|
|
|
|
struct pr_passwd *spw;
|
|
|
|
#endif
|
2000-09-29 14:01:36 +02:00
|
|
|
#ifdef HAVE_SCO_PROTECTED_PW
|
|
|
|
struct pr_passwd *spw;
|
|
|
|
#endif /* HAVE_SCO_PROTECTED_PW */
|
2000-09-16 06:55:52 +02:00
|
|
|
#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
|
1999-11-24 14:26:21 +01:00
|
|
|
struct spwd *spw;
|
1999-11-13 05:40:10 +01:00
|
|
|
#endif
|
2000-09-16 06:55:52 +02:00
|
|
|
#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
|
2000-05-20 07:02:59 +02:00
|
|
|
struct passwd_adjunct *spw;
|
|
|
|
#endif
|
2000-01-23 00:32:03 +01:00
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
|
|
|
char *authmsg;
|
|
|
|
char *loginmsg;
|
|
|
|
int reenter = 1;
|
|
|
|
#endif
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-12-29 23:48:15 +01:00
|
|
|
/* deny if no user. */
|
|
|
|
if (pw == NULL)
|
|
|
|
return 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
#ifndef HAVE_CYGWIN
|
2001-02-15 04:08:27 +01:00
|
|
|
if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
|
1999-11-24 14:26:21 +01:00
|
|
|
return 0;
|
2000-09-05 07:13:06 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CYGWIN
|
|
|
|
/*
|
|
|
|
* Empty password is only possible on NT if the user has _really_
|
|
|
|
* an empty password and authentication is done, though.
|
|
|
|
*/
|
2001-02-05 13:42:17 +01:00
|
|
|
if (!is_winnt)
|
2000-09-05 07:13:06 +02:00
|
|
|
#endif
|
1999-11-25 01:54:57 +01:00
|
|
|
if (*password == '\0' && options.permit_empty_passwd == 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
return 0;
|
2001-02-18 07:01:00 +01:00
|
|
|
#ifdef BSD_AUTH
|
|
|
|
if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
|
|
|
|
(char *)password) == 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
#endif
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-09-05 07:13:06 +02:00
|
|
|
#ifdef HAVE_CYGWIN
|
|
|
|
if (is_winnt) {
|
|
|
|
HANDLE hToken = cygwin_logon_user(pw, password);
|
|
|
|
|
|
|
|
if (hToken == INVALID_HANDLE_VALUE)
|
|
|
|
return 0;
|
|
|
|
cygwin_set_impersonation_token(hToken);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-01-23 00:32:03 +01:00
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
|
|
|
return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
|
|
|
|
#endif
|
|
|
|
|
1999-12-06 01:47:28 +01:00
|
|
|
#ifdef KRB4
|
|
|
|
if (options.kerberos_authentication == 1) {
|
|
|
|
int ret = auth_krb4_password(pw, password);
|
|
|
|
if (ret == 1 || ret == 0)
|
|
|
|
return ret;
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Fall back to ordinary passwd authentication. */
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
1999-12-06 01:47:28 +01:00
|
|
|
#endif
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2000-09-16 06:39:56 +02:00
|
|
|
|
2000-09-16 06:55:52 +02:00
|
|
|
pw_password = pw->pw_passwd;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-09-16 06:55:52 +02:00
|
|
|
/*
|
|
|
|
* Various interfaces to shadow or protected password data
|
|
|
|
*/
|
1999-12-21 11:03:09 +01:00
|
|
|
#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
|
1999-11-24 14:26:21 +01:00
|
|
|
spw = getspnam(pw->pw_name);
|
2001-02-05 13:42:17 +01:00
|
|
|
if (spw != NULL)
|
1999-12-30 22:49:13 +01:00
|
|
|
pw_password = spw->sp_pwdp;
|
1999-12-25 00:11:29 +01:00
|
|
|
#endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
|
2000-09-29 14:01:36 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_SCO_PROTECTED_PW
|
|
|
|
spw = getprpwnam(pw->pw_name);
|
2001-02-05 13:42:17 +01:00
|
|
|
if (spw != NULL)
|
2000-09-29 14:01:36 +02:00
|
|
|
pw_password = spw->ufld.fd_encrypt;
|
|
|
|
#endif /* HAVE_SCO_PROTECTED_PW */
|
|
|
|
|
2000-05-20 07:02:59 +02:00
|
|
|
#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
|
|
|
|
if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
|
|
|
|
pw_password = spw->pwa_passwd;
|
|
|
|
#endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
|
2000-09-29 14:01:36 +02:00
|
|
|
|
2000-09-16 06:55:52 +02:00
|
|
|
#if defined(__hpux)
|
|
|
|
if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
|
|
|
|
pw_password = spw->ufld.fd_encrypt;
|
|
|
|
#endif /* defined(__hpux) */
|
|
|
|
|
|
|
|
/* Check for users with no password. */
|
|
|
|
if ((password[0] == '\0') && (pw_password[0] == '\0'))
|
|
|
|
return 1;
|
1999-11-13 05:40:10 +01:00
|
|
|
|
1999-12-25 00:11:29 +01:00
|
|
|
if (pw_password[0] != '\0')
|
|
|
|
salt = pw_password;
|
1999-11-24 14:26:21 +01:00
|
|
|
else
|
1999-12-25 00:11:29 +01:00
|
|
|
salt = "xx";
|
1999-12-21 11:03:09 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_MD5_PASSWORDS
|
1999-12-25 00:11:29 +01:00
|
|
|
if (is_md5_salt(salt))
|
|
|
|
encrypted_password = md5_crypt(password, salt);
|
1999-12-21 11:03:09 +01:00
|
|
|
else
|
1999-12-25 00:11:29 +01:00
|
|
|
encrypted_password = crypt(password, salt);
|
2001-02-05 13:42:17 +01:00
|
|
|
#else /* HAVE_MD5_PASSWORDS */
|
2000-09-16 06:55:52 +02:00
|
|
|
# ifdef __hpux
|
|
|
|
if (iscomsec())
|
|
|
|
encrypted_password = bigcrypt(password, salt);
|
|
|
|
else
|
|
|
|
encrypted_password = crypt(password, salt);
|
2000-04-29 16:47:29 +02:00
|
|
|
# else
|
1999-12-25 00:11:29 +01:00
|
|
|
encrypted_password = crypt(password, salt);
|
2000-09-16 06:55:52 +02:00
|
|
|
# endif /* __hpux */
|
2001-02-05 13:42:17 +01:00
|
|
|
#endif /* HAVE_MD5_PASSWORDS */
|
1999-11-13 05:40:10 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Authentication is accepted if the encrypted passwords are identical. */
|
1999-12-25 00:11:29 +01:00
|
|
|
return (strcmp(encrypted_password, pw_password) == 0);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2000-06-28 07:22:41 +02:00
|
|
|
#endif /* !USE_PAM && !HAVE_OSF_SIA */
|