Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 3 | * All rights reserved |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 4 | * |
| 5 | * As far as I am concerned, the code I have written for this software |
| 6 | * can be used freely for any purpose. Any derived versions of this |
| 7 | * software must be clearly marked as such, and if the derived work is |
| 8 | * incompatible with the protocol description in the RFC file, it must be |
| 9 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include "includes.h" |
Damien Miller | a9fcd3a | 2003-11-17 21:16:55 +1100 | [diff] [blame] | 13 | RCSID("$OpenBSD: auth1.c,v 1.55 2003/11/08 16:02:40 jakob Exp $"); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 14 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 15 | #include "xmalloc.h" |
| 16 | #include "rsa.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 17 | #include "ssh1.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 18 | #include "packet.h" |
| 19 | #include "buffer.h" |
| 20 | #include "mpaux.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 21 | #include "log.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 22 | #include "servconf.h" |
| 23 | #include "compat.h" |
| 24 | #include "auth.h" |
Damien Miller | c7ef63d | 2002-02-05 12:21:42 +1100 | [diff] [blame] | 25 | #include "channels.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 26 | #include "session.h" |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 27 | #include "uidswap.h" |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 28 | #include "monitor_wrap.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 29 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 30 | /* import */ |
| 31 | extern ServerOptions options; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 32 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 33 | /* |
| 34 | * convert ssh auth msg type into description |
| 35 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 36 | static char * |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 37 | get_authname(int type) |
| 38 | { |
| 39 | static char buf[1024]; |
| 40 | switch (type) { |
| 41 | case SSH_CMSG_AUTH_PASSWORD: |
| 42 | return "password"; |
| 43 | case SSH_CMSG_AUTH_RSA: |
| 44 | return "rsa"; |
| 45 | case SSH_CMSG_AUTH_RHOSTS_RSA: |
| 46 | return "rhosts-rsa"; |
| 47 | case SSH_CMSG_AUTH_RHOSTS: |
| 48 | return "rhosts"; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 49 | case SSH_CMSG_AUTH_TIS: |
| 50 | case SSH_CMSG_AUTH_TIS_RESPONSE: |
| 51 | return "challenge-response"; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 52 | } |
| 53 | snprintf(buf, sizeof buf, "bad-auth-msg-%d", type); |
| 54 | return buf; |
| 55 | } |
| 56 | |
| 57 | /* |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 58 | * read packets, try to authenticate the user and |
| 59 | * return only if authentication is successful |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 60 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 61 | static void |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 62 | do_authloop(Authctxt *authctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 63 | { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 64 | int authenticated = 0; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 65 | u_int bits; |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 66 | Key *client_host_key; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 67 | BIGNUM *n; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 68 | char *client_user, *password; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 69 | char info[1024]; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 70 | u_int dlen; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 71 | u_int ulen; |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 72 | int prev, type = 0; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 73 | struct passwd *pw = authctxt->pw; |
| 74 | |
| 75 | debug("Attempting authentication for %s%.100s.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 76 | authctxt->valid ? "" : "illegal user ", authctxt->user); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 77 | |
| 78 | /* If the user has no password, accept authentication immediately. */ |
| 79 | if (options.password_authentication && |
Darren Tucker | 6aaa58c | 2003-08-02 22:24:49 +1000 | [diff] [blame] | 80 | #ifdef KRB5 |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 81 | (!options.kerberos_authentication || options.kerberos_or_local_passwd) && |
| 82 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 83 | PRIVSEP(auth_password(authctxt, ""))) { |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 84 | auth_log(authctxt, 1, "without authentication", ""); |
| 85 | return; |
| 86 | } |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 87 | |
| 88 | /* Indicate that authentication is needed. */ |
| 89 | packet_start(SSH_SMSG_FAILURE); |
| 90 | packet_send(); |
| 91 | packet_write_wait(); |
| 92 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 93 | client_user = NULL; |
| 94 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 95 | for (;;) { |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 96 | /* default to fail */ |
| 97 | authenticated = 0; |
| 98 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 99 | info[0] = '\0'; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 100 | |
| 101 | /* Get a packet from the client. */ |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 102 | prev = type; |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 103 | type = packet_read(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 104 | |
Damien Miller | 4f9f42a | 2003-05-10 19:28:02 +1000 | [diff] [blame] | 105 | /* |
| 106 | * If we started challenge-response authentication but the |
| 107 | * next packet is not a response to our challenge, release |
| 108 | * the resources allocated by get_challenge() (which would |
| 109 | * normally have been released by verify_response() had we |
| 110 | * received such a response) |
| 111 | */ |
| 112 | if (prev == SSH_CMSG_AUTH_TIS && |
| 113 | type != SSH_CMSG_AUTH_TIS_RESPONSE) |
| 114 | abandon_challenge_response(authctxt); |
| 115 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 116 | /* Process the packet. */ |
| 117 | switch (type) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 118 | case SSH_CMSG_AUTH_RHOSTS_RSA: |
| 119 | if (!options.rhosts_rsa_authentication) { |
| 120 | verbose("Rhosts with RSA authentication disabled."); |
| 121 | break; |
| 122 | } |
| 123 | /* |
| 124 | * Get client user name. Note that we just have to |
| 125 | * trust the client; root on the client machine can |
| 126 | * claim to be any user. |
| 127 | */ |
| 128 | client_user = packet_get_string(&ulen); |
| 129 | |
| 130 | /* Get the client host key. */ |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 131 | client_host_key = key_new(KEY_RSA1); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 132 | bits = packet_get_int(); |
Damien Miller | d432ccf | 2002-01-22 23:14:44 +1100 | [diff] [blame] | 133 | packet_get_bignum(client_host_key->rsa->e); |
| 134 | packet_get_bignum(client_host_key->rsa->n); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 135 | |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 136 | if (bits != BN_num_bits(client_host_key->rsa->n)) |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 137 | verbose("Warning: keysize mismatch for client_host_key: " |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 138 | "actual %d, announced %d", |
Ben Lindstrom | cb72e4f | 2002-06-21 00:41:51 +0000 | [diff] [blame] | 139 | BN_num_bits(client_host_key->rsa->n), bits); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 140 | packet_check_eom(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 141 | |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 142 | authenticated = auth_rhosts_rsa(authctxt, client_user, |
Damien Miller | d221ca6 | 2002-01-22 23:11:00 +1100 | [diff] [blame] | 143 | client_host_key); |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 144 | key_free(client_host_key); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 145 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 146 | snprintf(info, sizeof info, " ruser %.100s", client_user); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 147 | break; |
| 148 | |
| 149 | case SSH_CMSG_AUTH_RSA: |
| 150 | if (!options.rsa_authentication) { |
| 151 | verbose("RSA authentication disabled."); |
| 152 | break; |
| 153 | } |
| 154 | /* RSA authentication requested. */ |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 155 | if ((n = BN_new()) == NULL) |
| 156 | fatal("do_authloop: BN_new failed"); |
Damien Miller | d432ccf | 2002-01-22 23:14:44 +1100 | [diff] [blame] | 157 | packet_get_bignum(n); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 158 | packet_check_eom(); |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 159 | authenticated = auth_rsa(authctxt, n); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 160 | BN_clear_free(n); |
| 161 | break; |
| 162 | |
| 163 | case SSH_CMSG_AUTH_PASSWORD: |
| 164 | if (!options.password_authentication) { |
| 165 | verbose("Password authentication disabled."); |
| 166 | break; |
| 167 | } |
| 168 | /* |
| 169 | * Read user password. It is in plain text, but was |
| 170 | * transmitted over the encrypted channel so it is |
| 171 | * not visible to an outside observer. |
| 172 | */ |
| 173 | password = packet_get_string(&dlen); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 174 | packet_check_eom(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 175 | |
Kevin Steves | 12aaa04 | 2001-01-24 21:23:39 +0000 | [diff] [blame] | 176 | /* Try authentication with the password. */ |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 177 | authenticated = PRIVSEP(auth_password(authctxt, password)); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 178 | |
| 179 | memset(password, 0, strlen(password)); |
| 180 | xfree(password); |
| 181 | break; |
| 182 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 183 | case SSH_CMSG_AUTH_TIS: |
| 184 | debug("rcvd SSH_CMSG_AUTH_TIS"); |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 185 | if (options.challenge_response_authentication == 1) { |
| 186 | char *challenge = get_challenge(authctxt); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 187 | if (challenge != NULL) { |
| 188 | debug("sending challenge '%s'", challenge); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 189 | packet_start(SSH_SMSG_AUTH_TIS_CHALLENGE); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 190 | packet_put_cstring(challenge); |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 191 | xfree(challenge); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 192 | packet_send(); |
| 193 | packet_write_wait(); |
| 194 | continue; |
| 195 | } |
| 196 | } |
| 197 | break; |
| 198 | case SSH_CMSG_AUTH_TIS_RESPONSE: |
| 199 | debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE"); |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 200 | if (options.challenge_response_authentication == 1) { |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 201 | char *response = packet_get_string(&dlen); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 202 | packet_check_eom(); |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 203 | authenticated = verify_response(authctxt, response); |
| 204 | memset(response, 'r', dlen); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 205 | xfree(response); |
| 206 | } |
| 207 | break; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 208 | |
| 209 | default: |
| 210 | /* |
| 211 | * Any unknown messages will be ignored (and failure |
| 212 | * returned) during authentication. |
| 213 | */ |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 214 | logit("Unknown message during authentication: type %d", type); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 215 | break; |
| 216 | } |
Damien Miller | 60396b0 | 2001-02-18 17:01:00 +1100 | [diff] [blame] | 217 | #ifdef BSD_AUTH |
| 218 | if (authctxt->as) { |
| 219 | auth_close(authctxt->as); |
| 220 | authctxt->as = NULL; |
| 221 | } |
| 222 | #endif |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 223 | if (!authctxt->valid && authenticated) |
| 224 | fatal("INTERNAL ERROR: authenticated invalid user %s", |
| 225 | authctxt->user); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 226 | |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 227 | #ifdef _UNICOS |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 228 | if (authenticated && cray_access_denied(authctxt->user)) { |
| 229 | authenticated = 0; |
| 230 | fatal("Access denied for user %s.",authctxt->user); |
| 231 | } |
| 232 | #endif /* _UNICOS */ |
| 233 | |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 234 | #ifdef HAVE_CYGWIN |
| 235 | if (authenticated && |
Damien Miller | 0dea79d | 2001-12-29 14:08:28 +1100 | [diff] [blame] | 236 | !check_nt_auth(type == SSH_CMSG_AUTH_PASSWORD, pw)) { |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 237 | packet_disconnect("Authentication rejected for uid %d.", |
Damien Miller | 0eae442 | 2003-11-22 14:15:30 +1100 | [diff] [blame] | 238 | pw == NULL ? -1 : pw->pw_uid); |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 239 | authenticated = 0; |
| 240 | } |
Ben Lindstrom | 5dc8150 | 2001-01-19 06:10:29 +0000 | [diff] [blame] | 241 | #else |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 242 | /* Special handling for root */ |
Damien Miller | 556f931 | 2003-02-24 11:59:26 +1100 | [diff] [blame] | 243 | if (authenticated && authctxt->pw->pw_uid == 0 && |
Ben Lindstrom | d8a9021 | 2001-02-15 03:08:27 +0000 | [diff] [blame] | 244 | !auth_root_allowed(get_authname(type))) |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 245 | authenticated = 0; |
Ben Lindstrom | 5dc8150 | 2001-01-19 06:10:29 +0000 | [diff] [blame] | 246 | #endif |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 247 | |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 248 | #ifdef USE_PAM |
Damien Miller | a8e06ce | 2003-11-21 23:48:55 +1100 | [diff] [blame] | 249 | if (options.use_pam && authenticated && |
Damien Miller | 1f499fd | 2003-08-25 13:08:49 +1000 | [diff] [blame] | 250 | !PRIVSEP(do_pam_account())) |
| 251 | authenticated = 0; |
| 252 | #endif |
| 253 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 254 | /* Log before sending the reply */ |
| 255 | auth_log(authctxt, authenticated, get_authname(type), info); |
| 256 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 257 | if (client_user != NULL) { |
| 258 | xfree(client_user); |
| 259 | client_user = NULL; |
| 260 | } |
| 261 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 262 | if (authenticated) |
| 263 | return; |
| 264 | |
Ben Lindstrom | 683036e | 2003-04-27 18:41:30 +0000 | [diff] [blame] | 265 | if (authctxt->failures++ > AUTH_FAIL_MAX) |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 266 | packet_disconnect(AUTH_FAIL_MSG, authctxt->user); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 267 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 268 | packet_start(SSH_SMSG_FAILURE); |
| 269 | packet_send(); |
| 270 | packet_write_wait(); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | * Performs authentication of an incoming connection. Session key has already |
| 276 | * been exchanged and encryption is enabled. |
| 277 | */ |
Darren Tucker | 3e33cec | 2003-10-02 16:12:36 +1000 | [diff] [blame] | 278 | void |
| 279 | do_authentication(Authctxt *authctxt) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 280 | { |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 281 | u_int ulen; |
Ben Lindstrom | c822638 | 2002-04-10 16:22:09 +0000 | [diff] [blame] | 282 | char *user, *style = NULL; |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 283 | |
| 284 | /* Get the name of the user that we wish to log in as. */ |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 285 | packet_read_expect(SSH_CMSG_USER); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 286 | |
| 287 | /* Get the user name. */ |
| 288 | user = packet_get_string(&ulen); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 289 | packet_check_eom(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 290 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 291 | if ((style = strchr(user, ':')) != NULL) |
Ben Lindstrom | ec95ed9 | 2001-07-04 04:21:14 +0000 | [diff] [blame] | 292 | *style++ = '\0'; |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 293 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 294 | authctxt->user = user; |
| 295 | authctxt->style = style; |
| 296 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 297 | /* Verify that the user is a valid user. */ |
Ben Lindstrom | 7ebb635 | 2002-03-22 03:04:08 +0000 | [diff] [blame] | 298 | if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL) |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 299 | authctxt->valid = 1; |
Damien Miller | 856f0be | 2003-09-03 07:32:45 +1000 | [diff] [blame] | 300 | else { |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 301 | debug("do_authentication: illegal user %s", user); |
Damien Miller | 856f0be | 2003-09-03 07:32:45 +1000 | [diff] [blame] | 302 | authctxt->pw = fakepw(); |
| 303 | } |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 304 | |
Ben Lindstrom | 7ebb635 | 2002-03-22 03:04:08 +0000 | [diff] [blame] | 305 | setproctitle("%s%s", authctxt->pw ? user : "unknown", |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 306 | use_privsep ? " [net]" : ""); |
Ben Lindstrom | c1ba31f | 2001-02-15 03:14:11 +0000 | [diff] [blame] | 307 | |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 308 | #ifdef USE_PAM |
Damien Miller | 4e448a3 | 2003-05-14 15:11:48 +1000 | [diff] [blame] | 309 | if (options.use_pam) |
| 310 | PRIVSEP(start_pam(user)); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 311 | #endif |
| 312 | |
| 313 | /* |
| 314 | * If we are not running as root, the user must have the same uid as |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 315 | * the server. (Unless you are running Windows) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 316 | */ |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 317 | #ifndef HAVE_CYGWIN |
Ben Lindstrom | 7ebb635 | 2002-03-22 03:04:08 +0000 | [diff] [blame] | 318 | if (!use_privsep && getuid() != 0 && authctxt->pw && |
| 319 | authctxt->pw->pw_uid != getuid()) |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 320 | packet_disconnect("Cannot change user when server not running as root."); |
Damien Miller | bac2d8a | 2000-09-05 16:13:06 +1100 | [diff] [blame] | 321 | #endif |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 322 | |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 323 | /* |
Kevin Steves | 12aaa04 | 2001-01-24 21:23:39 +0000 | [diff] [blame] | 324 | * Loop until the user has been authenticated or the connection is |
| 325 | * closed, do_authloop() returns only if authentication is successful |
| 326 | */ |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 327 | do_authloop(authctxt); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 328 | |
| 329 | /* The user has been authenticated and accepted. */ |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 330 | packet_start(SSH_SMSG_SUCCESS); |
| 331 | packet_send(); |
| 332 | packet_write_wait(); |
Damien Miller | eba71ba | 2000-04-29 23:57:08 +1000 | [diff] [blame] | 333 | } |