blob: 055a03629fd71580097fa17c7e01b3afed8b23c0 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Password authentication. This file contains the functions to check whether
6 * the password is valid for the user.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
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.
Damien Miller95def091999-11-25 00:26:21 +110059 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61#include "includes.h"
Damien Millere4340be2000-09-16 13:29:08 +110062RCSID("$OpenBSD: auth-passwd.c,v 1.17 2000/09/07 20:27:49 deraadt Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerb8c656e2000-06-28 15:22:41 +100064#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
65
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "packet.h"
67#include "ssh.h"
68#include "servconf.h"
69#include "xmalloc.h"
Damien Miller2cb210f1999-11-13 15:40:10 +110070
Damien Miller1fa154b2000-01-23 10:32:03 +110071#ifdef WITH_AIXAUTHENTICATE
Damien Miller1bead332000-04-30 00:47:29 +100072# include <login.h>
Damien Miller1fa154b2000-01-23 10:32:03 +110073#endif
Damien Miller1bead332000-04-30 00:47:29 +100074#ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW
75# include <hpsecurity.h>
76# include <prot.h>
77#endif
Damien Miller2cb210f1999-11-13 15:40:10 +110078#ifdef HAVE_SHADOW_H
Damien Millerbeb4ba51999-12-28 15:09:35 +110079# include <shadow.h>
Damien Miller2cb210f1999-11-13 15:40:10 +110080#endif
Damien Millerdfc83f42000-05-20 15:02:59 +100081#ifdef HAVE_GETPWANAM
82# include <sys/label.h>
83# include <sys/audit.h>
84# include <pwdadj.h>
85#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110086#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
87# include "md5crypt.h"
88#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
Damien Millerdd1c7ba1999-11-19 15:53:20 +110089
Damien Millerbac2d8a2000-09-05 16:13:06 +110090#ifdef HAVE_CYGWIN
91#undef ERROR
92#include <windows.h>
93#include <sys/cygwin.h>
94#define is_winnt (GetVersion() < 0x80000000)
95#endif
96
Damien Miller95def091999-11-25 00:26:21 +110097/*
98 * Tries to authenticate the user using password. Returns true if
99 * authentication succeeds.
100 */
Damien Miller4af51302000-04-16 11:18:38 +1000101int
Damien Miller95def091999-11-25 00:26:21 +1100102auth_password(struct passwd * pw, const char *password)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103{
Damien Miller95def091999-11-25 00:26:21 +1100104 extern ServerOptions options;
105 char *encrypted_password;
Damien Miller2e1b0821999-12-25 10:11:29 +1100106 char *pw_password;
107 char *salt;
Damien Miller2cb210f1999-11-13 15:40:10 +1100108#ifdef HAVE_SHADOW_H
Damien Miller95def091999-11-25 00:26:21 +1100109 struct spwd *spw;
Damien Miller2cb210f1999-11-13 15:40:10 +1100110#endif
Damien Millerdfc83f42000-05-20 15:02:59 +1000111#ifdef HAVE_GETPWANAM
112 struct passwd_adjunct *spw;
113#endif
Damien Miller606f8802000-09-16 15:39:56 +1100114# ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW
115 struct pr_passwd *prpw;
116#endif
Damien Miller1fa154b2000-01-23 10:32:03 +1100117#ifdef WITH_AIXAUTHENTICATE
118 char *authmsg;
119 char *loginmsg;
120 int reenter = 1;
121#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
Damien Millerece22a81999-12-30 09:48:15 +1100123 /* deny if no user. */
124 if (pw == NULL)
125 return 0;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100126#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +1100127 if (pw->pw_uid == 0 && options.permit_root_login == 2)
Damien Miller95def091999-11-25 00:26:21 +1100128 return 0;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100129#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
Damien Miller5428f641999-11-25 11:54:57 +1100137 if (*password == '\0' && options.permit_empty_passwd == 0)
Damien Miller95def091999-11-25 00:26:21 +1100138 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Millerbac2d8a2000-09-05 16:13:06 +1100140#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
150
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151#ifdef SKEY
Damien Miller95def091999-11-25 00:26:21 +1100152 if (options.skey_authentication == 1) {
Damien Milleraae6c611999-12-06 11:47:28 +1100153 int ret = auth_skey_password(pw, password);
154 if (ret == 1 || ret == 0)
155 return ret;
Damien Miller95def091999-11-25 00:26:21 +1100156 /* Fall back to ordinary passwd authentication. */
157 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#endif
Damien Miller1fa154b2000-01-23 10:32:03 +1100159
160#ifdef WITH_AIXAUTHENTICATE
161 return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);
162#endif
163
Damien Milleraae6c611999-12-06 11:47:28 +1100164#ifdef KRB4
165 if (options.kerberos_authentication == 1) {
166 int ret = auth_krb4_password(pw, password);
167 if (ret == 1 || ret == 0)
168 return ret;
Damien Miller95def091999-11-25 00:26:21 +1100169 /* Fall back to ordinary passwd authentication. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170 }
Damien Milleraae6c611999-12-06 11:47:28 +1100171#endif
Damien Miller95def091999-11-25 00:26:21 +1100172
Damien Miller606f8802000-09-16 15:39:56 +1100173# ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW
174 prpw = getprpwnam(pw->pw_name);
175 pw_password = prpw->ufld.fd_encrypt;
176#else
Damien Miller2e1b0821999-12-25 10:11:29 +1100177 pw_password = pw->pw_passwd;
Damien Miller606f8802000-09-16 15:39:56 +1100178#endif
179
180 /* Check for users with no password. */
181 if (strcmp(password, "") == 0 && strcmp(pw_password, "") == 0)
182 return 1;
Damien Miller2e1b0821999-12-25 10:11:29 +1100183
Damien Millercb7e5f91999-12-21 21:03:09 +1100184#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
Damien Miller95def091999-11-25 00:26:21 +1100185 spw = getspnam(pw->pw_name);
Damien Miller8eb0fd61999-12-31 08:49:13 +1100186 if (spw != NULL)
187 {
188 /* Check for users with no password. */
189 if (strcmp(password, "") == 0 && strcmp(spw->sp_pwdp, "") == 0)
190 return 1;
Damien Miller2cb210f1999-11-13 15:40:10 +1100191
Damien Miller8eb0fd61999-12-31 08:49:13 +1100192 pw_password = spw->sp_pwdp;
193 }
Damien Millercb7e5f91999-12-21 21:03:09 +1100194#endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
Damien Millerdfc83f42000-05-20 15:02:59 +1000195#if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
196 if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
197 {
198 /* Check for users with no password. */
199 if (strcmp(password, "") == 0 && strcmp(spw->pwa_passwd, "") == 0)
200 return 1;
201
202 pw_password = spw->pwa_passwd;
203 }
204#endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */
Damien Miller2e1b0821999-12-25 10:11:29 +1100205
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 */
Damien Miller1bead332000-04-30 00:47:29 +1000217# ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW
218 encrypted_password = bigcrypt(password, salt);
219# else
Damien Miller2e1b0821999-12-25 10:11:29 +1100220 encrypted_password = crypt(password, salt);
Damien Miller1bead332000-04-30 00:47:29 +1000221# endif /* HAVE_HPUX_TRUSTED_SYSTEM_PW */
Damien Miller2e1b0821999-12-25 10:11:29 +1100222#endif /* HAVE_MD5_PASSWORDS */
223
224 /* Authentication is accepted if the encrypted passwords are identical. */
225 return (strcmp(encrypted_password, pw_password) == 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226}
Damien Millerb8c656e2000-06-28 15:22:41 +1000227#endif /* !USE_PAM && !HAVE_OSF_SIA */