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
|
|
|
|
* Created: Sat Mar 18 05:11:38 1995 ylo
|
|
|
|
* Password authentication. This file contains the functions to check whether
|
|
|
|
* the password is valid for the user.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
1999-11-19 05:53:20 +01:00
|
|
|
|
1999-12-28 05:09:35 +01:00
|
|
|
#ifndef USE_PAM
|
1999-11-19 05:53:20 +01:00
|
|
|
|
2000-04-16 04:31:48 +02:00
|
|
|
RCSID("$Id: auth-passwd.c,v 1.18 2000/04/16 02:31:49 damien Exp $");
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "packet.h"
|
|
|
|
#include "ssh.h"
|
|
|
|
#include "servconf.h"
|
|
|
|
#include "xmalloc.h"
|
1999-11-13 05:40:10 +01:00
|
|
|
|
2000-01-23 00:32:03 +01:00
|
|
|
#ifdef WITH_AIXAUTHENTICATE
|
|
|
|
#include <login.h>
|
|
|
|
#endif
|
|
|
|
|
1999-11-13 05:40:10 +01:00
|
|
|
#ifdef HAVE_SHADOW_H
|
1999-12-28 05:09:35 +01:00
|
|
|
# include <shadow.h>
|
1999-11-19 05:53:20 +01:00
|
|
|
#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
|
|
|
|
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
|
1999-11-24 14:26:21 +01:00
|
|
|
auth_password(struct passwd * pw, const char *password)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
extern ServerOptions options;
|
|
|
|
char *encrypted_password;
|
1999-12-25 00:11:29 +01:00
|
|
|
char *pw_password;
|
|
|
|
char *salt;
|
1999-11-13 05:40:10 +01:00
|
|
|
#ifdef HAVE_SHADOW_H
|
1999-11-24 14:26:21 +01:00
|
|
|
struct spwd *spw;
|
1999-11-13 05:40:10 +01:00
|
|
|
#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;
|
1999-11-25 01:54:57 +01:00
|
|
|
if (pw->pw_uid == 0 && options.permit_root_login == 2)
|
1999-11-24 14:26:21 +01:00
|
|
|
return 0;
|
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;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifdef SKEY
|
1999-11-24 14:26:21 +01:00
|
|
|
if (options.skey_authentication == 1) {
|
1999-12-06 01:47:28 +01:00
|
|
|
int ret = auth_skey_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
|
|
|
#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
|
|
|
|
|
|
|
/* Check for users with no password. */
|
1999-11-25 01:54:57 +01:00
|
|
|
if (strcmp(password, "") == 0 && strcmp(pw->pw_passwd, "") == 0)
|
1999-11-24 14:26:21 +01:00
|
|
|
return 1;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-12-25 00:11:29 +01:00
|
|
|
pw_password = pw->pw_passwd;
|
|
|
|
|
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);
|
1999-12-30 22:49:13 +01:00
|
|
|
if (spw != NULL)
|
|
|
|
{
|
|
|
|
/* Check for users with no password. */
|
|
|
|
if (strcmp(password, "") == 0 && strcmp(spw->sp_pwdp, "") == 0)
|
|
|
|
return 1;
|
1999-11-13 05:40:10 +01:00
|
|
|
|
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) */
|
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);
|
1999-12-21 11:03:09 +01:00
|
|
|
#else /* HAVE_MD5_PASSWORDS */
|
1999-12-25 00:11:29 +01:00
|
|
|
encrypted_password = crypt(password, salt);
|
1999-12-21 11:03:09 +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
|
|
|
}
|
1999-12-28 05:09:35 +01:00
|
|
|
#endif /* !USE_PAM */
|