blob: e40ba984c4a31393a9ea9c4af8500c7de7f367b0 [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 Lindstrombf555ba2001-01-18 02:04:35 +000016RCSID("$OpenBSD: sshconnect.c,v 1.90 2001/01/13 18:32:50 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. */
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000119 execv(argv[0], argv);
120 perror(argv[0]);
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 gaierr;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000191 int on = 1;
192 int sock = -1, attempt;
193 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
194 struct addrinfo hints, *ai, *aitop;
Damien Miller95def091999-11-25 00:26:21 +1100195 struct linger linger;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000196 struct servent *sp;
Damien Miller95def091999-11-25 00:26:21 +1100197
Damien Millercaf6dd62000-08-29 11:33:50 +1100198 debug("ssh_connect: getuid %u geteuid %u anon %d",
199 (u_int) getuid(), (u_int) geteuid(), anonymous);
Damien Miller95def091999-11-25 00:26:21 +1100200
201 /* Get default port if port has not been set. */
202 if (port == 0) {
203 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
204 if (sp)
205 port = ntohs(sp->s_port);
206 else
207 port = SSH_DEFAULT_PORT;
208 }
209 /* If a proxy command is given, connect using it. */
210 if (proxy_command != NULL)
211 return ssh_proxy_connect(host, port, original_real_uid, proxy_command);
212
213 /* No proxy command. */
214
Damien Miller34132e52000-01-14 15:45:46 +1100215 memset(&hints, 0, sizeof(hints));
216 hints.ai_family = IPv4or6;
217 hints.ai_socktype = SOCK_STREAM;
218 snprintf(strport, sizeof strport, "%d", port);
219 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
220 fatal("%s: %.100s: %s", __progname, host,
221 gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +1100222
Damien Millera34a28b1999-12-14 10:47:15 +1100223 /*
224 * Try to connect several times. On some machines, the first time
225 * will sometimes fail. In general socket code appears to behave
226 * quite magically on many machines.
227 */
Damien Miller95def091999-11-25 00:26:21 +1100228 for (attempt = 0; attempt < connection_attempts; attempt++) {
229 if (attempt > 0)
230 debug("Trying again...");
231
Damien Miller34132e52000-01-14 15:45:46 +1100232 /* Loop through addresses for this host, and try each one in
Damien Miller4af51302000-04-16 11:18:38 +1000233 sequence until the connection succeeds. */
Damien Miller34132e52000-01-14 15:45:46 +1100234 for (ai = aitop; ai; ai = ai->ai_next) {
235 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
236 continue;
237 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
238 ntop, sizeof(ntop), strport, sizeof(strport),
239 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
240 error("ssh_connect: getnameinfo failed");
241 continue;
242 }
243 debug("Connecting to %.200s [%.100s] port %s.",
244 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100245
Damien Miller34132e52000-01-14 15:45:46 +1100246 /* Create a socket for connecting. */
Damien Miller4af51302000-04-16 11:18:38 +1000247 sock = ssh_create_socket(original_real_uid,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100248#ifdef HAVE_CYGWIN
Damien Miller0bc1bd82000-11-13 22:57:25 +1100249 !anonymous,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100250#else
Damien Miller0bc1bd82000-11-13 22:57:25 +1100251 !anonymous && geteuid() == 0,
Damien Millerbac2d8a2000-09-05 16:13:06 +1100252#endif
Damien Miller34132e52000-01-14 15:45:46 +1100253 ai->ai_family);
254 if (sock < 0)
255 continue;
Damien Miller95def091999-11-25 00:26:21 +1100256
Damien Miller34132e52000-01-14 15:45:46 +1100257 /* Connect to the host. We use the user's uid in the
258 * hope that it will help with tcp_wrappers showing
259 * the remote uid as root.
Damien Miller5428f641999-11-25 11:54:57 +1100260 */
Damien Miller95def091999-11-25 00:26:21 +1100261 temporarily_use_uid(original_real_uid);
Damien Miller34132e52000-01-14 15:45:46 +1100262 if (connect(sock, ai->ai_addr, ai->ai_addrlen) >= 0) {
263 /* Successful connection. */
Damien Miller95fe91b2000-05-13 12:31:22 +1000264 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100265 restore_uid();
266 break;
Damien Miller34132e52000-01-14 15:45:46 +1100267 } else {
Damien Miller95def091999-11-25 00:26:21 +1100268 debug("connect: %.100s", strerror(errno));
269 restore_uid();
Damien Miller5428f641999-11-25 11:54:57 +1100270 /*
271 * Close the failed socket; there appear to
272 * be some problems when reusing a socket for
273 * which connect() has already returned an
274 * error.
275 */
Damien Miller95def091999-11-25 00:26:21 +1100276 shutdown(sock, SHUT_RDWR);
277 close(sock);
278 }
Damien Miller95def091999-11-25 00:26:21 +1100279 }
Damien Miller34132e52000-01-14 15:45:46 +1100280 if (ai)
281 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100282
283 /* Sleep a moment before retrying. */
284 sleep(1);
285 }
Damien Miller34132e52000-01-14 15:45:46 +1100286
287 freeaddrinfo(aitop);
288
Damien Miller95def091999-11-25 00:26:21 +1100289 /* Return failure if we didn't get a successful connection. */
290 if (attempt >= connection_attempts)
291 return 0;
292
293 debug("Connection established.");
294
Damien Miller5428f641999-11-25 11:54:57 +1100295 /*
296 * Set socket options. We would like the socket to disappear as soon
297 * as it has been closed for whatever reason.
298 */
299 /* setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +1100300 linger.l_onoff = 1;
301 linger.l_linger = 5;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000302 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
303
304 /* Set keepalives if requested. */
305 if (options.keepalives &&
306 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
307 sizeof(on)) < 0)
308 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100309
310 /* Set the connection. */
311 packet_set_connection(sock, sock);
312
313 return 1;
314}
315
Damien Milleraae6c611999-12-06 11:47:28 +1100316/*
Damien Miller95def091999-11-25 00:26:21 +1100317 * Waits for the server identification string, and sends our own
318 * identification string.
319 */
320void
321ssh_exchange_identification()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322{
Damien Miller95def091999-11-25 00:26:21 +1100323 char buf[256], remote_version[256]; /* must be same size! */
Damien Miller78928792000-04-12 20:17:38 +1000324 int remote_major, remote_minor, i, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100325 int connection_in = packet_get_connection_in();
326 int connection_out = packet_get_connection_out();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100327 int minor1 = PROTOCOL_MINOR_1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328
Damien Miller95def091999-11-25 00:26:21 +1100329 /* Read other side\'s version identification. */
Damien Millerf6d9e222000-06-18 14:50:44 +1000330 for (;;) {
331 for (i = 0; i < sizeof(buf) - 1; i++) {
332 int len = atomicio(read, connection_in, &buf[i], 1);
333 if (len < 0)
334 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
335 if (len != 1)
336 fatal("ssh_exchange_identification: Connection closed by remote host");
337 if (buf[i] == '\r') {
338 buf[i] = '\n';
339 buf[i + 1] = 0;
340 continue; /**XXX wait for \n */
341 }
342 if (buf[i] == '\n') {
343 buf[i + 1] = 0;
344 break;
345 }
Damien Miller95def091999-11-25 00:26:21 +1100346 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000347 buf[sizeof(buf) - 1] = 0;
348 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100349 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000350 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351 }
Damien Miller1383bd82000-04-06 12:32:37 +1000352 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100353
Damien Miller5428f641999-11-25 11:54:57 +1100354 /*
355 * Check that the versions match. In future this might accept
356 * several versions and set appropriate flags to handle them.
357 */
Damien Miller1383bd82000-04-06 12:32:37 +1000358 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
359 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100360 fatal("Bad remote protocol version identification: '%.100s'", buf);
361 debug("Remote protocol version %d.%d, remote software version %.100s",
362 remote_major, remote_minor, remote_version);
363
Damien Miller1383bd82000-04-06 12:32:37 +1000364 compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000365 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000366
Damien Miller78928792000-04-12 20:17:38 +1000367 switch(remote_major) {
368 case 1:
369 if (remote_minor == 99 &&
370 (options.protocol & SSH_PROTO_2) &&
371 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
372 enable_compat20();
373 break;
Damien Miller95def091999-11-25 00:26:21 +1100374 }
Damien Miller78928792000-04-12 20:17:38 +1000375 if (!(options.protocol & SSH_PROTO_1)) {
376 mismatch = 1;
377 break;
378 }
379 if (remote_minor < 3) {
380 fatal("Remote machine has too old SSH software version.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100381 } else if (remote_minor == 3 || remote_minor == 4) {
Damien Miller78928792000-04-12 20:17:38 +1000382 /* We speak 1.3, too. */
383 enable_compat13();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100384 minor1 = 3;
Damien Miller78928792000-04-12 20:17:38 +1000385 if (options.forward_agent) {
386 log("Agent forwarding disabled for protocol 1.3");
387 options.forward_agent = 0;
388 }
389 }
390 break;
391 case 2:
392 if (options.protocol & SSH_PROTO_2) {
393 enable_compat20();
394 break;
395 }
396 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000397 default:
Damien Miller78928792000-04-12 20:17:38 +1000398 mismatch = 1;
399 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400 }
Damien Miller78928792000-04-12 20:17:38 +1000401 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100402 fatal("Protocol major versions differ: %d vs. %d",
Damien Miller78928792000-04-12 20:17:38 +1000403 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
404 remote_major);
Damien Millereba71ba2000-04-29 23:57:08 +1000405 if (compat20)
406 packet_set_ssh2_format();
Damien Miller95def091999-11-25 00:26:21 +1100407 /* Send our own protocol version identification. */
408 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
Damien Miller78928792000-04-12 20:17:38 +1000409 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100410 compat20 ? PROTOCOL_MINOR_2 : minor1,
Damien Miller1383bd82000-04-06 12:32:37 +1000411 SSH_VERSION);
Damien Miller037a0dc1999-12-07 15:38:31 +1100412 if (atomicio(write, connection_out, buf, strlen(buf)) != strlen(buf))
Damien Miller95def091999-11-25 00:26:21 +1100413 fatal("write: %.100s", strerror(errno));
Damien Miller1383bd82000-04-06 12:32:37 +1000414 client_version_string = xstrdup(buf);
415 chop(client_version_string);
416 chop(server_version_string);
417 debug("Local version string %.100s", client_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418}
419
Damien Miller95def091999-11-25 00:26:21 +1100420int
421read_yes_or_no(const char *prompt, int defval)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422{
Damien Miller95def091999-11-25 00:26:21 +1100423 char buf[1024];
424 FILE *f;
425 int retval = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000427 if (isatty(STDIN_FILENO))
Damien Miller95def091999-11-25 00:26:21 +1100428 f = stdin;
429 else
430 f = fopen("/dev/tty", "rw");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431
Damien Miller95def091999-11-25 00:26:21 +1100432 if (f == NULL)
433 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434
Damien Miller95def091999-11-25 00:26:21 +1100435 fflush(stdout);
436
437 while (1) {
438 fprintf(stderr, "%s", prompt);
439 if (fgets(buf, sizeof(buf), f) == NULL) {
440 /* Print a newline (the prompt probably didn\'t have one). */
441 fprintf(stderr, "\n");
442 strlcpy(buf, "no", sizeof buf);
443 }
444 /* Remove newline from response. */
445 if (strchr(buf, '\n'))
446 *strchr(buf, '\n') = 0;
447
448 if (buf[0] == 0)
449 retval = defval;
450 if (strcmp(buf, "yes") == 0)
451 retval = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100452 else if (strcmp(buf, "no") == 0)
Damien Miller95def091999-11-25 00:26:21 +1100453 retval = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100454 else
455 fprintf(stderr, "Please type 'yes' or 'no'.\n");
Damien Miller95def091999-11-25 00:26:21 +1100456
457 if (retval != -1) {
458 if (f != stdin)
459 fclose(f);
460 return retval;
461 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000462 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463}
464
Damien Miller95def091999-11-25 00:26:21 +1100465/*
Damien Millera34a28b1999-12-14 10:47:15 +1100466 * check whether the supplied host key is valid, return only if ok.
Damien Miller95def091999-11-25 00:26:21 +1100467 */
Damien Millera34a28b1999-12-14 10:47:15 +1100468
Damien Miller95def091999-11-25 00:26:21 +1100469void
Damien Millereba71ba2000-04-29 23:57:08 +1000470check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
471 const char *user_hostfile, const char *system_hostfile)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472{
Damien Miller450a7a12000-03-26 13:04:51 +1000473 Key *file_key;
Damien Millere247cc42000-05-07 12:03:14 +1000474 char *type = key_type(host_key);
Damien Millera34a28b1999-12-14 10:47:15 +1100475 char *ip = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100476 char hostline[1000], *hostp;
Damien Miller95def091999-11-25 00:26:21 +1100477 HostStatus host_status;
478 HostStatus ip_status;
Damien Miller34132e52000-01-14 15:45:46 +1100479 int local = 0, host_ip_differ = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100480 int salen;
Damien Miller34132e52000-01-14 15:45:46 +1100481 char ntop[NI_MAXHOST];
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000482 int host_line, ip_line;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000483 const char *host_file = NULL, *ip_file = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100484
485 /*
486 * Force accepting of the host key for loopback/localhost. The
487 * problem is that if the home directory is NFS-mounted to multiple
488 * machines, localhost will refer to a different machine in each of
489 * them, and the user will get bogus HOST_CHANGED warnings. This
490 * essentially disables host authentication for localhost; however,
491 * this is probably not a real problem.
492 */
Damien Millereba71ba2000-04-29 23:57:08 +1000493 /** hostaddr == 0! */
Damien Miller34132e52000-01-14 15:45:46 +1100494 switch (hostaddr->sa_family) {
495 case AF_INET:
496 local = (ntohl(((struct sockaddr_in *)hostaddr)->sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
Damien Millereaf99942000-01-19 13:45:07 +1100497 salen = sizeof(struct sockaddr_in);
Damien Miller34132e52000-01-14 15:45:46 +1100498 break;
499 case AF_INET6:
500 local = IN6_IS_ADDR_LOOPBACK(&(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
Damien Millereaf99942000-01-19 13:45:07 +1100501 salen = sizeof(struct sockaddr_in6);
Damien Miller34132e52000-01-14 15:45:46 +1100502 break;
503 default:
504 local = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100505 salen = sizeof(struct sockaddr_storage);
Damien Miller34132e52000-01-14 15:45:46 +1100506 break;
507 }
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000508 if (local && options.host_key_alias == NULL) {
509 debug("Forcing accepting of host key for "
510 "loopback/localhost.");
511 return;
Damien Miller34132e52000-01-14 15:45:46 +1100512 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513
Damien Milleraae6c611999-12-06 11:47:28 +1100514 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000515 * We don't have the remote ip-address for connections
516 * using a proxy command
Damien Milleraae6c611999-12-06 11:47:28 +1100517 */
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000518 if (options.proxy_command == NULL) {
519 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
520 NULL, 0, NI_NUMERICHOST) != 0)
521 fatal("check_host_key: getnameinfo failed");
522 ip = xstrdup(ntop);
523 } else {
524 ip = xstrdup("<no hostip for proxy command>");
525 }
526 /*
527 * Turn off check_host_ip if the connection is to localhost, via proxy
528 * command or if we don't have a hostname to compare with
529 */
530 if (options.check_host_ip &&
531 (local || strcmp(host, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100532 options.check_host_ip = 0;
533
Damien Millera34a28b1999-12-14 10:47:15 +1100534 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000535 * Allow the user to record the key under a different name. This is
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000536 * useful for ssh tunneling over forwarded connections or if you run
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000537 * multiple sshd's on different ports on the same machine.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000538 */
539 if (options.host_key_alias != NULL) {
540 host = options.host_key_alias;
541 debug("using hostkeyalias: %s", host);
542 }
543
544 /*
Damien Millera34a28b1999-12-14 10:47:15 +1100545 * Store the host key from the known host file in here so that we can
546 * compare it with the key for the IP address.
547 */
Damien Miller450a7a12000-03-26 13:04:51 +1000548 file_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549
Damien Miller5428f641999-11-25 11:54:57 +1100550 /*
551 * Check if the host key is present in the user\'s list of known
552 * hosts or in the systemwide list.
553 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000554 host_file = user_hostfile;
555 host_status = check_host_in_hostfile(host_file, host, host_key, file_key, &host_line);
556 if (host_status == HOST_NEW) {
557 host_file = system_hostfile;
558 host_status = check_host_in_hostfile(host_file, host, host_key, file_key, &host_line);
559 }
Damien Miller5428f641999-11-25 11:54:57 +1100560 /*
Damien Miller5428f641999-11-25 11:54:57 +1100561 * Also perform check for the ip address, skip the check if we are
562 * localhost or the hostname was an ip address to begin with
563 */
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000564 if (options.check_host_ip) {
Damien Miller450a7a12000-03-26 13:04:51 +1000565 Key *ip_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Ben Lindstrom46c16222000-12-22 01:43:59 +0000567 ip_file = user_hostfile;
568 ip_status = check_host_in_hostfile(ip_file, ip, host_key, ip_key, &ip_line);
569 if (ip_status == HOST_NEW) {
570 ip_file = system_hostfile;
571 ip_status = check_host_in_hostfile(ip_file, ip, host_key, ip_key, &ip_line);
572 }
Damien Miller95def091999-11-25 00:26:21 +1100573 if (host_status == HOST_CHANGED &&
Damien Miller450a7a12000-03-26 13:04:51 +1000574 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
Damien Miller95def091999-11-25 00:26:21 +1100575 host_ip_differ = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller450a7a12000-03-26 13:04:51 +1000577 key_free(ip_key);
Damien Miller95def091999-11-25 00:26:21 +1100578 } else
579 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Damien Miller450a7a12000-03-26 13:04:51 +1000581 key_free(file_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller95def091999-11-25 00:26:21 +1100583 switch (host_status) {
584 case HOST_OK:
585 /* The host is known and the key matches. */
Damien Millere247cc42000-05-07 12:03:14 +1000586 debug("Host '%.200s' is known and matches the %s host key.",
587 host, type);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000588 debug("Found key in %s:%d", host_file, host_line);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000589 if (options.check_host_ip && ip_status == HOST_NEW) {
590 if (!add_host_to_hostfile(user_hostfile, ip, host_key))
591 log("Failed to add the %s host key for IP address '%.30s' to the list of known hosts (%.30s).",
592 type, ip, user_hostfile);
593 else
594 log("Warning: Permanently added the %s host key for IP address '%.30s' to the list of known hosts.",
595 type, ip);
Damien Miller95def091999-11-25 00:26:21 +1100596 }
597 break;
598 case HOST_NEW:
599 /* The host is new. */
600 if (options.strict_host_key_checking == 1) {
601 /* User has requested strict host key checking. We will not add the host key
602 automatically. The only alternative left is to abort. */
Damien Millere247cc42000-05-07 12:03:14 +1000603 fatal("No %s host key is known for %.200s and you have requested strict checking.", type, host);
Damien Miller95def091999-11-25 00:26:21 +1100604 } else if (options.strict_host_key_checking == 2) {
605 /* The default */
606 char prompt[1024];
Damien Miller95def091999-11-25 00:26:21 +1100607 snprintf(prompt, sizeof(prompt),
Ben Lindstromc72745a2000-12-02 19:03:54 +0000608 "The authenticity of host '%.200s (%s)' can't be established.\n"
Damien Millere247cc42000-05-07 12:03:14 +1000609 "%s key fingerprint is %s.\n"
Damien Miller037a0dc1999-12-07 15:38:31 +1100610 "Are you sure you want to continue connecting (yes/no)? ",
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000611 host, ip, type, key_fingerprint(host_key));
Damien Miller95def091999-11-25 00:26:21 +1100612 if (!read_yes_or_no(prompt, -1))
613 fatal("Aborted by user!\n");
614 }
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000615 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller95def091999-11-25 00:26:21 +1100616 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
617 hostp = hostline;
618 } else
619 hostp = host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Damien Miller95def091999-11-25 00:26:21 +1100621 /* If not in strict mode, add the key automatically to the local known_hosts file. */
Damien Millereba71ba2000-04-29 23:57:08 +1000622 if (!add_host_to_hostfile(user_hostfile, hostp, host_key))
Damien Miller95def091999-11-25 00:26:21 +1100623 log("Failed to add the host to the list of known hosts (%.500s).",
Damien Millereba71ba2000-04-29 23:57:08 +1000624 user_hostfile);
Damien Miller95def091999-11-25 00:26:21 +1100625 else
Damien Millere247cc42000-05-07 12:03:14 +1000626 log("Warning: Permanently added '%.200s' (%s) to the list of known hosts.",
627 hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100628 break;
629 case HOST_CHANGED:
630 if (options.check_host_ip && host_ip_differ) {
631 char *msg;
632 if (ip_status == HOST_NEW)
633 msg = "is unknown";
634 else if (ip_status == HOST_OK)
635 msg = "is unchanged";
636 else
637 msg = "has a different value";
638 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
639 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
640 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +1000641 error("The %s host key for %s has changed,", type, host);
Damien Miller95def091999-11-25 00:26:21 +1100642 error("and the key for the according IP address %s", ip);
643 error("%s. This could either mean that", msg);
644 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000645 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000646 if (ip_status != HOST_NEW)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000647 error("Offending key for IP in %s:%d", ip_file, ip_line);
Damien Miller95def091999-11-25 00:26:21 +1100648 }
649 /* The host key has changed. */
650 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millerf039bad1999-12-21 20:57:20 +1100651 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
Damien Miller95def091999-11-25 00:26:21 +1100652 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
653 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
654 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Millere247cc42000-05-07 12:03:14 +1000655 error("It is also possible that the %s host key has just been changed.", type);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000656 error("The fingerprint for the %s key sent by the remote host is\n%s.",
657 type, key_fingerprint(host_key));
Damien Miller95def091999-11-25 00:26:21 +1100658 error("Please contact your system administrator.");
659 error("Add correct host key in %.100s to get rid of this message.",
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000660 user_hostfile);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000661 error("Offending key in %s:%d", host_file, host_line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662
Damien Miller5428f641999-11-25 11:54:57 +1100663 /*
664 * If strict host key checking is in use, the user will have
665 * to edit the key manually and we can only abort.
666 */
Damien Miller95def091999-11-25 00:26:21 +1100667 if (options.strict_host_key_checking)
Damien Millere247cc42000-05-07 12:03:14 +1000668 fatal("%s host key for %.200s has changed and you have requested strict checking.", type, host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669
Damien Miller5428f641999-11-25 11:54:57 +1100670 /*
671 * If strict host key checking has not been requested, allow
672 * the connection but without password authentication or
673 * agent forwarding.
674 */
Damien Miller95def091999-11-25 00:26:21 +1100675 if (options.password_authentication) {
676 error("Password authentication is disabled to avoid trojan horses.");
677 options.password_authentication = 0;
678 }
679 if (options.forward_agent) {
680 error("Agent forwarding is disabled to avoid trojan horses.");
681 options.forward_agent = 0;
682 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000683 if (options.forward_x11) {
684 error("X11 forwarding is disabled to avoid trojan horses.");
685 options.forward_x11 = 0;
686 }
687 if (options.num_local_forwards > 0 || options.num_remote_forwards > 0) {
688 error("Port forwarding is disabled to avoid trojan horses.");
689 options.num_local_forwards = options.num_remote_forwards = 0;
690 }
Damien Miller5428f641999-11-25 11:54:57 +1100691 /*
692 * XXX Should permit the user to change to use the new id.
693 * This could be done by converting the host key to an
694 * identifying sentence, tell that the host identifies itself
695 * by that sentence, and ask the user if he/she whishes to
696 * accept the authentication.
697 */
Damien Miller95def091999-11-25 00:26:21 +1100698 break;
699 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000700
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000701 if (options.check_host_ip && host_status != HOST_CHANGED &&
702 ip_status == HOST_CHANGED) {
703 log("Warning: the %s host key for '%.200s' "
704 "differs from the key for the IP address '%.30s'",
705 type, host, ip);
706 if (host_status == HOST_OK)
707 log("Matching host key in %s:%d", host_file, host_line);
708 log("Offending key for IP in %s:%d", ip_file, ip_line);
709 if (options.strict_host_key_checking == 1) {
710 fatal("Exiting, you have requested strict checking.");
711 } else if (options.strict_host_key_checking == 2) {
712 if (!read_yes_or_no("Continue?", -1))
713 fatal("Aborted by user!\n");
714 }
715 }
716
Ben Lindstromc72745a2000-12-02 19:03:54 +0000717 xfree(ip);
Damien Millera34a28b1999-12-14 10:47:15 +1100718}
Damien Miller037a0dc1999-12-07 15:38:31 +1100719
Damien Miller396691a2000-01-20 22:44:08 +1100720/*
721 * Starts a dialog with the server, and authenticates the current user on the
722 * server. This does not need any extra privileges. The basic connection
723 * to the server must already have been established before this is called.
724 * If login fails, this function prints an error and never returns.
725 * This function does not require super-user privileges.
726 */
727void
728ssh_login(int host_key_valid, RSA *own_host_key, const char *orighost,
729 struct sockaddr *hostaddr, uid_t original_real_uid)
730{
Damien Millereba71ba2000-04-29 23:57:08 +1000731 struct passwd *pw;
Damien Miller396691a2000-01-20 22:44:08 +1100732 char *host, *cp;
Damien Millereba71ba2000-04-29 23:57:08 +1000733 char *server_user, *local_user;
734
735 /* Get local user name. Use it as server user if no user name was given. */
736 pw = getpwuid(original_real_uid);
737 if (!pw)
Damien Millercaf6dd62000-08-29 11:33:50 +1100738 fatal("User id %u not found from user database.", original_real_uid);
Damien Millereba71ba2000-04-29 23:57:08 +1000739 local_user = xstrdup(pw->pw_name);
740 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +1100741
742 /* Convert the user-supplied hostname into all lowercase. */
743 host = xstrdup(orighost);
744 for (cp = host; *cp; cp++)
745 if (isupper(*cp))
746 *cp = tolower(*cp);
747
748 /* Exchange protocol version identification strings with the server. */
749 ssh_exchange_identification();
750
751 /* Put the connection into non-blocking mode. */
752 packet_set_nonblocking();
753
Damien Miller396691a2000-01-20 22:44:08 +1100754 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +1100755 /* authenticate user */
Damien Miller1383bd82000-04-06 12:32:37 +1000756 if (compat20) {
757 ssh_kex2(host, hostaddr);
Damien Millereba71ba2000-04-29 23:57:08 +1000758 ssh_userauth2(server_user, host);
Damien Miller1383bd82000-04-06 12:32:37 +1000759 } else {
Damien Miller1383bd82000-04-06 12:32:37 +1000760 ssh_kex(host, hostaddr);
Damien Millereba71ba2000-04-29 23:57:08 +1000761 ssh_userauth(local_user, server_user, host, host_key_valid, own_host_key);
Damien Miller1383bd82000-04-06 12:32:37 +1000762 }
Damien Miller396691a2000-01-20 22:44:08 +1100763}