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 | * |
| 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 Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 59 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 60 | |
| 61 | #include "includes.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 62 | RCSID("$OpenBSD: auth-passwd.c,v 1.18 2000/10/03 18:03:03 markus Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 63 | |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 64 | #if !defined(USE_PAM) && !defined(HAVE_OSF_SIA) |
| 65 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 66 | #include "packet.h" |
| 67 | #include "ssh.h" |
| 68 | #include "servconf.h" |
| 69 | #include "xmalloc.h" |
Damien Miller | 2cb210f | 1999-11-13 15:40:10 +1100 | [diff] [blame] | 70 | |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 71 | #ifdef WITH_AIXAUTHENTICATE |
Damien Miller | 1bead33 | 2000-04-30 00:47:29 +1000 | [diff] [blame] | 72 | # include <login.h> |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 73 | #endif |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 74 | #ifdef __hpux |
Damien Miller | 1bead33 | 2000-04-30 00:47:29 +1000 | [diff] [blame] | 75 | # include <hpsecurity.h> |
| 76 | # include <prot.h> |
| 77 | #endif |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 78 | #ifdef HAVE_SCO_PROTECTED_PW |
| 79 | # include <sys/security.h> |
| 80 | # include <sys/audit.h> |
| 81 | # include <prot.h> |
| 82 | #endif /* HAVE_SCO_PROTECTED_PW */ |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 83 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 84 | # include <shadow.h> |
Damien Miller | 2cb210f | 1999-11-13 15:40:10 +1100 | [diff] [blame] | 85 | #endif |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 86 | #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 87 | # include <sys/label.h> |
| 88 | # include <sys/audit.h> |
| 89 | # include <pwdadj.h> |
| 90 | #endif |
Damien Miller | beb4ba5 | 1999-12-28 15:09:35 +1100 | [diff] [blame] | 91 | #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) |
| 92 | # include "md5crypt.h" |
| 93 | #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */ |
Damien Miller | dd1c7ba | 1999-11-19 15:53:20 +1100 | [diff] [blame] | 94 | |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 95 | #ifdef HAVE_CYGWIN |
| 96 | #undef ERROR |
| 97 | #include <windows.h> |
| 98 | #include <sys/cygwin.h> |
| 99 | #define is_winnt (GetVersion() < 0x80000000) |
| 100 | #endif |
| 101 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 102 | /* |
| 103 | * Tries to authenticate the user using password. Returns true if |
| 104 | * authentication succeeds. |
| 105 | */ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 106 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 107 | auth_password(struct passwd * pw, const char *password) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 108 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 109 | extern ServerOptions options; |
| 110 | char *encrypted_password; |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 111 | char *pw_password; |
| 112 | char *salt; |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 113 | #ifdef __hpux |
| 114 | struct pr_passwd *spw; |
| 115 | #endif |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 116 | #ifdef HAVE_SCO_PROTECTED_PW |
| 117 | struct pr_passwd *spw; |
| 118 | #endif /* HAVE_SCO_PROTECTED_PW */ |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 119 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 120 | struct spwd *spw; |
Damien Miller | 2cb210f | 1999-11-13 15:40:10 +1100 | [diff] [blame] | 121 | #endif |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 122 | #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 123 | struct passwd_adjunct *spw; |
| 124 | #endif |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 125 | #ifdef WITH_AIXAUTHENTICATE |
| 126 | char *authmsg; |
| 127 | char *loginmsg; |
| 128 | int reenter = 1; |
| 129 | #endif |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 130 | |
Damien Miller | ece22a8 | 1999-12-30 09:48:15 +1100 | [diff] [blame] | 131 | /* deny if no user. */ |
| 132 | if (pw == NULL) |
| 133 | return 0; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 134 | #ifndef HAVE_CYGWIN |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 135 | if (pw->pw_uid == 0 && options.permit_root_login == 2) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 136 | return 0; |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 137 | #endif |
| 138 | #ifdef HAVE_CYGWIN |
| 139 | /* |
| 140 | * Empty password is only possible on NT if the user has _really_ |
| 141 | * an empty password and authentication is done, though. |
| 142 | */ |
| 143 | if (!is_winnt) |
| 144 | #endif |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 145 | if (*password == '\0' && options.permit_empty_passwd == 0) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 146 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 147 | |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 148 | #ifdef HAVE_CYGWIN |
| 149 | if (is_winnt) { |
| 150 | HANDLE hToken = cygwin_logon_user(pw, password); |
| 151 | |
| 152 | if (hToken == INVALID_HANDLE_VALUE) |
| 153 | return 0; |
| 154 | cygwin_set_impersonation_token(hToken); |
| 155 | return 1; |
| 156 | } |
| 157 | #endif |
| 158 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 159 | #ifdef SKEY_VIA_PASSWD_IS_DISABLED |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 160 | if (options.skey_authentication == 1) { |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 161 | int ret = auth_skey_password(pw, password); |
| 162 | if (ret == 1 || ret == 0) |
| 163 | return ret; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 164 | /* Fall back to ordinary passwd authentication. */ |
| 165 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 166 | #endif |
Damien Miller | 1fa154b | 2000-01-23 10:32:03 +1100 | [diff] [blame] | 167 | |
| 168 | #ifdef WITH_AIXAUTHENTICATE |
| 169 | return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); |
| 170 | #endif |
| 171 | |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 172 | #ifdef KRB4 |
| 173 | if (options.kerberos_authentication == 1) { |
| 174 | int ret = auth_krb4_password(pw, password); |
| 175 | if (ret == 1 || ret == 0) |
| 176 | return ret; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 177 | /* Fall back to ordinary passwd authentication. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 178 | } |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 179 | #endif |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 180 | |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 181 | |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 182 | pw_password = pw->pw_passwd; |
Damien Miller | 606f880 | 2000-09-16 15:39:56 +1100 | [diff] [blame] | 183 | |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 184 | /* |
| 185 | * Various interfaces to shadow or protected password data |
| 186 | */ |
Damien Miller | cb7e5f9 | 1999-12-21 21:03:09 +1100 | [diff] [blame] | 187 | #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 188 | spw = getspnam(pw->pw_name); |
Damien Miller | 8eb0fd6 | 1999-12-31 08:49:13 +1100 | [diff] [blame] | 189 | if (spw != NULL) |
Damien Miller | 8eb0fd6 | 1999-12-31 08:49:13 +1100 | [diff] [blame] | 190 | pw_password = spw->sp_pwdp; |
Damien Miller | cb7e5f9 | 1999-12-21 21:03:09 +1100 | [diff] [blame] | 191 | #endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 192 | |
| 193 | #ifdef HAVE_SCO_PROTECTED_PW |
| 194 | spw = getprpwnam(pw->pw_name); |
| 195 | if (spw != NULL) |
| 196 | pw_password = spw->ufld.fd_encrypt; |
| 197 | #endif /* HAVE_SCO_PROTECTED_PW */ |
| 198 | |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 199 | #if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) |
| 200 | if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL) |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 201 | pw_password = spw->pwa_passwd; |
Damien Miller | dfc83f4 | 2000-05-20 15:02:59 +1000 | [diff] [blame] | 202 | #endif /* defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) */ |
Damien Miller | 78315eb | 2000-09-29 23:01:36 +1100 | [diff] [blame] | 203 | |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 204 | #if defined(__hpux) |
| 205 | if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL) |
| 206 | pw_password = spw->ufld.fd_encrypt; |
| 207 | #endif /* defined(__hpux) */ |
| 208 | |
| 209 | /* Check for users with no password. */ |
| 210 | if ((password[0] == '\0') && (pw_password[0] == '\0')) |
| 211 | return 1; |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 212 | |
| 213 | if (pw_password[0] != '\0') |
| 214 | salt = pw_password; |
| 215 | else |
| 216 | salt = "xx"; |
| 217 | |
| 218 | #ifdef HAVE_MD5_PASSWORDS |
| 219 | if (is_md5_salt(salt)) |
| 220 | encrypted_password = md5_crypt(password, salt); |
| 221 | else |
| 222 | encrypted_password = crypt(password, salt); |
| 223 | #else /* HAVE_MD5_PASSWORDS */ |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 224 | # ifdef __hpux |
| 225 | if (iscomsec()) |
| 226 | encrypted_password = bigcrypt(password, salt); |
| 227 | else |
| 228 | encrypted_password = crypt(password, salt); |
Damien Miller | 1bead33 | 2000-04-30 00:47:29 +1000 | [diff] [blame] | 229 | # else |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 230 | encrypted_password = crypt(password, salt); |
Damien Miller | 8a1e6a6 | 2000-09-16 15:55:52 +1100 | [diff] [blame] | 231 | # endif /* __hpux */ |
Damien Miller | 2e1b082 | 1999-12-25 10:11:29 +1100 | [diff] [blame] | 232 | #endif /* HAVE_MD5_PASSWORDS */ |
| 233 | |
| 234 | /* Authentication is accepted if the encrypted passwords are identical. */ |
| 235 | return (strcmp(encrypted_password, pw_password) == 0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 236 | } |
Damien Miller | b8c656e | 2000-06-28 15:22:41 +1000 | [diff] [blame] | 237 | #endif /* !USE_PAM && !HAVE_OSF_SIA */ |