]> andersk Git - openssh.git/blob - auth-passwd.c
- (djm) Bug #573 - Remove unneeded Krb headers and compat goop. Patch from
[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.27 2002/05/24 16:45:16 stevesk Exp $");
40
41 #include "packet.h"
42 #include "log.h"
43 #include "servconf.h"
44 #include "auth.h"
45
46 #if !defined(HAVE_OSF_SIA)
47 /* Don't need any of these headers for the 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_SECUREWARE
59 #  include <sys/security.h>
60 #  include <sys/audit.h>
61 #  include <prot.h>
62 # endif /* HAVE_SECUREWARE */
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 /* !HAVE_OSF_SIA */
82
83 extern ServerOptions options;
84 #ifdef WITH_AIXAUTHENTICATE
85 extern char *aixloginmsg;
86 #endif
87
88 /*
89  * Tries to authenticate the user using password.  Returns true if
90  * authentication succeeds.
91  */
92 int
93 auth_password(Authctxt *authctxt, const char *password)
94 {
95         struct passwd * pw = authctxt->pw;
96         int ok = authctxt->valid;
97 #if !defined(HAVE_OSF_SIA)
98         char *encrypted_password;
99         char *pw_password;
100         char *salt;
101 # if defined(__hpux) || defined(HAVE_SECUREWARE)
102         struct pr_passwd *spw;
103 # endif /* __hpux || HAVE_SECUREWARE */
104 # if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
105         struct spwd *spw;
106 # endif
107 # if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
108         struct passwd_adjunct *spw;
109 # endif
110 # ifdef WITH_AIXAUTHENTICATE
111         char *authmsg;
112         int authsuccess;
113         int reenter = 1;
114 # endif
115 #endif /* !defined(HAVE_OSF_SIA) */
116
117         /* deny if no user. */
118         if (pw == NULL)
119                 ok = 0;
120 #ifndef HAVE_CYGWIN
121         if (pw && pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
122                 ok = 0;
123 #endif
124         if (*password == '\0' && options.permit_empty_passwd == 0)
125                 ok = 0;
126
127 #if defined(HAVE_OSF_SIA)
128         if (!ok)
129                 return 0;
130         return auth_sia_password(authctxt, password);
131 #else
132         if (!ok)
133                 return 0;
134 # ifdef KRB5
135         if (options.kerberos_authentication == 1) {
136                 int ret = auth_krb5_password(authctxt, password);
137                 if (ret == 1 || ret == 0)
138                         return ret;
139                 /* Fall back to ordinary passwd authentication. */
140         }
141 # endif
142 # ifdef HAVE_CYGWIN
143         if (is_winnt) {
144                 HANDLE hToken = cygwin_logon_user(pw, password);
145
146                 if (hToken == INVALID_HANDLE_VALUE)
147                         return (0);
148                 cygwin_set_impersonation_token(hToken);
149                 return (1);
150         }
151 # endif
152 # ifdef WITH_AIXAUTHENTICATE
153         authsuccess = (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
154
155         if (authsuccess) {
156                 /* We don't have a pty yet, so just label the line as "ssh" */
157                 if (loginsuccess(authctxt->user,
158                     get_canonical_hostname(options.use_dns),
159                     "ssh", &aixloginmsg) < 0) {
160                         aixloginmsg = NULL;
161                 }
162         }
163
164         return (authsuccess);
165 # endif
166 # ifdef KRB4
167         if (options.kerberos_authentication == 1) {
168                 int ret = auth_krb4_password(authctxt, password);
169                 if (ret == 1 || ret == 0)
170                         return ret;
171                 /* Fall back to ordinary passwd authentication. */
172         }
173 # endif
174 # ifdef BSD_AUTH
175         if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
176             (char *)password) == 0)
177                 return 0;
178         else
179                 return 1;
180 # endif
181         pw_password = pw->pw_passwd;
182
183         /*
184          * Various interfaces to shadow or protected password data
185          */
186 # if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
187         spw = getspnam(pw->pw_name);
188         if (spw != NULL)
189                 pw_password = spw->sp_pwdp;
190 # endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
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 # ifdef HAVE_SECUREWARE
198         if ((spw = getprpwnam(pw->pw_name)) != NULL)
199                 pw_password = spw->ufld.fd_encrypt;
200 # endif /* HAVE_SECUREWARE */
201
202 # if defined(__hpux) && !defined(HAVE_SECUREWARE)
203         if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
204                 pw_password = spw->ufld.fd_encrypt;
205 # endif /* defined(__hpux) && !defined(HAVE_SECUREWARE) */
206
207         /* Check for users with no password. */
208         if ((password[0] == '\0') && (pw_password[0] == '\0'))
209                 return 1;
210
211         if (pw_password[0] != '\0')
212                 salt = pw_password;
213         else
214                 salt = "xx";
215
216 # ifdef HAVE_MD5_PASSWORDS
217         if (is_md5_salt(salt))
218                 encrypted_password = md5_crypt(password, salt);
219         else
220                 encrypted_password = crypt(password, salt);
221 # else /* HAVE_MD5_PASSWORDS */
222 #  if defined(__hpux) && !defined(HAVE_SECUREWARE)
223         if (iscomsec())
224                 encrypted_password = bigcrypt(password, salt);
225         else
226                 encrypted_password = crypt(password, salt);
227 #  else
228 #   ifdef HAVE_SECUREWARE
229         encrypted_password = bigcrypt(password, salt);
230 #   else
231         encrypted_password = crypt(password, salt);
232 #   endif /* HAVE_SECUREWARE */
233 #  endif /* __hpux && !defined(HAVE_SECUREWARE) */
234 # endif /* HAVE_MD5_PASSWORDS */
235
236         /* Authentication is accepted if the encrypted passwords are identical. */
237         return (strcmp(encrypted_password, pw_password) == 0);
238 #endif /* !HAVE_OSF_SIA */
239 }
This page took 0.052892 seconds and 5 git commands to generate.