Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Password authentication. This file contains the functions to check whether |
| 6 | * the password is valid for the user. |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 14 | * Copyright (c) 1999 Dug Song. All rights reserved. |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 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. |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 36 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 37 | |
| 38 | #include "includes.h" |
Damien Miller | 444f9fc | 2002-06-21 16:05:12 +1000 | [diff] [blame] | 39 | RCSID("$OpenBSD: auth-passwd.c,v 1.27 2002/05/24 16:45:16 stevesk Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 40 | |
| 41 | #include "packet.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 42 | #include "log.h" |
| 43 | #include "servconf.h" |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 44 | #include "auth.h" |
| 45 | |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 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 |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 58 | # ifdef HAVE_SECUREWARE |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 59 | # include <sys/security.h> |
| 60 | # include <sys/audit.h> |
| 61 | # include <prot.h> |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 62 | # endif /* HAVE_SECUREWARE */ |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 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) */ |
Damien Miller | dd1c7ba | 1999-11-19 15:53:20 +1100 | [diff] [blame] | 74 | |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 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 */ |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 82 | |
| 83 | extern ServerOptions options; |
Ben Lindstrom | 164725f | 2002-09-25 23:14:14 +0000 | [diff] [blame] | 84 | #ifdef WITH_AIXAUTHENTICATE |
| 85 | extern char *aixloginmsg; |
| 86 | #endif |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 87 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 88 | /* |
| 89 | * Tries to authenticate the user using password. Returns true if |
| 90 | * authentication succeeds. |
| 91 | */ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 92 | int |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 93 | auth_password(Authctxt *authctxt, const char *password) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 94 | { |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 95 | #if defined(USE_PAM) |
Ben Lindstrom | 0b47814 | 2002-05-10 02:40:15 +0000 | [diff] [blame] | 96 | if (*password == '\0' && options.permit_empty_passwd == 0) |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 97 | return 0; |
| 98 | return auth_pam_password(authctxt, password); |
| 99 | #elif defined(HAVE_OSF_SIA) |
Ben Lindstrom | 0b47814 | 2002-05-10 02:40:15 +0000 | [diff] [blame] | 100 | if (*password == '\0' && options.permit_empty_passwd == 0) |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 101 | return 0; |
| 102 | return auth_sia_password(authctxt, password); |
| 103 | #else |
Ben Lindstrom | 0b47814 | 2002-05-10 02:40:15 +0000 | [diff] [blame] | 104 | struct passwd * pw = authctxt->pw; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 105 | char *encrypted_password; |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 106 | char *pw_password; |
| 107 | char *salt; |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 108 | #if defined(__hpux) || defined(HAVE_SECUREWARE) |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 109 | struct pr_passwd *spw; |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 110 | #endif /* __hpux || HAVE_SECUREWARE */ |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 111 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 112 | struct spwd *spw; |
Damien Miller | 2cb210f | 1999-11-13 15:40:10 +1100 | [diff] [blame] | 113 | #endif |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 114 | #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 115 | struct passwd_adjunct *spw; |
| 116 | #endif |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 117 | #ifdef WITH_AIXAUTHENTICATE |
| 118 | char *authmsg; |
Ben Lindstrom | 164725f | 2002-09-25 23:14:14 +0000 | [diff] [blame] | 119 | int authsuccess; |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 120 | int reenter = 1; |
| 121 | #endif |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 122 | |
Damien Miller | ece22a8 | 1999-12-30 09:48:15 +1100 | [diff] [blame] | 123 | /* deny if no user. */ |
| 124 | if (pw == NULL) |
| 125 | return 0; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 126 | #ifndef HAVE_CYGWIN |
Ben Lindstrom | d8a9021 | 2001-02-15 03:08:27 +0000 | [diff] [blame] | 127 | if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 128 | return 0; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 129 | #endif |
Ben Lindstrom | 0b47814 | 2002-05-10 02:40:15 +0000 | [diff] [blame] | 130 | if (*password == '\0' && options.permit_empty_passwd == 0) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 131 | return 0; |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 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 | } |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 139 | #endif |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 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 |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 150 | #ifdef WITH_AIXAUTHENTICATE |
Ben Lindstrom | 164725f | 2002-09-25 23:14:14 +0000 | [diff] [blame] | 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); |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 161 | #endif |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 162 | #ifdef KRB4 |
| 163 | if (options.kerberos_authentication == 1) { |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 164 | int ret = auth_krb4_password(authctxt, password); |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 165 | if (ret == 1 || ret == 0) |
| 166 | return ret; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 167 | /* Fall back to ordinary passwd authentication. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 168 | } |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 169 | #endif |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 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 |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 177 | pw_password = pw->pw_passwd; |
Damien Miller | 606f880 | 2000-09-16 15:39:56 +1100 | [diff] [blame] | 178 | |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 179 | /* |
| 180 | * Various interfaces to shadow or protected password data |
| 181 | */ |
Damien Miller | cb7e5f9 | 1999-12-21 21:03:09 +1100 | [diff] [blame] | 182 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 183 | spw = getspnam(pw->pw_name); |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 184 | if (spw != NULL) |
Damien Miller | 8eb0fd6 | 1999-12-31 08:49:13 +1100 | [diff] [blame] | 185 | pw_password = spw->sp_pwdp; |
Damien Miller | cb7e5f9 | 1999-12-21 21:03:09 +1100 | [diff] [blame] | 186 | #endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 187 | |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 188 | #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) |
| 189 | if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 190 | pw_password = spw->pwa_passwd; |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 191 | #endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 192 | |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 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) |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 199 | if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL) |
| 200 | pw_password = spw->ufld.fd_encrypt; |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 201 | #endif /* defined(__hpux) && !defined(HAVE_SECUREWARE) */ |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 202 | |
| 203 | /* Check for users with no password. */ |
| 204 | if ((password[0] == '\0') && (pw_password[0] == '\0')) |
| 205 | return 1; |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 206 | |
| 207 | if (pw_password[0] != '\0') |
| 208 | salt = pw_password; |
| 209 | else |
| 210 | salt = "xx"; |
| 211 | |
| 212 | #ifdef HAVE_MD5_PASSWORDS |
| 213 | if (is_md5_salt(salt)) |
| 214 | encrypted_password = md5_crypt(password, salt); |
| 215 | else |
| 216 | encrypted_password = crypt(password, salt); |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 217 | #else /* HAVE_MD5_PASSWORDS */ |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 218 | # if defined(__hpux) && !defined(HAVE_SECUREWARE) |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 219 | if (iscomsec()) |
| 220 | encrypted_password = bigcrypt(password, salt); |
| 221 | else |
| 222 | encrypted_password = crypt(password, salt); |
Damien Miller | 1bead33 | 2000-04-30 00:47:29 +1000 | [diff] [blame] | 223 | # else |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 224 | # ifdef HAVE_SECUREWARE |
Damien Miller | f966109 | 2002-01-03 10:30:56 +1100 | [diff] [blame] | 225 | encrypted_password = bigcrypt(password, salt); |
| 226 | # else |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 227 | encrypted_password = crypt(password, salt); |
Kevin Steves | 0ea1d9d | 2002-04-25 18:17:04 +0000 | [diff] [blame] | 228 | # endif /* HAVE_SECUREWARE */ |
| 229 | # endif /* __hpux && !defined(HAVE_SECUREWARE) */ |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 230 | #endif /* HAVE_MD5_PASSWORDS */ |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 231 | |
| 232 | /* Authentication is accepted if the encrypted passwords are identical. */ |
| 233 | return (strcmp(encrypted_password, pw_password) == 0); |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 234 | #endif /* !USE_PAM && !HAVE_OSF_SIA */ |
Kevin Steves | e683e76 | 2002-04-04 19:02:28 +0000 | [diff] [blame] | 235 | } |