blob: bca0bf43afdb88fb56222ad208688ac3baa62c73 [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
5 * Created: Sat Mar 18 22:15:47 1995 ylo
6 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
Damien Miller1383bd82000-04-06 12:32:37 +10008 *
9 * SSH2 support added by Markus Friedl.
Damien Miller95def091999-11-25 00:26:21 +110010 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100011
12#include "includes.h"
Damien Miller4af51302000-04-16 11:18:38 +100013RCSID("$OpenBSD: sshconnect.c,v 1.68 2000/04/14 10:30:33 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Damien Miller7f6ea021999-10-28 13:25:17 +100015#ifdef HAVE_OPENSSL
Damien Miller1383bd82000-04-06 12:32:37 +100016#include <openssl/bn.h>
Damien Miller450a7a12000-03-26 13:04:51 +100017#include <openssl/rsa.h>
18#include <openssl/dsa.h>
Damien Miller7f6ea021999-10-28 13:25:17 +100019#include <openssl/md5.h>
20#endif
21#ifdef HAVE_SSL
Damien Miller1383bd82000-04-06 12:32:37 +100022#include <ssl/bn.h>
Damien Miller450a7a12000-03-26 13:04:51 +100023#include <ssl/rsa.h>
24#include <ssl/dsa.h>
Damien Miller7f6ea021999-10-28 13:25:17 +100025#include <ssl/md5.h>
26#endif
27
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "xmalloc.h"
29#include "rsa.h"
30#include "ssh.h"
Damien Miller1383bd82000-04-06 12:32:37 +100031#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100032#include "packet.h"
33#include "authfd.h"
34#include "cipher.h"
35#include "mpaux.h"
36#include "uidswap.h"
37#include "compat.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110038#include "readconf.h"
Damien Miller1383bd82000-04-06 12:32:37 +100039
40#include "bufaux.h"
41
42#include "ssh2.h"
43#include "kex.h"
44#include "myproposal.h"
Damien Miller450a7a12000-03-26 13:04:51 +100045#include "key.h"
Damien Miller1383bd82000-04-06 12:32:37 +100046#include "dsa.h"
Damien Miller450a7a12000-03-26 13:04:51 +100047#include "hostfile.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
49/* Session id for the current session. */
50unsigned char session_id[16];
51
Damien Miller396691a2000-01-20 22:44:08 +110052/* authentications supported by server */
53unsigned int supported_authentications;
54
Damien Miller1383bd82000-04-06 12:32:37 +100055static char *client_version_string = NULL;
56static char *server_version_string = NULL;
57
Damien Milleraae6c611999-12-06 11:47:28 +110058extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110059extern char *__progname;
Damien Milleraae6c611999-12-06 11:47:28 +110060
Damien Miller95def091999-11-25 00:26:21 +110061/*
62 * Connect to the given ssh server using a proxy command.
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064int
Damien Milleraae6c611999-12-06 11:47:28 +110065ssh_proxy_connect(const char *host, u_short port, uid_t original_real_uid,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066 const char *proxy_command)
67{
Damien Miller95def091999-11-25 00:26:21 +110068 Buffer command;
69 const char *cp;
70 char *command_string;
71 int pin[2], pout[2];
72 int pid;
Damien Miller34132e52000-01-14 15:45:46 +110073 char strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller95def091999-11-25 00:26:21 +110075 /* Convert the port number into a string. */
Damien Miller34132e52000-01-14 15:45:46 +110076 snprintf(strport, sizeof strport, "%hu", port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Miller95def091999-11-25 00:26:21 +110078 /* Build the final command string in the buffer by making the
79 appropriate substitutions to the given proxy command. */
80 buffer_init(&command);
81 for (cp = proxy_command; *cp; cp++) {
82 if (cp[0] == '%' && cp[1] == '%') {
83 buffer_append(&command, "%", 1);
84 cp++;
85 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086 }
Damien Miller95def091999-11-25 00:26:21 +110087 if (cp[0] == '%' && cp[1] == 'h') {
88 buffer_append(&command, host, strlen(host));
89 cp++;
90 continue;
91 }
92 if (cp[0] == '%' && cp[1] == 'p') {
Damien Miller34132e52000-01-14 15:45:46 +110093 buffer_append(&command, strport, strlen(strport));
Damien Miller95def091999-11-25 00:26:21 +110094 cp++;
95 continue;
96 }
97 buffer_append(&command, cp, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098 }
Damien Miller95def091999-11-25 00:26:21 +110099 buffer_append(&command, "\0", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Miller95def091999-11-25 00:26:21 +1100101 /* Get the final command string. */
102 command_string = buffer_ptr(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller95def091999-11-25 00:26:21 +1100104 /* Create pipes for communicating with the proxy. */
105 if (pipe(pin) < 0 || pipe(pout) < 0)
106 fatal("Could not create pipes to communicate with the proxy: %.100s",
107 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Miller95def091999-11-25 00:26:21 +1100109 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller95def091999-11-25 00:26:21 +1100111 /* Fork and execute the proxy command. */
112 if ((pid = fork()) == 0) {
113 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Miller95def091999-11-25 00:26:21 +1100115 /* Child. Permanently give up superuser privileges. */
116 permanently_set_uid(original_real_uid);
117
118 /* Redirect stdin and stdout. */
119 close(pin[1]);
120 if (pin[0] != 0) {
121 if (dup2(pin[0], 0) < 0)
122 perror("dup2 stdin");
123 close(pin[0]);
124 }
125 close(pout[0]);
126 if (dup2(pout[1], 1) < 0)
127 perror("dup2 stdout");
128 /* Cannot be 1 because pin allocated two descriptors. */
129 close(pout[1]);
130
131 /* Stderr is left as it is so that error messages get
132 printed on the user's terminal. */
133 argv[0] = "/bin/sh";
134 argv[1] = "-c";
135 argv[2] = command_string;
136 argv[3] = NULL;
137
138 /* Execute the proxy command. Note that we gave up any
139 extra privileges above. */
140 execv("/bin/sh", argv);
141 perror("/bin/sh");
142 exit(1);
143 }
144 /* Parent. */
145 if (pid < 0)
146 fatal("fork failed: %.100s", strerror(errno));
147
148 /* Close child side of the descriptors. */
149 close(pin[0]);
150 close(pout[1]);
151
152 /* Free the command name. */
153 buffer_free(&command);
154
155 /* Set the connection file descriptors. */
156 packet_set_connection(pout[0], pin[1]);
157
158 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159}
160
Damien Miller95def091999-11-25 00:26:21 +1100161/*
162 * Creates a (possibly privileged) socket for use as the ssh connection.
163 */
164int
Damien Miller34132e52000-01-14 15:45:46 +1100165ssh_create_socket(uid_t original_real_uid, int privileged, int family)
Damien Miller95def091999-11-25 00:26:21 +1100166{
167 int sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Damien Miller5428f641999-11-25 11:54:57 +1100169 /*
170 * If we are running as root and want to connect to a privileged
171 * port, bind our own socket to a privileged port.
172 */
Damien Miller95def091999-11-25 00:26:21 +1100173 if (privileged) {
174 int p = IPPORT_RESERVED - 1;
Damien Miller34132e52000-01-14 15:45:46 +1100175 sock = rresvport_af(&p, family);
Damien Miller95def091999-11-25 00:26:21 +1100176 if (sock < 0)
Damien Miller98c7ad62000-03-09 21:27:49 +1100177 error("rresvport: af=%d %.100s", family, strerror(errno));
178 else
179 debug("Allocated local port %d.", p);
Damien Miller95def091999-11-25 00:26:21 +1100180 } else {
Damien Millera34a28b1999-12-14 10:47:15 +1100181 /*
182 * Just create an ordinary socket on arbitrary port. We use
183 * the user's uid to create the socket.
184 */
Damien Miller95def091999-11-25 00:26:21 +1100185 temporarily_use_uid(original_real_uid);
Damien Miller34132e52000-01-14 15:45:46 +1100186 sock = socket(family, SOCK_STREAM, 0);
Damien Miller95def091999-11-25 00:26:21 +1100187 if (sock < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100188 error("socket: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100189 restore_uid();
190 }
191 return sock;
192}
193
194/*
Damien Miller34132e52000-01-14 15:45:46 +1100195 * Opens a TCP/IP connection to the remote server on the given host.
196 * The address of the remote host will be returned in hostaddr.
197 * If port is 0, the default port will be used. If anonymous is zero,
Damien Miller95def091999-11-25 00:26:21 +1100198 * a privileged port will be allocated to make the connection.
199 * This requires super-user privileges if anonymous is false.
200 * Connection_attempts specifies the maximum number of tries (one per
201 * second). If proxy_command is non-NULL, it specifies the command (with %h
202 * and %p substituted for host and port, respectively) to use to contact
203 * the daemon.
204 */
205int
Damien Miller34132e52000-01-14 15:45:46 +1100206ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
Damien Milleraae6c611999-12-06 11:47:28 +1100207 u_short port, int connection_attempts,
Damien Miller95def091999-11-25 00:26:21 +1100208 int anonymous, uid_t original_real_uid,
209 const char *proxy_command)
210{
Damien Miller34132e52000-01-14 15:45:46 +1100211 int sock = -1, attempt;
Damien Miller95def091999-11-25 00:26:21 +1100212 struct servent *sp;
Damien Miller34132e52000-01-14 15:45:46 +1100213 struct addrinfo hints, *ai, *aitop;
214 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
215 int gaierr;
Damien Miller95def091999-11-25 00:26:21 +1100216 struct linger linger;
217
218 debug("ssh_connect: getuid %d geteuid %d anon %d",
219 (int) getuid(), (int) geteuid(), anonymous);
220
221 /* Get default port if port has not been set. */
222 if (port == 0) {
223 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
224 if (sp)
225 port = ntohs(sp->s_port);
226 else
227 port = SSH_DEFAULT_PORT;
228 }
229 /* If a proxy command is given, connect using it. */
230 if (proxy_command != NULL)
231 return ssh_proxy_connect(host, port, original_real_uid, proxy_command);
232
233 /* No proxy command. */
234
Damien Miller34132e52000-01-14 15:45:46 +1100235 memset(&hints, 0, sizeof(hints));
236 hints.ai_family = IPv4or6;
237 hints.ai_socktype = SOCK_STREAM;
238 snprintf(strport, sizeof strport, "%d", port);
239 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
240 fatal("%s: %.100s: %s", __progname, host,
241 gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +1100242
Damien Millera34a28b1999-12-14 10:47:15 +1100243 /*
244 * Try to connect several times. On some machines, the first time
245 * will sometimes fail. In general socket code appears to behave
246 * quite magically on many machines.
247 */
Damien Miller95def091999-11-25 00:26:21 +1100248 for (attempt = 0; attempt < connection_attempts; attempt++) {
249 if (attempt > 0)
250 debug("Trying again...");
251
Damien Miller34132e52000-01-14 15:45:46 +1100252 /* Loop through addresses for this host, and try each one in
Damien Miller4af51302000-04-16 11:18:38 +1000253 sequence until the connection succeeds. */
Damien Miller34132e52000-01-14 15:45:46 +1100254 for (ai = aitop; ai; ai = ai->ai_next) {
255 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
256 continue;
257 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
258 ntop, sizeof(ntop), strport, sizeof(strport),
259 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
260 error("ssh_connect: getnameinfo failed");
261 continue;
262 }
263 debug("Connecting to %.200s [%.100s] port %s.",
264 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100265
Damien Miller34132e52000-01-14 15:45:46 +1100266 /* Create a socket for connecting. */
Damien Miller4af51302000-04-16 11:18:38 +1000267 sock = ssh_create_socket(original_real_uid,
Damien Miller34132e52000-01-14 15:45:46 +1100268 !anonymous && geteuid() == 0 && port < IPPORT_RESERVED,
269 ai->ai_family);
270 if (sock < 0)
271 continue;
Damien Miller95def091999-11-25 00:26:21 +1100272
Damien Miller34132e52000-01-14 15:45:46 +1100273 /* Connect to the host. We use the user's uid in the
274 * hope that it will help with tcp_wrappers showing
275 * the remote uid as root.
Damien Miller5428f641999-11-25 11:54:57 +1100276 */
Damien Miller95def091999-11-25 00:26:21 +1100277 temporarily_use_uid(original_real_uid);
Damien Miller34132e52000-01-14 15:45:46 +1100278 if (connect(sock, ai->ai_addr, ai->ai_addrlen) >= 0) {
279 /* Successful connection. */
280 memcpy(hostaddr, ai->ai_addr, sizeof(*(ai->ai_addr)));
Damien Miller95def091999-11-25 00:26:21 +1100281 restore_uid();
282 break;
Damien Miller34132e52000-01-14 15:45:46 +1100283 } else {
Damien Miller95def091999-11-25 00:26:21 +1100284 debug("connect: %.100s", strerror(errno));
285 restore_uid();
Damien Miller5428f641999-11-25 11:54:57 +1100286 /*
287 * Close the failed socket; there appear to
288 * be some problems when reusing a socket for
289 * which connect() has already returned an
290 * error.
291 */
Damien Miller95def091999-11-25 00:26:21 +1100292 shutdown(sock, SHUT_RDWR);
293 close(sock);
294 }
Damien Miller95def091999-11-25 00:26:21 +1100295 }
Damien Miller34132e52000-01-14 15:45:46 +1100296 if (ai)
297 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100298
299 /* Sleep a moment before retrying. */
300 sleep(1);
301 }
Damien Miller34132e52000-01-14 15:45:46 +1100302
303 freeaddrinfo(aitop);
304
Damien Miller95def091999-11-25 00:26:21 +1100305 /* Return failure if we didn't get a successful connection. */
306 if (attempt >= connection_attempts)
307 return 0;
308
309 debug("Connection established.");
310
Damien Miller5428f641999-11-25 11:54:57 +1100311 /*
312 * Set socket options. We would like the socket to disappear as soon
313 * as it has been closed for whatever reason.
314 */
315 /* setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +1100316 linger.l_onoff = 1;
317 linger.l_linger = 5;
318 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
319
320 /* Set the connection. */
321 packet_set_connection(sock, sock);
322
323 return 1;
324}
325
326/*
327 * Checks if the user has an authentication agent, and if so, tries to
328 * authenticate using the agent.
329 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330int
331try_agent_authentication()
332{
Damien Miller95def091999-11-25 00:26:21 +1100333 int status, type;
334 char *comment;
335 AuthenticationConnection *auth;
336 unsigned char response[16];
337 unsigned int i;
338 BIGNUM *e, *n, *challenge;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Damien Miller95def091999-11-25 00:26:21 +1100340 /* Get connection to the agent. */
341 auth = ssh_get_authentication_connection();
342 if (!auth)
343 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344
Damien Miller95def091999-11-25 00:26:21 +1100345 e = BN_new();
346 n = BN_new();
347 challenge = BN_new();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348
Damien Miller95def091999-11-25 00:26:21 +1100349 /* Loop through identities served by the agent. */
350 for (status = ssh_get_first_identity(auth, e, n, &comment);
351 status;
352 status = ssh_get_next_identity(auth, e, n, &comment)) {
353 int plen, clen;
354
355 /* Try this identity. */
356 debug("Trying RSA authentication via agent with '%.100s'", comment);
357 xfree(comment);
358
359 /* Tell the server that we are willing to authenticate using this key. */
360 packet_start(SSH_CMSG_AUTH_RSA);
361 packet_put_bignum(n);
362 packet_send();
363 packet_write_wait();
364
365 /* Wait for server's response. */
366 type = packet_read(&plen);
367
368 /* The server sends failure if it doesn\'t like our key or
369 does not support RSA authentication. */
370 if (type == SSH_SMSG_FAILURE) {
371 debug("Server refused our key.");
372 continue;
373 }
374 /* Otherwise it should have sent a challenge. */
375 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
376 packet_disconnect("Protocol error during RSA authentication: %d",
377 type);
378
379 packet_get_bignum(challenge, &clen);
380
381 packet_integrity_check(plen, clen, type);
382
383 debug("Received RSA challenge from server.");
384
385 /* Ask the agent to decrypt the challenge. */
386 if (!ssh_decrypt_challenge(auth, e, n, challenge,
387 session_id, 1, response)) {
388 /* The agent failed to authenticate this identifier although it
389 advertised it supports this. Just return a wrong value. */
390 log("Authentication agent failed to decrypt challenge.");
391 memset(response, 0, sizeof(response));
392 }
393 debug("Sending response to RSA challenge.");
394
395 /* Send the decrypted challenge back to the server. */
396 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
397 for (i = 0; i < 16; i++)
398 packet_put_char(response[i]);
399 packet_send();
400 packet_write_wait();
401
402 /* Wait for response from the server. */
403 type = packet_read(&plen);
404
405 /* The server returns success if it accepted the authentication. */
406 if (type == SSH_SMSG_SUCCESS) {
407 debug("RSA authentication accepted by server.");
408 BN_clear_free(e);
409 BN_clear_free(n);
410 BN_clear_free(challenge);
411 return 1;
412 }
413 /* Otherwise it should return failure. */
414 if (type != SSH_SMSG_FAILURE)
415 packet_disconnect("Protocol error waiting RSA auth response: %d",
416 type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417 }
418
Damien Miller95def091999-11-25 00:26:21 +1100419 BN_clear_free(e);
420 BN_clear_free(n);
421 BN_clear_free(challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422
Damien Miller95def091999-11-25 00:26:21 +1100423 debug("RSA authentication using agent refused.");
424 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425}
426
Damien Miller95def091999-11-25 00:26:21 +1100427/*
428 * Computes the proper response to a RSA challenge, and sends the response to
429 * the server.
430 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431void
Damien Miller95def091999-11-25 00:26:21 +1100432respond_to_rsa_challenge(BIGNUM * challenge, RSA * prv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433{
Damien Miller95def091999-11-25 00:26:21 +1100434 unsigned char buf[32], response[16];
435 MD5_CTX md;
436 int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437
Damien Miller95def091999-11-25 00:26:21 +1100438 /* Decrypt the challenge using the private key. */
439 rsa_private_decrypt(challenge, challenge, prv);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Damien Miller95def091999-11-25 00:26:21 +1100441 /* Compute the response. */
442 /* The response is MD5 of decrypted challenge plus session id. */
443 len = BN_num_bytes(challenge);
444 if (len <= 0 || len > sizeof(buf))
445 packet_disconnect("respond_to_rsa_challenge: bad challenge length %d",
446 len);
Damien Millerfd7c9111999-11-08 16:15:55 +1100447
Damien Miller95def091999-11-25 00:26:21 +1100448 memset(buf, 0, sizeof(buf));
449 BN_bn2bin(challenge, buf + sizeof(buf) - len);
450 MD5_Init(&md);
451 MD5_Update(&md, buf, 32);
452 MD5_Update(&md, session_id, 16);
453 MD5_Final(response, &md);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454
Damien Miller95def091999-11-25 00:26:21 +1100455 debug("Sending response to host key RSA challenge.");
456
457 /* Send the response back to the server. */
458 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
459 for (i = 0; i < 16; i++)
460 packet_put_char(response[i]);
461 packet_send();
462 packet_write_wait();
463
464 memset(buf, 0, sizeof(buf));
465 memset(response, 0, sizeof(response));
466 memset(&md, 0, sizeof(md));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467}
468
Damien Miller95def091999-11-25 00:26:21 +1100469/*
470 * Checks if the user has authentication file, and if so, tries to authenticate
471 * the user using it.
472 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473int
Damien Milleraae6c611999-12-06 11:47:28 +1100474try_rsa_authentication(const char *authfile)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475{
Damien Miller95def091999-11-25 00:26:21 +1100476 BIGNUM *challenge;
477 RSA *private_key;
478 RSA *public_key;
479 char *passphrase, *comment;
480 int type, i;
481 int plen, clen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000482
Damien Miller95def091999-11-25 00:26:21 +1100483 /* Try to load identification for the authentication key. */
484 public_key = RSA_new();
485 if (!load_public_key(authfile, public_key, &comment)) {
486 RSA_free(public_key);
Damien Milleraae6c611999-12-06 11:47:28 +1100487 /* Could not load it. Fail. */
488 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489 }
Damien Miller95def091999-11-25 00:26:21 +1100490 debug("Trying RSA authentication with key '%.100s'", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
Damien Miller95def091999-11-25 00:26:21 +1100492 /* Tell the server that we are willing to authenticate using this key. */
493 packet_start(SSH_CMSG_AUTH_RSA);
494 packet_put_bignum(public_key->n);
495 packet_send();
496 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497
Damien Miller95def091999-11-25 00:26:21 +1100498 /* We no longer need the public key. */
499 RSA_free(public_key);
500
501 /* Wait for server's response. */
502 type = packet_read(&plen);
503
Damien Miller5428f641999-11-25 11:54:57 +1100504 /*
505 * The server responds with failure if it doesn\'t like our key or
506 * doesn\'t support RSA authentication.
507 */
Damien Miller95def091999-11-25 00:26:21 +1100508 if (type == SSH_SMSG_FAILURE) {
509 debug("Server refused our key.");
510 xfree(comment);
Damien Milleraae6c611999-12-06 11:47:28 +1100511 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512 }
Damien Miller95def091999-11-25 00:26:21 +1100513 /* Otherwise, the server should respond with a challenge. */
514 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
515 packet_disconnect("Protocol error during RSA authentication: %d", type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Damien Miller95def091999-11-25 00:26:21 +1100517 /* Get the challenge from the packet. */
518 challenge = BN_new();
519 packet_get_bignum(challenge, &clen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520
Damien Miller95def091999-11-25 00:26:21 +1100521 packet_integrity_check(plen, clen, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Damien Miller95def091999-11-25 00:26:21 +1100523 debug("Received RSA challenge from server.");
524
525 private_key = RSA_new();
Damien Miller5428f641999-11-25 11:54:57 +1100526 /*
527 * Load the private key. Try first with empty passphrase; if it
528 * fails, ask for a passphrase.
529 */
Damien Miller95def091999-11-25 00:26:21 +1100530 if (!load_private_key(authfile, "", private_key, NULL)) {
531 char buf[300];
532 snprintf(buf, sizeof buf, "Enter passphrase for RSA key '%.100s': ",
Damien Miller037a0dc1999-12-07 15:38:31 +1100533 comment);
Damien Miller95def091999-11-25 00:26:21 +1100534 if (!options.batch_mode)
535 passphrase = read_passphrase(buf, 0);
536 else {
537 debug("Will not query passphrase for %.100s in batch mode.",
538 comment);
539 passphrase = xstrdup("");
540 }
541
542 /* Load the authentication file using the pasphrase. */
543 if (!load_private_key(authfile, passphrase, private_key, NULL)) {
544 memset(passphrase, 0, strlen(passphrase));
545 xfree(passphrase);
546 error("Bad passphrase.");
547
548 /* Send a dummy response packet to avoid protocol error. */
549 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
550 for (i = 0; i < 16; i++)
551 packet_put_char(0);
552 packet_send();
553 packet_write_wait();
554
555 /* Expect the server to reject it... */
556 packet_read_expect(&plen, SSH_SMSG_FAILURE);
557 xfree(comment);
558 return 0;
559 }
560 /* Destroy the passphrase. */
561 memset(passphrase, 0, strlen(passphrase));
562 xfree(passphrase);
563 }
564 /* We no longer need the comment. */
565 xfree(comment);
566
567 /* Compute and send a response to the challenge. */
568 respond_to_rsa_challenge(challenge, private_key);
569
570 /* Destroy the private key. */
571 RSA_free(private_key);
572
573 /* We no longer need the challenge. */
574 BN_clear_free(challenge);
575
576 /* Wait for response from the server. */
577 type = packet_read(&plen);
578 if (type == SSH_SMSG_SUCCESS) {
579 debug("RSA authentication accepted by server.");
580 return 1;
581 }
582 if (type != SSH_SMSG_FAILURE)
583 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
584 debug("RSA authentication refused.");
585 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586}
587
Damien Miller95def091999-11-25 00:26:21 +1100588/*
589 * Tries to authenticate the user using combined rhosts or /etc/hosts.equiv
590 * authentication and RSA host authentication.
591 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592int
Damien Miller95def091999-11-25 00:26:21 +1100593try_rhosts_rsa_authentication(const char *local_user, RSA * host_key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594{
Damien Miller95def091999-11-25 00:26:21 +1100595 int type;
596 BIGNUM *challenge;
597 int plen, clen;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Damien Miller95def091999-11-25 00:26:21 +1100599 debug("Trying rhosts or /etc/hosts.equiv with RSA host authentication.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Damien Miller95def091999-11-25 00:26:21 +1100601 /* Tell the server that we are willing to authenticate using this key. */
602 packet_start(SSH_CMSG_AUTH_RHOSTS_RSA);
603 packet_put_string(local_user, strlen(local_user));
604 packet_put_int(BN_num_bits(host_key->n));
605 packet_put_bignum(host_key->e);
606 packet_put_bignum(host_key->n);
607 packet_send();
608 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Miller95def091999-11-25 00:26:21 +1100610 /* Wait for server's response. */
611 type = packet_read(&plen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612
Damien Miller95def091999-11-25 00:26:21 +1100613 /* The server responds with failure if it doesn't admit our
614 .rhosts authentication or doesn't know our host key. */
615 if (type == SSH_SMSG_FAILURE) {
616 debug("Server refused our rhosts authentication or host key.");
617 return 0;
618 }
619 /* Otherwise, the server should respond with a challenge. */
620 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
621 packet_disconnect("Protocol error during RSA authentication: %d", type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622
Damien Miller95def091999-11-25 00:26:21 +1100623 /* Get the challenge from the packet. */
624 challenge = BN_new();
625 packet_get_bignum(challenge, &clen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626
Damien Miller95def091999-11-25 00:26:21 +1100627 packet_integrity_check(plen, clen, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 debug("Received RSA challenge for host key from server.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller95def091999-11-25 00:26:21 +1100631 /* Compute a response to the challenge. */
632 respond_to_rsa_challenge(challenge, host_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Damien Miller95def091999-11-25 00:26:21 +1100634 /* We no longer need the challenge. */
635 BN_clear_free(challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636
Damien Miller95def091999-11-25 00:26:21 +1100637 /* Wait for response from the server. */
638 type = packet_read(&plen);
639 if (type == SSH_SMSG_SUCCESS) {
640 debug("Rhosts or /etc/hosts.equiv with RSA host authentication accepted by server.");
641 return 1;
642 }
643 if (type != SSH_SMSG_FAILURE)
644 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
645 debug("Rhosts or /etc/hosts.equiv with RSA host authentication refused.");
646 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647}
648
649#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +1100650int
651try_kerberos_authentication()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652{
Damien Miller95def091999-11-25 00:26:21 +1100653 KTEXT_ST auth; /* Kerberos data */
654 char *reply;
655 char inst[INST_SZ];
656 char *realm;
657 CREDENTIALS cred;
658 int r, type, plen;
Damien Miller7684ee12000-03-17 23:40:15 +1100659 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100660 Key_schedule schedule;
661 u_long checksum, cksum;
662 MSG_DAT msg_data;
663 struct sockaddr_in local, foreign;
664 struct stat st;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665
Damien Miller95def091999-11-25 00:26:21 +1100666 /* Don't do anything if we don't have any tickets. */
667 if (stat(tkt_string(), &st) < 0)
668 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669
Damien Miller95def091999-11-25 00:26:21 +1100670 strncpy(inst, (char *) krb_get_phost(get_canonical_hostname()), INST_SZ);
671
672 realm = (char *) krb_realmofhost(get_canonical_hostname());
673 if (!realm) {
674 debug("Kerberos V4: no realm for %s", get_canonical_hostname());
675 return 0;
676 }
677 /* This can really be anything. */
678 checksum = (u_long) getpid();
679
680 r = krb_mk_req(&auth, KRB4_SERVICE_NAME, inst, realm, checksum);
681 if (r != KSUCCESS) {
682 debug("Kerberos V4 krb_mk_req failed: %s", krb_err_txt[r]);
683 return 0;
684 }
685 /* Get session key to decrypt the server's reply with. */
686 r = krb_get_cred(KRB4_SERVICE_NAME, inst, realm, &cred);
687 if (r != KSUCCESS) {
688 debug("get_cred failed: %s", krb_err_txt[r]);
689 return 0;
690 }
691 des_key_sched((des_cblock *) cred.session, schedule);
692
693 /* Send authentication info to server. */
694 packet_start(SSH_CMSG_AUTH_KERBEROS);
695 packet_put_string((char *) auth.dat, auth.length);
696 packet_send();
697 packet_write_wait();
698
699 /* Zero the buffer. */
700 (void) memset(auth.dat, 0, MAX_KTXT_LEN);
701
Damien Miller7684ee12000-03-17 23:40:15 +1100702 slen = sizeof(local);
Damien Miller95def091999-11-25 00:26:21 +1100703 memset(&local, 0, sizeof(local));
704 if (getsockname(packet_get_connection_in(),
Damien Miller7684ee12000-03-17 23:40:15 +1100705 (struct sockaddr *) & local, &slen) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100706 debug("getsockname failed: %s", strerror(errno));
707
Damien Miller7684ee12000-03-17 23:40:15 +1100708 slen = sizeof(foreign);
Damien Miller95def091999-11-25 00:26:21 +1100709 memset(&foreign, 0, sizeof(foreign));
710 if (getpeername(packet_get_connection_in(),
Damien Miller7684ee12000-03-17 23:40:15 +1100711 (struct sockaddr *) & foreign, &slen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100712 debug("getpeername failed: %s", strerror(errno));
713 fatal_cleanup();
714 }
715 /* Get server reply. */
716 type = packet_read(&plen);
717 switch (type) {
718 case SSH_SMSG_FAILURE:
719 /* Should really be SSH_SMSG_AUTH_KERBEROS_FAILURE */
720 debug("Kerberos V4 authentication failed.");
721 return 0;
722 break;
723
724 case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
725 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
726 debug("Kerberos V4 authentication accepted.");
727
728 /* Get server's response. */
729 reply = packet_get_string((unsigned int *) &auth.length);
730 memcpy(auth.dat, reply, auth.length);
731 xfree(reply);
732
733 packet_integrity_check(plen, 4 + auth.length, type);
734
Damien Miller5428f641999-11-25 11:54:57 +1100735 /*
736 * If his response isn't properly encrypted with the session
737 * key, and the decrypted checksum fails to match, he's
738 * bogus. Bail out.
739 */
Damien Miller95def091999-11-25 00:26:21 +1100740 r = krb_rd_priv(auth.dat, auth.length, schedule, &cred.session,
741 &foreign, &local, &msg_data);
742 if (r != KSUCCESS) {
743 debug("Kerberos V4 krb_rd_priv failed: %s", krb_err_txt[r]);
744 packet_disconnect("Kerberos V4 challenge failed!");
745 }
746 /* Fetch the (incremented) checksum that we supplied in the request. */
747 (void) memcpy((char *) &cksum, (char *) msg_data.app_data, sizeof(cksum));
748 cksum = ntohl(cksum);
749
750 /* If it matches, we're golden. */
751 if (cksum == checksum + 1) {
752 debug("Kerberos V4 challenge successful.");
753 return 1;
754 } else
755 packet_disconnect("Kerberos V4 challenge failed!");
756 break;
757
758 default:
759 packet_disconnect("Protocol error on Kerberos V4 response: %d", type);
760 }
761 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000762}
Damien Miller95def091999-11-25 00:26:21 +1100763
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000764#endif /* KRB4 */
765
766#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100767int
768send_kerberos_tgt()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000769{
Damien Miller95def091999-11-25 00:26:21 +1100770 CREDENTIALS *creds;
771 char pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
772 int r, type, plen;
Damien Miller7684ee12000-03-17 23:40:15 +1100773 char buffer[8192];
Damien Miller95def091999-11-25 00:26:21 +1100774 struct stat st;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775
Damien Miller95def091999-11-25 00:26:21 +1100776 /* Don't do anything if we don't have any tickets. */
777 if (stat(tkt_string(), &st) < 0)
778 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000779
Damien Miller95def091999-11-25 00:26:21 +1100780 creds = xmalloc(sizeof(*creds));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000781
Damien Miller95def091999-11-25 00:26:21 +1100782 if ((r = krb_get_tf_fullname(TKT_FILE, pname, pinst, prealm)) != KSUCCESS) {
783 debug("Kerberos V4 tf_fullname failed: %s", krb_err_txt[r]);
784 return 0;
785 }
786 if ((r = krb_get_cred("krbtgt", prealm, prealm, creds)) != GC_OK) {
787 debug("Kerberos V4 get_cred failed: %s", krb_err_txt[r]);
788 return 0;
789 }
790 if (time(0) > krb_life_to_time(creds->issue_date, creds->lifetime)) {
791 debug("Kerberos V4 ticket expired: %s", TKT_FILE);
792 return 0;
793 }
Damien Miller7684ee12000-03-17 23:40:15 +1100794 creds_to_radix(creds, (unsigned char *)buffer);
Damien Miller95def091999-11-25 00:26:21 +1100795 xfree(creds);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796
Damien Miller95def091999-11-25 00:26:21 +1100797 packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
Damien Miller7684ee12000-03-17 23:40:15 +1100798 packet_put_string(buffer, strlen(buffer));
Damien Miller95def091999-11-25 00:26:21 +1100799 packet_send();
800 packet_write_wait();
801
802 type = packet_read(&plen);
803
804 if (type == SSH_SMSG_FAILURE)
805 debug("Kerberos TGT for realm %s rejected.", prealm);
806 else if (type != SSH_SMSG_SUCCESS)
807 packet_disconnect("Protocol error on Kerberos TGT response: %d", type);
808
809 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000810}
811
Damien Miller95def091999-11-25 00:26:21 +1100812void
813send_afs_tokens(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000814{
Damien Miller95def091999-11-25 00:26:21 +1100815 CREDENTIALS creds;
816 struct ViceIoctl parms;
817 struct ClearToken ct;
818 int i, type, len, plen;
819 char buf[2048], *p, *server_cell;
Damien Miller7684ee12000-03-17 23:40:15 +1100820 char buffer[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000821
Damien Miller95def091999-11-25 00:26:21 +1100822 /* Move over ktc_GetToken, here's something leaner. */
823 for (i = 0; i < 100; i++) { /* just in case */
824 parms.in = (char *) &i;
825 parms.in_size = sizeof(i);
826 parms.out = buf;
827 parms.out_size = sizeof(buf);
828 if (k_pioctl(0, VIOCGETTOK, &parms, 0) != 0)
829 break;
830 p = buf;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000831
Damien Miller95def091999-11-25 00:26:21 +1100832 /* Get secret token. */
833 memcpy(&creds.ticket_st.length, p, sizeof(unsigned int));
834 if (creds.ticket_st.length > MAX_KTXT_LEN)
835 break;
836 p += sizeof(unsigned int);
837 memcpy(creds.ticket_st.dat, p, creds.ticket_st.length);
838 p += creds.ticket_st.length;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839
Damien Miller95def091999-11-25 00:26:21 +1100840 /* Get clear token. */
841 memcpy(&len, p, sizeof(len));
842 if (len != sizeof(struct ClearToken))
843 break;
844 p += sizeof(len);
845 memcpy(&ct, p, len);
846 p += len;
847 p += sizeof(len); /* primary flag */
848 server_cell = p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000849
Damien Miller95def091999-11-25 00:26:21 +1100850 /* Flesh out our credentials. */
851 strlcpy(creds.service, "afs", sizeof creds.service);
852 creds.instance[0] = '\0';
853 strlcpy(creds.realm, server_cell, REALM_SZ);
854 memcpy(creds.session, ct.HandShakeKey, DES_KEY_SZ);
855 creds.issue_date = ct.BeginTimestamp;
856 creds.lifetime = krb_time_to_life(creds.issue_date, ct.EndTimestamp);
857 creds.kvno = ct.AuthHandle;
858 snprintf(creds.pname, sizeof(creds.pname), "AFS ID %d", ct.ViceId);
859 creds.pinst[0] = '\0';
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000860
Damien Miller95def091999-11-25 00:26:21 +1100861 /* Encode token, ship it off. */
Damien Miller7684ee12000-03-17 23:40:15 +1100862 if (!creds_to_radix(&creds, (unsigned char*) buffer))
Damien Miller95def091999-11-25 00:26:21 +1100863 break;
864 packet_start(SSH_CMSG_HAVE_AFS_TOKEN);
Damien Miller7684ee12000-03-17 23:40:15 +1100865 packet_put_string(buffer, strlen(buffer));
Damien Miller95def091999-11-25 00:26:21 +1100866 packet_send();
867 packet_write_wait();
868
869 /* Roger, Roger. Clearance, Clarence. What's your vector,
870 Victor? */
871 type = packet_read(&plen);
872
873 if (type == SSH_SMSG_FAILURE)
874 debug("AFS token for cell %s rejected.", server_cell);
875 else if (type != SSH_SMSG_SUCCESS)
876 packet_disconnect("Protocol error on AFS token response: %d", type);
877 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000878}
Damien Miller95def091999-11-25 00:26:21 +1100879
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880#endif /* AFS */
881
Damien Miller95def091999-11-25 00:26:21 +1100882/*
Damien Milleraae6c611999-12-06 11:47:28 +1100883 * Tries to authenticate with any string-based challenge/response system.
884 * Note that the client code is not tied to s/key or TIS.
885 */
886int
887try_skey_authentication()
888{
Damien Miller7684ee12000-03-17 23:40:15 +1100889 int type, i;
890 int payload_len;
891 unsigned int clen;
Damien Milleraae6c611999-12-06 11:47:28 +1100892 char *challenge, *response;
893
894 debug("Doing skey authentication.");
895
896 /* request a challenge */
897 packet_start(SSH_CMSG_AUTH_TIS);
898 packet_send();
899 packet_write_wait();
900
901 type = packet_read(&payload_len);
902 if (type != SSH_SMSG_FAILURE &&
903 type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
904 packet_disconnect("Protocol error: got %d in response "
905 "to skey-auth", type);
906 }
907 if (type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
908 debug("No challenge for skey authentication.");
909 return 0;
910 }
Damien Miller7684ee12000-03-17 23:40:15 +1100911 challenge = packet_get_string(&clen);
912 packet_integrity_check(payload_len, (4 + clen), type);
Damien Milleraae6c611999-12-06 11:47:28 +1100913 if (options.cipher == SSH_CIPHER_NONE)
914 log("WARNING: Encryption is disabled! "
915 "Reponse will be transmitted in clear text.");
916 fprintf(stderr, "%s\n", challenge);
Damien Miller98c7ad62000-03-09 21:27:49 +1100917 xfree(challenge);
Damien Milleraae6c611999-12-06 11:47:28 +1100918 fflush(stderr);
919 for (i = 0; i < options.number_of_password_prompts; i++) {
920 if (i != 0)
921 error("Permission denied, please try again.");
922 response = read_passphrase("Response: ", 0);
923 packet_start(SSH_CMSG_AUTH_TIS_RESPONSE);
924 packet_put_string(response, strlen(response));
925 memset(response, 0, strlen(response));
926 xfree(response);
927 packet_send();
928 packet_write_wait();
929 type = packet_read(&payload_len);
930 if (type == SSH_SMSG_SUCCESS)
931 return 1;
932 if (type != SSH_SMSG_FAILURE)
933 packet_disconnect("Protocol error: got %d in response "
934 "to skey-auth-reponse", type);
935 }
936 /* failure */
937 return 0;
938}
939
940/*
941 * Tries to authenticate with plain passwd authentication.
942 */
943int
944try_password_authentication(char *prompt)
945{
946 int type, i, payload_len;
947 char *password;
948
949 debug("Doing password authentication.");
950 if (options.cipher == SSH_CIPHER_NONE)
951 log("WARNING: Encryption is disabled! Password will be transmitted in clear text.");
952 for (i = 0; i < options.number_of_password_prompts; i++) {
953 if (i != 0)
954 error("Permission denied, please try again.");
955 password = read_passphrase(prompt, 0);
956 packet_start(SSH_CMSG_AUTH_PASSWORD);
957 packet_put_string(password, strlen(password));
958 memset(password, 0, strlen(password));
959 xfree(password);
960 packet_send();
961 packet_write_wait();
962
963 type = packet_read(&payload_len);
964 if (type == SSH_SMSG_SUCCESS)
965 return 1;
966 if (type != SSH_SMSG_FAILURE)
967 packet_disconnect("Protocol error: got %d in response to passwd auth", type);
968 }
969 /* failure */
970 return 0;
971}
972
Damien Miller1383bd82000-04-06 12:32:37 +1000973char *
974chop(char *s)
975{
976 char *t = s;
977 while (*t) {
978 if(*t == '\n' || *t == '\r') {
979 *t = '\0';
980 return s;
981 }
982 t++;
983 }
984 return s;
985
986}
987
Damien Milleraae6c611999-12-06 11:47:28 +1100988/*
Damien Miller95def091999-11-25 00:26:21 +1100989 * Waits for the server identification string, and sends our own
990 * identification string.
991 */
992void
993ssh_exchange_identification()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994{
Damien Miller95def091999-11-25 00:26:21 +1100995 char buf[256], remote_version[256]; /* must be same size! */
Damien Miller78928792000-04-12 20:17:38 +1000996 int remote_major, remote_minor, i, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100997 int connection_in = packet_get_connection_in();
998 int connection_out = packet_get_connection_out();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller95def091999-11-25 00:26:21 +11001000 /* Read other side\'s version identification. */
1001 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller98c7ad62000-03-09 21:27:49 +11001002 int len = read(connection_in, &buf[i], 1);
1003 if (len < 0)
Damien Miller95def091999-11-25 00:26:21 +11001004 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +11001005 if (len != 1)
1006 fatal("ssh_exchange_identification: Connection closed by remote host");
Damien Miller95def091999-11-25 00:26:21 +11001007 if (buf[i] == '\r') {
1008 buf[i] = '\n';
1009 buf[i + 1] = 0;
Damien Miller1383bd82000-04-06 12:32:37 +10001010 continue; /**XXX wait for \n */
Damien Miller95def091999-11-25 00:26:21 +11001011 }
1012 if (buf[i] == '\n') {
1013 buf[i + 1] = 0;
1014 break;
1015 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016 }
Damien Miller95def091999-11-25 00:26:21 +11001017 buf[sizeof(buf) - 1] = 0;
Damien Miller1383bd82000-04-06 12:32:37 +10001018 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +11001019
Damien Miller5428f641999-11-25 11:54:57 +11001020 /*
1021 * Check that the versions match. In future this might accept
1022 * several versions and set appropriate flags to handle them.
1023 */
Damien Miller1383bd82000-04-06 12:32:37 +10001024 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
1025 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +11001026 fatal("Bad remote protocol version identification: '%.100s'", buf);
1027 debug("Remote protocol version %d.%d, remote software version %.100s",
1028 remote_major, remote_minor, remote_version);
1029
Damien Miller1383bd82000-04-06 12:32:37 +10001030 compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +10001031 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +10001032
Damien Miller78928792000-04-12 20:17:38 +10001033 switch(remote_major) {
1034 case 1:
1035 if (remote_minor == 99 &&
1036 (options.protocol & SSH_PROTO_2) &&
1037 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
1038 enable_compat20();
1039 break;
Damien Miller95def091999-11-25 00:26:21 +11001040 }
Damien Miller78928792000-04-12 20:17:38 +10001041 if (!(options.protocol & SSH_PROTO_1)) {
1042 mismatch = 1;
1043 break;
1044 }
1045 if (remote_minor < 3) {
1046 fatal("Remote machine has too old SSH software version.");
1047 } else if (remote_minor == 3) {
1048 /* We speak 1.3, too. */
1049 enable_compat13();
1050 if (options.forward_agent) {
1051 log("Agent forwarding disabled for protocol 1.3");
1052 options.forward_agent = 0;
1053 }
1054 }
1055 break;
1056 case 2:
1057 if (options.protocol & SSH_PROTO_2) {
1058 enable_compat20();
1059 break;
1060 }
1061 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +10001062 default:
Damien Miller78928792000-04-12 20:17:38 +10001063 mismatch = 1;
1064 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001065 }
Damien Miller78928792000-04-12 20:17:38 +10001066 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +11001067 fatal("Protocol major versions differ: %d vs. %d",
Damien Miller78928792000-04-12 20:17:38 +10001068 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
1069 remote_major);
1070
Damien Miller95def091999-11-25 00:26:21 +11001071 /* Send our own protocol version identification. */
1072 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
Damien Miller78928792000-04-12 20:17:38 +10001073 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
1074 compat20 ? PROTOCOL_MINOR_2 : PROTOCOL_MINOR_1,
Damien Miller1383bd82000-04-06 12:32:37 +10001075 SSH_VERSION);
Damien Miller037a0dc1999-12-07 15:38:31 +11001076 if (atomicio(write, connection_out, buf, strlen(buf)) != strlen(buf))
Damien Miller95def091999-11-25 00:26:21 +11001077 fatal("write: %.100s", strerror(errno));
Damien Miller1383bd82000-04-06 12:32:37 +10001078 client_version_string = xstrdup(buf);
1079 chop(client_version_string);
1080 chop(server_version_string);
1081 debug("Local version string %.100s", client_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001082}
1083
Damien Miller95def091999-11-25 00:26:21 +11001084int
1085read_yes_or_no(const char *prompt, int defval)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001086{
Damien Miller95def091999-11-25 00:26:21 +11001087 char buf[1024];
1088 FILE *f;
1089 int retval = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001090
Damien Miller95def091999-11-25 00:26:21 +11001091 if (isatty(0))
1092 f = stdin;
1093 else
1094 f = fopen("/dev/tty", "rw");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095
Damien Miller95def091999-11-25 00:26:21 +11001096 if (f == NULL)
1097 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098
Damien Miller95def091999-11-25 00:26:21 +11001099 fflush(stdout);
1100
1101 while (1) {
1102 fprintf(stderr, "%s", prompt);
1103 if (fgets(buf, sizeof(buf), f) == NULL) {
1104 /* Print a newline (the prompt probably didn\'t have one). */
1105 fprintf(stderr, "\n");
1106 strlcpy(buf, "no", sizeof buf);
1107 }
1108 /* Remove newline from response. */
1109 if (strchr(buf, '\n'))
1110 *strchr(buf, '\n') = 0;
1111
1112 if (buf[0] == 0)
1113 retval = defval;
1114 if (strcmp(buf, "yes") == 0)
1115 retval = 1;
1116 if (strcmp(buf, "no") == 0)
1117 retval = 0;
1118
1119 if (retval != -1) {
1120 if (f != stdin)
1121 fclose(f);
1122 return retval;
1123 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001124 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001125}
1126
Damien Miller95def091999-11-25 00:26:21 +11001127/*
Damien Millera34a28b1999-12-14 10:47:15 +11001128 * check whether the supplied host key is valid, return only if ok.
Damien Miller95def091999-11-25 00:26:21 +11001129 */
Damien Millera34a28b1999-12-14 10:47:15 +11001130
Damien Miller95def091999-11-25 00:26:21 +11001131void
Damien Miller450a7a12000-03-26 13:04:51 +10001132check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001133{
Damien Miller450a7a12000-03-26 13:04:51 +10001134 Key *file_key;
Damien Millera34a28b1999-12-14 10:47:15 +11001135 char *ip = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001136 char hostline[1000], *hostp;
Damien Miller95def091999-11-25 00:26:21 +11001137 HostStatus host_status;
1138 HostStatus ip_status;
Damien Miller34132e52000-01-14 15:45:46 +11001139 int local = 0, host_ip_differ = 0;
Damien Millereaf99942000-01-19 13:45:07 +11001140 int salen;
Damien Miller34132e52000-01-14 15:45:46 +11001141 char ntop[NI_MAXHOST];
1142
1143 /*
1144 * Force accepting of the host key for loopback/localhost. The
1145 * problem is that if the home directory is NFS-mounted to multiple
1146 * machines, localhost will refer to a different machine in each of
1147 * them, and the user will get bogus HOST_CHANGED warnings. This
1148 * essentially disables host authentication for localhost; however,
1149 * this is probably not a real problem.
1150 */
1151 switch (hostaddr->sa_family) {
1152 case AF_INET:
1153 local = (ntohl(((struct sockaddr_in *)hostaddr)->sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
Damien Millereaf99942000-01-19 13:45:07 +11001154 salen = sizeof(struct sockaddr_in);
Damien Miller34132e52000-01-14 15:45:46 +11001155 break;
1156 case AF_INET6:
1157 local = IN6_IS_ADDR_LOOPBACK(&(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
Damien Millereaf99942000-01-19 13:45:07 +11001158 salen = sizeof(struct sockaddr_in6);
Damien Miller34132e52000-01-14 15:45:46 +11001159 break;
1160 default:
1161 local = 0;
Damien Millereaf99942000-01-19 13:45:07 +11001162 salen = sizeof(struct sockaddr_storage);
Damien Miller34132e52000-01-14 15:45:46 +11001163 break;
1164 }
1165 if (local) {
1166 debug("Forcing accepting of host key for loopback/localhost.");
1167 return;
1168 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169
Damien Milleraae6c611999-12-06 11:47:28 +11001170 /*
1171 * Turn off check_host_ip for proxy connects, since
1172 * we don't have the remote ip-address
1173 */
1174 if (options.proxy_command != NULL && options.check_host_ip)
1175 options.check_host_ip = 0;
1176
Damien Miller34132e52000-01-14 15:45:46 +11001177 if (options.check_host_ip) {
Damien Millereaf99942000-01-19 13:45:07 +11001178 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
Damien Miller34132e52000-01-14 15:45:46 +11001179 NULL, 0, NI_NUMERICHOST) != 0)
1180 fatal("check_host_key: getnameinfo failed");
1181 ip = xstrdup(ntop);
1182 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001183
Damien Millera34a28b1999-12-14 10:47:15 +11001184 /*
1185 * Store the host key from the known host file in here so that we can
1186 * compare it with the key for the IP address.
1187 */
Damien Miller450a7a12000-03-26 13:04:51 +10001188 file_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189
Damien Miller5428f641999-11-25 11:54:57 +11001190 /*
1191 * Check if the host key is present in the user\'s list of known
1192 * hosts or in the systemwide list.
1193 */
Damien Miller450a7a12000-03-26 13:04:51 +10001194 host_status = check_host_in_hostfile(options.user_hostfile, host, host_key, file_key);
Damien Miller95def091999-11-25 00:26:21 +11001195 if (host_status == HOST_NEW)
Damien Miller450a7a12000-03-26 13:04:51 +10001196 host_status = check_host_in_hostfile(options.system_hostfile, host, host_key, file_key);
Damien Miller5428f641999-11-25 11:54:57 +11001197 /*
Damien Miller5428f641999-11-25 11:54:57 +11001198 * Also perform check for the ip address, skip the check if we are
1199 * localhost or the hostname was an ip address to begin with
1200 */
Damien Miller95def091999-11-25 00:26:21 +11001201 if (options.check_host_ip && !local && strcmp(host, ip)) {
Damien Miller450a7a12000-03-26 13:04:51 +10001202 Key *ip_key = key_new(host_key->type);
1203 ip_status = check_host_in_hostfile(options.user_hostfile, ip, host_key, ip_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001204
Damien Miller95def091999-11-25 00:26:21 +11001205 if (ip_status == HOST_NEW)
Damien Miller450a7a12000-03-26 13:04:51 +10001206 ip_status = check_host_in_hostfile(options.system_hostfile, ip, host_key, ip_key);
Damien Miller95def091999-11-25 00:26:21 +11001207 if (host_status == HOST_CHANGED &&
Damien Miller450a7a12000-03-26 13:04:51 +10001208 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
Damien Miller95def091999-11-25 00:26:21 +11001209 host_ip_differ = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001210
Damien Miller450a7a12000-03-26 13:04:51 +10001211 key_free(ip_key);
Damien Miller95def091999-11-25 00:26:21 +11001212 } else
1213 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001214
Damien Miller450a7a12000-03-26 13:04:51 +10001215 key_free(file_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001216
Damien Miller95def091999-11-25 00:26:21 +11001217 switch (host_status) {
1218 case HOST_OK:
1219 /* The host is known and the key matches. */
1220 debug("Host '%.200s' is known and matches the host key.", host);
1221 if (options.check_host_ip) {
1222 if (ip_status == HOST_NEW) {
Damien Miller450a7a12000-03-26 13:04:51 +10001223 if (!add_host_to_hostfile(options.user_hostfile, ip, host_key))
Damien Miller95def091999-11-25 00:26:21 +11001224 log("Failed to add the host key for IP address '%.30s' to the list of known hosts (%.30s).",
1225 ip, options.user_hostfile);
1226 else
1227 log("Warning: Permanently added host key for IP address '%.30s' to the list of known hosts.",
1228 ip);
1229 } else if (ip_status != HOST_OK)
1230 log("Warning: the host key for '%.200s' differs from the key for the IP address '%.30s'",
1231 host, ip);
1232 }
1233 break;
1234 case HOST_NEW:
1235 /* The host is new. */
1236 if (options.strict_host_key_checking == 1) {
1237 /* User has requested strict host key checking. We will not add the host key
1238 automatically. The only alternative left is to abort. */
1239 fatal("No host key is known for %.200s and you have requested strict checking.", host);
1240 } else if (options.strict_host_key_checking == 2) {
1241 /* The default */
1242 char prompt[1024];
Damien Miller450a7a12000-03-26 13:04:51 +10001243 char *fp = key_fingerprint(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001244 snprintf(prompt, sizeof(prompt),
Damien Miller037a0dc1999-12-07 15:38:31 +11001245 "The authenticity of host '%.200s' can't be established.\n"
Damien Miller450a7a12000-03-26 13:04:51 +10001246 "Key fingerprint is %s.\n"
Damien Miller037a0dc1999-12-07 15:38:31 +11001247 "Are you sure you want to continue connecting (yes/no)? ",
Damien Miller450a7a12000-03-26 13:04:51 +10001248 host, fp);
Damien Miller95def091999-11-25 00:26:21 +11001249 if (!read_yes_or_no(prompt, -1))
1250 fatal("Aborted by user!\n");
1251 }
1252 if (options.check_host_ip && ip_status == HOST_NEW && strcmp(host, ip)) {
1253 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
1254 hostp = hostline;
1255 } else
1256 hostp = host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257
Damien Miller95def091999-11-25 00:26:21 +11001258 /* If not in strict mode, add the key automatically to the local known_hosts file. */
Damien Miller450a7a12000-03-26 13:04:51 +10001259 if (!add_host_to_hostfile(options.user_hostfile, hostp, host_key))
Damien Miller95def091999-11-25 00:26:21 +11001260 log("Failed to add the host to the list of known hosts (%.500s).",
1261 options.user_hostfile);
1262 else
1263 log("Warning: Permanently added '%.200s' to the list of known hosts.",
1264 hostp);
1265 break;
1266 case HOST_CHANGED:
1267 if (options.check_host_ip && host_ip_differ) {
1268 char *msg;
1269 if (ip_status == HOST_NEW)
1270 msg = "is unknown";
1271 else if (ip_status == HOST_OK)
1272 msg = "is unchanged";
1273 else
1274 msg = "has a different value";
1275 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1276 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1277 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1278 error("The host key for %s has changed,", host);
1279 error("and the key for the according IP address %s", ip);
1280 error("%s. This could either mean that", msg);
1281 error("DNS SPOOFING is happening or the IP address for the host");
1282 error("and its host key have changed at the same time");
1283 }
1284 /* The host key has changed. */
1285 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millerf039bad1999-12-21 20:57:20 +11001286 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
Damien Miller95def091999-11-25 00:26:21 +11001287 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1288 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1289 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1290 error("It is also possible that the host key has just been changed.");
1291 error("Please contact your system administrator.");
1292 error("Add correct host key in %.100s to get rid of this message.",
1293 options.user_hostfile);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller5428f641999-11-25 11:54:57 +11001295 /*
1296 * If strict host key checking is in use, the user will have
1297 * to edit the key manually and we can only abort.
1298 */
Damien Miller95def091999-11-25 00:26:21 +11001299 if (options.strict_host_key_checking)
1300 fatal("Host key for %.200s has changed and you have requested strict checking.", host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001301
Damien Miller5428f641999-11-25 11:54:57 +11001302 /*
1303 * If strict host key checking has not been requested, allow
1304 * the connection but without password authentication or
1305 * agent forwarding.
1306 */
Damien Miller95def091999-11-25 00:26:21 +11001307 if (options.password_authentication) {
1308 error("Password authentication is disabled to avoid trojan horses.");
1309 options.password_authentication = 0;
1310 }
1311 if (options.forward_agent) {
1312 error("Agent forwarding is disabled to avoid trojan horses.");
1313 options.forward_agent = 0;
1314 }
Damien Miller5428f641999-11-25 11:54:57 +11001315 /*
1316 * XXX Should permit the user to change to use the new id.
1317 * This could be done by converting the host key to an
1318 * identifying sentence, tell that the host identifies itself
1319 * by that sentence, and ask the user if he/she whishes to
1320 * accept the authentication.
1321 */
Damien Miller95def091999-11-25 00:26:21 +11001322 break;
1323 }
Damien Miller95def091999-11-25 00:26:21 +11001324 if (options.check_host_ip)
1325 xfree(ip);
Damien Millera34a28b1999-12-14 10:47:15 +11001326}
Damien Miller450a7a12000-03-26 13:04:51 +10001327void
1328check_rsa_host_key(char *host, struct sockaddr *hostaddr, RSA *host_key)
1329{
1330 Key k;
1331 k.type = KEY_RSA;
1332 k.rsa = host_key;
1333 check_host_key(host, hostaddr, &k);
1334}
Damien Millera34a28b1999-12-14 10:47:15 +11001335
1336/*
Damien Miller1383bd82000-04-06 12:32:37 +10001337 * SSH2 key exchange
1338 */
1339void
1340ssh_kex2(char *host, struct sockaddr *hostaddr)
1341{
1342 Kex *kex;
1343 char *cprop[PROPOSAL_MAX];
1344 char *sprop[PROPOSAL_MAX];
1345 Buffer *client_kexinit;
1346 Buffer *server_kexinit;
1347 int payload_len, dlen;
1348 unsigned int klen, kout;
1349 char *ptr;
1350 char *signature = NULL;
1351 unsigned int slen;
1352 char *server_host_key_blob = NULL;
1353 Key *server_host_key;
1354 unsigned int sbloblen;
1355 DH *dh;
1356 BIGNUM *dh_server_pub = 0;
1357 BIGNUM *shared_secret = 0;
1358 int i;
1359 unsigned char *kbuf;
1360 unsigned char *hash;
1361
1362/* KEXINIT */
1363
1364 debug("Sending KEX init.");
Damien Miller78928792000-04-12 20:17:38 +10001365 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001366 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001367 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1368 } else if (
1369 options.cipher == SSH_CIPHER_ARCFOUR ||
Damien Miller4af51302000-04-16 11:18:38 +10001370 options.cipher == SSH_CIPHER_3DES_CBC ||
1371 options.cipher == SSH_CIPHER_CAST128_CBC ||
1372 options.cipher == SSH_CIPHER_BLOWFISH_CBC) {
Damien Miller78928792000-04-12 20:17:38 +10001373 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller1383bd82000-04-06 12:32:37 +10001374 myproposal[PROPOSAL_ENC_ALGS_STOC] = cipher_name(options.cipher);
1375 }
1376 if (options.compression) {
1377 myproposal[PROPOSAL_COMP_ALGS_CTOS] = "zlib";
1378 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib";
1379 } else {
1380 myproposal[PROPOSAL_COMP_ALGS_CTOS] = "none";
1381 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1382 }
1383 for (i = 0; i < PROPOSAL_MAX; i++)
1384 cprop[i] = xstrdup(myproposal[i]);
1385
1386 client_kexinit = kex_init(cprop);
1387 packet_start(SSH2_MSG_KEXINIT);
1388 packet_put_raw(buffer_ptr(client_kexinit), buffer_len(client_kexinit));
1389 packet_send();
1390 packet_write_wait();
1391
1392 debug("done");
1393
1394 packet_read_expect(&payload_len, SSH2_MSG_KEXINIT);
1395
1396 /* save payload for session_id */
1397 server_kexinit = xmalloc(sizeof(*server_kexinit));
1398 buffer_init(server_kexinit);
1399 ptr = packet_get_raw(&payload_len);
1400 buffer_append(server_kexinit, ptr, payload_len);
1401
1402 /* skip cookie */
1403 for (i = 0; i < 16; i++)
1404 (void) packet_get_char();
1405 /* kex init proposal strings */
1406 for (i = 0; i < PROPOSAL_MAX; i++) {
1407 sprop[i] = packet_get_string(NULL);
1408 debug("got kexinit string: %s", sprop[i]);
1409 }
1410 i = (int) packet_get_char();
1411 debug("first kex follow == %d", i);
1412 i = packet_get_int();
1413 debug("reserved == %d", i);
Damien Miller4af51302000-04-16 11:18:38 +10001414 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001415
1416 debug("done read kexinit");
1417 kex = kex_choose_conf(cprop, sprop, 0);
1418
1419/* KEXDH */
1420
1421 debug("Sending SSH2_MSG_KEXDH_INIT.");
1422
1423 /* generate and send 'e', client DH public key */
Damien Miller78928792000-04-12 20:17:38 +10001424 dh = dh_new_group1();
Damien Miller1383bd82000-04-06 12:32:37 +10001425 packet_start(SSH2_MSG_KEXDH_INIT);
1426 packet_put_bignum2(dh->pub_key);
1427 packet_send();
1428 packet_write_wait();
1429
1430#ifdef DEBUG_KEXDH
1431 fprintf(stderr, "\np= ");
1432 bignum_print(dh->p);
1433 fprintf(stderr, "\ng= ");
1434 bignum_print(dh->g);
1435 fprintf(stderr, "\npub= ");
1436 bignum_print(dh->pub_key);
1437 fprintf(stderr, "\n");
Damien Miller4af51302000-04-16 11:18:38 +10001438 DHparams_print_fp(stderr, dh);
Damien Miller1383bd82000-04-06 12:32:37 +10001439#endif
1440
1441 debug("Wait SSH2_MSG_KEXDH_REPLY.");
1442
1443 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_REPLY);
1444
1445 debug("Got SSH2_MSG_KEXDH_REPLY.");
1446
1447 /* key, cert */
1448 server_host_key_blob = packet_get_string(&sbloblen);
1449 server_host_key = dsa_serverkey_from_blob(server_host_key_blob, sbloblen);
1450 if (server_host_key == NULL)
1451 fatal("cannot decode server_host_key_blob");
1452
1453 check_host_key(host, hostaddr, server_host_key);
1454
1455 /* DH paramter f, server public DH key */
1456 dh_server_pub = BN_new();
1457 if (dh_server_pub == NULL)
1458 fatal("dh_server_pub == NULL");
1459 packet_get_bignum2(dh_server_pub, &dlen);
1460
1461#ifdef DEBUG_KEXDH
1462 fprintf(stderr, "\ndh_server_pub= ");
1463 bignum_print(dh_server_pub);
1464 fprintf(stderr, "\n");
1465 debug("bits %d", BN_num_bits(dh_server_pub));
1466#endif
1467
1468 /* signed H */
1469 signature = packet_get_string(&slen);
Damien Miller4af51302000-04-16 11:18:38 +10001470 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001471
Damien Miller78928792000-04-12 20:17:38 +10001472 if (!dh_pub_is_valid(dh, dh_server_pub))
1473 packet_disconnect("bad server public DH value");
1474
Damien Miller1383bd82000-04-06 12:32:37 +10001475 klen = DH_size(dh);
1476 kbuf = xmalloc(klen);
1477 kout = DH_compute_key(kbuf, dh_server_pub, dh);
1478#ifdef DEBUG_KEXDH
1479 debug("shared secret: len %d/%d", klen, kout);
Damien Miller4af51302000-04-16 11:18:38 +10001480 fprintf(stderr, "shared secret == ");
1481 for (i = 0; i< kout; i++)
1482 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1483 fprintf(stderr, "\n");
Damien Miller1383bd82000-04-06 12:32:37 +10001484#endif
Damien Miller4af51302000-04-16 11:18:38 +10001485 shared_secret = BN_new();
Damien Miller1383bd82000-04-06 12:32:37 +10001486
Damien Miller4af51302000-04-16 11:18:38 +10001487 BN_bin2bn(kbuf, kout, shared_secret);
Damien Miller1383bd82000-04-06 12:32:37 +10001488 memset(kbuf, 0, klen);
1489 xfree(kbuf);
1490
1491 /* calc and verify H */
1492 hash = kex_hash(
1493 client_version_string,
1494 server_version_string,
1495 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1496 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1497 server_host_key_blob, sbloblen,
1498 dh->pub_key,
1499 dh_server_pub,
1500 shared_secret
1501 );
1502 buffer_free(client_kexinit);
1503 buffer_free(server_kexinit);
1504 xfree(client_kexinit);
1505 xfree(server_kexinit);
1506#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001507 fprintf(stderr, "hash == ");
1508 for (i = 0; i< 20; i++)
1509 fprintf(stderr, "%02x", (hash[i])&0xff);
1510 fprintf(stderr, "\n");
Damien Miller1383bd82000-04-06 12:32:37 +10001511#endif
1512 dsa_verify(server_host_key, (unsigned char *)signature, slen, hash, 20);
1513 key_free(server_host_key);
1514
1515 kex_derive_keys(kex, hash, shared_secret);
1516 packet_set_kex(kex);
1517
1518 /* have keys, free DH */
1519 DH_free(dh);
1520
1521 debug("Wait SSH2_MSG_NEWKEYS.");
1522 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
Damien Miller4af51302000-04-16 11:18:38 +10001523 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001524 debug("GOT SSH2_MSG_NEWKEYS.");
1525
1526 debug("send SSH2_MSG_NEWKEYS.");
1527 packet_start(SSH2_MSG_NEWKEYS);
1528 packet_send();
1529 packet_write_wait();
1530 debug("done: send SSH2_MSG_NEWKEYS.");
1531
Damien Miller78928792000-04-12 20:17:38 +10001532#ifdef DEBUG_KEXDH
Damien Miller1383bd82000-04-06 12:32:37 +10001533 /* send 1st encrypted/maced/compressed message */
1534 packet_start(SSH2_MSG_IGNORE);
1535 packet_put_cstring("markus");
1536 packet_send();
1537 packet_write_wait();
Damien Miller78928792000-04-12 20:17:38 +10001538#endif
Damien Miller1383bd82000-04-06 12:32:37 +10001539 debug("done: KEX2.");
1540}
1541/*
1542 * Authenticate user
1543 */
1544void
1545ssh_userauth2(int host_key_valid, RSA *own_host_key,
1546 uid_t original_real_uid, char *host)
1547{
1548 int type;
1549 int plen;
1550 unsigned int dlen;
1551 int partial;
1552 struct passwd *pw;
Damien Miller78928792000-04-12 20:17:38 +10001553 char prompt[80];
Damien Miller1383bd82000-04-06 12:32:37 +10001554 char *server_user, *local_user;
1555 char *auths;
1556 char *password;
Damien Miller4af51302000-04-16 11:18:38 +10001557 char *service = "ssh-connection"; /* service name */
Damien Miller1383bd82000-04-06 12:32:37 +10001558
1559 debug("send SSH2_MSG_SERVICE_REQUEST");
1560 packet_start(SSH2_MSG_SERVICE_REQUEST);
1561 packet_put_cstring("ssh-userauth");
1562 packet_send();
1563 packet_write_wait();
1564
1565 type = packet_read(&plen);
1566 if (type != SSH2_MSG_SERVICE_ACCEPT) {
1567 fatal("denied SSH2_MSG_SERVICE_ACCEPT: %d", type);
1568 }
Damien Miller4af51302000-04-16 11:18:38 +10001569 if (packet_remaining() > 0) {
1570 char *reply = packet_get_string(&plen);
1571 debug("service_accept: %s", reply);
1572 xfree(reply);
1573 } else {
1574 /* payload empty for ssh-2.0.13 ?? */
1575 log("buggy server: service_accept w/o service");
1576 }
1577 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001578 debug("got SSH2_MSG_SERVICE_ACCEPT");
1579
1580 /*XX COMMONCODE: */
1581 /* Get local user name. Use it as server user if no user name was given. */
1582 pw = getpwuid(original_real_uid);
1583 if (!pw)
1584 fatal("User id %d not found from user database.", original_real_uid);
1585 local_user = xstrdup(pw->pw_name);
1586 server_user = options.user ? options.user : local_user;
1587
1588 /* INITIAL request for auth */
1589 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1590 packet_put_cstring(server_user);
1591 packet_put_cstring(service);
1592 packet_put_cstring("none");
1593 packet_send();
1594 packet_write_wait();
1595
1596 for (;;) {
1597 type = packet_read(&plen);
1598 if (type == SSH2_MSG_USERAUTH_SUCCESS)
1599 break;
1600 if (type != SSH2_MSG_USERAUTH_FAILURE)
1601 fatal("access denied: %d", type);
1602 /* SSH2_MSG_USERAUTH_FAILURE means: try again */
1603 auths = packet_get_string(&dlen);
1604 debug("authentications that can continue: %s", auths);
1605 partial = packet_get_char();
Damien Miller4af51302000-04-16 11:18:38 +10001606 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001607 if (partial)
1608 debug("partial success");
1609 if (strstr(auths, "password") == NULL)
1610 fatal("passwd auth not supported: %s", auths);
1611 xfree(auths);
1612 /* try passwd */
Damien Miller78928792000-04-12 20:17:38 +10001613 snprintf(prompt, sizeof(prompt), "%.30s@%.40s's password: ",
1614 server_user, host);
1615 password = read_passphrase(prompt, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001616 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1617 packet_put_cstring(server_user);
1618 packet_put_cstring(service);
1619 packet_put_cstring("password");
1620 packet_put_char(0);
1621 packet_put_cstring(password);
1622 memset(password, 0, strlen(password));
1623 xfree(password);
1624 packet_send();
1625 packet_write_wait();
1626 }
Damien Miller4af51302000-04-16 11:18:38 +10001627 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001628 debug("ssh-userauth2 successfull");
1629}
1630
1631/*
Damien Miller396691a2000-01-20 22:44:08 +11001632 * SSH1 key exchange
Damien Millera34a28b1999-12-14 10:47:15 +11001633 */
1634void
Damien Miller396691a2000-01-20 22:44:08 +11001635ssh_kex(char *host, struct sockaddr *hostaddr)
Damien Millera34a28b1999-12-14 10:47:15 +11001636{
Damien Miller396691a2000-01-20 22:44:08 +11001637 int i;
Damien Millera34a28b1999-12-14 10:47:15 +11001638 BIGNUM *key;
1639 RSA *host_key;
1640 RSA *public_key;
1641 int bits, rbits;
Damien Miller1383bd82000-04-06 12:32:37 +10001642 int ssh_cipher_default = SSH_CIPHER_3DES;
Damien Millera34a28b1999-12-14 10:47:15 +11001643 unsigned char session_key[SSH_SESSION_KEY_LENGTH];
Damien Miller396691a2000-01-20 22:44:08 +11001644 unsigned char cookie[8];
1645 unsigned int supported_ciphers;
Damien Millera34a28b1999-12-14 10:47:15 +11001646 unsigned int server_flags, client_flags;
1647 int payload_len, clen, sum_len = 0;
1648 u_int32_t rand = 0;
1649
Damien Millera34a28b1999-12-14 10:47:15 +11001650 debug("Waiting for server public key.");
1651
1652 /* Wait for a public key packet from the server. */
1653 packet_read_expect(&payload_len, SSH_SMSG_PUBLIC_KEY);
1654
Damien Miller396691a2000-01-20 22:44:08 +11001655 /* Get cookie from the packet. */
Damien Millera34a28b1999-12-14 10:47:15 +11001656 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001657 cookie[i] = packet_get_char();
Damien Millera34a28b1999-12-14 10:47:15 +11001658
1659 /* Get the public key. */
1660 public_key = RSA_new();
1661 bits = packet_get_int();/* bits */
1662 public_key->e = BN_new();
1663 packet_get_bignum(public_key->e, &clen);
1664 sum_len += clen;
1665 public_key->n = BN_new();
1666 packet_get_bignum(public_key->n, &clen);
1667 sum_len += clen;
1668
1669 rbits = BN_num_bits(public_key->n);
1670 if (bits != rbits) {
1671 log("Warning: Server lies about size of server public key: "
1672 "actual size is %d bits vs. announced %d.", rbits, bits);
1673 log("Warning: This may be due to an old implementation of ssh.");
1674 }
1675 /* Get the host key. */
1676 host_key = RSA_new();
1677 bits = packet_get_int();/* bits */
1678 host_key->e = BN_new();
1679 packet_get_bignum(host_key->e, &clen);
1680 sum_len += clen;
1681 host_key->n = BN_new();
1682 packet_get_bignum(host_key->n, &clen);
1683 sum_len += clen;
1684
1685 rbits = BN_num_bits(host_key->n);
1686 if (bits != rbits) {
1687 log("Warning: Server lies about size of server host key: "
1688 "actual size is %d bits vs. announced %d.", rbits, bits);
1689 log("Warning: This may be due to an old implementation of ssh.");
1690 }
1691
1692 /* Get protocol flags. */
1693 server_flags = packet_get_int();
1694 packet_set_protocol_flags(server_flags);
1695
1696 supported_ciphers = packet_get_int();
1697 supported_authentications = packet_get_int();
1698
1699 debug("Received server public key (%d bits) and host key (%d bits).",
1700 BN_num_bits(public_key->n), BN_num_bits(host_key->n));
1701
1702 packet_integrity_check(payload_len,
1703 8 + 4 + sum_len + 0 + 4 + 0 + 0 + 4 + 4 + 4,
1704 SSH_SMSG_PUBLIC_KEY);
1705
Damien Miller450a7a12000-03-26 13:04:51 +10001706 check_rsa_host_key(host, hostaddr, host_key);
Damien Millera34a28b1999-12-14 10:47:15 +11001707
1708 client_flags = SSH_PROTOFLAG_SCREEN_NUMBER | SSH_PROTOFLAG_HOST_IN_FWD_OPEN;
1709
Damien Miller396691a2000-01-20 22:44:08 +11001710 compute_session_id(session_id, cookie, host_key->n, public_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001711
Damien Miller95def091999-11-25 00:26:21 +11001712 /* Generate a session key. */
1713 arc4random_stir();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001714
Damien Miller5428f641999-11-25 11:54:57 +11001715 /*
1716 * Generate an encryption key for the session. The key is a 256 bit
1717 * random number, interpreted as a 32-byte key, with the least
1718 * significant 8 bits being the first byte of the key.
1719 */
Damien Miller95def091999-11-25 00:26:21 +11001720 for (i = 0; i < 32; i++) {
1721 if (i % 4 == 0)
1722 rand = arc4random();
1723 session_key[i] = rand & 0xff;
1724 rand >>= 8;
1725 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001726
Damien Miller5428f641999-11-25 11:54:57 +11001727 /*
1728 * According to the protocol spec, the first byte of the session key
1729 * is the highest byte of the integer. The session key is xored with
1730 * the first 16 bytes of the session id.
1731 */
Damien Miller95def091999-11-25 00:26:21 +11001732 key = BN_new();
1733 BN_set_word(key, 0);
1734 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
1735 BN_lshift(key, key, 8);
1736 if (i < 16)
1737 BN_add_word(key, session_key[i] ^ session_id[i]);
1738 else
1739 BN_add_word(key, session_key[i]);
1740 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001741
Damien Miller5428f641999-11-25 11:54:57 +11001742 /*
1743 * Encrypt the integer using the public key and host key of the
1744 * server (key with smaller modulus first).
1745 */
Damien Miller95def091999-11-25 00:26:21 +11001746 if (BN_cmp(public_key->n, host_key->n) < 0) {
1747 /* Public key has smaller modulus. */
1748 if (BN_num_bits(host_key->n) <
1749 BN_num_bits(public_key->n) + SSH_KEY_BITS_RESERVED) {
1750 fatal("respond_to_rsa_challenge: host_key %d < public_key %d + "
1751 "SSH_KEY_BITS_RESERVED %d",
1752 BN_num_bits(host_key->n),
1753 BN_num_bits(public_key->n),
1754 SSH_KEY_BITS_RESERVED);
1755 }
1756 rsa_public_encrypt(key, key, public_key);
1757 rsa_public_encrypt(key, key, host_key);
1758 } else {
1759 /* Host key has smaller modulus (or they are equal). */
1760 if (BN_num_bits(public_key->n) <
1761 BN_num_bits(host_key->n) + SSH_KEY_BITS_RESERVED) {
1762 fatal("respond_to_rsa_challenge: public_key %d < host_key %d + "
1763 "SSH_KEY_BITS_RESERVED %d",
1764 BN_num_bits(public_key->n),
1765 BN_num_bits(host_key->n),
1766 SSH_KEY_BITS_RESERVED);
1767 }
1768 rsa_public_encrypt(key, key, host_key);
1769 rsa_public_encrypt(key, key, public_key);
1770 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001771
Damien Miller396691a2000-01-20 22:44:08 +11001772 /* Destroy the public keys since we no longer need them. */
1773 RSA_free(public_key);
1774 RSA_free(host_key);
1775
Damien Miller95def091999-11-25 00:26:21 +11001776 if (options.cipher == SSH_CIPHER_NOT_SET) {
Damien Miller1383bd82000-04-06 12:32:37 +10001777 if (cipher_mask1() & supported_ciphers & (1 << ssh_cipher_default))
Damien Miller95def091999-11-25 00:26:21 +11001778 options.cipher = ssh_cipher_default;
1779 else {
1780 debug("Cipher %s not supported, using %.100s instead.",
1781 cipher_name(ssh_cipher_default),
1782 cipher_name(SSH_FALLBACK_CIPHER));
1783 options.cipher = SSH_FALLBACK_CIPHER;
1784 }
1785 }
1786 /* Check that the selected cipher is supported. */
1787 if (!(supported_ciphers & (1 << options.cipher)))
1788 fatal("Selected cipher type %.100s not supported by server.",
1789 cipher_name(options.cipher));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001790
Damien Miller95def091999-11-25 00:26:21 +11001791 debug("Encryption type: %.100s", cipher_name(options.cipher));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001792
Damien Miller95def091999-11-25 00:26:21 +11001793 /* Send the encrypted session key to the server. */
1794 packet_start(SSH_CMSG_SESSION_KEY);
1795 packet_put_char(options.cipher);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001796
Damien Miller396691a2000-01-20 22:44:08 +11001797 /* Send the cookie back to the server. */
Damien Miller95def091999-11-25 00:26:21 +11001798 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001799 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001800
Damien Miller396691a2000-01-20 22:44:08 +11001801 /* Send and destroy the encrypted encryption key integer. */
Damien Miller95def091999-11-25 00:26:21 +11001802 packet_put_bignum(key);
Damien Miller396691a2000-01-20 22:44:08 +11001803 BN_clear_free(key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001804
Damien Miller95def091999-11-25 00:26:21 +11001805 /* Send protocol flags. */
Damien Millera34a28b1999-12-14 10:47:15 +11001806 packet_put_int(client_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001807
Damien Miller95def091999-11-25 00:26:21 +11001808 /* Send the packet now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001809 packet_send();
1810 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001811
Damien Miller95def091999-11-25 00:26:21 +11001812 debug("Sent encrypted session key.");
1813
1814 /* Set the encryption key. */
1815 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, options.cipher);
1816
1817 /* We will no longer need the session key here. Destroy any extra copies. */
1818 memset(session_key, 0, sizeof(session_key));
1819
Damien Miller5428f641999-11-25 11:54:57 +11001820 /*
1821 * Expect a success message from the server. Note that this message
1822 * will be received in encrypted form.
1823 */
Damien Miller95def091999-11-25 00:26:21 +11001824 packet_read_expect(&payload_len, SSH_SMSG_SUCCESS);
1825
1826 debug("Received encrypted confirmation.");
Damien Miller396691a2000-01-20 22:44:08 +11001827}
1828
1829/*
1830 * Authenticate user
1831 */
1832void
1833ssh_userauth(int host_key_valid, RSA *own_host_key,
1834 uid_t original_real_uid, char *host)
1835{
1836 int i, type;
1837 int payload_len;
1838 struct passwd *pw;
1839 const char *server_user, *local_user;
1840
1841 /* Get local user name. Use it as server user if no user name was given. */
1842 pw = getpwuid(original_real_uid);
1843 if (!pw)
1844 fatal("User id %d not found from user database.", original_real_uid);
1845 local_user = xstrdup(pw->pw_name);
1846 server_user = options.user ? options.user : local_user;
Damien Miller95def091999-11-25 00:26:21 +11001847
1848 /* Send the name of the user to log in as on the server. */
1849 packet_start(SSH_CMSG_USER);
1850 packet_put_string(server_user, strlen(server_user));
1851 packet_send();
1852 packet_write_wait();
1853
Damien Miller5428f641999-11-25 11:54:57 +11001854 /*
1855 * The server should respond with success if no authentication is
1856 * needed (the user has no password). Otherwise the server responds
1857 * with failure.
1858 */
Damien Miller95def091999-11-25 00:26:21 +11001859 type = packet_read(&payload_len);
1860
1861 /* check whether the connection was accepted without authentication. */
1862 if (type == SSH_SMSG_SUCCESS)
1863 return;
1864 if (type != SSH_SMSG_FAILURE)
1865 packet_disconnect("Protocol error: got %d in response to SSH_CMSG_USER",
1866 type);
1867
1868#ifdef AFS
1869 /* Try Kerberos tgt passing if the server supports it. */
1870 if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1871 options.kerberos_tgt_passing) {
1872 if (options.cipher == SSH_CIPHER_NONE)
1873 log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1874 (void) send_kerberos_tgt();
1875 }
1876 /* Try AFS token passing if the server supports it. */
1877 if ((supported_authentications & (1 << SSH_PASS_AFS_TOKEN)) &&
1878 options.afs_token_passing && k_hasafs()) {
1879 if (options.cipher == SSH_CIPHER_NONE)
1880 log("WARNING: Encryption is disabled! Token will be transmitted in the clear!");
1881 send_afs_tokens();
1882 }
1883#endif /* AFS */
1884
1885#ifdef KRB4
1886 if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1887 options.kerberos_authentication) {
1888 debug("Trying Kerberos authentication.");
1889 if (try_kerberos_authentication()) {
1890 /* The server should respond with success or failure. */
1891 type = packet_read(&payload_len);
1892 if (type == SSH_SMSG_SUCCESS)
1893 return;
1894 if (type != SSH_SMSG_FAILURE)
1895 packet_disconnect("Protocol error: got %d in response to Kerberos auth", type);
1896 }
1897 }
1898#endif /* KRB4 */
1899
Damien Miller5428f641999-11-25 11:54:57 +11001900 /*
1901 * Use rhosts authentication if running in privileged socket and we
1902 * do not wish to remain anonymous.
1903 */
Damien Miller95def091999-11-25 00:26:21 +11001904 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS)) &&
1905 options.rhosts_authentication) {
1906 debug("Trying rhosts authentication.");
1907 packet_start(SSH_CMSG_AUTH_RHOSTS);
1908 packet_put_string(local_user, strlen(local_user));
1909 packet_send();
1910 packet_write_wait();
1911
1912 /* The server should respond with success or failure. */
1913 type = packet_read(&payload_len);
1914 if (type == SSH_SMSG_SUCCESS)
1915 return;
1916 if (type != SSH_SMSG_FAILURE)
1917 packet_disconnect("Protocol error: got %d in response to rhosts auth",
1918 type);
1919 }
Damien Miller5428f641999-11-25 11:54:57 +11001920 /*
1921 * Try .rhosts or /etc/hosts.equiv authentication with RSA host
1922 * authentication.
1923 */
Damien Miller95def091999-11-25 00:26:21 +11001924 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
1925 options.rhosts_rsa_authentication && host_key_valid) {
1926 if (try_rhosts_rsa_authentication(local_user, own_host_key))
1927 return;
1928 }
1929 /* Try RSA authentication if the server supports it. */
1930 if ((supported_authentications & (1 << SSH_AUTH_RSA)) &&
1931 options.rsa_authentication) {
Damien Miller5428f641999-11-25 11:54:57 +11001932 /*
1933 * Try RSA authentication using the authentication agent. The
1934 * agent is tried first because no passphrase is needed for
1935 * it, whereas identity files may require passphrases.
1936 */
Damien Miller95def091999-11-25 00:26:21 +11001937 if (try_agent_authentication())
1938 return;
1939
1940 /* Try RSA authentication for each identity. */
1941 for (i = 0; i < options.num_identity_files; i++)
Damien Milleraae6c611999-12-06 11:47:28 +11001942 if (try_rsa_authentication(options.identity_files[i]))
Damien Miller95def091999-11-25 00:26:21 +11001943 return;
1944 }
1945 /* Try skey authentication if the server supports it. */
1946 if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
1947 options.skey_authentication && !options.batch_mode) {
Damien Milleraae6c611999-12-06 11:47:28 +11001948 if (try_skey_authentication())
1949 return;
Damien Miller95def091999-11-25 00:26:21 +11001950 }
1951 /* Try password authentication if the server supports it. */
1952 if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
1953 options.password_authentication && !options.batch_mode) {
1954 char prompt[80];
Damien Miller037a0dc1999-12-07 15:38:31 +11001955
Damien Milleraae6c611999-12-06 11:47:28 +11001956 snprintf(prompt, sizeof(prompt), "%.30s@%.40s's password: ",
Damien Miller037a0dc1999-12-07 15:38:31 +11001957 server_user, host);
Damien Milleraae6c611999-12-06 11:47:28 +11001958 if (try_password_authentication(prompt))
1959 return;
Damien Miller95def091999-11-25 00:26:21 +11001960 }
1961 /* All authentication methods have failed. Exit with an error message. */
1962 fatal("Permission denied.");
1963 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001964}
Damien Miller396691a2000-01-20 22:44:08 +11001965/*
1966 * Starts a dialog with the server, and authenticates the current user on the
1967 * server. This does not need any extra privileges. The basic connection
1968 * to the server must already have been established before this is called.
1969 * If login fails, this function prints an error and never returns.
1970 * This function does not require super-user privileges.
1971 */
1972void
1973ssh_login(int host_key_valid, RSA *own_host_key, const char *orighost,
1974 struct sockaddr *hostaddr, uid_t original_real_uid)
1975{
1976 char *host, *cp;
1977
1978 /* Convert the user-supplied hostname into all lowercase. */
1979 host = xstrdup(orighost);
1980 for (cp = host; *cp; cp++)
1981 if (isupper(*cp))
1982 *cp = tolower(*cp);
1983
1984 /* Exchange protocol version identification strings with the server. */
1985 ssh_exchange_identification();
1986
1987 /* Put the connection into non-blocking mode. */
1988 packet_set_nonblocking();
1989
Damien Miller396691a2000-01-20 22:44:08 +11001990 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001991 /* authenticate user */
Damien Miller1383bd82000-04-06 12:32:37 +10001992 if (compat20) {
1993 ssh_kex2(host, hostaddr);
1994 ssh_userauth2(host_key_valid, own_host_key, original_real_uid, host);
1995 } else {
1996 supported_authentications = 0;
1997 ssh_kex(host, hostaddr);
1998 if (supported_authentications == 0)
1999 fatal("supported_authentications == 0.");
2000 ssh_userauth(host_key_valid, own_host_key, original_real_uid, host);
2001 }
Damien Miller396691a2000-01-20 22:44:08 +11002002}