blob: 647aec79761e70535bb806fd33df21563ad358db [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
Damien Miller95def091999-11-25 00:26:21 +11005 * Code to connect to a remote host, and to perform the client side of the
6 * login (authentication) dialog.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Ben Lindstrom46c16222000-12-22 01:43:59 +000016RCSID("$OpenBSD: sshconnect.c,v 1.85 2000/12/21 15:10:17 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
Damien Miller1383bd82000-04-06 12:32:37 +100018#include <openssl/bn.h>
Damien Millereba71ba2000-04-29 23:57:08 +100019#include <openssl/dsa.h>
20#include <openssl/rsa.h>
21
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022#include "xmalloc.h"
23#include "rsa.h"
24#include "ssh.h"
Damien Miller1383bd82000-04-06 12:32:37 +100025#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027#include "uidswap.h"
28#include "compat.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110029#include "readconf.h"
Damien Miller450a7a12000-03-26 13:04:51 +100030#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100031#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100032#include "hostfile.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033
Damien Millereba71ba2000-04-29 23:57:08 +100034char *client_version_string = NULL;
35char *server_version_string = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100036
Damien Milleraae6c611999-12-06 11:47:28 +110037extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110038extern char *__progname;
Damien Milleraae6c611999-12-06 11:47:28 +110039
Damien Miller95def091999-11-25 00:26:21 +110040/*
41 * Connect to the given ssh server using a proxy command.
42 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043int
Damien Milleraae6c611999-12-06 11:47:28 +110044ssh_proxy_connect(const char *host, u_short port, uid_t original_real_uid,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045 const char *proxy_command)
46{
Damien Miller95def091999-11-25 00:26:21 +110047 Buffer command;
48 const char *cp;
49 char *command_string;
50 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +100051 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +110052 char strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054 /* Convert the port number into a string. */
Damien Miller34132e52000-01-14 15:45:46 +110055 snprintf(strport, sizeof strport, "%hu", port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Damien Miller95def091999-11-25 00:26:21 +110057 /* Build the final command string in the buffer by making the
58 appropriate substitutions to the given proxy command. */
59 buffer_init(&command);
60 for (cp = proxy_command; *cp; cp++) {
61 if (cp[0] == '%' && cp[1] == '%') {
62 buffer_append(&command, "%", 1);
63 cp++;
64 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065 }
Damien Miller95def091999-11-25 00:26:21 +110066 if (cp[0] == '%' && cp[1] == 'h') {
67 buffer_append(&command, host, strlen(host));
68 cp++;
69 continue;
70 }
71 if (cp[0] == '%' && cp[1] == 'p') {
Damien Miller34132e52000-01-14 15:45:46 +110072 buffer_append(&command, strport, strlen(strport));
Damien Miller95def091999-11-25 00:26:21 +110073 cp++;
74 continue;
75 }
76 buffer_append(&command, cp, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077 }
Damien Miller95def091999-11-25 00:26:21 +110078 buffer_append(&command, "\0", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Miller95def091999-11-25 00:26:21 +110080 /* Get the final command string. */
81 command_string = buffer_ptr(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller95def091999-11-25 00:26:21 +110083 /* Create pipes for communicating with the proxy. */
84 if (pipe(pin) < 0 || pipe(pout) < 0)
85 fatal("Could not create pipes to communicate with the proxy: %.100s",
86 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller95def091999-11-25 00:26:21 +110088 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller95def091999-11-25 00:26:21 +110090 /* Fork and execute the proxy command. */
91 if ((pid = fork()) == 0) {
92 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller95def091999-11-25 00:26:21 +110094 /* Child. Permanently give up superuser privileges. */
95 permanently_set_uid(original_real_uid);
96
97 /* Redirect stdin and stdout. */
98 close(pin[1]);
99 if (pin[0] != 0) {
100 if (dup2(pin[0], 0) < 0)
101 perror("dup2 stdin");
102 close(pin[0]);
103 }
104 close(pout[0]);
105 if (dup2(pout[1], 1) < 0)
106 perror("dup2 stdout");
107 /* Cannot be 1 because pin allocated two descriptors. */
108 close(pout[1]);
109
110 /* Stderr is left as it is so that error messages get
111 printed on the user's terminal. */
Damien Miller7b413d22000-07-01 13:24:21 +1000112 argv[0] = _PATH_BSHELL;
Damien Miller95def091999-11-25 00:26:21 +1100113 argv[1] = "-c";
114 argv[2] = command_string;
115 argv[3] = NULL;
116
117 /* Execute the proxy command. Note that we gave up any
118 extra privileges above. */
Damien Miller7b413d22000-07-01 13:24:21 +1000119 execv(_PATH_BSHELL, argv);
120 perror(_PATH_BSHELL);
Damien Miller95def091999-11-25 00:26:21 +1100121 exit(1);
122 }
123 /* Parent. */
124 if (pid < 0)
125 fatal("fork failed: %.100s", strerror(errno));
126
127 /* Close child side of the descriptors. */
128 close(pin[0]);
129 close(pout[1]);
130
131 /* Free the command name. */
132 buffer_free(&command);
133
134 /* Set the connection file descriptors. */
135 packet_set_connection(pout[0], pin[1]);
136
137 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138}
139
Damien Miller95def091999-11-25 00:26:21 +1100140/*
141 * Creates a (possibly privileged) socket for use as the ssh connection.
142 */
143int
Damien Miller34132e52000-01-14 15:45:46 +1100144ssh_create_socket(uid_t original_real_uid, int privileged, int family)
Damien Miller95def091999-11-25 00:26:21 +1100145{
146 int sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147
Damien Miller5428f641999-11-25 11:54:57 +1100148 /*
149 * If we are running as root and want to connect to a privileged
150 * port, bind our own socket to a privileged port.
151 */
Damien Miller95def091999-11-25 00:26:21 +1100152 if (privileged) {
153 int p = IPPORT_RESERVED - 1;
Damien Miller34132e52000-01-14 15:45:46 +1100154 sock = rresvport_af(&p, family);
Damien Miller95def091999-11-25 00:26:21 +1100155 if (sock < 0)
Damien Miller98c7ad62000-03-09 21:27:49 +1100156 error("rresvport: af=%d %.100s", family, strerror(errno));
157 else
158 debug("Allocated local port %d.", p);
Damien Miller95def091999-11-25 00:26:21 +1100159 } else {
Damien Millera34a28b1999-12-14 10:47:15 +1100160 /*
161 * Just create an ordinary socket on arbitrary port. We use
162 * the user's uid to create the socket.
163 */
Damien Miller95def091999-11-25 00:26:21 +1100164 temporarily_use_uid(original_real_uid);
Damien Miller34132e52000-01-14 15:45:46 +1100165 sock = socket(family, SOCK_STREAM, 0);
Damien Miller95def091999-11-25 00:26:21 +1100166 if (sock < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100167 error("socket: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100168 restore_uid();
169 }
170 return sock;
171}
172
173/*
Damien Miller34132e52000-01-14 15:45:46 +1100174 * Opens a TCP/IP connection to the remote server on the given host.
175 * The address of the remote host will be returned in hostaddr.
176 * If port is 0, the default port will be used. If anonymous is zero,
Damien Miller95def091999-11-25 00:26:21 +1100177 * a privileged port will be allocated to make the connection.
178 * This requires super-user privileges if anonymous is false.
179 * Connection_attempts specifies the maximum number of tries (one per
180 * second). If proxy_command is non-NULL, it specifies the command (with %h
181 * and %p substituted for host and port, respectively) to use to contact
182 * the daemon.
183 */
184int
Damien Miller34132e52000-01-14 15:45:46 +1100185ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
Damien Milleraae6c611999-12-06 11:47:28 +1100186 u_short port, int connection_attempts,
Damien Miller95def091999-11-25 00:26:21 +1100187 int anonymous, uid_t original_real_uid,
188 const char *proxy_command)
189{
Damien Miller34132e52000-01-14 15:45:46 +1100190 int sock = -1, attempt;
Damien Miller95def091999-11-25 00:26:21 +1100191 struct servent *sp;
Damien Miller34132e52000-01-14 15:45:46 +1100192 struct addrinfo hints, *ai, *aitop;
193 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
194 int gaierr;
Damien Miller95def091999-11-25 00:26:21 +1100195 struct linger linger;
196
Damien Millercaf6dd62000-08-29 11:33:50 +1100197 debug("ssh_connect: getuid %u geteuid %u anon %d",
198 (u_int) getuid(), (u_int) geteuid(), anonymous);
Damien Miller95def091999-11-25 00:26:21 +1100199
200 /* Get default port if port has not been set. */
201 if (port == 0) {
202 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
203 if (sp)
204 port = ntohs(sp->s_port);
205 else
206 port = SSH_DEFAULT_PORT;
207 }
208 /* If a proxy command is given, connect using it. */
209 if (proxy_command != NULL)
210 return ssh_proxy_connect(host, port, original_real_uid, proxy_command);
211
212 /* No proxy command. */
213
Damien Miller34132e52000-01-14 15:45:46 +1100214 memset(&hints, 0, sizeof(hints));
215 hints.ai_family = IPv4or6;
216 hints.ai_socktype = SOCK_STREAM;
217 snprintf(strport, sizeof strport, "%d", port);
218 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
219 fatal("%s: %.100s: %s", __progname, host,
220 gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +1100221
Damien Millera34a28b1999-12-14 10:47:15 +1100222 /*
223 * Try to connect several times. On some machines, the first time
224 * will sometimes fail. In general socket code appears to behave
225 * quite magically on many machines.
226 */
Damien Miller95def091999-11-25 00:26:21 +1100227 for (attempt = 0; attempt < connection_attempts; attempt++) {
228 if (attempt > 0)
229 debug("Trying again...");
230
Damien Miller34132e52000-01-14 15:45:46 +1100231 /* Loop through addresses for this host, and try each one in
Damien Miller4af51302000-04-16 11:18:38 +1000232 sequence until the connection succeeds. */
Damien Miller34132e52000-01-14 15:45:46 +1100233 for (ai = aitop; ai; ai = ai->ai_next) {
234 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
235 continue;
236 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
237 ntop, sizeof(ntop), strport, sizeof(strport),
238 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
239 error("ssh_connect: getnameinfo failed");
240 continue;
241 }
242 debug("Connecting to %.200s [%.100s] port %s.",
243 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100244
Damien Miller34132e52000-01-14 15:45:46 +1100245 /* Create a socket for connecting. */
Damien Miller4af51302000-04-16 11:18:38 +1000246 sock = ssh_create_socket(original_real_uid,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100247#ifdef HAVE_CYGWIN
Damien Miller0bc1bd82000-11-13 22:57:25 +1100248 !anonymous,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100249#else
Damien Miller0bc1bd82000-11-13 22:57:25 +1100250 !anonymous && geteuid() == 0,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100251#endif
Damien Miller34132e52000-01-14 15:45:46 +1100252 ai->ai_family);
253 if (sock < 0)
254 continue;
Damien Miller95def091999-11-25 00:26:21 +1100255
Damien Miller34132e52000-01-14 15:45:46 +1100256 /* Connect to the host. We use the user's uid in the
257 * hope that it will help with tcp_wrappers showing
258 * the remote uid as root.
Damien Miller5428f641999-11-25 11:54:57 +1100259 */
Damien Miller95def091999-11-25 00:26:21 +1100260 temporarily_use_uid(original_real_uid);
Damien Miller34132e52000-01-14 15:45:46 +1100261 if (connect(sock, ai->ai_addr, ai->ai_addrlen) >= 0) {
262 /* Successful connection. */
Damien Miller95fe91b2000-05-13 12:31:22 +1000263 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100264 restore_uid();
265 break;
Damien Miller34132e52000-01-14 15:45:46 +1100266 } else {
Damien Miller95def091999-11-25 00:26:21 +1100267 debug("connect: %.100s", strerror(errno));
268 restore_uid();
Damien Miller5428f641999-11-25 11:54:57 +1100269 /*
270 * Close the failed socket; there appear to
271 * be some problems when reusing a socket for
272 * which connect() has already returned an
273 * error.
274 */
Damien Miller95def091999-11-25 00:26:21 +1100275 shutdown(sock, SHUT_RDWR);
276 close(sock);
277 }
Damien Miller95def091999-11-25 00:26:21 +1100278 }
Damien Miller34132e52000-01-14 15:45:46 +1100279 if (ai)
280 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100281
282 /* Sleep a moment before retrying. */
283 sleep(1);
284 }
Damien Miller34132e52000-01-14 15:45:46 +1100285
286 freeaddrinfo(aitop);
287
Damien Miller95def091999-11-25 00:26:21 +1100288 /* Return failure if we didn't get a successful connection. */
289 if (attempt >= connection_attempts)
290 return 0;
291
292 debug("Connection established.");
293
Damien Miller5428f641999-11-25 11:54:57 +1100294 /*
295 * Set socket options. We would like the socket to disappear as soon
296 * as it has been closed for whatever reason.
297 */
298 /* setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +1100299 linger.l_onoff = 1;
300 linger.l_linger = 5;
301 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
302
303 /* Set the connection. */
304 packet_set_connection(sock, sock);
305
306 return 1;
307}
308
Damien Milleraae6c611999-12-06 11:47:28 +1100309/*
Damien Miller95def091999-11-25 00:26:21 +1100310 * Waits for the server identification string, and sends our own
311 * identification string.
312 */
313void
314ssh_exchange_identification()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315{
Damien Miller95def091999-11-25 00:26:21 +1100316 char buf[256], remote_version[256]; /* must be same size! */
Damien Miller78928792000-04-12 20:17:38 +1000317 int remote_major, remote_minor, i, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100318 int connection_in = packet_get_connection_in();
319 int connection_out = packet_get_connection_out();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100320 int minor1 = PROTOCOL_MINOR_1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321
Damien Miller95def091999-11-25 00:26:21 +1100322 /* Read other side\'s version identification. */
Damien Millerf6d9e222000-06-18 14:50:44 +1000323 for (;;) {
324 for (i = 0; i < sizeof(buf) - 1; i++) {
325 int len = atomicio(read, connection_in, &buf[i], 1);
326 if (len < 0)
327 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
328 if (len != 1)
329 fatal("ssh_exchange_identification: Connection closed by remote host");
330 if (buf[i] == '\r') {
331 buf[i] = '\n';
332 buf[i + 1] = 0;
333 continue; /**XXX wait for \n */
334 }
335 if (buf[i] == '\n') {
336 buf[i + 1] = 0;
337 break;
338 }
Damien Miller95def091999-11-25 00:26:21 +1100339 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000340 buf[sizeof(buf) - 1] = 0;
341 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100342 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000343 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344 }
Damien Miller1383bd82000-04-06 12:32:37 +1000345 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100346
Damien Miller5428f641999-11-25 11:54:57 +1100347 /*
348 * Check that the versions match. In future this might accept
349 * several versions and set appropriate flags to handle them.
350 */
Damien Miller1383bd82000-04-06 12:32:37 +1000351 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
352 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100353 fatal("Bad remote protocol version identification: '%.100s'", buf);
354 debug("Remote protocol version %d.%d, remote software version %.100s",
355 remote_major, remote_minor, remote_version);
356
Damien Miller1383bd82000-04-06 12:32:37 +1000357 compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000358 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000359
Damien Miller78928792000-04-12 20:17:38 +1000360 switch(remote_major) {
361 case 1:
362 if (remote_minor == 99 &&
363 (options.protocol & SSH_PROTO_2) &&
364 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
365 enable_compat20();
366 break;
Damien Miller95def091999-11-25 00:26:21 +1100367 }
Damien Miller78928792000-04-12 20:17:38 +1000368 if (!(options.protocol & SSH_PROTO_1)) {
369 mismatch = 1;
370 break;
371 }
372 if (remote_minor < 3) {
373 fatal("Remote machine has too old SSH software version.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100374 } else if (remote_minor == 3 || remote_minor == 4) {
Damien Miller78928792000-04-12 20:17:38 +1000375 /* We speak 1.3, too. */
376 enable_compat13();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100377 minor1 = 3;
Damien Miller78928792000-04-12 20:17:38 +1000378 if (options.forward_agent) {
379 log("Agent forwarding disabled for protocol 1.3");
380 options.forward_agent = 0;
381 }
382 }
383 break;
384 case 2:
385 if (options.protocol & SSH_PROTO_2) {
386 enable_compat20();
387 break;
388 }
389 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000390 default:
Damien Miller78928792000-04-12 20:17:38 +1000391 mismatch = 1;
392 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393 }
Damien Miller78928792000-04-12 20:17:38 +1000394 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100395 fatal("Protocol major versions differ: %d vs. %d",
Damien Miller78928792000-04-12 20:17:38 +1000396 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
397 remote_major);
Damien Millereba71ba2000-04-29 23:57:08 +1000398 if (compat20)
399 packet_set_ssh2_format();
Damien Miller95def091999-11-25 00:26:21 +1100400 /* Send our own protocol version identification. */
401 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
Damien Miller78928792000-04-12 20:17:38 +1000402 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100403 compat20 ? PROTOCOL_MINOR_2 : minor1,
Damien Miller1383bd82000-04-06 12:32:37 +1000404 SSH_VERSION);
Damien Miller037a0dc1999-12-07 15:38:31 +1100405 if (atomicio(write, connection_out, buf, strlen(buf)) != strlen(buf))
Damien Miller95def091999-11-25 00:26:21 +1100406 fatal("write: %.100s", strerror(errno));
Damien Miller1383bd82000-04-06 12:32:37 +1000407 client_version_string = xstrdup(buf);
408 chop(client_version_string);
409 chop(server_version_string);
410 debug("Local version string %.100s", client_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411}
412
Damien Miller95def091999-11-25 00:26:21 +1100413int
414read_yes_or_no(const char *prompt, int defval)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415{
Damien Miller95def091999-11-25 00:26:21 +1100416 char buf[1024];
417 FILE *f;
418 int retval = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Miller95def091999-11-25 00:26:21 +1100420 if (isatty(0))
421 f = stdin;
422 else
423 f = fopen("/dev/tty", "rw");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 if (f == NULL)
426 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427
Damien Miller95def091999-11-25 00:26:21 +1100428 fflush(stdout);
429
430 while (1) {
431 fprintf(stderr, "%s", prompt);
432 if (fgets(buf, sizeof(buf), f) == NULL) {
433 /* Print a newline (the prompt probably didn\'t have one). */
434 fprintf(stderr, "\n");
435 strlcpy(buf, "no", sizeof buf);
436 }
437 /* Remove newline from response. */
438 if (strchr(buf, '\n'))
439 *strchr(buf, '\n') = 0;
440
441 if (buf[0] == 0)
442 retval = defval;
443 if (strcmp(buf, "yes") == 0)
444 retval = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100445 else if (strcmp(buf, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100446 retval = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100447 else
448 fprintf(stderr, "Please type 'yes' or 'no'.\n");
Damien Miller95def091999-11-25 00:26:21 +1100449
450 if (retval != -1) {
451 if (f != stdin)
452 fclose(f);
453 return retval;
454 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456}
457
Damien Miller95def091999-11-25 00:26:21 +1100458/*
Damien Millera34a28b1999-12-14 10:47:15 +1100459 * check whether the supplied host key is valid, return only if ok.
Damien Miller95def091999-11-25 00:26:21 +1100460 */
Damien Millera34a28b1999-12-14 10:47:15 +1100461
Damien Miller95def091999-11-25 00:26:21 +1100462void
Damien Millereba71ba2000-04-29 23:57:08 +1000463check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
464 const char *user_hostfile, const char *system_hostfile)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465{
Damien Miller450a7a12000-03-26 13:04:51 +1000466 Key *file_key;
Damien Millere247cc42000-05-07 12:03:14 +1000467 char *type = key_type(host_key);
Damien Millera34a28b1999-12-14 10:47:15 +1100468 char *ip = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100469 char hostline[1000], *hostp;
Damien Miller95def091999-11-25 00:26:21 +1100470 HostStatus host_status;
471 HostStatus ip_status;
Damien Miller34132e52000-01-14 15:45:46 +1100472 int local = 0, host_ip_differ = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100473 int salen;
Damien Miller34132e52000-01-14 15:45:46 +1100474 char ntop[NI_MAXHOST];
Ben Lindstrom46c16222000-12-22 01:43:59 +0000475 int host_line = -1, ip_line = -1;
476 const char *host_file = NULL, *ip_file = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100477
478 /*
479 * Force accepting of the host key for loopback/localhost. The
480 * problem is that if the home directory is NFS-mounted to multiple
481 * machines, localhost will refer to a different machine in each of
482 * them, and the user will get bogus HOST_CHANGED warnings. This
483 * essentially disables host authentication for localhost; however,
484 * this is probably not a real problem.
485 */
Damien Millereba71ba2000-04-29 23:57:08 +1000486 /** hostaddr == 0! */
Damien Miller34132e52000-01-14 15:45:46 +1100487 switch (hostaddr->sa_family) {
488 case AF_INET:
489 local = (ntohl(((struct sockaddr_in *)hostaddr)->sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
Damien Millereaf99942000-01-19 13:45:07 +1100490 salen = sizeof(struct sockaddr_in);
Damien Miller34132e52000-01-14 15:45:46 +1100491 break;
492 case AF_INET6:
493 local = IN6_IS_ADDR_LOOPBACK(&(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
Damien Millereaf99942000-01-19 13:45:07 +1100494 salen = sizeof(struct sockaddr_in6);
Damien Miller34132e52000-01-14 15:45:46 +1100495 break;
496 default:
497 local = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100498 salen = sizeof(struct sockaddr_storage);
Damien Miller34132e52000-01-14 15:45:46 +1100499 break;
500 }
501 if (local) {
502 debug("Forcing accepting of host key for loopback/localhost.");
503 return;
504 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000505
Damien Milleraae6c611999-12-06 11:47:28 +1100506 /*
507 * Turn off check_host_ip for proxy connects, since
508 * we don't have the remote ip-address
509 */
510 if (options.proxy_command != NULL && options.check_host_ip)
511 options.check_host_ip = 0;
512
Ben Lindstrom46c16222000-12-22 01:43:59 +0000513
514
515 if (options.proxy_command == NULL) {
516 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
517 NULL, 0, NI_NUMERICHOST) != 0)
518 fatal("check_host_key: getnameinfo failed");
519 ip = xstrdup(ntop);
520 } else {
521 ip = xstrdup("<no hostip for proxy command>");
522 }
523
Damien Millera34a28b1999-12-14 10:47:15 +1100524 /*
525 * Store the host key from the known host file in here so that we can
526 * compare it with the key for the IP address.
527 */
Damien Miller450a7a12000-03-26 13:04:51 +1000528 file_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529
Damien Miller5428f641999-11-25 11:54:57 +1100530 /*
531 * Check if the host key is present in the user\'s list of known
532 * hosts or in the systemwide list.
533 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000534 host_file = user_hostfile;
535 host_status = check_host_in_hostfile(host_file, host, host_key, file_key, &host_line);
536 if (host_status == HOST_NEW) {
537 host_file = system_hostfile;
538 host_status = check_host_in_hostfile(host_file, host, host_key, file_key, &host_line);
539 }
Damien Miller5428f641999-11-25 11:54:57 +1100540 /*
Damien Miller5428f641999-11-25 11:54:57 +1100541 * Also perform check for the ip address, skip the check if we are
542 * localhost or the hostname was an ip address to begin with
543 */
Damien Miller95def091999-11-25 00:26:21 +1100544 if (options.check_host_ip && !local && strcmp(host, ip)) {
Damien Miller450a7a12000-03-26 13:04:51 +1000545 Key *ip_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Ben Lindstrom46c16222000-12-22 01:43:59 +0000547 ip_file = user_hostfile;
548 ip_status = check_host_in_hostfile(ip_file, ip, host_key, ip_key, &ip_line);
549 if (ip_status == HOST_NEW) {
550 ip_file = system_hostfile;
551 ip_status = check_host_in_hostfile(ip_file, ip, host_key, ip_key, &ip_line);
552 }
Damien Miller95def091999-11-25 00:26:21 +1100553 if (host_status == HOST_CHANGED &&
Damien Miller450a7a12000-03-26 13:04:51 +1000554 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
Damien Miller95def091999-11-25 00:26:21 +1100555 host_ip_differ = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller450a7a12000-03-26 13:04:51 +1000557 key_free(ip_key);
Damien Miller95def091999-11-25 00:26:21 +1100558 } else
559 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Miller450a7a12000-03-26 13:04:51 +1000561 key_free(file_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 switch (host_status) {
564 case HOST_OK:
565 /* The host is known and the key matches. */
Damien Millere247cc42000-05-07 12:03:14 +1000566 debug("Host '%.200s' is known and matches the %s host key.",
567 host, type);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000568 debug("Found key in %s:%d", host_file, host_line);
Damien Miller95def091999-11-25 00:26:21 +1100569 if (options.check_host_ip) {
570 if (ip_status == HOST_NEW) {
Damien Millereba71ba2000-04-29 23:57:08 +1000571 if (!add_host_to_hostfile(user_hostfile, ip, host_key))
Damien Millere247cc42000-05-07 12:03:14 +1000572 log("Failed to add the %s host key for IP address '%.30s' to the list of known hosts (%.30s).",
573 type, ip, user_hostfile);
Damien Miller95def091999-11-25 00:26:21 +1100574 else
Damien Millere247cc42000-05-07 12:03:14 +1000575 log("Warning: Permanently added the %s host key for IP address '%.30s' to the list of known hosts.",
576 type, ip);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000577 } else if (ip_status != HOST_OK) {
Damien Millere247cc42000-05-07 12:03:14 +1000578 log("Warning: the %s host key for '%.200s' differs from the key for the IP address '%.30s'",
579 type, host, ip);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000580 log("Found key in %s:%d", host_file, host_line);
581 if (ip_line != -1)
582 log("Offending key for IP in %s:%d", ip_file, ip_line);
583 }
Damien Miller95def091999-11-25 00:26:21 +1100584 }
585 break;
586 case HOST_NEW:
587 /* The host is new. */
588 if (options.strict_host_key_checking == 1) {
589 /* User has requested strict host key checking. We will not add the host key
590 automatically. The only alternative left is to abort. */
Damien Millere247cc42000-05-07 12:03:14 +1000591 fatal("No %s host key is known for %.200s and you have requested strict checking.", type, host);
Damien Miller95def091999-11-25 00:26:21 +1100592 } else if (options.strict_host_key_checking == 2) {
593 /* The default */
594 char prompt[1024];
Damien Miller450a7a12000-03-26 13:04:51 +1000595 char *fp = key_fingerprint(host_key);
Damien Miller95def091999-11-25 00:26:21 +1100596 snprintf(prompt, sizeof(prompt),
Ben Lindstromc72745a2000-12-02 19:03:54 +0000597 "The authenticity of host '%.200s (%s)' can't be established.\n"
Damien Millere247cc42000-05-07 12:03:14 +1000598 "%s key fingerprint is %s.\n"
Damien Miller037a0dc1999-12-07 15:38:31 +1100599 "Are you sure you want to continue connecting (yes/no)? ",
Ben Lindstromc72745a2000-12-02 19:03:54 +0000600 host, ip, type, fp);
Damien Miller95def091999-11-25 00:26:21 +1100601 if (!read_yes_or_no(prompt, -1))
602 fatal("Aborted by user!\n");
603 }
604 if (options.check_host_ip && ip_status == HOST_NEW && strcmp(host, ip)) {
605 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
606 hostp = hostline;
607 } else
608 hostp = host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Miller95def091999-11-25 00:26:21 +1100610 /* If not in strict mode, add the key automatically to the local known_hosts file. */
Damien Millereba71ba2000-04-29 23:57:08 +1000611 if (!add_host_to_hostfile(user_hostfile, hostp, host_key))
Damien Miller95def091999-11-25 00:26:21 +1100612 log("Failed to add the host to the list of known hosts (%.500s).",
Damien Millereba71ba2000-04-29 23:57:08 +1000613 user_hostfile);
Damien Miller95def091999-11-25 00:26:21 +1100614 else
Damien Millere247cc42000-05-07 12:03:14 +1000615 log("Warning: Permanently added '%.200s' (%s) to the list of known hosts.",
616 hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100617 break;
618 case HOST_CHANGED:
619 if (options.check_host_ip && host_ip_differ) {
620 char *msg;
621 if (ip_status == HOST_NEW)
622 msg = "is unknown";
623 else if (ip_status == HOST_OK)
624 msg = "is unchanged";
625 else
626 msg = "has a different value";
627 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
628 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
629 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +1000630 error("The %s host key for %s has changed,", type, host);
Damien Miller95def091999-11-25 00:26:21 +1100631 error("and the key for the according IP address %s", ip);
632 error("%s. This could either mean that", msg);
633 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000634 error("and its host key have changed at the same time.");
635 if (ip_line != -1)
636 error("Offending key for IP in %s:%d", ip_file, ip_line);
Damien Miller95def091999-11-25 00:26:21 +1100637 }
638 /* The host key has changed. */
639 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millerf039bad1999-12-21 20:57:20 +1100640 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
Damien Miller95def091999-11-25 00:26:21 +1100641 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
642 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
643 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Millere247cc42000-05-07 12:03:14 +1000644 error("It is also possible that the %s host key has just been changed.", type);
Damien Miller95def091999-11-25 00:26:21 +1100645 error("Please contact your system administrator.");
646 error("Add correct host key in %.100s to get rid of this message.",
Damien Millereba71ba2000-04-29 23:57:08 +1000647 user_hostfile);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000648 error("Offending key in %s:%d", host_file, host_line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649
Damien Miller5428f641999-11-25 11:54:57 +1100650 /*
651 * If strict host key checking is in use, the user will have
652 * to edit the key manually and we can only abort.
653 */
Damien Miller95def091999-11-25 00:26:21 +1100654 if (options.strict_host_key_checking)
Damien Millere247cc42000-05-07 12:03:14 +1000655 fatal("%s host key for %.200s has changed and you have requested strict checking.", type, host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656
Damien Miller5428f641999-11-25 11:54:57 +1100657 /*
658 * If strict host key checking has not been requested, allow
659 * the connection but without password authentication or
660 * agent forwarding.
661 */
Damien Miller95def091999-11-25 00:26:21 +1100662 if (options.password_authentication) {
663 error("Password authentication is disabled to avoid trojan horses.");
664 options.password_authentication = 0;
665 }
666 if (options.forward_agent) {
667 error("Agent forwarding is disabled to avoid trojan horses.");
668 options.forward_agent = 0;
669 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000670 if (options.forward_x11) {
671 error("X11 forwarding is disabled to avoid trojan horses.");
672 options.forward_x11 = 0;
673 }
674 if (options.num_local_forwards > 0 || options.num_remote_forwards > 0) {
675 error("Port forwarding is disabled to avoid trojan horses.");
676 options.num_local_forwards = options.num_remote_forwards = 0;
677 }
Damien Miller5428f641999-11-25 11:54:57 +1100678 /*
679 * XXX Should permit the user to change to use the new id.
680 * This could be done by converting the host key to an
681 * identifying sentence, tell that the host identifies itself
682 * by that sentence, and ask the user if he/she whishes to
683 * accept the authentication.
684 */
Damien Miller95def091999-11-25 00:26:21 +1100685 break;
686 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000687
688 xfree(ip);
Damien Millera34a28b1999-12-14 10:47:15 +1100689}
Damien Miller037a0dc1999-12-07 15:38:31 +1100690
Damien Miller396691a2000-01-20 22:44:08 +1100691/*
692 * Starts a dialog with the server, and authenticates the current user on the
693 * server. This does not need any extra privileges. The basic connection
694 * to the server must already have been established before this is called.
695 * If login fails, this function prints an error and never returns.
696 * This function does not require super-user privileges.
697 */
698void
699ssh_login(int host_key_valid, RSA *own_host_key, const char *orighost,
700 struct sockaddr *hostaddr, uid_t original_real_uid)
701{
Damien Millereba71ba2000-04-29 23:57:08 +1000702 struct passwd *pw;
Damien Miller396691a2000-01-20 22:44:08 +1100703 char *host, *cp;
Damien Millereba71ba2000-04-29 23:57:08 +1000704 char *server_user, *local_user;
705
706 /* Get local user name. Use it as server user if no user name was given. */
707 pw = getpwuid(original_real_uid);
708 if (!pw)
Damien Millercaf6dd62000-08-29 11:33:50 +1100709 fatal("User id %u not found from user database.", original_real_uid);
Damien Millereba71ba2000-04-29 23:57:08 +1000710 local_user = xstrdup(pw->pw_name);
711 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +1100712
713 /* Convert the user-supplied hostname into all lowercase. */
714 host = xstrdup(orighost);
715 for (cp = host; *cp; cp++)
716 if (isupper(*cp))
717 *cp = tolower(*cp);
718
719 /* Exchange protocol version identification strings with the server. */
720 ssh_exchange_identification();
721
722 /* Put the connection into non-blocking mode. */
723 packet_set_nonblocking();
724
Damien Miller396691a2000-01-20 22:44:08 +1100725 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +1100726 /* authenticate user */
Damien Miller1383bd82000-04-06 12:32:37 +1000727 if (compat20) {
728 ssh_kex2(host, hostaddr);
Damien Millereba71ba2000-04-29 23:57:08 +1000729 ssh_userauth2(server_user, host);
Damien Miller1383bd82000-04-06 12:32:37 +1000730 } else {
Damien Miller1383bd82000-04-06 12:32:37 +1000731 ssh_kex(host, hostaddr);
Damien Millereba71ba2000-04-29 23:57:08 +1000732 ssh_userauth(local_user, server_user, host, host_key_valid, own_host_key);
Damien Miller1383bd82000-04-06 12:32:37 +1000733 }
Damien Miller396691a2000-01-20 22:44:08 +1100734}