]> andersk Git - openssh.git/blob - auth-passwd.c
- (djm) Cleanup auth-passwd.c and unify HP/UX authentication. 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  *
15  * Copyright (c) 1999 Dug Song.  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  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
39  *
40  * Redistribution and use in source and binary forms, with or without
41  * modification, are permitted provided that the following conditions
42  * are met:
43  * 1. Redistributions of source code must retain the above copyright
44  *    notice, this list of conditions and the following disclaimer.
45  * 2. Redistributions in binary form must reproduce the above copyright
46  *    notice, this list of conditions and the following disclaimer in the
47  *    documentation and/or other materials provided with the distribution.
48  *
49  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59  */
60
61 #include "includes.h"
62 RCSID("$OpenBSD: auth-passwd.c,v 1.17 2000/09/07 20:27:49 deraadt Exp $");
63
64 #if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
65
66 #include "packet.h"
67 #include "ssh.h"
68 #include "servconf.h"
69 #include "xmalloc.h"
70
71 #ifdef WITH_AIXAUTHENTICATE
72 # include <login.h>
73 #endif
74 #ifdef __hpux
75 # include <hpsecurity.h>
76 # include <prot.h>
77 #endif
78 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
79 # include <shadow.h>
80 #endif
81 #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
82 # include <sys/label.h>
83 # include <sys/audit.h>
84 # include <pwdadj.h>
85 #endif
86 #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
87 # include "md5crypt.h"
88 #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
89
90 #ifdef HAVE_CYGWIN
91 #undef ERROR
92 #include <windows.h>
93 #include <sys/cygwin.h>
94 #define is_winnt       (GetVersion() < 0x80000000)
95 #endif
96
97 /*
98  * Tries to authenticate the user using password.  Returns true if
99  * authentication succeeds.
100  */
101 int
102 auth_password(struct passwd * pw, const char *password)
103 {
104         extern ServerOptions options;
105         char *encrypted_password;
106         char *pw_password;
107         char *salt;
108 #ifdef __hpux
109         struct pr_passwd *spw;
110 #endif
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 HAVE_HPUX_TRUSTED_SYSTEM_PW
118         struct pr_passwd *prpw;
119 #endif
120 #ifdef WITH_AIXAUTHENTICATE
121         char *authmsg;
122         char *loginmsg;
123         int reenter = 1;
124 #endif
125
126         /* deny if no user. */
127         if (pw == NULL)
128                 return 0;
129 #ifndef HAVE_CYGWIN
130         if (pw->pw_uid == 0 && options.permit_root_login == 2)
131                 return 0;
132 #endif
133 #ifdef HAVE_CYGWIN
134         /*
135          * Empty password is only possible on NT if the user has _really_
136          * an empty password and authentication is done, though.
137          */
138         if (!is_winnt) 
139 #endif
140         if (*password == '\0' && options.permit_empty_passwd == 0)
141                 return 0;
142
143 #ifdef HAVE_CYGWIN
144         if (is_winnt) {
145                 HANDLE hToken = cygwin_logon_user(pw, password);
146
147                 if (hToken == INVALID_HANDLE_VALUE)
148                         return 0;
149                 cygwin_set_impersonation_token(hToken);
150                 return 1;
151         }
152 #endif
153
154 #ifdef SKEY
155         if (options.skey_authentication == 1) {
156                 int ret = auth_skey_password(pw, password);
157                 if (ret == 1 || ret == 0)
158                         return ret;
159                 /* Fall back to ordinary passwd authentication. */
160         }
161 #endif
162
163 #ifdef WITH_AIXAUTHENTICATE
164         return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
165 #endif
166
167 #ifdef KRB4
168         if (options.kerberos_authentication == 1) {
169                 int ret = auth_krb4_password(pw, password);
170                 if (ret == 1 || ret == 0)
171                         return ret;
172                 /* Fall back to ordinary passwd authentication. */
173         }
174 #endif
175
176
177         pw_password = pw->pw_passwd;
178
179         /*
180          * Various interfaces to shadow or protected password data
181          */
182 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
183         spw = getspnam(pw->pw_name);
184         if (spw != NULL) 
185                 pw_password = spw->sp_pwdp;
186 #endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
187 #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
188         if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
189                 pw_password = spw->pwa_passwd;
190 #endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
191 #if defined(__hpux)
192         if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
193                 pw_password = spw->ufld.fd_encrypt;
194 #endif /* defined(__hpux) */
195
196         /* Check for users with no password. */
197         if ((password[0] == '\0') && (pw_password[0] == '\0'))
198                 return 1;
199
200         if (pw_password[0] != '\0')
201                 salt = pw_password;
202         else
203                 salt = "xx";
204
205 #ifdef HAVE_MD5_PASSWORDS
206         if (is_md5_salt(salt))
207                 encrypted_password = md5_crypt(password, salt);
208         else
209                 encrypted_password = crypt(password, salt);
210 #else /* HAVE_MD5_PASSWORDS */    
211 # ifdef __hpux
212         if (iscomsec())
213                 encrypted_password = bigcrypt(password, salt);
214         else
215                 encrypted_password = crypt(password, salt);
216 # else
217         encrypted_password = crypt(password, salt);
218 # endif /* __hpux */
219 #endif /* HAVE_MD5_PASSWORDS */    
220
221         /* Authentication is accepted if the encrypted passwords are identical. */
222         return (strcmp(encrypted_password, pw_password) == 0);
223 }
224 #endif /* !USE_PAM && !HAVE_OSF_SIA */
This page took 0.056737 seconds and 5 git commands to generate.