]> andersk Git - openssh.git/blob - auth-passwd.c
- (stevesk) [auth-pam.c auth-pam.h auth-passwd.c auth-sia.c auth-sia.h
[openssh.git] / auth-passwd.c
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Password authentication.  This file contains the functions to check whether
6  * the password is valid for the user.
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  *
14  * Copyright (c) 1999 Dug Song.  All rights reserved.
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.
36  */
37
38 #include "includes.h"
39 RCSID("$OpenBSD: auth-passwd.c,v 1.24 2002/03/04 12:43:06 markus Exp $");
40
41 #include "packet.h"
42 #include "log.h"
43 #include "servconf.h"
44 #include "auth.h"
45
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
58 # ifdef HAVE_SCO_PROTECTED_PW
59 #  include <sys/security.h>
60 #  include <sys/audit.h>
61 #  include <prot.h>
62 # endif /* HAVE_SCO_PROTECTED_PW */
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 */
82
83 extern ServerOptions options;
84
85 /*
86  * Tries to authenticate the user using password.  Returns true if
87  * authentication succeeds.
88  */
89 int
90 auth_password(Authctxt *authctxt, const char *password)
91 {
92 #if defined(USE_PAM)
93         if (*password == '\0' && options.permit_empty_passwd == 0)
94                 return 0;
95         return auth_pam_password(authctxt, password);
96 #elif defined(HAVE_OSF_SIA)
97         if (*password == '\0' && options.permit_empty_passwd == 0)
98                 return 0;
99         return auth_sia_password(authctxt, password);
100 #else
101         struct passwd * pw = authctxt->pw;
102         char *encrypted_password;
103         char *pw_password;
104         char *salt;
105 #ifdef __hpux
106         struct pr_passwd *spw;
107 #endif
108 #ifdef HAVE_SCO_PROTECTED_PW
109         struct pr_passwd *spw;
110 #endif /* HAVE_SCO_PROTECTED_PW */
111 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
112         struct spwd *spw;
113 #endif
114 #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
115         struct passwd_adjunct *spw;
116 #endif
117 #ifdef WITH_AIXAUTHENTICATE
118         char *authmsg;
119         char *loginmsg;
120         int reenter = 1;
121 #endif
122
123         /* deny if no user. */
124         if (pw == NULL)
125                 return 0;
126 #ifndef HAVE_CYGWIN
127        if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
128                 return 0;
129 #endif
130 #ifdef HAVE_CYGWIN
131         /*
132          * Empty password is only possible on NT if the user has _really_
133          * an empty password and authentication is done, though.
134          */
135         if (!is_winnt)
136 #endif
137         if (*password == '\0' && options.permit_empty_passwd == 0)
138                 return 0;
139 #ifdef KRB5
140         if (options.kerberos_authentication == 1) {
141                 int ret = auth_krb5_password(authctxt, password);
142                 if (ret == 1 || ret == 0)
143                         return ret;
144                 /* Fall back to ordinary passwd authentication. */
145         }
146 #endif
147 #ifdef HAVE_CYGWIN
148         if (is_winnt) {
149                 HANDLE hToken = cygwin_logon_user(pw, password);
150
151                 if (hToken == INVALID_HANDLE_VALUE)
152                         return 0;
153                 cygwin_set_impersonation_token(hToken);
154                 return 1;
155         }
156 #endif
157 #ifdef WITH_AIXAUTHENTICATE
158         return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
159 #endif
160 #ifdef KRB4
161         if (options.kerberos_authentication == 1) {
162                 int ret = auth_krb4_password(authctxt, password);
163                 if (ret == 1 || ret == 0)
164                         return ret;
165                 /* Fall back to ordinary passwd authentication. */
166         }
167 #endif
168 #ifdef BSD_AUTH
169         if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
170             (char *)password) == 0)
171                 return 0;
172         else
173                 return 1;
174 #endif
175         pw_password = pw->pw_passwd;
176
177         /*
178          * Various interfaces to shadow or protected password data
179          */
180 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
181         spw = getspnam(pw->pw_name);
182         if (spw != NULL)
183                 pw_password = spw->sp_pwdp;
184 #endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
185
186 #ifdef HAVE_SCO_PROTECTED_PW
187         spw = getprpwnam(pw->pw_name);
188         if (spw != NULL)
189                 pw_password = spw->ufld.fd_encrypt;
190 #endif /* HAVE_SCO_PROTECTED_PW */
191
192 #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
193         if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
194                 pw_password = spw->pwa_passwd;
195 #endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
196
197 #if defined(__hpux)
198         if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
199                 pw_password = spw->ufld.fd_encrypt;
200 #endif /* defined(__hpux) */
201
202         /* Check for users with no password. */
203         if ((password[0] == '\0') && (pw_password[0] == '\0'))
204                 return 1;
205
206         if (pw_password[0] != '\0')
207                 salt = pw_password;
208         else
209                 salt = "xx";
210
211 #ifdef HAVE_MD5_PASSWORDS
212         if (is_md5_salt(salt))
213                 encrypted_password = md5_crypt(password, salt);
214         else
215                 encrypted_password = crypt(password, salt);
216 #else /* HAVE_MD5_PASSWORDS */
217 # ifdef __hpux
218         if (iscomsec())
219                 encrypted_password = bigcrypt(password, salt);
220         else
221                 encrypted_password = crypt(password, salt);
222 # else
223 #  ifdef HAVE_SCO_PROTECTED_PW
224         encrypted_password = bigcrypt(password, salt);
225 #  else
226         encrypted_password = crypt(password, salt);
227 #  endif /* HAVE_SCO_PROTECTED_PW */
228 # endif /* __hpux */
229 #endif /* HAVE_MD5_PASSWORDS */
230
231         /* Authentication is accepted if the encrypted passwords are identical. */
232         return (strcmp(encrypted_password, pw_password) == 0);
233 #endif /* !USE_PAM && !HAVE_OSF_SIA */
234 }
This page took 0.058579 seconds and 5 git commands to generate.