blob: 5467f04bfabdcc657b12de3189c71d316ad3e271 [file] [log] [blame]
Darren Tucker232b76f2006-05-06 17:41:51 +10001/* $OpenBSD: sshconnect1.c,v 1.65 2006/04/25 08:02:27 dtucker Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Millereba71ba2000-04-29 23:57:08 +10006 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
8 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Millereba71ba2000-04-29 23:57:08 +100014 */
15
16#include "includes.h"
Damien Millereba71ba2000-04-29 23:57:08 +100017
18#include <openssl/bn.h>
Damien Miller2ce18da2002-02-13 13:54:27 +110019#include <openssl/md5.h>
Damien Millereba71ba2000-04-29 23:57:08 +100020
Ben Lindstrom226cfa02001-01-22 05:34:40 +000021#include "ssh.h"
22#include "ssh1.h"
Damien Millereba71ba2000-04-29 23:57:08 +100023#include "xmalloc.h"
24#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100025#include "buffer.h"
26#include "packet.h"
Darren Tuckere14e0052004-05-13 16:30:44 +100027#include "kex.h"
Damien Millereba71ba2000-04-29 23:57:08 +100028#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "log.h"
Damien Millereba71ba2000-04-29 23:57:08 +100030#include "readconf.h"
31#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100032#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "sshconnect.h"
34#include "authfile.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100035#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "cipher.h"
37#include "canohost.h"
Ben Lindstromec95ed92001-07-04 04:21:14 +000038#include "auth.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039
40/* Session id for the current session. */
Ben Lindstrom46c16222000-12-22 01:43:59 +000041u_char session_id[16];
42u_int supported_authentications = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100043
44extern Options options;
45extern char *__progname;
46
47/*
48 * Checks if the user has an authentication agent, and if so, tries to
49 * authenticate using the agent.
50 */
Ben Lindstrombba81212001-06-25 05:01:22 +000051static int
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000052try_agent_authentication(void)
Damien Millereba71ba2000-04-29 23:57:08 +100053{
Damien Millerad833b32000-08-23 10:46:23 +100054 int type;
Damien Millereba71ba2000-04-29 23:57:08 +100055 char *comment;
56 AuthenticationConnection *auth;
Ben Lindstrom46c16222000-12-22 01:43:59 +000057 u_char response[16];
58 u_int i;
Damien Millerad833b32000-08-23 10:46:23 +100059 Key *key;
60 BIGNUM *challenge;
Damien Millereba71ba2000-04-29 23:57:08 +100061
62 /* Get connection to the agent. */
63 auth = ssh_get_authentication_connection();
64 if (!auth)
65 return 0;
66
Damien Millerda755162002-01-22 23:09:22 +110067 if ((challenge = BN_new()) == NULL)
68 fatal("try_agent_authentication: BN_new failed");
Damien Millereba71ba2000-04-29 23:57:08 +100069 /* Loop through identities served by the agent. */
Damien Millerad833b32000-08-23 10:46:23 +100070 for (key = ssh_get_first_identity(auth, &comment, 1);
Damien Miller9f0f5c62001-12-21 14:45:46 +110071 key != NULL;
72 key = ssh_get_next_identity(auth, &comment, 1)) {
Damien Millereba71ba2000-04-29 23:57:08 +100073
74 /* Try this identity. */
75 debug("Trying RSA authentication via agent with '%.100s'", comment);
76 xfree(comment);
77
78 /* Tell the server that we are willing to authenticate using this key. */
79 packet_start(SSH_CMSG_AUTH_RSA);
Damien Millerad833b32000-08-23 10:46:23 +100080 packet_put_bignum(key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +100081 packet_send();
82 packet_write_wait();
83
84 /* Wait for server's response. */
Damien Millerdff50992002-01-22 23:16:32 +110085 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +100086
Damien Miller788f2122005-11-05 15:14:59 +110087 /* The server sends failure if it doesn't like our key or
Damien Millereba71ba2000-04-29 23:57:08 +100088 does not support RSA authentication. */
89 if (type == SSH_SMSG_FAILURE) {
90 debug("Server refused our key.");
Damien Millerad833b32000-08-23 10:46:23 +100091 key_free(key);
Damien Millereba71ba2000-04-29 23:57:08 +100092 continue;
93 }
94 /* Otherwise it should have sent a challenge. */
95 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
96 packet_disconnect("Protocol error during RSA authentication: %d",
97 type);
98
Damien Millerd432ccf2002-01-22 23:14:44 +110099 packet_get_bignum(challenge);
Damien Miller48b03fc2002-01-22 23:11:40 +1100100 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000101
102 debug("Received RSA challenge from server.");
103
104 /* Ask the agent to decrypt the challenge. */
Damien Millerad833b32000-08-23 10:46:23 +1000105 if (!ssh_decrypt_challenge(auth, key, challenge, session_id, 1, response)) {
106 /*
107 * The agent failed to authenticate this identifier
108 * although it advertised it supports this. Just
109 * return a wrong value.
110 */
Damien Miller996acd22003-04-09 20:59:48 +1000111 logit("Authentication agent failed to decrypt challenge.");
Damien Millereba71ba2000-04-29 23:57:08 +1000112 memset(response, 0, sizeof(response));
113 }
Damien Millerad833b32000-08-23 10:46:23 +1000114 key_free(key);
Damien Millereba71ba2000-04-29 23:57:08 +1000115 debug("Sending response to RSA challenge.");
116
117 /* Send the decrypted challenge back to the server. */
118 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
119 for (i = 0; i < 16; i++)
120 packet_put_char(response[i]);
121 packet_send();
122 packet_write_wait();
123
124 /* Wait for response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100125 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000126
127 /* The server returns success if it accepted the authentication. */
128 if (type == SSH_SMSG_SUCCESS) {
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000129 ssh_close_authentication_connection(auth);
Damien Millereba71ba2000-04-29 23:57:08 +1000130 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000131 debug("RSA authentication accepted by server.");
Damien Millereba71ba2000-04-29 23:57:08 +1000132 return 1;
133 }
134 /* Otherwise it should return failure. */
135 if (type != SSH_SMSG_FAILURE)
136 packet_disconnect("Protocol error waiting RSA auth response: %d",
137 type);
138 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000139 ssh_close_authentication_connection(auth);
Damien Millereba71ba2000-04-29 23:57:08 +1000140 BN_clear_free(challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000141 debug("RSA authentication using agent refused.");
142 return 0;
143}
144
145/*
146 * Computes the proper response to a RSA challenge, and sends the response to
147 * the server.
148 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000149static void
Damien Millereba71ba2000-04-29 23:57:08 +1000150respond_to_rsa_challenge(BIGNUM * challenge, RSA * prv)
151{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000152 u_char buf[32], response[16];
Damien Millereba71ba2000-04-29 23:57:08 +1000153 MD5_CTX md;
154 int i, len;
155
156 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100157 /* XXX think about Bleichenbacher, too */
158 if (rsa_private_decrypt(challenge, challenge, prv) <= 0)
159 packet_disconnect(
160 "respond_to_rsa_challenge: rsa_private_decrypt failed");
Damien Millereba71ba2000-04-29 23:57:08 +1000161
162 /* Compute the response. */
163 /* The response is MD5 of decrypted challenge plus session id. */
164 len = BN_num_bytes(challenge);
Damien Millereccb9de2005-06-17 12:59:34 +1000165 if (len <= 0 || (u_int)len > sizeof(buf))
Damien Miller7650bc62001-01-30 09:27:26 +1100166 packet_disconnect(
167 "respond_to_rsa_challenge: bad challenge length %d", len);
Damien Millereba71ba2000-04-29 23:57:08 +1000168
169 memset(buf, 0, sizeof(buf));
170 BN_bn2bin(challenge, buf + sizeof(buf) - len);
171 MD5_Init(&md);
172 MD5_Update(&md, buf, 32);
173 MD5_Update(&md, session_id, 16);
174 MD5_Final(response, &md);
175
176 debug("Sending response to host key RSA challenge.");
177
178 /* Send the response back to the server. */
179 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
180 for (i = 0; i < 16; i++)
181 packet_put_char(response[i]);
182 packet_send();
183 packet_write_wait();
184
185 memset(buf, 0, sizeof(buf));
186 memset(response, 0, sizeof(response));
187 memset(&md, 0, sizeof(md));
188}
189
190/*
191 * Checks if the user has authentication file, and if so, tries to authenticate
192 * the user using it.
193 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static int
Ben Lindstromc5b68002001-07-04 04:52:03 +0000195try_rsa_authentication(int idx)
Damien Millereba71ba2000-04-29 23:57:08 +1000196{
197 BIGNUM *challenge;
Ben Lindstrom05209452001-06-25 05:16:02 +0000198 Key *public, *private;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000199 char buf[300], *passphrase, *comment, *authfile;
Darren Tucker232b76f2006-05-06 17:41:51 +1000200 int i, perm_ok = 1, type, quit;
Damien Millereba71ba2000-04-29 23:57:08 +1000201
Ben Lindstromc5b68002001-07-04 04:52:03 +0000202 public = options.identity_keys[idx];
203 authfile = options.identity_files[idx];
204 comment = xstrdup(authfile);
205
Damien Millereba71ba2000-04-29 23:57:08 +1000206 debug("Trying RSA authentication with key '%.100s'", comment);
207
208 /* Tell the server that we are willing to authenticate using this key. */
209 packet_start(SSH_CMSG_AUTH_RSA);
210 packet_put_bignum(public->rsa->n);
211 packet_send();
212 packet_write_wait();
213
Damien Millereba71ba2000-04-29 23:57:08 +1000214 /* Wait for server's response. */
Damien Millerdff50992002-01-22 23:16:32 +1100215 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000216
217 /*
Damien Miller788f2122005-11-05 15:14:59 +1100218 * The server responds with failure if it doesn't like our key or
219 * doesn't support RSA authentication.
Damien Millereba71ba2000-04-29 23:57:08 +1000220 */
221 if (type == SSH_SMSG_FAILURE) {
222 debug("Server refused our key.");
223 xfree(comment);
224 return 0;
225 }
226 /* Otherwise, the server should respond with a challenge. */
227 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
228 packet_disconnect("Protocol error during RSA authentication: %d", type);
229
230 /* Get the challenge from the packet. */
Damien Millerda755162002-01-22 23:09:22 +1100231 if ((challenge = BN_new()) == NULL)
232 fatal("try_rsa_authentication: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +1100233 packet_get_bignum(challenge);
Damien Miller48b03fc2002-01-22 23:11:40 +1100234 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000235
236 debug("Received RSA challenge from server.");
237
Damien Millereba71ba2000-04-29 23:57:08 +1000238 /*
Ben Lindstromc5b68002001-07-04 04:52:03 +0000239 * If the key is not stored in external hardware, we have to
240 * load the private key. Try first with empty passphrase; if it
Damien Millereba71ba2000-04-29 23:57:08 +1000241 * fails, ask for a passphrase.
242 */
Ben Lindstrome143f612002-08-20 18:41:15 +0000243 if (public->flags & KEY_FLAG_EXT)
Ben Lindstromc5b68002001-07-04 04:52:03 +0000244 private = public;
245 else
Darren Tucker232b76f2006-05-06 17:41:51 +1000246 private = key_load_private_type(KEY_RSA1, authfile, "", NULL,
247 &perm_ok);
248 if (private == NULL && !options.batch_mode && perm_ok) {
Ben Lindstrom05209452001-06-25 05:16:02 +0000249 snprintf(buf, sizeof(buf),
250 "Enter passphrase for RSA key '%.100s': ", comment);
251 for (i = 0; i < options.number_of_password_prompts; i++) {
Damien Millereba71ba2000-04-29 23:57:08 +1000252 passphrase = read_passphrase(buf, 0);
Ben Lindstrom05209452001-06-25 05:16:02 +0000253 if (strcmp(passphrase, "") != 0) {
254 private = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000255 authfile, passphrase, NULL, NULL);
Ben Lindstrom05209452001-06-25 05:16:02 +0000256 quit = 0;
257 } else {
258 debug2("no passphrase given, try next key");
259 quit = 1;
260 }
Damien Millereba71ba2000-04-29 23:57:08 +1000261 memset(passphrase, 0, strlen(passphrase));
262 xfree(passphrase);
Ben Lindstrom05209452001-06-25 05:16:02 +0000263 if (private != NULL || quit)
264 break;
265 debug2("bad passphrase given, try again...");
Damien Millereba71ba2000-04-29 23:57:08 +1000266 }
Damien Millereba71ba2000-04-29 23:57:08 +1000267 }
268 /* We no longer need the comment. */
269 xfree(comment);
270
Ben Lindstrom05209452001-06-25 05:16:02 +0000271 if (private == NULL) {
Darren Tucker232b76f2006-05-06 17:41:51 +1000272 if (!options.batch_mode && perm_ok)
Ben Lindstrom05209452001-06-25 05:16:02 +0000273 error("Bad passphrase.");
274
275 /* Send a dummy response packet to avoid protocol error. */
276 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
277 for (i = 0; i < 16; i++)
278 packet_put_char(0);
279 packet_send();
280 packet_write_wait();
281
282 /* Expect the server to reject it... */
Damien Millerdff50992002-01-22 23:16:32 +1100283 packet_read_expect(SSH_SMSG_FAILURE);
Ben Lindstrom05209452001-06-25 05:16:02 +0000284 BN_clear_free(challenge);
285 return 0;
286 }
287
Damien Millereba71ba2000-04-29 23:57:08 +1000288 /* Compute and send a response to the challenge. */
289 respond_to_rsa_challenge(challenge, private->rsa);
290
Ben Lindstromc5b68002001-07-04 04:52:03 +0000291 /* Destroy the private key unless it in external hardware. */
292 if (!(private->flags & KEY_FLAG_EXT))
293 key_free(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000294
295 /* We no longer need the challenge. */
296 BN_clear_free(challenge);
297
298 /* Wait for response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100299 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000300 if (type == SSH_SMSG_SUCCESS) {
301 debug("RSA authentication accepted by server.");
302 return 1;
303 }
304 if (type != SSH_SMSG_FAILURE)
305 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
306 debug("RSA authentication refused.");
307 return 0;
308}
309
310/*
311 * Tries to authenticate the user using combined rhosts or /etc/hosts.equiv
312 * authentication and RSA host authentication.
313 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000314static int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000315try_rhosts_rsa_authentication(const char *local_user, Key * host_key)
Damien Millereba71ba2000-04-29 23:57:08 +1000316{
317 int type;
318 BIGNUM *challenge;
Damien Millereba71ba2000-04-29 23:57:08 +1000319
320 debug("Trying rhosts or /etc/hosts.equiv with RSA host authentication.");
321
322 /* Tell the server that we are willing to authenticate using this key. */
323 packet_start(SSH_CMSG_AUTH_RHOSTS_RSA);
Ben Lindstrom664408d2001-06-09 01:42:01 +0000324 packet_put_cstring(local_user);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000325 packet_put_int(BN_num_bits(host_key->rsa->n));
326 packet_put_bignum(host_key->rsa->e);
327 packet_put_bignum(host_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000328 packet_send();
329 packet_write_wait();
330
331 /* Wait for server's response. */
Damien Millerdff50992002-01-22 23:16:32 +1100332 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000333
334 /* The server responds with failure if it doesn't admit our
335 .rhosts authentication or doesn't know our host key. */
336 if (type == SSH_SMSG_FAILURE) {
337 debug("Server refused our rhosts authentication or host key.");
338 return 0;
339 }
340 /* Otherwise, the server should respond with a challenge. */
341 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
342 packet_disconnect("Protocol error during RSA authentication: %d", type);
343
344 /* Get the challenge from the packet. */
Damien Millerda755162002-01-22 23:09:22 +1100345 if ((challenge = BN_new()) == NULL)
346 fatal("try_rhosts_rsa_authentication: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +1100347 packet_get_bignum(challenge);
Damien Miller48b03fc2002-01-22 23:11:40 +1100348 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000349
350 debug("Received RSA challenge for host key from server.");
351
352 /* Compute a response to the challenge. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000353 respond_to_rsa_challenge(challenge, host_key->rsa);
Damien Millereba71ba2000-04-29 23:57:08 +1000354
355 /* We no longer need the challenge. */
356 BN_clear_free(challenge);
357
358 /* Wait for response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100359 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000360 if (type == SSH_SMSG_SUCCESS) {
361 debug("Rhosts or /etc/hosts.equiv with RSA host authentication accepted by server.");
362 return 1;
363 }
364 if (type != SSH_SMSG_FAILURE)
365 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
366 debug("Rhosts or /etc/hosts.equiv with RSA host authentication refused.");
367 return 0;
368}
369
Damien Millereba71ba2000-04-29 23:57:08 +1000370/*
371 * Tries to authenticate with any string-based challenge/response system.
372 * Note that the client code is not tied to s/key or TIS.
373 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000374static int
Ben Lindstrom551ea372001-06-05 18:56:16 +0000375try_challenge_response_authentication(void)
Damien Millereba71ba2000-04-29 23:57:08 +1000376{
377 int type, i;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000378 u_int clen;
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000379 char prompt[1024];
Damien Millereba71ba2000-04-29 23:57:08 +1000380 char *challenge, *response;
Ben Lindstrombdfb4df2001-10-03 17:12:43 +0000381
382 debug("Doing challenge response authentication.");
383
Damien Millereba71ba2000-04-29 23:57:08 +1000384 for (i = 0; i < options.number_of_password_prompts; i++) {
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000385 /* request a challenge */
386 packet_start(SSH_CMSG_AUTH_TIS);
387 packet_send();
388 packet_write_wait();
389
Damien Millerdff50992002-01-22 23:16:32 +1100390 type = packet_read();
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000391 if (type != SSH_SMSG_FAILURE &&
392 type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
393 packet_disconnect("Protocol error: got %d in response "
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000394 "to SSH_CMSG_AUTH_TIS", type);
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000395 }
396 if (type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000397 debug("No challenge.");
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000398 return 0;
399 }
400 challenge = packet_get_string(&clen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100401 packet_check_eom();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000402 snprintf(prompt, sizeof prompt, "%s%s", challenge,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100403 strchr(challenge, '\n') ? "" : "\nResponse: ");
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000404 xfree(challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000405 if (i != 0)
406 error("Permission denied, please try again.");
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000407 if (options.cipher == SSH_CIPHER_NONE)
Damien Miller996acd22003-04-09 20:59:48 +1000408 logit("WARNING: Encryption is disabled! "
Damien Millerf61c0152002-04-23 20:56:02 +1000409 "Response will be transmitted in clear text.");
Ben Lindstroma65c78a2000-12-10 22:57:30 +0000410 response = read_passphrase(prompt, 0);
411 if (strcmp(response, "") == 0) {
412 xfree(response);
413 break;
414 }
Damien Millereba71ba2000-04-29 23:57:08 +1000415 packet_start(SSH_CMSG_AUTH_TIS_RESPONSE);
Damien Miller79438cc2001-02-16 12:34:57 +1100416 ssh_put_password(response);
Damien Millereba71ba2000-04-29 23:57:08 +1000417 memset(response, 0, strlen(response));
418 xfree(response);
419 packet_send();
420 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100421 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000422 if (type == SSH_SMSG_SUCCESS)
423 return 1;
424 if (type != SSH_SMSG_FAILURE)
425 packet_disconnect("Protocol error: got %d in response "
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000426 "to SSH_CMSG_AUTH_TIS_RESPONSE", type);
Damien Millereba71ba2000-04-29 23:57:08 +1000427 }
428 /* failure */
429 return 0;
430}
431
432/*
433 * Tries to authenticate with plain passwd authentication.
434 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000435static int
Damien Millereba71ba2000-04-29 23:57:08 +1000436try_password_authentication(char *prompt)
437{
Damien Millerdff50992002-01-22 23:16:32 +1100438 int type, i;
Damien Millereba71ba2000-04-29 23:57:08 +1000439 char *password;
440
441 debug("Doing password authentication.");
442 if (options.cipher == SSH_CIPHER_NONE)
Damien Miller996acd22003-04-09 20:59:48 +1000443 logit("WARNING: Encryption is disabled! Password will be transmitted in clear text.");
Damien Millereba71ba2000-04-29 23:57:08 +1000444 for (i = 0; i < options.number_of_password_prompts; i++) {
445 if (i != 0)
446 error("Permission denied, please try again.");
447 password = read_passphrase(prompt, 0);
448 packet_start(SSH_CMSG_AUTH_PASSWORD);
Damien Miller79438cc2001-02-16 12:34:57 +1100449 ssh_put_password(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000450 memset(password, 0, strlen(password));
451 xfree(password);
452 packet_send();
453 packet_write_wait();
454
Damien Millerdff50992002-01-22 23:16:32 +1100455 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000456 if (type == SSH_SMSG_SUCCESS)
457 return 1;
458 if (type != SSH_SMSG_FAILURE)
459 packet_disconnect("Protocol error: got %d in response to passwd auth", type);
460 }
461 /* failure */
462 return 0;
463}
464
465/*
466 * SSH1 key exchange
467 */
468void
469ssh_kex(char *host, struct sockaddr *hostaddr)
470{
471 int i;
472 BIGNUM *key;
Damien Millerda755162002-01-22 23:09:22 +1100473 Key *host_key, *server_key;
Damien Millereba71ba2000-04-29 23:57:08 +1000474 int bits, rbits;
475 int ssh_cipher_default = SSH_CIPHER_3DES;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000476 u_char session_key[SSH_SESSION_KEY_LENGTH];
477 u_char cookie[8];
478 u_int supported_ciphers;
479 u_int server_flags, client_flags;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000480 u_int32_t rnd = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000481
482 debug("Waiting for server public key.");
483
484 /* Wait for a public key packet from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100485 packet_read_expect(SSH_SMSG_PUBLIC_KEY);
Damien Millereba71ba2000-04-29 23:57:08 +1000486
487 /* Get cookie from the packet. */
488 for (i = 0; i < 8; i++)
489 cookie[i] = packet_get_char();
490
491 /* Get the public key. */
Damien Millerda755162002-01-22 23:09:22 +1100492 server_key = key_new(KEY_RSA1);
493 bits = packet_get_int();
Damien Millerd432ccf2002-01-22 23:14:44 +1100494 packet_get_bignum(server_key->rsa->e);
495 packet_get_bignum(server_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000496
Damien Millerda755162002-01-22 23:09:22 +1100497 rbits = BN_num_bits(server_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000498 if (bits != rbits) {
Damien Miller996acd22003-04-09 20:59:48 +1000499 logit("Warning: Server lies about size of server public key: "
Damien Millereba71ba2000-04-29 23:57:08 +1000500 "actual size is %d bits vs. announced %d.", rbits, bits);
Damien Miller996acd22003-04-09 20:59:48 +1000501 logit("Warning: This may be due to an old implementation of ssh.");
Damien Millereba71ba2000-04-29 23:57:08 +1000502 }
503 /* Get the host key. */
Damien Millerda755162002-01-22 23:09:22 +1100504 host_key = key_new(KEY_RSA1);
505 bits = packet_get_int();
Damien Millerd432ccf2002-01-22 23:14:44 +1100506 packet_get_bignum(host_key->rsa->e);
507 packet_get_bignum(host_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000508
Damien Millerda755162002-01-22 23:09:22 +1100509 rbits = BN_num_bits(host_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000510 if (bits != rbits) {
Damien Miller996acd22003-04-09 20:59:48 +1000511 logit("Warning: Server lies about size of server host key: "
Damien Millereba71ba2000-04-29 23:57:08 +1000512 "actual size is %d bits vs. announced %d.", rbits, bits);
Damien Miller996acd22003-04-09 20:59:48 +1000513 logit("Warning: This may be due to an old implementation of ssh.");
Damien Millereba71ba2000-04-29 23:57:08 +1000514 }
515
516 /* Get protocol flags. */
517 server_flags = packet_get_int();
518 packet_set_protocol_flags(server_flags);
519
520 supported_ciphers = packet_get_int();
521 supported_authentications = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100522 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000523
524 debug("Received server public key (%d bits) and host key (%d bits).",
Damien Millerda755162002-01-22 23:09:22 +1100525 BN_num_bits(server_key->rsa->n), BN_num_bits(host_key->rsa->n));
Damien Millereba71ba2000-04-29 23:57:08 +1000526
Damien Millerda755162002-01-22 23:09:22 +1100527 if (verify_host_key(host, hostaddr, host_key) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +1000528 fatal("Host key verification failed.");
Damien Millereba71ba2000-04-29 23:57:08 +1000529
530 client_flags = SSH_PROTOFLAG_SCREEN_NUMBER | SSH_PROTOFLAG_HOST_IN_FWD_OPEN;
531
Darren Tuckere14e0052004-05-13 16:30:44 +1000532 derive_ssh1_session_id(host_key->rsa->n, server_key->rsa->n, cookie, session_id);
Damien Millereba71ba2000-04-29 23:57:08 +1000533
534 /* Generate a session key. */
535 arc4random_stir();
536
537 /*
538 * Generate an encryption key for the session. The key is a 256 bit
539 * random number, interpreted as a 32-byte key, with the least
540 * significant 8 bits being the first byte of the key.
541 */
542 for (i = 0; i < 32; i++) {
543 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000544 rnd = arc4random();
545 session_key[i] = rnd & 0xff;
546 rnd >>= 8;
Damien Millereba71ba2000-04-29 23:57:08 +1000547 }
548
549 /*
550 * According to the protocol spec, the first byte of the session key
551 * is the highest byte of the integer. The session key is xored with
552 * the first 16 bytes of the session id.
553 */
Damien Millerda755162002-01-22 23:09:22 +1100554 if ((key = BN_new()) == NULL)
555 fatal("respond_to_rsa_challenge: BN_new failed");
Damien Millereba71ba2000-04-29 23:57:08 +1000556 BN_set_word(key, 0);
557 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
558 BN_lshift(key, key, 8);
559 if (i < 16)
560 BN_add_word(key, session_key[i] ^ session_id[i]);
561 else
562 BN_add_word(key, session_key[i]);
563 }
564
565 /*
566 * Encrypt the integer using the public key and host key of the
567 * server (key with smaller modulus first).
568 */
Damien Millerda755162002-01-22 23:09:22 +1100569 if (BN_cmp(server_key->rsa->n, host_key->rsa->n) < 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000570 /* Public key has smaller modulus. */
Damien Millerda755162002-01-22 23:09:22 +1100571 if (BN_num_bits(host_key->rsa->n) <
572 BN_num_bits(server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
573 fatal("respond_to_rsa_challenge: host_key %d < server_key %d + "
Damien Miller9f0f5c62001-12-21 14:45:46 +1100574 "SSH_KEY_BITS_RESERVED %d",
Damien Millerda755162002-01-22 23:09:22 +1100575 BN_num_bits(host_key->rsa->n),
576 BN_num_bits(server_key->rsa->n),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100577 SSH_KEY_BITS_RESERVED);
Damien Millereba71ba2000-04-29 23:57:08 +1000578 }
Damien Millerda755162002-01-22 23:09:22 +1100579 rsa_public_encrypt(key, key, server_key->rsa);
580 rsa_public_encrypt(key, key, host_key->rsa);
Damien Millereba71ba2000-04-29 23:57:08 +1000581 } else {
582 /* Host key has smaller modulus (or they are equal). */
Damien Millerda755162002-01-22 23:09:22 +1100583 if (BN_num_bits(server_key->rsa->n) <
584 BN_num_bits(host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
585 fatal("respond_to_rsa_challenge: server_key %d < host_key %d + "
Damien Miller9f0f5c62001-12-21 14:45:46 +1100586 "SSH_KEY_BITS_RESERVED %d",
Damien Millerda755162002-01-22 23:09:22 +1100587 BN_num_bits(server_key->rsa->n),
588 BN_num_bits(host_key->rsa->n),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100589 SSH_KEY_BITS_RESERVED);
Damien Millereba71ba2000-04-29 23:57:08 +1000590 }
Damien Millerda755162002-01-22 23:09:22 +1100591 rsa_public_encrypt(key, key, host_key->rsa);
592 rsa_public_encrypt(key, key, server_key->rsa);
Damien Millereba71ba2000-04-29 23:57:08 +1000593 }
594
595 /* Destroy the public keys since we no longer need them. */
Damien Millerda755162002-01-22 23:09:22 +1100596 key_free(server_key);
597 key_free(host_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000598
Damien Millere39cacc2000-11-29 12:18:44 +1100599 if (options.cipher == SSH_CIPHER_NOT_SET) {
600 if (cipher_mask_ssh1(1) & supported_ciphers & (1 << ssh_cipher_default))
601 options.cipher = ssh_cipher_default;
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000602 } else if (options.cipher == SSH_CIPHER_INVALID ||
Damien Millere39cacc2000-11-29 12:18:44 +1100603 !(cipher_mask_ssh1(1) & (1 << options.cipher))) {
Damien Miller996acd22003-04-09 20:59:48 +1000604 logit("No valid SSH1 cipher, using %.100s instead.",
Damien Miller874d77b2000-10-14 16:23:11 +1100605 cipher_name(ssh_cipher_default));
606 options.cipher = ssh_cipher_default;
Damien Millereba71ba2000-04-29 23:57:08 +1000607 }
608 /* Check that the selected cipher is supported. */
609 if (!(supported_ciphers & (1 << options.cipher)))
610 fatal("Selected cipher type %.100s not supported by server.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100611 cipher_name(options.cipher));
Damien Millereba71ba2000-04-29 23:57:08 +1000612
613 debug("Encryption type: %.100s", cipher_name(options.cipher));
614
615 /* Send the encrypted session key to the server. */
616 packet_start(SSH_CMSG_SESSION_KEY);
617 packet_put_char(options.cipher);
618
619 /* Send the cookie back to the server. */
620 for (i = 0; i < 8; i++)
621 packet_put_char(cookie[i]);
622
623 /* Send and destroy the encrypted encryption key integer. */
624 packet_put_bignum(key);
625 BN_clear_free(key);
626
627 /* Send protocol flags. */
628 packet_put_int(client_flags);
629
630 /* Send the packet now. */
631 packet_send();
632 packet_write_wait();
633
634 debug("Sent encrypted session key.");
635
636 /* Set the encryption key. */
637 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, options.cipher);
638
639 /* We will no longer need the session key here. Destroy any extra copies. */
640 memset(session_key, 0, sizeof(session_key));
641
642 /*
643 * Expect a success message from the server. Note that this message
644 * will be received in encrypted form.
645 */
Damien Millerdff50992002-01-22 23:16:32 +1100646 packet_read_expect(SSH_SMSG_SUCCESS);
Damien Millereba71ba2000-04-29 23:57:08 +1000647
648 debug("Received encrypted confirmation.");
649}
650
651/*
652 * Authenticate user
653 */
654void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000655ssh_userauth1(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000656 Sensitive *sensitive)
Damien Millereba71ba2000-04-29 23:57:08 +1000657{
658 int i, type;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100659
Damien Millereba71ba2000-04-29 23:57:08 +1000660 if (supported_authentications == 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000661 fatal("ssh_userauth1: server supports no auth methods");
Damien Millereba71ba2000-04-29 23:57:08 +1000662
663 /* Send the name of the user to log in as on the server. */
664 packet_start(SSH_CMSG_USER);
Ben Lindstrom664408d2001-06-09 01:42:01 +0000665 packet_put_cstring(server_user);
Damien Millereba71ba2000-04-29 23:57:08 +1000666 packet_send();
667 packet_write_wait();
668
669 /*
670 * The server should respond with success if no authentication is
671 * needed (the user has no password). Otherwise the server responds
672 * with failure.
673 */
Damien Millerdff50992002-01-22 23:16:32 +1100674 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000675
676 /* check whether the connection was accepted without authentication. */
677 if (type == SSH_SMSG_SUCCESS)
Ben Lindstromec95ed92001-07-04 04:21:14 +0000678 goto success;
Damien Millereba71ba2000-04-29 23:57:08 +1000679 if (type != SSH_SMSG_FAILURE)
Ben Lindstromec95ed92001-07-04 04:21:14 +0000680 packet_disconnect("Protocol error: got %d in response to SSH_CMSG_USER", type);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100681
Damien Millereba71ba2000-04-29 23:57:08 +1000682 /*
Damien Millereba71ba2000-04-29 23:57:08 +1000683 * Try .rhosts or /etc/hosts.equiv authentication with RSA host
684 * authentication.
685 */
686 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000687 options.rhosts_rsa_authentication) {
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000688 for (i = 0; i < sensitive->nkeys; i++) {
689 if (sensitive->keys[i] != NULL &&
690 sensitive->keys[i]->type == KEY_RSA1 &&
691 try_rhosts_rsa_authentication(local_user,
692 sensitive->keys[i]))
Ben Lindstromec95ed92001-07-04 04:21:14 +0000693 goto success;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000694 }
Damien Millereba71ba2000-04-29 23:57:08 +1000695 }
696 /* Try RSA authentication if the server supports it. */
697 if ((supported_authentications & (1 << SSH_AUTH_RSA)) &&
698 options.rsa_authentication) {
699 /*
700 * Try RSA authentication using the authentication agent. The
701 * agent is tried first because no passphrase is needed for
702 * it, whereas identity files may require passphrases.
703 */
704 if (try_agent_authentication())
Ben Lindstromec95ed92001-07-04 04:21:14 +0000705 goto success;
Damien Millereba71ba2000-04-29 23:57:08 +1000706
707 /* Try RSA authentication for each identity. */
708 for (i = 0; i < options.num_identity_files; i++)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000709 if (options.identity_keys[i] != NULL &&
710 options.identity_keys[i]->type == KEY_RSA1 &&
Ben Lindstromc5b68002001-07-04 04:52:03 +0000711 try_rsa_authentication(i))
Ben Lindstromec95ed92001-07-04 04:21:14 +0000712 goto success;
Damien Millereba71ba2000-04-29 23:57:08 +1000713 }
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000714 /* Try challenge response authentication if the server supports it. */
Damien Millereba71ba2000-04-29 23:57:08 +1000715 if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
Ben Lindstrom551ea372001-06-05 18:56:16 +0000716 options.challenge_response_authentication && !options.batch_mode) {
717 if (try_challenge_response_authentication())
Ben Lindstromec95ed92001-07-04 04:21:14 +0000718 goto success;
Damien Millereba71ba2000-04-29 23:57:08 +1000719 }
720 /* Try password authentication if the server supports it. */
721 if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
722 options.password_authentication && !options.batch_mode) {
723 char prompt[80];
724
Ben Lindstrome0557162001-02-11 00:00:24 +0000725 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Millereba71ba2000-04-29 23:57:08 +1000726 server_user, host);
727 if (try_password_authentication(prompt))
Ben Lindstromec95ed92001-07-04 04:21:14 +0000728 goto success;
Damien Millereba71ba2000-04-29 23:57:08 +1000729 }
730 /* All authentication methods have failed. Exit with an error message. */
731 fatal("Permission denied.");
732 /* NOTREACHED */
Ben Lindstromec95ed92001-07-04 04:21:14 +0000733
734 success:
Damien Miller40eb1d82001-07-14 12:16:59 +1000735 return; /* need statement after label */
Damien Millereba71ba2000-04-29 23:57:08 +1000736}