]> andersk Git - openssh.git/blame - auth-passwd.c
l) Fix issue where successfull login does not clear failure counts
[openssh.git] / auth-passwd.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Password authentication. This file contains the functions to check whether
6 * the password is valid for the user.
bcbf86ec 7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
bcbf86ec 14 * Copyright (c) 1999 Dug Song. All rights reserved.
bcbf86ec 15 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
897ef106 39RCSID("$OpenBSD: auth-passwd.c,v 1.27 2002/05/24 16:45:16 stevesk Exp $");
8efc0c15 40
41#include "packet.h"
42f11eb2 42#include "log.h"
43#include "servconf.h"
59c97189 44#include "auth.h"
45
fde58bd4 46#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
47/* Don't need any of these headers for the PAM or SIA cases */
48# ifdef HAVE_CRYPT_H
49# include <crypt.h>
50# endif
51# ifdef WITH_AIXAUTHENTICATE
52# include <login.h>
53# endif
54# ifdef __hpux
55# include <hpsecurity.h>
56# include <prot.h>
57# endif
6e879cb4 58# ifdef HAVE_SECUREWARE
fde58bd4 59# include <sys/security.h>
60# include <sys/audit.h>
61# include <prot.h>
6e879cb4 62# endif /* HAVE_SECUREWARE */
fde58bd4 63# if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
64# include <shadow.h>
65# endif
66# if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
67# include <sys/label.h>
68# include <sys/audit.h>
69# include <pwdadj.h>
70# endif
71# if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
72# include "md5crypt.h"
73# endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
74
75# ifdef HAVE_CYGWIN
76# undef ERROR
77# include <windows.h>
78# include <sys/cygwin.h>
79# define is_winnt (GetVersion() < 0x80000000)
80# endif
81#endif /* !USE_PAM && !HAVE_OSF_SIA */
af774732 82
83extern ServerOptions options;
b7c4a4cc 84#ifdef WITH_AIXAUTHENTICATE
85extern char *aixloginmsg;
86#endif
af774732 87
5260325f 88/*
89 * Tries to authenticate the user using password. Returns true if
90 * authentication succeeds.
91 */
6ae2364d 92int
af774732 93auth_password(Authctxt *authctxt, const char *password)
8efc0c15 94{
fde58bd4 95#if defined(USE_PAM)
f656b61e 96 if (*password == '\0' && options.permit_empty_passwd == 0)
fde58bd4 97 return 0;
98 return auth_pam_password(authctxt, password);
99#elif defined(HAVE_OSF_SIA)
f656b61e 100 if (*password == '\0' && options.permit_empty_passwd == 0)
fde58bd4 101 return 0;
102 return auth_sia_password(authctxt, password);
103#else
f656b61e 104 struct passwd * pw = authctxt->pw;
5260325f 105 char *encrypted_password;
f498ed15 106 char *pw_password;
107 char *salt;
6e879cb4 108#if defined(__hpux) || defined(HAVE_SECUREWARE)
0bbfbdeb 109 struct pr_passwd *spw;
6e879cb4 110#endif /* __hpux || HAVE_SECUREWARE */
0bbfbdeb 111#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 112 struct spwd *spw;
b2344d54 113#endif
0bbfbdeb 114#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
a423beaf 115 struct passwd_adjunct *spw;
116#endif
4c40f834 117#ifdef WITH_AIXAUTHENTICATE
118 char *authmsg;
b7c4a4cc 119 int authsuccess;
4c40f834 120 int reenter = 1;
121#endif
8efc0c15 122
13f825f4 123 /* deny if no user. */
124 if (pw == NULL)
125 return 0;
3c62e7eb 126#ifndef HAVE_CYGWIN
15853e93 127 if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
5260325f 128 return 0;
3c62e7eb 129#endif
f656b61e 130 if (*password == '\0' && options.permit_empty_passwd == 0)
5260325f 131 return 0;
ced49be2 132#ifdef KRB5
133 if (options.kerberos_authentication == 1) {
134 int ret = auth_krb5_password(authctxt, password);
135 if (ret == 1 || ret == 0)
136 return ret;
137 /* Fall back to ordinary passwd authentication. */
138 }
af774732 139#endif
3c62e7eb 140#ifdef HAVE_CYGWIN
141 if (is_winnt) {
142 HANDLE hToken = cygwin_logon_user(pw, password);
143
144 if (hToken == INVALID_HANDLE_VALUE)
145 return 0;
146 cygwin_set_impersonation_token(hToken);
147 return 1;
148 }
149#endif
4c40f834 150#ifdef WITH_AIXAUTHENTICATE
b7c4a4cc 151 authsuccess = (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
152
153 if (authsuccess)
154 /* We don't have a pty yet, so just label the line as "ssh" */
155 if (loginsuccess(authctxt->user,
156 get_canonical_hostname(options.verify_reverse_mapping),
157 "ssh", &aixloginmsg) < 0)
158 aixloginmsg = NULL;
159
160 return(authsuccess);
4c40f834 161#endif
57112b5a 162#ifdef KRB4
163 if (options.kerberos_authentication == 1) {
ced49be2 164 int ret = auth_krb4_password(authctxt, password);
57112b5a 165 if (ret == 1 || ret == 0)
166 return ret;
5260325f 167 /* Fall back to ordinary passwd authentication. */
8efc0c15 168 }
57112b5a 169#endif
ced49be2 170#ifdef BSD_AUTH
171 if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
172 (char *)password) == 0)
173 return 0;
174 else
175 return 1;
176#endif
0bbfbdeb 177 pw_password = pw->pw_passwd;
8efc0c15 178
0bbfbdeb 179 /*
180 * Various interfaces to shadow or protected password data
181 */
59dd7a31 182#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
5260325f 183 spw = getspnam(pw->pw_name);
2b87da3b 184 if (spw != NULL)
76b8607f 185 pw_password = spw->sp_pwdp;
f498ed15 186#endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
77bb0bca 187
a423beaf 188#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
189 if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
a423beaf 190 pw_password = spw->pwa_passwd;
a423beaf 191#endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
77bb0bca 192
6e879cb4 193#ifdef HAVE_SECUREWARE
194 if ((spw = getprpwnam(pw->pw_name)) != NULL)
195 pw_password = spw->ufld.fd_encrypt;
196#endif /* HAVE_SECUREWARE */
197
198#if defined(__hpux) && !defined(HAVE_SECUREWARE)
0bbfbdeb 199 if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
200 pw_password = spw->ufld.fd_encrypt;
6e879cb4 201#endif /* defined(__hpux) && !defined(HAVE_SECUREWARE) */
0bbfbdeb 202
203 /* Check for users with no password. */
204 if ((password[0] == '\0') && (pw_password[0] == '\0'))
205 return 1;
b2344d54 206
f498ed15 207 if (pw_password[0] != '\0')
208 salt = pw_password;
5260325f 209 else
f498ed15 210 salt = "xx";
59dd7a31 211
212#ifdef HAVE_MD5_PASSWORDS
f498ed15 213 if (is_md5_salt(salt))
214 encrypted_password = md5_crypt(password, salt);
59dd7a31 215 else
f498ed15 216 encrypted_password = crypt(password, salt);
2b87da3b 217#else /* HAVE_MD5_PASSWORDS */
6e879cb4 218# if defined(__hpux) && !defined(HAVE_SECUREWARE)
0bbfbdeb 219 if (iscomsec())
220 encrypted_password = bigcrypt(password, salt);
221 else
222 encrypted_password = crypt(password, salt);
2b763e31 223# else
6e879cb4 224# ifdef HAVE_SECUREWARE
554e28b2 225 encrypted_password = bigcrypt(password, salt);
226# else
f498ed15 227 encrypted_password = crypt(password, salt);
6e879cb4 228# endif /* HAVE_SECUREWARE */
229# endif /* __hpux && !defined(HAVE_SECUREWARE) */
2b87da3b 230#endif /* HAVE_MD5_PASSWORDS */
b2344d54 231
5260325f 232 /* Authentication is accepted if the encrypted passwords are identical. */
f498ed15 233 return (strcmp(encrypted_password, pw_password) == 0);
4d33e531 234#endif /* !USE_PAM && !HAVE_OSF_SIA */
fde58bd4 235}
This page took 0.151659 seconds and 5 git commands to generate.