]> andersk Git - openssh.git/blame - sshconnect.c
- (bal) [uidswap.c] SCO compile correction by gert@greenie.muc.de
[openssh.git] / sshconnect.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Code to connect to a remote host, and to perform the client side of the
6 * login (authentication) dialog.
bcbf86ec 7 *
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".
5260325f 13 */
8efc0c15 14
15#include "includes.h"
c750d869 16RCSID("$OpenBSD: sshconnect.c,v 1.131 2002/07/12 13:29:09 itojun Exp $");
8efc0c15 17
8ce64345 18#include <openssl/bn.h>
a306f2dd 19
42f11eb2 20#include "ssh.h"
8efc0c15 21#include "xmalloc.h"
22#include "rsa.h"
8ce64345 23#include "buffer.h"
8efc0c15 24#include "packet.h"
8efc0c15 25#include "uidswap.h"
26#include "compat.h"
4fe2af09 27#include "key.h"
a306f2dd 28#include "sshconnect.h"
4fe2af09 29#include "hostfile.h"
42f11eb2 30#include "log.h"
31#include "readconf.h"
32#include "atomicio.h"
33#include "misc.h"
616a6b93 34#include "readpass.h"
8efc0c15 35
a306f2dd 36char *client_version_string = NULL;
37char *server_version_string = NULL;
8ce64345 38
3fb156df 39/* import */
57112b5a 40extern Options options;
48e671d5 41extern char *__progname;
3fb156df 42extern uid_t original_real_uid;
43extern uid_t original_effective_uid;
57112b5a 44
a704dd54 45#ifndef INET6_ADDRSTRLEN /* for non IPv6 machines */
46#define INET6_ADDRSTRLEN 46
47#endif
48
5260325f 49/*
50 * Connect to the given ssh server using a proxy command.
51 */
396c147e 52static int
3fb156df 53ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
8efc0c15 54{
5260325f 55 Buffer command;
56 const char *cp;
57 char *command_string;
58 int pin[2], pout[2];
9da5c3c9 59 pid_t pid;
48e671d5 60 char strport[NI_MAXSERV];
5260325f 61
62 /* Convert the port number into a string. */
48e671d5 63 snprintf(strport, sizeof strport, "%hu", port);
5260325f 64
65 /* Build the final command string in the buffer by making the
66 appropriate substitutions to the given proxy command. */
67 buffer_init(&command);
68 for (cp = proxy_command; *cp; cp++) {
69 if (cp[0] == '%' && cp[1] == '%') {
70 buffer_append(&command, "%", 1);
71 cp++;
72 continue;
73 }
74 if (cp[0] == '%' && cp[1] == 'h') {
75 buffer_append(&command, host, strlen(host));
76 cp++;
77 continue;
78 }
79 if (cp[0] == '%' && cp[1] == 'p') {
48e671d5 80 buffer_append(&command, strport, strlen(strport));
5260325f 81 cp++;
82 continue;
83 }
84 buffer_append(&command, cp, 1);
8efc0c15 85 }
5260325f 86 buffer_append(&command, "\0", 1);
87
88 /* Get the final command string. */
89 command_string = buffer_ptr(&command);
90
91 /* Create pipes for communicating with the proxy. */
92 if (pipe(pin) < 0 || pipe(pout) < 0)
93 fatal("Could not create pipes to communicate with the proxy: %.100s",
184eed6a 94 strerror(errno));
5260325f 95
96 debug("Executing proxy command: %.500s", command_string);
97
98 /* Fork and execute the proxy command. */
99 if ((pid = fork()) == 0) {
100 char *argv[10];
101
102 /* Child. Permanently give up superuser privileges. */
3fb156df 103 seteuid(original_real_uid);
104 setuid(original_real_uid);
5260325f 105
106 /* Redirect stdin and stdout. */
107 close(pin[1]);
108 if (pin[0] != 0) {
109 if (dup2(pin[0], 0) < 0)
110 perror("dup2 stdin");
111 close(pin[0]);
112 }
113 close(pout[0]);
114 if (dup2(pout[1], 1) < 0)
115 perror("dup2 stdout");
116 /* Cannot be 1 because pin allocated two descriptors. */
117 close(pout[1]);
118
119 /* Stderr is left as it is so that error messages get
120 printed on the user's terminal. */
30228d7c 121 argv[0] = _PATH_BSHELL;
5260325f 122 argv[1] = "-c";
123 argv[2] = command_string;
124 argv[3] = NULL;
125
126 /* Execute the proxy command. Note that we gave up any
127 extra privileges above. */
328654d8 128 execv(argv[0], argv);
129 perror(argv[0]);
5260325f 130 exit(1);
8efc0c15 131 }
5260325f 132 /* Parent. */
133 if (pid < 0)
134 fatal("fork failed: %.100s", strerror(errno));
135
136 /* Close child side of the descriptors. */
137 close(pin[0]);
138 close(pout[1]);
139
140 /* Free the command name. */
141 buffer_free(&command);
142
143 /* Set the connection file descriptors. */
144 packet_set_connection(pout[0], pin[1]);
8efc0c15 145
ce773142 146 /* Indicate OK return */
147 return 0;
5260325f 148}
8efc0c15 149
5260325f 150/*
151 * Creates a (possibly privileged) socket for use as the ssh connection.
152 */
396c147e 153static int
3fb156df 154ssh_create_socket(int privileged, int family)
8efc0c15 155{
3435f5a6 156 int sock, gaierr;
157 struct addrinfo hints, *res;
5260325f 158
aa3378df 159 /*
160 * If we are running as root and want to connect to a privileged
161 * port, bind our own socket to a privileged port.
162 */
5260325f 163 if (privileged) {
164 int p = IPPORT_RESERVED - 1;
3fb156df 165 PRIV_START;
48e671d5 166 sock = rresvport_af(&p, family);
3fb156df 167 PRIV_END;
5260325f 168 if (sock < 0)
c8d54615 169 error("rresvport: af=%d %.100s", family, strerror(errno));
170 else
171 debug("Allocated local port %d.", p);
3435f5a6 172 return sock;
173 }
3435f5a6 174 sock = socket(family, SOCK_STREAM, 0);
175 if (sock < 0)
176 error("socket: %.100s", strerror(errno));
3435f5a6 177
178 /* Bind the socket to an alternative local IP address */
179 if (options.bind_address == NULL)
180 return sock;
181
182 memset(&hints, 0, sizeof(hints));
32af6a3f 183 hints.ai_family = family;
3435f5a6 184 hints.ai_socktype = SOCK_STREAM;
185 hints.ai_flags = AI_PASSIVE;
186 gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);
187 if (gaierr) {
188 error("getaddrinfo: %s: %s", options.bind_address,
189 gai_strerror(gaierr));
190 close(sock);
191 return -1;
192 }
193 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
194 error("bind: %s: %s", options.bind_address, strerror(errno));
195 close(sock);
196 freeaddrinfo(res);
197 return -1;
5260325f 198 }
3435f5a6 199 freeaddrinfo(res);
5260325f 200 return sock;
8efc0c15 201}
202
5260325f 203/*
48e671d5 204 * Opens a TCP/IP connection to the remote server on the given host.
205 * The address of the remote host will be returned in hostaddr.
3fb156df 206 * If port is 0, the default port will be used. If needpriv is true,
5260325f 207 * a privileged port will be allocated to make the connection.
3fb156df 208 * This requires super-user privileges if needpriv is true.
5260325f 209 * Connection_attempts specifies the maximum number of tries (one per
210 * second). If proxy_command is non-NULL, it specifies the command (with %h
211 * and %p substituted for host and port, respectively) to use to contact
212 * the daemon.
ce773142 213 * Return values:
214 * 0 for OK
215 * ECONNREFUSED if we got a "Connection Refused" by the peer on any address
216 * ECONNABORTED if we failed without a "Connection refused"
217 * Suitable error messages for the connection failure will already have been
218 * printed.
5260325f 219 */
220int
48e671d5 221ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
dab89049 222 u_short port, int family, int connection_attempts,
3fb156df 223 int needpriv, const char *proxy_command)
8efc0c15 224{
b5c334cc 225 int gaierr;
226 int on = 1;
48e671d5 227 int sock = -1, attempt;
48e671d5 228 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
b5c334cc 229 struct addrinfo hints, *ai, *aitop;
5260325f 230 struct linger linger;
b5c334cc 231 struct servent *sp;
ce773142 232 /*
233 * Did we get only other errors than "Connection refused" (which
234 * should block fallback to rsh and similar), or did we get at least
235 * one "Connection refused"?
236 */
237 int full_failure = 1;
5260325f 238
3fb156df 239 debug("ssh_connect: needpriv %d", needpriv);
5260325f 240
241 /* Get default port if port has not been set. */
242 if (port == 0) {
243 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
244 if (sp)
245 port = ntohs(sp->s_port);
246 else
247 port = SSH_DEFAULT_PORT;
8efc0c15 248 }
5260325f 249 /* If a proxy command is given, connect using it. */
250 if (proxy_command != NULL)
3fb156df 251 return ssh_proxy_connect(host, port, proxy_command);
5260325f 252
253 /* No proxy command. */
254
48e671d5 255 memset(&hints, 0, sizeof(hints));
dab89049 256 hints.ai_family = family;
48e671d5 257 hints.ai_socktype = SOCK_STREAM;
d6133f43 258 snprintf(strport, sizeof strport, "%u", port);
48e671d5 259 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
260 fatal("%s: %.100s: %s", __progname, host,
261 gai_strerror(gaierr));
5260325f 262
95f1eccc 263 /*
264 * Try to connect several times. On some machines, the first time
265 * will sometimes fail. In general socket code appears to behave
266 * quite magically on many machines.
ce773142 267 */
268 for (attempt = 0; ;) {
5260325f 269 if (attempt > 0)
270 debug("Trying again...");
271
48e671d5 272 /* Loop through addresses for this host, and try each one in
6ae2364d 273 sequence until the connection succeeds. */
48e671d5 274 for (ai = aitop; ai; ai = ai->ai_next) {
275 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
276 continue;
277 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
278 ntop, sizeof(ntop), strport, sizeof(strport),
279 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
280 error("ssh_connect: getnameinfo failed");
281 continue;
282 }
283 debug("Connecting to %.200s [%.100s] port %s.",
284 host, ntop, strport);
285
286 /* Create a socket for connecting. */
3fb156df 287 sock = ssh_create_socket(needpriv, ai->ai_family);
48e671d5 288 if (sock < 0)
ce773142 289 /* Any error is already output */
48e671d5 290 continue;
291
48e671d5 292 if (connect(sock, ai->ai_addr, ai->ai_addrlen) >= 0) {
293 /* Successful connection. */
cd332296 294 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
5260325f 295 break;
48e671d5 296 } else {
ce773142 297 if (errno == ECONNREFUSED)
298 full_failure = 0;
c750d869 299 debug("connect to address %s port %s: %s",
300 ntop, strport, strerror(errno));
aa3378df 301 /*
302 * Close the failed socket; there appear to
303 * be some problems when reusing a socket for
304 * which connect() has already returned an
305 * error.
306 */
5260325f 307 close(sock);
308 }
8efc0c15 309 }
48e671d5 310 if (ai)
311 break; /* Successful connection. */
8efc0c15 312
ce773142 313 attempt++;
314 if (attempt >= connection_attempts)
315 break;
5260325f 316 /* Sleep a moment before retrying. */
317 sleep(1);
318 }
48e671d5 319
320 freeaddrinfo(aitop);
321
5260325f 322 /* Return failure if we didn't get a successful connection. */
9bd68577 323 if (attempt >= connection_attempts) {
324 log("ssh: connect to host %s port %s: %s",
325 host, strport, strerror(errno));
ce773142 326 return full_failure ? ECONNABORTED : ECONNREFUSED;
9bd68577 327 }
8efc0c15 328
5260325f 329 debug("Connection established.");
8efc0c15 330
aa3378df 331 /*
332 * Set socket options. We would like the socket to disappear as soon
333 * as it has been closed for whatever reason.
334 */
335 /* setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
5260325f 336 linger.l_onoff = 1;
337 linger.l_linger = 5;
b5c334cc 338 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
339
340 /* Set keepalives if requested. */
341 if (options.keepalives &&
342 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
343 sizeof(on)) < 0)
344 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
8efc0c15 345
5260325f 346 /* Set the connection. */
347 packet_set_connection(sock, sock);
8efc0c15 348
ce773142 349 return 0;
8efc0c15 350}
351
5260325f 352/*
353 * Waits for the server identification string, and sends our own
354 * identification string.
355 */
396c147e 356static void
5ca51e19 357ssh_exchange_identification(void)
8efc0c15 358{
5260325f 359 char buf[256], remote_version[256]; /* must be same size! */
a8be9f80 360 int remote_major, remote_minor, i, mismatch;
5260325f 361 int connection_in = packet_get_connection_in();
362 int connection_out = packet_get_connection_out();
2b87da3b 363 int minor1 = PROTOCOL_MINOR_1;
5260325f 364
365 /* Read other side\'s version identification. */
38c295d6 366 for (;;) {
367 for (i = 0; i < sizeof(buf) - 1; i++) {
368 int len = atomicio(read, connection_in, &buf[i], 1);
369 if (len < 0)
370 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
371 if (len != 1)
372 fatal("ssh_exchange_identification: Connection closed by remote host");
373 if (buf[i] == '\r') {
374 buf[i] = '\n';
375 buf[i + 1] = 0;
376 continue; /**XXX wait for \n */
377 }
378 if (buf[i] == '\n') {
379 buf[i + 1] = 0;
380 break;
381 }
5260325f 382 }
38c295d6 383 buf[sizeof(buf) - 1] = 0;
384 if (strncmp(buf, "SSH-", 4) == 0)
5260325f 385 break;
38c295d6 386 debug("ssh_exchange_identification: %s", buf);
8efc0c15 387 }
8ce64345 388 server_version_string = xstrdup(buf);
5260325f 389
aa3378df 390 /*
391 * Check that the versions match. In future this might accept
392 * several versions and set appropriate flags to handle them.
393 */
8ce64345 394 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
395 &remote_major, &remote_minor, remote_version) != 3)
5260325f 396 fatal("Bad remote protocol version identification: '%.100s'", buf);
397 debug("Remote protocol version %d.%d, remote software version %.100s",
184eed6a 398 remote_major, remote_minor, remote_version);
5260325f 399
8ce64345 400 compat_datafellows(remote_version);
a8be9f80 401 mismatch = 0;
402
6aacefa7 403 switch (remote_major) {
a8be9f80 404 case 1:
405 if (remote_minor == 99 &&
406 (options.protocol & SSH_PROTO_2) &&
407 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
408 enable_compat20();
409 break;
5260325f 410 }
a8be9f80 411 if (!(options.protocol & SSH_PROTO_1)) {
412 mismatch = 1;
413 break;
414 }
415 if (remote_minor < 3) {
416 fatal("Remote machine has too old SSH software version.");
fa08c86b 417 } else if (remote_minor == 3 || remote_minor == 4) {
a8be9f80 418 /* We speak 1.3, too. */
419 enable_compat13();
fa08c86b 420 minor1 = 3;
a8be9f80 421 if (options.forward_agent) {
422 log("Agent forwarding disabled for protocol 1.3");
423 options.forward_agent = 0;
424 }
425 }
426 break;
427 case 2:
428 if (options.protocol & SSH_PROTO_2) {
429 enable_compat20();
430 break;
431 }
432 /* FALLTHROUGH */
6ae2364d 433 default:
a8be9f80 434 mismatch = 1;
435 break;
8efc0c15 436 }
a8be9f80 437 if (mismatch)
5260325f 438 fatal("Protocol major versions differ: %d vs. %d",
a8be9f80 439 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
440 remote_major);
5260325f 441 /* Send our own protocol version identification. */
442 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
a8be9f80 443 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
fa08c86b 444 compat20 ? PROTOCOL_MINOR_2 : minor1,
8ce64345 445 SSH_VERSION);
a408af76 446 if (atomicio(write, connection_out, buf, strlen(buf)) != strlen(buf))
5260325f 447 fatal("write: %.100s", strerror(errno));
8ce64345 448 client_version_string = xstrdup(buf);
449 chop(client_version_string);
450 chop(server_version_string);
451 debug("Local version string %.100s", client_version_string);
8efc0c15 452}
453
f21032a6 454/* defaults to 'no' */
396c147e 455static int
a2c92c4a 456confirm(const char *prompt)
8efc0c15 457{
616a6b93 458 const char *msg, *again = "Please type 'yes' or 'no': ";
459 char *p;
460 int ret = -1;
5260325f 461
f21032a6 462 if (options.batch_mode)
463 return 0;
616a6b93 464 for (msg = prompt;;msg = again) {
465 p = read_passphrase(msg, RP_ECHO);
466 if (p == NULL ||
467 (p[0] == '\0') || (p[0] == '\n') ||
468 strncasecmp(p, "no", 2) == 0)
469 ret = 0;
f11fe301 470 if (p && strncasecmp(p, "yes", 3) == 0)
616a6b93 471 ret = 1;
472 if (p)
473 xfree(p);
474 if (ret != -1)
475 return ret;
8efc0c15 476 }
8efc0c15 477}
478
5260325f 479/*
f49bc4f7 480 * check whether the supplied host key is valid, return -1 if the key
481 * is not valid. the user_hostfile will not be updated if 'readonly' is true.
5260325f 482 */
396c147e 483static int
a306f2dd 484check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
f49bc4f7 485 int readonly, const char *user_hostfile, const char *system_hostfile)
8efc0c15 486{
4fe2af09 487 Key *file_key;
1d1ffb87 488 char *type = key_type(host_key);
95f1eccc 489 char *ip = NULL;
22138a36 490 char hostline[1000], *hostp, *fp;
5260325f 491 HostStatus host_status;
492 HostStatus ip_status;
48e671d5 493 int local = 0, host_ip_differ = 0;
20af321f 494 int salen;
48e671d5 495 char ntop[NI_MAXHOST];
616a6b93 496 char msg[1024];
497 int len, host_line, ip_line;
1e3b8b07 498 const char *host_file = NULL, *ip_file = NULL;
48e671d5 499
500 /*
501 * Force accepting of the host key for loopback/localhost. The
502 * problem is that if the home directory is NFS-mounted to multiple
503 * machines, localhost will refer to a different machine in each of
504 * them, and the user will get bogus HOST_CHANGED warnings. This
505 * essentially disables host authentication for localhost; however,
506 * this is probably not a real problem.
507 */
a306f2dd 508 /** hostaddr == 0! */
48e671d5 509 switch (hostaddr->sa_family) {
510 case AF_INET:
f49bc4f7 511 local = (ntohl(((struct sockaddr_in *)hostaddr)->
20a11d35 512 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
20af321f 513 salen = sizeof(struct sockaddr_in);
48e671d5 514 break;
515 case AF_INET6:
f49bc4f7 516 local = IN6_IS_ADDR_LOOPBACK(
517 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
20af321f 518 salen = sizeof(struct sockaddr_in6);
48e671d5 519 break;
520 default:
521 local = 0;
20af321f 522 salen = sizeof(struct sockaddr_storage);
48e671d5 523 break;
524 }
8bbc048a 525 if (options.no_host_authentication_for_localhost == 1 && local &&
526 options.host_key_alias == NULL) {
7c49df64 527 debug("Forcing accepting of host key for "
528 "loopback/localhost.");
f49bc4f7 529 return 0;
48e671d5 530 }
5260325f 531
57112b5a 532 /*
7c49df64 533 * We don't have the remote ip-address for connections
534 * using a proxy command
535 */
536 if (options.proxy_command == NULL) {
537 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
538 NULL, 0, NI_NUMERICHOST) != 0)
539 fatal("check_host_key: getnameinfo failed");
540 ip = xstrdup(ntop);
541 } else {
542 ip = xstrdup("<no hostip for proxy command>");
543 }
544 /*
545 * Turn off check_host_ip if the connection is to localhost, via proxy
546 * command or if we don't have a hostname to compare with
57112b5a 547 */
7c49df64 548 if (options.check_host_ip &&
549 (local || strcmp(host, ip) == 0 || options.proxy_command != NULL))
57112b5a 550 options.check_host_ip = 0;
551
8abcdba4 552 /*
7c49df64 553 * Allow the user to record the key under a different name. This is
8abcdba4 554 * useful for ssh tunneling over forwarded connections or if you run
7c49df64 555 * multiple sshd's on different ports on the same machine.
8abcdba4 556 */
557 if (options.host_key_alias != NULL) {
558 host = options.host_key_alias;
559 debug("using hostkeyalias: %s", host);
560 }
561
95f1eccc 562 /*
563 * Store the host key from the known host file in here so that we can
564 * compare it with the key for the IP address.
565 */
4fe2af09 566 file_key = key_new(host_key->type);
5260325f 567
aa3378df 568 /*
569 * Check if the host key is present in the user\'s list of known
570 * hosts or in the systemwide list.
571 */
1e3b8b07 572 host_file = user_hostfile;
f49bc4f7 573 host_status = check_host_in_hostfile(host_file, host, host_key,
184eed6a 574 file_key, &host_line);
1e3b8b07 575 if (host_status == HOST_NEW) {
576 host_file = system_hostfile;
f49bc4f7 577 host_status = check_host_in_hostfile(host_file, host, host_key,
578 file_key, &host_line);
1e3b8b07 579 }
aa3378df 580 /*
581 * Also perform check for the ip address, skip the check if we are
582 * localhost or the hostname was an ip address to begin with
583 */
7c49df64 584 if (options.check_host_ip) {
4fe2af09 585 Key *ip_key = key_new(host_key->type);
5260325f 586
1e3b8b07 587 ip_file = user_hostfile;
f49bc4f7 588 ip_status = check_host_in_hostfile(ip_file, ip, host_key,
589 ip_key, &ip_line);
1e3b8b07 590 if (ip_status == HOST_NEW) {
591 ip_file = system_hostfile;
f49bc4f7 592 ip_status = check_host_in_hostfile(ip_file, ip,
593 host_key, ip_key, &ip_line);
1e3b8b07 594 }
5260325f 595 if (host_status == HOST_CHANGED &&
4fe2af09 596 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
5260325f 597 host_ip_differ = 1;
598
4fe2af09 599 key_free(ip_key);
5260325f 600 } else
601 ip_status = host_status;
602
4fe2af09 603 key_free(file_key);
5260325f 604
605 switch (host_status) {
606 case HOST_OK:
607 /* The host is known and the key matches. */
1d1ffb87 608 debug("Host '%.200s' is known and matches the %s host key.",
609 host, type);
1e3b8b07 610 debug("Found key in %s:%d", host_file, host_line);
7c49df64 611 if (options.check_host_ip && ip_status == HOST_NEW) {
f49bc4f7 612 if (readonly)
613 log("%s host key for IP address "
614 "'%.128s' not in list of known hosts.",
7c49df64 615 type, ip);
f49bc4f7 616 else if (!add_host_to_hostfile(user_hostfile, ip,
184eed6a 617 host_key))
f49bc4f7 618 log("Failed to add the %s host key for IP "
619 "address '%.128s' to the list of known "
620 "hosts (%.30s).", type, ip, user_hostfile);
621 else
622 log("Warning: Permanently added the %s host "
623 "key for IP address '%.128s' to the list "
624 "of known hosts.", type, ip);
5260325f 625 }
626 break;
627 case HOST_NEW:
f49bc4f7 628 if (readonly)
629 goto fail;
5260325f 630 /* The host is new. */
631 if (options.strict_host_key_checking == 1) {
f49bc4f7 632 /*
633 * User has requested strict host key checking. We
634 * will not add the host key automatically. The only
635 * alternative left is to abort.
636 */
637 error("No %s host key is known for %.200s and you "
638 "have requested strict checking.", type, host);
639 goto fail;
5260325f 640 } else if (options.strict_host_key_checking == 2) {
641 /* The default */
22138a36 642 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
616a6b93 643 snprintf(msg, sizeof(msg),
f49bc4f7 644 "The authenticity of host '%.200s (%s)' can't be "
645 "established.\n"
1d1ffb87 646 "%s key fingerprint is %s.\n"
f49bc4f7 647 "Are you sure you want to continue connecting "
648 "(yes/no)? ", host, ip, type, fp);
22138a36 649 xfree(fp);
616a6b93 650 if (!confirm(msg))
f49bc4f7 651 goto fail;
5260325f 652 }
7c49df64 653 if (options.check_host_ip && ip_status == HOST_NEW) {
5260325f 654 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
655 hostp = hostline;
656 } else
657 hostp = host;
658
f49bc4f7 659 /*
660 * If not in strict mode, add the key automatically to the
661 * local known_hosts file.
662 */
a306f2dd 663 if (!add_host_to_hostfile(user_hostfile, hostp, host_key))
f49bc4f7 664 log("Failed to add the host to the list of known "
665 "hosts (%.500s).", user_hostfile);
5260325f 666 else
f49bc4f7 667 log("Warning: Permanently added '%.200s' (%s) to the "
668 "list of known hosts.", hostp, type);
5260325f 669 break;
670 case HOST_CHANGED:
671 if (options.check_host_ip && host_ip_differ) {
672 char *msg;
673 if (ip_status == HOST_NEW)
674 msg = "is unknown";
675 else if (ip_status == HOST_OK)
676 msg = "is unchanged";
677 else
678 msg = "has a different value";
679 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
680 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
681 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1d1ffb87 682 error("The %s host key for %s has changed,", type, host);
5260325f 683 error("and the key for the according IP address %s", ip);
684 error("%s. This could either mean that", msg);
685 error("DNS SPOOFING is happening or the IP address for the host");
1e3b8b07 686 error("and its host key have changed at the same time.");
7c49df64 687 if (ip_status != HOST_NEW)
1e3b8b07 688 error("Offending key for IP in %s:%d", ip_file, ip_line);
5260325f 689 }
690 /* The host key has changed. */
22138a36 691 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
5260325f 692 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
ae2f7af7 693 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
5260325f 694 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
695 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
696 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1d1ffb87 697 error("It is also possible that the %s host key has just been changed.", type);
8abcdba4 698 error("The fingerprint for the %s key sent by the remote host is\n%s.",
22138a36 699 type, fp);
5260325f 700 error("Please contact your system administrator.");
701 error("Add correct host key in %.100s to get rid of this message.",
8abcdba4 702 user_hostfile);
1e3b8b07 703 error("Offending key in %s:%d", host_file, host_line);
22138a36 704 xfree(fp);
5260325f 705
aa3378df 706 /*
707 * If strict host key checking is in use, the user will have
708 * to edit the key manually and we can only abort.
709 */
f49bc4f7 710 if (options.strict_host_key_checking) {
711 error("%s host key for %.200s has changed and you have "
712 "requested strict checking.", type, host);
713 goto fail;
714 }
5260325f 715
aa3378df 716 /*
717 * If strict host key checking has not been requested, allow
718 * the connection but without password authentication or
719 * agent forwarding.
720 */
5260325f 721 if (options.password_authentication) {
f49bc4f7 722 error("Password authentication is disabled to avoid "
723 "man-in-the-middle attacks.");
5260325f 724 options.password_authentication = 0;
725 }
726 if (options.forward_agent) {
f49bc4f7 727 error("Agent forwarding is disabled to avoid "
728 "man-in-the-middle attacks.");
5260325f 729 options.forward_agent = 0;
730 }
0b6fbf03 731 if (options.forward_x11) {
f49bc4f7 732 error("X11 forwarding is disabled to avoid "
733 "man-in-the-middle attacks.");
0b6fbf03 734 options.forward_x11 = 0;
735 }
f49bc4f7 736 if (options.num_local_forwards > 0 ||
737 options.num_remote_forwards > 0) {
738 error("Port forwarding is disabled to avoid "
739 "man-in-the-middle attacks.");
740 options.num_local_forwards =
184eed6a 741 options.num_remote_forwards = 0;
0b6fbf03 742 }
aa3378df 743 /*
744 * XXX Should permit the user to change to use the new id.
745 * This could be done by converting the host key to an
746 * identifying sentence, tell that the host identifies itself
747 * by that sentence, and ask the user if he/she whishes to
748 * accept the authentication.
749 */
5260325f 750 break;
751 }
0b6fbf03 752
7c49df64 753 if (options.check_host_ip && host_status != HOST_CHANGED &&
754 ip_status == HOST_CHANGED) {
616a6b93 755 snprintf(msg, sizeof(msg),
756 "Warning: the %s host key for '%.200s' "
757 "differs from the key for the IP address '%.128s'"
758 "\nOffending key for IP in %s:%d",
759 type, host, ip, ip_file, ip_line);
760 if (host_status == HOST_OK) {
761 len = strlen(msg);
762 snprintf(msg + len, sizeof(msg) - len,
763 "\nMatching host key in %s:%d",
7203d6bb 764 host_file, host_line);
616a6b93 765 }
7c49df64 766 if (options.strict_host_key_checking == 1) {
616a6b93 767 log(msg);
f49bc4f7 768 error("Exiting, you have requested strict checking.");
769 goto fail;
7c49df64 770 } else if (options.strict_host_key_checking == 2) {
616a6b93 771 strlcat(msg, "\nAre you sure you want "
772 "to continue connecting (yes/no)? ", sizeof(msg));
773 if (!confirm(msg))
f49bc4f7 774 goto fail;
616a6b93 775 } else {
776 log(msg);
7c49df64 777 }
778 }
779
0b6fbf03 780 xfree(ip);
f49bc4f7 781 return 0;
782
783fail:
784 xfree(ip);
785 return -1;
786}
787
788int
789verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
790{
791 struct stat st;
792
793 /* return ok if the key can be found in an old keyfile */
794 if (stat(options.system_hostfile2, &st) == 0 ||
795 stat(options.user_hostfile2, &st) == 0) {
796 if (check_host_key(host, hostaddr, host_key, /*readonly*/ 1,
797 options.user_hostfile2, options.system_hostfile2) == 0)
798 return 0;
799 }
800 return check_host_key(host, hostaddr, host_key, /*readonly*/ 0,
801 options.user_hostfile, options.system_hostfile);
95f1eccc 802}
803
8ce64345 804/*
a306f2dd 805 * Starts a dialog with the server, and authenticates the current user on the
806 * server. This does not need any extra privileges. The basic connection
807 * to the server must already have been established before this is called.
808 * If login fails, this function prints an error and never returns.
809 * This function does not require super-user privileges.
8ce64345 810 */
811void
39c00dc2 812ssh_login(Sensitive *sensitive, const char *orighost,
63bd8c36 813 struct sockaddr *hostaddr, struct passwd *pw)
8ce64345 814{
a306f2dd 815 char *host, *cp;
8ce64345 816 char *server_user, *local_user;
8ce64345 817
8ce64345 818 local_user = xstrdup(pw->pw_name);
819 server_user = options.user ? options.user : local_user;
820
7b2ea3a1 821 /* Convert the user-supplied hostname into all lowercase. */
822 host = xstrdup(orighost);
823 for (cp = host; *cp; cp++)
824 if (isupper(*cp))
825 *cp = tolower(*cp);
826
827 /* Exchange protocol version identification strings with the server. */
828 ssh_exchange_identification();
829
830 /* Put the connection into non-blocking mode. */
831 packet_set_nonblocking();
832
7b2ea3a1 833 /* key exchange */
7b2ea3a1 834 /* authenticate user */
8ce64345 835 if (compat20) {
836 ssh_kex2(host, hostaddr);
39c00dc2 837 ssh_userauth2(local_user, server_user, host, sensitive);
8ce64345 838 } else {
8ce64345 839 ssh_kex(host, hostaddr);
39c00dc2 840 ssh_userauth1(local_user, server_user, host, sensitive);
8ce64345 841 }
7b2ea3a1 842}
0ae4fe1d 843
844void
845ssh_put_password(char *password)
846{
847 int size;
848 char *padded;
849
99c415db 850 if (datafellows & SSH_BUG_PASSWORDPAD) {
449c5ba5 851 packet_put_cstring(password);
99c415db 852 return;
853 }
0ae4fe1d 854 size = roundup(strlen(password) + 1, 32);
855 padded = xmalloc(size);
856 memset(padded, 0, size);
857 strlcpy(padded, password, size);
858 packet_put_string(padded, size);
859 memset(padded, 0, size);
860 xfree(padded);
861}
This page took 0.376772 seconds and 5 git commands to generate.