]> andersk Git - openssh.git/blame - sshconnect.c
- dtucker@cvs.openbsd.org 2006/08/01 11:34:36
[openssh.git] / sshconnect.c
CommitLineData
331c3884 1/* $OpenBSD: sshconnect.c,v 1.197 2006/08/01 11:34:36 dtucker Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
bcbf86ec 8 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
5260325f 14 */
8efc0c15 15
16#include "includes.h"
aa2eae64 17
18#include <sys/types.h>
19#include <sys/wait.h>
4095f623 20#include <sys/stat.h>
9794d008 21#include <sys/socket.h>
e264ac72 22#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h>
24#endif
9794d008 25
26#include <netinet/in.h>
a75f5360 27
b6438382 28#include <ctype.h>
028094f4 29#include <errno.h>
28cb0a43 30#include <netdb.h>
b5b88c19 31#ifdef HAVE_PATHS_H
a75f5360 32#include <paths.h>
b5b88c19 33#endif
b1842393 34#include <pwd.h>
ffa517a8 35#include <stdlib.h>
00146caa 36#include <string.h>
5188ba17 37#include <unistd.h>
8efc0c15 38
42f11eb2 39#include "ssh.h"
8efc0c15 40#include "xmalloc.h"
41#include "rsa.h"
8ce64345 42#include "buffer.h"
8efc0c15 43#include "packet.h"
8efc0c15 44#include "uidswap.h"
45#include "compat.h"
4fe2af09 46#include "key.h"
a306f2dd 47#include "sshconnect.h"
4fe2af09 48#include "hostfile.h"
42f11eb2 49#include "log.h"
50#include "readconf.h"
51#include "atomicio.h"
52#include "misc.h"
21289cd0 53#include "dns.h"
28015df4 54#include "version.h"
21289cd0 55
a306f2dd 56char *client_version_string = NULL;
57char *server_version_string = NULL;
8ce64345 58
ed82a2a9 59static int matching_host_key_dns = 0;
1432b5c4 60
3fb156df 61/* import */
57112b5a 62extern Options options;
48e671d5 63extern char *__progname;
3fb156df 64extern uid_t original_real_uid;
65extern uid_t original_effective_uid;
6939bbd4 66extern pid_t proxy_command_pid;
57112b5a 67
a704dd54 68#ifndef INET6_ADDRSTRLEN /* for non IPv6 machines */
69#define INET6_ADDRSTRLEN 46
70#endif
71
8a48a7ef 72static int show_other_keys(const char *, Key *);
1a1bc5d5 73static void warn_changed_key(Key *);
8a48a7ef 74
5260325f 75/*
76 * Connect to the given ssh server using a proxy command.
77 */
396c147e 78static int
3fb156df 79ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
8efc0c15 80{
a980cbd7 81 char *command_string, *tmp;
5260325f 82 int pin[2], pout[2];
9da5c3c9 83 pid_t pid;
48e671d5 84 char strport[NI_MAXSERV];
5260325f 85
86 /* Convert the port number into a string. */
48e671d5 87 snprintf(strport, sizeof strport, "%hu", port);
5260325f 88
6939bbd4 89 /*
90 * Build the final command string in the buffer by making the
91 * appropriate substitutions to the given proxy command.
92 *
aff51935 93 * Use "exec" to avoid "sh -c" processes on some platforms
6939bbd4 94 * (e.g. Solaris)
95 */
52e3daed 96 xasprintf(&tmp, "exec %s", proxy_command);
a980cbd7 97 command_string = percent_expand(tmp, "h", host,
98 "p", strport, (char *)NULL);
99 xfree(tmp);
5260325f 100
101 /* Create pipes for communicating with the proxy. */
102 if (pipe(pin) < 0 || pipe(pout) < 0)
103 fatal("Could not create pipes to communicate with the proxy: %.100s",
184eed6a 104 strerror(errno));
5260325f 105
106 debug("Executing proxy command: %.500s", command_string);
107
108 /* Fork and execute the proxy command. */
109 if ((pid = fork()) == 0) {
110 char *argv[10];
111
112 /* Child. Permanently give up superuser privileges. */
3c33c1b6 113 permanently_drop_suid(original_real_uid);
5260325f 114
115 /* Redirect stdin and stdout. */
116 close(pin[1]);
117 if (pin[0] != 0) {
118 if (dup2(pin[0], 0) < 0)
119 perror("dup2 stdin");
120 close(pin[0]);
121 }
122 close(pout[0]);
123 if (dup2(pout[1], 1) < 0)
124 perror("dup2 stdout");
125 /* Cannot be 1 because pin allocated two descriptors. */
126 close(pout[1]);
127
128 /* Stderr is left as it is so that error messages get
129 printed on the user's terminal. */
30228d7c 130 argv[0] = _PATH_BSHELL;
5260325f 131 argv[1] = "-c";
132 argv[2] = command_string;
133 argv[3] = NULL;
134
135 /* Execute the proxy command. Note that we gave up any
136 extra privileges above. */
328654d8 137 execv(argv[0], argv);
138 perror(argv[0]);
5260325f 139 exit(1);
8efc0c15 140 }
5260325f 141 /* Parent. */
142 if (pid < 0)
143 fatal("fork failed: %.100s", strerror(errno));
6939bbd4 144 else
145 proxy_command_pid = pid; /* save pid to clean up later */
5260325f 146
147 /* Close child side of the descriptors. */
148 close(pin[0]);
149 close(pout[1]);
150
151 /* Free the command name. */
a980cbd7 152 xfree(command_string);
5260325f 153
154 /* Set the connection file descriptors. */
155 packet_set_connection(pout[0], pin[1]);
8efc0c15 156
ce773142 157 /* Indicate OK return */
158 return 0;
5260325f 159}
8efc0c15 160
5260325f 161/*
162 * Creates a (possibly privileged) socket for use as the ssh connection.
163 */
396c147e 164static int
3e131a6d 165ssh_create_socket(int privileged, struct addrinfo *ai)
8efc0c15 166{
3435f5a6 167 int sock, gaierr;
168 struct addrinfo hints, *res;
5260325f 169
aa3378df 170 /*
171 * If we are running as root and want to connect to a privileged
172 * port, bind our own socket to a privileged port.
173 */
5260325f 174 if (privileged) {
175 int p = IPPORT_RESERVED - 1;
3fb156df 176 PRIV_START;
3e131a6d 177 sock = rresvport_af(&p, ai->ai_family);
3fb156df 178 PRIV_END;
5260325f 179 if (sock < 0)
3e131a6d 180 error("rresvport: af=%d %.100s", ai->ai_family,
181 strerror(errno));
c8d54615 182 else
183 debug("Allocated local port %d.", p);
3435f5a6 184 return sock;
185 }
3e131a6d 186 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
3435f5a6 187 if (sock < 0)
188 error("socket: %.100s", strerror(errno));
3435f5a6 189
190 /* Bind the socket to an alternative local IP address */
191 if (options.bind_address == NULL)
192 return sock;
193
194 memset(&hints, 0, sizeof(hints));
3e131a6d 195 hints.ai_family = ai->ai_family;
196 hints.ai_socktype = ai->ai_socktype;
197 hints.ai_protocol = ai->ai_protocol;
3435f5a6 198 hints.ai_flags = AI_PASSIVE;
199 gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);
200 if (gaierr) {
201 error("getaddrinfo: %s: %s", options.bind_address,
202 gai_strerror(gaierr));
203 close(sock);
204 return -1;
205 }
206 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
207 error("bind: %s: %s", options.bind_address, strerror(errno));
208 close(sock);
209 freeaddrinfo(res);
210 return -1;
5260325f 211 }
3435f5a6 212 freeaddrinfo(res);
5260325f 213 return sock;
8efc0c15 214}
215
09ab3296 216static int
217timeout_connect(int sockfd, const struct sockaddr *serv_addr,
218 socklen_t addrlen, int timeout)
219{
220 fd_set *fdset;
221 struct timeval tv;
222 socklen_t optlen;
52e3daed 223 int optval, rc, result = -1;
09ab3296 224
225 if (timeout <= 0)
226 return (connect(sockfd, serv_addr, addrlen));
227
2daf1db1 228 set_nonblock(sockfd);
09ab3296 229 rc = connect(sockfd, serv_addr, addrlen);
2daf1db1 230 if (rc == 0) {
231 unset_nonblock(sockfd);
09ab3296 232 return (0);
2daf1db1 233 }
09ab3296 234 if (errno != EINPROGRESS)
235 return (-1);
236
52e3daed 237 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
238 sizeof(fd_mask));
09ab3296 239 FD_SET(sockfd, fdset);
240 tv.tv_sec = timeout;
241 tv.tv_usec = 0;
242
f8cc7664 243 for (;;) {
09ab3296 244 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
245 if (rc != -1 || errno != EINTR)
246 break;
247 }
248
f8cc7664 249 switch (rc) {
09ab3296 250 case 0:
251 /* Timed out */
252 errno = ETIMEDOUT;
da54f5be 253 break;
09ab3296 254 case -1:
255 /* Select error */
aff51935 256 debug("select: %s", strerror(errno));
da54f5be 257 break;
09ab3296 258 case 1:
259 /* Completed or failed */
260 optval = 0;
261 optlen = sizeof(optval);
aff51935 262 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval,
ce26c02a 263 &optlen) == -1) {
aff51935 264 debug("getsockopt: %s", strerror(errno));
da54f5be 265 break;
ce26c02a 266 }
09ab3296 267 if (optval != 0) {
268 errno = optval;
da54f5be 269 break;
09ab3296 270 }
da54f5be 271 result = 0;
2daf1db1 272 unset_nonblock(sockfd);
09ab3296 273 break;
274 default:
275 /* Should not occur */
276 fatal("Bogus return (%d) from select()", rc);
277 }
278
da54f5be 279 xfree(fdset);
280 return (result);
09ab3296 281}
282
5260325f 283/*
48e671d5 284 * Opens a TCP/IP connection to the remote server on the given host.
285 * The address of the remote host will be returned in hostaddr.
3fb156df 286 * If port is 0, the default port will be used. If needpriv is true,
5260325f 287 * a privileged port will be allocated to make the connection.
3fb156df 288 * This requires super-user privileges if needpriv is true.
5260325f 289 * Connection_attempts specifies the maximum number of tries (one per
290 * second). If proxy_command is non-NULL, it specifies the command (with %h
291 * and %p substituted for host and port, respectively) to use to contact
292 * the daemon.
293 */
294int
48e671d5 295ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
dab89049 296 u_short port, int family, int connection_attempts,
3fb156df 297 int needpriv, const char *proxy_command)
8efc0c15 298{
b5c334cc 299 int gaierr;
300 int on = 1;
48e671d5 301 int sock = -1, attempt;
48e671d5 302 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
b5c334cc 303 struct addrinfo hints, *ai, *aitop;
5260325f 304
a77673cc 305 debug2("ssh_connect: needpriv %d", needpriv);
5260325f 306
5260325f 307 /* If a proxy command is given, connect using it. */
308 if (proxy_command != NULL)
3fb156df 309 return ssh_proxy_connect(host, port, proxy_command);
5260325f 310
311 /* No proxy command. */
312
48e671d5 313 memset(&hints, 0, sizeof(hints));
dab89049 314 hints.ai_family = family;
48e671d5 315 hints.ai_socktype = SOCK_STREAM;
d6133f43 316 snprintf(strport, sizeof strport, "%u", port);
48e671d5 317 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
318 fatal("%s: %.100s: %s", __progname, host,
319 gai_strerror(gaierr));
5260325f 320
4439dde1 321 for (attempt = 0; attempt < connection_attempts; attempt++) {
5260325f 322 if (attempt > 0)
323 debug("Trying again...");
324
4439dde1 325 /*
326 * Loop through addresses for this host, and try each one in
327 * sequence until the connection succeeds.
328 */
48e671d5 329 for (ai = aitop; ai; ai = ai->ai_next) {
330 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
331 continue;
332 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
333 ntop, sizeof(ntop), strport, sizeof(strport),
334 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
335 error("ssh_connect: getnameinfo failed");
336 continue;
337 }
338 debug("Connecting to %.200s [%.100s] port %s.",
339 host, ntop, strport);
340
341 /* Create a socket for connecting. */
3e131a6d 342 sock = ssh_create_socket(needpriv, ai);
48e671d5 343 if (sock < 0)
ce773142 344 /* Any error is already output */
48e671d5 345 continue;
346
09ab3296 347 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
348 options.connection_timeout) >= 0) {
48e671d5 349 /* Successful connection. */
cd332296 350 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
5260325f 351 break;
48e671d5 352 } else {
c750d869 353 debug("connect to address %s port %s: %s",
354 ntop, strport, strerror(errno));
5260325f 355 close(sock);
4439dde1 356 sock = -1;
5260325f 357 }
8efc0c15 358 }
4439dde1 359 if (sock != -1)
48e671d5 360 break; /* Successful connection. */
8efc0c15 361
5260325f 362 /* Sleep a moment before retrying. */
363 sleep(1);
364 }
48e671d5 365
366 freeaddrinfo(aitop);
367
5260325f 368 /* Return failure if we didn't get a successful connection. */
4439dde1 369 if (sock == -1) {
cf039bd1 370 error("ssh: connect to host %s port %s: %s",
9bd68577 371 host, strport, strerror(errno));
cf039bd1 372 return (-1);
9bd68577 373 }
8efc0c15 374
5260325f 375 debug("Connection established.");
8efc0c15 376
fd573618 377 /* Set SO_KEEPALIVE if requested. */
378 if (options.tcp_keep_alive &&
b5c334cc 379 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
380 sizeof(on)) < 0)
381 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
8efc0c15 382
5260325f 383 /* Set the connection. */
384 packet_set_connection(sock, sock);
8efc0c15 385
ce773142 386 return 0;
8efc0c15 387}
388
5260325f 389/*
390 * Waits for the server identification string, and sends our own
391 * identification string.
392 */
396c147e 393static void
5ca51e19 394ssh_exchange_identification(void)
8efc0c15 395{
5260325f 396 char buf[256], remote_version[256]; /* must be same size! */
2ceb8101 397 int remote_major, remote_minor, mismatch;
5260325f 398 int connection_in = packet_get_connection_in();
399 int connection_out = packet_get_connection_out();
2b87da3b 400 int minor1 = PROTOCOL_MINOR_1;
e5c76324 401 u_int i, n;
5260325f 402
05624c18 403 /* Read other side's version identification. */
e5c76324 404 for (n = 0;;) {
38c295d6 405 for (i = 0; i < sizeof(buf) - 1; i++) {
05624c18 406 size_t len = atomicio(read, connection_in, &buf[i], 1);
407
56964485 408 if (len != 1 && errno == EPIPE)
38c295d6 409 fatal("ssh_exchange_identification: Connection closed by remote host");
05624c18 410 else if (len != 1)
411 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
38c295d6 412 if (buf[i] == '\r') {
413 buf[i] = '\n';
414 buf[i + 1] = 0;
415 continue; /**XXX wait for \n */
416 }
417 if (buf[i] == '\n') {
418 buf[i + 1] = 0;
419 break;
420 }
e5c76324 421 if (++n > 65536)
422 fatal("ssh_exchange_identification: No banner received");
5260325f 423 }
38c295d6 424 buf[sizeof(buf) - 1] = 0;
425 if (strncmp(buf, "SSH-", 4) == 0)
5260325f 426 break;
38c295d6 427 debug("ssh_exchange_identification: %s", buf);
8efc0c15 428 }
8ce64345 429 server_version_string = xstrdup(buf);
5260325f 430
aa3378df 431 /*
432 * Check that the versions match. In future this might accept
433 * several versions and set appropriate flags to handle them.
434 */
8ce64345 435 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
436 &remote_major, &remote_minor, remote_version) != 3)
5260325f 437 fatal("Bad remote protocol version identification: '%.100s'", buf);
438 debug("Remote protocol version %d.%d, remote software version %.100s",
184eed6a 439 remote_major, remote_minor, remote_version);
5260325f 440
8ce64345 441 compat_datafellows(remote_version);
a8be9f80 442 mismatch = 0;
443
6aacefa7 444 switch (remote_major) {
a8be9f80 445 case 1:
446 if (remote_minor == 99 &&
447 (options.protocol & SSH_PROTO_2) &&
448 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
449 enable_compat20();
450 break;
5260325f 451 }
a8be9f80 452 if (!(options.protocol & SSH_PROTO_1)) {
453 mismatch = 1;
454 break;
455 }
456 if (remote_minor < 3) {
457 fatal("Remote machine has too old SSH software version.");
fa08c86b 458 } else if (remote_minor == 3 || remote_minor == 4) {
a8be9f80 459 /* We speak 1.3, too. */
460 enable_compat13();
fa08c86b 461 minor1 = 3;
a8be9f80 462 if (options.forward_agent) {
bbe88b6d 463 logit("Agent forwarding disabled for protocol 1.3");
a8be9f80 464 options.forward_agent = 0;
465 }
466 }
467 break;
468 case 2:
469 if (options.protocol & SSH_PROTO_2) {
470 enable_compat20();
471 break;
472 }
473 /* FALLTHROUGH */
6ae2364d 474 default:
a8be9f80 475 mismatch = 1;
476 break;
8efc0c15 477 }
a8be9f80 478 if (mismatch)
5260325f 479 fatal("Protocol major versions differ: %d vs. %d",
a8be9f80 480 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
481 remote_major);
5260325f 482 /* Send our own protocol version identification. */
483 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
a8be9f80 484 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
fa08c86b 485 compat20 ? PROTOCOL_MINOR_2 : minor1,
8ce64345 486 SSH_VERSION);
dc54438a 487 if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf))
5260325f 488 fatal("write: %.100s", strerror(errno));
8ce64345 489 client_version_string = xstrdup(buf);
490 chop(client_version_string);
491 chop(server_version_string);
492 debug("Local version string %.100s", client_version_string);
8efc0c15 493}
494
f21032a6 495/* defaults to 'no' */
396c147e 496static int
a2c92c4a 497confirm(const char *prompt)
8efc0c15 498{
616a6b93 499 const char *msg, *again = "Please type 'yes' or 'no': ";
500 char *p;
501 int ret = -1;
5260325f 502
f21032a6 503 if (options.batch_mode)
504 return 0;
616a6b93 505 for (msg = prompt;;msg = again) {
506 p = read_passphrase(msg, RP_ECHO);
507 if (p == NULL ||
508 (p[0] == '\0') || (p[0] == '\n') ||
509 strncasecmp(p, "no", 2) == 0)
510 ret = 0;
f11fe301 511 if (p && strncasecmp(p, "yes", 3) == 0)
616a6b93 512 ret = 1;
513 if (p)
514 xfree(p);
515 if (ret != -1)
516 return ret;
8efc0c15 517 }
8efc0c15 518}
519
5260325f 520/*
f49bc4f7 521 * check whether the supplied host key is valid, return -1 if the key
522 * is not valid. the user_hostfile will not be updated if 'readonly' is true.
5260325f 523 */
331c3884 524#define RDRW 0
525#define RDONLY 1
526#define ROQUIET 2
396c147e 527static int
331c3884 528check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
529 Key *host_key, int readonly, const char *user_hostfile,
530 const char *system_hostfile)
8efc0c15 531{
4fe2af09 532 Key *file_key;
b6c7b7b7 533 const char *type = key_type(host_key);
d4530052 534 char *ip = NULL, *host = NULL;
22138a36 535 char hostline[1000], *hostp, *fp;
5260325f 536 HostStatus host_status;
537 HostStatus ip_status;
e79276c2 538 int r, local = 0, host_ip_differ = 0;
20af321f 539 int salen;
48e671d5 540 char ntop[NI_MAXHOST];
616a6b93 541 char msg[1024];
1432b5c4 542 int len, host_line, ip_line;
1e3b8b07 543 const char *host_file = NULL, *ip_file = NULL;
48e671d5 544
545 /*
546 * Force accepting of the host key for loopback/localhost. The
547 * problem is that if the home directory is NFS-mounted to multiple
548 * machines, localhost will refer to a different machine in each of
549 * them, and the user will get bogus HOST_CHANGED warnings. This
550 * essentially disables host authentication for localhost; however,
551 * this is probably not a real problem.
552 */
a306f2dd 553 /** hostaddr == 0! */
48e671d5 554 switch (hostaddr->sa_family) {
555 case AF_INET:
f49bc4f7 556 local = (ntohl(((struct sockaddr_in *)hostaddr)->
4e2e5cfd 557 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
20af321f 558 salen = sizeof(struct sockaddr_in);
48e671d5 559 break;
560 case AF_INET6:
f49bc4f7 561 local = IN6_IS_ADDR_LOOPBACK(
562 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
20af321f 563 salen = sizeof(struct sockaddr_in6);
48e671d5 564 break;
565 default:
566 local = 0;
20af321f 567 salen = sizeof(struct sockaddr_storage);
48e671d5 568 break;
569 }
8bbc048a 570 if (options.no_host_authentication_for_localhost == 1 && local &&
571 options.host_key_alias == NULL) {
7c49df64 572 debug("Forcing accepting of host key for "
573 "loopback/localhost.");
f49bc4f7 574 return 0;
48e671d5 575 }
5260325f 576
57112b5a 577 /*
7c49df64 578 * We don't have the remote ip-address for connections
579 * using a proxy command
580 */
581 if (options.proxy_command == NULL) {
582 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
583 NULL, 0, NI_NUMERICHOST) != 0)
584 fatal("check_host_key: getnameinfo failed");
331c3884 585 ip = put_host_port(ntop, port);
7c49df64 586 } else {
587 ip = xstrdup("<no hostip for proxy command>");
588 }
589 /*
590 * Turn off check_host_ip if the connection is to localhost, via proxy
591 * command or if we don't have a hostname to compare with
57112b5a 592 */
d4530052 593 if (options.check_host_ip && (local ||
594 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
57112b5a 595 options.check_host_ip = 0;
596
8abcdba4 597 /*
d4530052 598 * Allow the user to record the key under a different name or
599 * differentiate a non-standard port. This is useful for ssh
600 * tunneling over forwarded connections or if you run multiple
601 * sshd's on different ports on the same machine.
8abcdba4 602 */
603 if (options.host_key_alias != NULL) {
d4530052 604 host = xstrdup(options.host_key_alias);
8abcdba4 605 debug("using hostkeyalias: %s", host);
d4530052 606 } else {
331c3884 607 host = put_host_port(hostname, port);
8abcdba4 608 }
609
95f1eccc 610 /*
611 * Store the host key from the known host file in here so that we can
612 * compare it with the key for the IP address.
613 */
4fe2af09 614 file_key = key_new(host_key->type);
5260325f 615
aa3378df 616 /*
7b9b0103 617 * Check if the host key is present in the user's list of known
aa3378df 618 * hosts or in the systemwide list.
619 */
1e3b8b07 620 host_file = user_hostfile;
f49bc4f7 621 host_status = check_host_in_hostfile(host_file, host, host_key,
184eed6a 622 file_key, &host_line);
1e3b8b07 623 if (host_status == HOST_NEW) {
624 host_file = system_hostfile;
f49bc4f7 625 host_status = check_host_in_hostfile(host_file, host, host_key,
626 file_key, &host_line);
1e3b8b07 627 }
aa3378df 628 /*
629 * Also perform check for the ip address, skip the check if we are
630 * localhost or the hostname was an ip address to begin with
631 */
7c49df64 632 if (options.check_host_ip) {
4fe2af09 633 Key *ip_key = key_new(host_key->type);
5260325f 634
1e3b8b07 635 ip_file = user_hostfile;
f49bc4f7 636 ip_status = check_host_in_hostfile(ip_file, ip, host_key,
637 ip_key, &ip_line);
1e3b8b07 638 if (ip_status == HOST_NEW) {
639 ip_file = system_hostfile;
f49bc4f7 640 ip_status = check_host_in_hostfile(ip_file, ip,
641 host_key, ip_key, &ip_line);
1e3b8b07 642 }
5260325f 643 if (host_status == HOST_CHANGED &&
4fe2af09 644 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
5260325f 645 host_ip_differ = 1;
646
4fe2af09 647 key_free(ip_key);
5260325f 648 } else
649 ip_status = host_status;
650
4fe2af09 651 key_free(file_key);
5260325f 652
653 switch (host_status) {
654 case HOST_OK:
655 /* The host is known and the key matches. */
1d1ffb87 656 debug("Host '%.200s' is known and matches the %s host key.",
657 host, type);
1e3b8b07 658 debug("Found key in %s:%d", host_file, host_line);
7c49df64 659 if (options.check_host_ip && ip_status == HOST_NEW) {
f49bc4f7 660 if (readonly)
bbe88b6d 661 logit("%s host key for IP address "
f49bc4f7 662 "'%.128s' not in list of known hosts.",
7c49df64 663 type, ip);
f49bc4f7 664 else if (!add_host_to_hostfile(user_hostfile, ip,
5c63c2ab 665 host_key, options.hash_known_hosts))
bbe88b6d 666 logit("Failed to add the %s host key for IP "
f49bc4f7 667 "address '%.128s' to the list of known "
668 "hosts (%.30s).", type, ip, user_hostfile);
669 else
bbe88b6d 670 logit("Warning: Permanently added the %s host "
f49bc4f7 671 "key for IP address '%.128s' to the list "
672 "of known hosts.", type, ip);
5260325f 673 }
674 break;
675 case HOST_NEW:
331c3884 676 if (options.host_key_alias == NULL && port != 0 &&
677 port != SSH_DEFAULT_PORT) {
678 debug("checking without port identifier");
679 if (check_host_key(hostname, hostaddr, 0, host_key, 2,
680 user_hostfile, system_hostfile) == 0) {
681 debug("found matching key w/out port");
682 break;
683 }
684 }
f49bc4f7 685 if (readonly)
686 goto fail;
5260325f 687 /* The host is new. */
688 if (options.strict_host_key_checking == 1) {
f49bc4f7 689 /*
690 * User has requested strict host key checking. We
691 * will not add the host key automatically. The only
692 * alternative left is to abort.
693 */
694 error("No %s host key is known for %.200s and you "
695 "have requested strict checking.", type, host);
696 goto fail;
5260325f 697 } else if (options.strict_host_key_checking == 2) {
1432b5c4 698 char msg1[1024], msg2[1024];
699
700 if (show_other_keys(host, host_key))
701 snprintf(msg1, sizeof(msg1),
4e2e5cfd 702 "\nbut keys of different type are already"
703 " known for this host.");
1432b5c4 704 else
705 snprintf(msg1, sizeof(msg1), ".");
5260325f 706 /* The default */
22138a36 707 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1432b5c4 708 msg2[0] = '\0';
1432b5c4 709 if (options.verify_host_key_dns) {
0161a13d 710 if (matching_host_key_dns)
1432b5c4 711 snprintf(msg2, sizeof(msg2),
712 "Matching host key fingerprint"
713 " found in DNS.\n");
714 else
715 snprintf(msg2, sizeof(msg2),
716 "No matching host key fingerprint"
717 " found in DNS.\n");
718 }
616a6b93 719 snprintf(msg, sizeof(msg),
f49bc4f7 720 "The authenticity of host '%.200s (%s)' can't be "
8a48a7ef 721 "established%s\n"
1432b5c4 722 "%s key fingerprint is %s.\n%s"
f49bc4f7 723 "Are you sure you want to continue connecting "
8a48a7ef 724 "(yes/no)? ",
1432b5c4 725 host, ip, msg1, type, fp, msg2);
22138a36 726 xfree(fp);
616a6b93 727 if (!confirm(msg))
f49bc4f7 728 goto fail;
5260325f 729 }
f49bc4f7 730 /*
731 * If not in strict mode, add the key automatically to the
732 * local known_hosts file.
733 */
e79276c2 734 if (options.check_host_ip && ip_status == HOST_NEW) {
735 snprintf(hostline, sizeof(hostline), "%s,%s",
736 host, ip);
737 hostp = hostline;
738 if (options.hash_known_hosts) {
739 /* Add hash of host and IP separately */
740 r = add_host_to_hostfile(user_hostfile, host,
741 host_key, options.hash_known_hosts) &&
742 add_host_to_hostfile(user_hostfile, ip,
743 host_key, options.hash_known_hosts);
744 } else {
745 /* Add unhashed "host,ip" */
746 r = add_host_to_hostfile(user_hostfile,
747 hostline, host_key,
748 options.hash_known_hosts);
749 }
750 } else {
751 r = add_host_to_hostfile(user_hostfile, host, host_key,
752 options.hash_known_hosts);
753 hostp = host;
754 }
755
756 if (!r)
bbe88b6d 757 logit("Failed to add the host to the list of known "
f49bc4f7 758 "hosts (%.500s).", user_hostfile);
5260325f 759 else
bbe88b6d 760 logit("Warning: Permanently added '%.200s' (%s) to the "
f49bc4f7 761 "list of known hosts.", hostp, type);
5260325f 762 break;
763 case HOST_CHANGED:
331c3884 764 if (readonly == ROQUIET)
765 goto fail;
5260325f 766 if (options.check_host_ip && host_ip_differ) {
ca75d7de 767 char *key_msg;
5260325f 768 if (ip_status == HOST_NEW)
ca75d7de 769 key_msg = "is unknown";
5260325f 770 else if (ip_status == HOST_OK)
ca75d7de 771 key_msg = "is unchanged";
5260325f 772 else
ca75d7de 773 key_msg = "has a different value";
5260325f 774 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
775 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
776 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1d1ffb87 777 error("The %s host key for %s has changed,", type, host);
5260325f 778 error("and the key for the according IP address %s", ip);
ca75d7de 779 error("%s. This could either mean that", key_msg);
5260325f 780 error("DNS SPOOFING is happening or the IP address for the host");
1e3b8b07 781 error("and its host key have changed at the same time.");
7c49df64 782 if (ip_status != HOST_NEW)
1e3b8b07 783 error("Offending key for IP in %s:%d", ip_file, ip_line);
5260325f 784 }
785 /* The host key has changed. */
1a1bc5d5 786 warn_changed_key(host_key);
5260325f 787 error("Add correct host key in %.100s to get rid of this message.",
8abcdba4 788 user_hostfile);
1e3b8b07 789 error("Offending key in %s:%d", host_file, host_line);
5260325f 790
aa3378df 791 /*
792 * If strict host key checking is in use, the user will have
793 * to edit the key manually and we can only abort.
794 */
f49bc4f7 795 if (options.strict_host_key_checking) {
796 error("%s host key for %.200s has changed and you have "
797 "requested strict checking.", type, host);
798 goto fail;
799 }
5260325f 800
aa3378df 801 /*
802 * If strict host key checking has not been requested, allow
d453a600 803 * the connection but without MITM-able authentication or
fee76795 804 * forwarding.
aa3378df 805 */
5260325f 806 if (options.password_authentication) {
f49bc4f7 807 error("Password authentication is disabled to avoid "
808 "man-in-the-middle attacks.");
5260325f 809 options.password_authentication = 0;
810 }
d453a600 811 if (options.kbd_interactive_authentication) {
812 error("Keyboard-interactive authentication is disabled"
813 " to avoid man-in-the-middle attacks.");
814 options.kbd_interactive_authentication = 0;
815 options.challenge_response_authentication = 0;
816 }
817 if (options.challenge_response_authentication) {
818 error("Challenge/response authentication is disabled"
819 " to avoid man-in-the-middle attacks.");
820 options.challenge_response_authentication = 0;
821 }
5260325f 822 if (options.forward_agent) {
f49bc4f7 823 error("Agent forwarding is disabled to avoid "
824 "man-in-the-middle attacks.");
5260325f 825 options.forward_agent = 0;
826 }
0b6fbf03 827 if (options.forward_x11) {
f49bc4f7 828 error("X11 forwarding is disabled to avoid "
829 "man-in-the-middle attacks.");
0b6fbf03 830 options.forward_x11 = 0;
831 }
f49bc4f7 832 if (options.num_local_forwards > 0 ||
833 options.num_remote_forwards > 0) {
834 error("Port forwarding is disabled to avoid "
835 "man-in-the-middle attacks.");
836 options.num_local_forwards =
184eed6a 837 options.num_remote_forwards = 0;
0b6fbf03 838 }
fee76795 839 if (options.tun_open != SSH_TUNMODE_NO) {
840 error("Tunnel forwarding is disabled to avoid "
841 "man-in-the-middle attacks.");
842 options.tun_open = SSH_TUNMODE_NO;
843 }
aa3378df 844 /*
845 * XXX Should permit the user to change to use the new id.
846 * This could be done by converting the host key to an
847 * identifying sentence, tell that the host identifies itself
848 * by that sentence, and ask the user if he/she whishes to
849 * accept the authentication.
850 */
5260325f 851 break;
8a48a7ef 852 case HOST_FOUND:
853 fatal("internal error");
854 break;
5260325f 855 }
0b6fbf03 856
7c49df64 857 if (options.check_host_ip && host_status != HOST_CHANGED &&
858 ip_status == HOST_CHANGED) {
616a6b93 859 snprintf(msg, sizeof(msg),
860 "Warning: the %s host key for '%.200s' "
861 "differs from the key for the IP address '%.128s'"
862 "\nOffending key for IP in %s:%d",
863 type, host, ip, ip_file, ip_line);
864 if (host_status == HOST_OK) {
865 len = strlen(msg);
866 snprintf(msg + len, sizeof(msg) - len,
867 "\nMatching host key in %s:%d",
7203d6bb 868 host_file, host_line);
616a6b93 869 }
7c49df64 870 if (options.strict_host_key_checking == 1) {
b0545fe6 871 logit("%s", msg);
f49bc4f7 872 error("Exiting, you have requested strict checking.");
873 goto fail;
7c49df64 874 } else if (options.strict_host_key_checking == 2) {
616a6b93 875 strlcat(msg, "\nAre you sure you want "
876 "to continue connecting (yes/no)? ", sizeof(msg));
877 if (!confirm(msg))
f49bc4f7 878 goto fail;
616a6b93 879 } else {
b0545fe6 880 logit("%s", msg);
7c49df64 881 }
882 }
883
0b6fbf03 884 xfree(ip);
d4530052 885 xfree(host);
f49bc4f7 886 return 0;
887
888fail:
889 xfree(ip);
d4530052 890 xfree(host);
f49bc4f7 891 return -1;
892}
893
21289cd0 894/* returns 0 if key verifies or -1 if key does NOT verify */
f49bc4f7 895int
896verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
897{
898 struct stat st;
0161a13d 899 int flags = 0;
f49bc4f7 900
0161a13d 901 if (options.verify_host_key_dns &&
902 verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) {
903
904 if (flags & DNS_VERIFY_FOUND) {
905
906 if (options.verify_host_key_dns == 1 &&
907 flags & DNS_VERIFY_MATCH &&
908 flags & DNS_VERIFY_SECURE)
909 return 0;
910
911 if (flags & DNS_VERIFY_MATCH) {
912 matching_host_key_dns = 1;
913 } else {
914 warn_changed_key(host_key);
915 error("Update the SSHFP RR in DNS with the new "
916 "host key to get rid of this message.");
917 }
21289cd0 918 }
919 }
21289cd0 920
f49bc4f7 921 /* return ok if the key can be found in an old keyfile */
922 if (stat(options.system_hostfile2, &st) == 0 ||
923 stat(options.user_hostfile2, &st) == 0) {
331c3884 924 if (check_host_key(host, hostaddr, options.port, host_key,
925 RDONLY, options.user_hostfile2,
926 options.system_hostfile2) == 0)
f49bc4f7 927 return 0;
928 }
331c3884 929 return check_host_key(host, hostaddr, options.port, host_key,
930 RDRW, options.user_hostfile, options.system_hostfile);
95f1eccc 931}
932
8ce64345 933/*
a306f2dd 934 * Starts a dialog with the server, and authenticates the current user on the
935 * server. This does not need any extra privileges. The basic connection
936 * to the server must already have been established before this is called.
937 * If login fails, this function prints an error and never returns.
938 * This function does not require super-user privileges.
8ce64345 939 */
940void
39c00dc2 941ssh_login(Sensitive *sensitive, const char *orighost,
63bd8c36 942 struct sockaddr *hostaddr, struct passwd *pw)
8ce64345 943{
a306f2dd 944 char *host, *cp;
8ce64345 945 char *server_user, *local_user;
8ce64345 946
8ce64345 947 local_user = xstrdup(pw->pw_name);
948 server_user = options.user ? options.user : local_user;
949
7b2ea3a1 950 /* Convert the user-supplied hostname into all lowercase. */
951 host = xstrdup(orighost);
952 for (cp = host; *cp; cp++)
953 if (isupper(*cp))
9555d258 954 *cp = (char)tolower(*cp);
7b2ea3a1 955
956 /* Exchange protocol version identification strings with the server. */
957 ssh_exchange_identification();
958
959 /* Put the connection into non-blocking mode. */
960 packet_set_nonblocking();
961
7b2ea3a1 962 /* key exchange */
7b2ea3a1 963 /* authenticate user */
8ce64345 964 if (compat20) {
965 ssh_kex2(host, hostaddr);
39c00dc2 966 ssh_userauth2(local_user, server_user, host, sensitive);
8ce64345 967 } else {
8ce64345 968 ssh_kex(host, hostaddr);
39c00dc2 969 ssh_userauth1(local_user, server_user, host, sensitive);
8ce64345 970 }
2b8dc5e3 971 xfree(local_user);
7b2ea3a1 972}
0ae4fe1d 973
974void
975ssh_put_password(char *password)
976{
977 int size;
978 char *padded;
979
99c415db 980 if (datafellows & SSH_BUG_PASSWORDPAD) {
449c5ba5 981 packet_put_cstring(password);
99c415db 982 return;
983 }
0ae4fe1d 984 size = roundup(strlen(password) + 1, 32);
52e3daed 985 padded = xcalloc(1, size);
0ae4fe1d 986 strlcpy(padded, password, size);
987 packet_put_string(padded, size);
988 memset(padded, 0, size);
989 xfree(padded);
990}
8a48a7ef 991
992static int
993show_key_from_file(const char *file, const char *host, int keytype)
994{
995 Key *found;
996 char *fp;
997 int line, ret;
998
999 found = key_new(keytype);
1000 if ((ret = lookup_key_in_hostfile_by_type(file, host,
1001 keytype, found, &line))) {
1002 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
bbe88b6d 1003 logit("WARNING: %s key found for host %s\n"
567a05bf 1004 "in %s:%d\n"
8a48a7ef 1005 "%s key fingerprint %s.",
1006 key_type(found), host, file, line,
1007 key_type(found), fp);
1008 xfree(fp);
1009 }
1010 key_free(found);
1011 return (ret);
1012}
1013
1014/* print all known host keys for a given host, but skip keys of given type */
1015static int
1016show_other_keys(const char *host, Key *key)
1017{
1018 int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, -1};
1019 int i, found = 0;
1020
1021 for (i = 0; type[i] != -1; i++) {
1022 if (type[i] == key->type)
1023 continue;
1024 if (type[i] != KEY_RSA1 &&
1025 show_key_from_file(options.user_hostfile2, host, type[i])) {
1026 found = 1;
1027 continue;
1028 }
1029 if (type[i] != KEY_RSA1 &&
1030 show_key_from_file(options.system_hostfile2, host, type[i])) {
1031 found = 1;
1032 continue;
1033 }
1034 if (show_key_from_file(options.user_hostfile, host, type[i])) {
1035 found = 1;
1036 continue;
1037 }
1038 if (show_key_from_file(options.system_hostfile, host, type[i])) {
1039 found = 1;
1040 continue;
1041 }
1042 debug2("no key of type %d for host %s", type[i], host);
1043 }
1044 return (found);
1045}
1a1bc5d5 1046
1047static void
1048warn_changed_key(Key *host_key)
1049{
1050 char *fp;
f5da7f70 1051 const char *type = key_type(host_key);
1a1bc5d5 1052
1053 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1054
1055 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1056 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1057 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1058 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1059 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1060 error("It is also possible that the %s host key has just been changed.", type);
1061 error("The fingerprint for the %s key sent by the remote host is\n%s.",
1062 type, fp);
1063 error("Please contact your system administrator.");
1064
1065 xfree(fp);
1a1bc5d5 1066}
d20f3c9e 1067
1068/*
1069 * Execute a local command
1070 */
1071int
1072ssh_local_cmd(const char *args)
1073{
1074 char *shell;
1075 pid_t pid;
1076 int status;
1077
1078 if (!options.permit_local_command ||
1079 args == NULL || !*args)
1080 return (1);
1081
1082 if ((shell = getenv("SHELL")) == NULL)
1083 shell = _PATH_BSHELL;
1084
1085 pid = fork();
1086 if (pid == 0) {
1087 debug3("Executing %s -c \"%s\"", shell, args);
1088 execl(shell, shell, "-c", args, (char *)NULL);
1089 error("Couldn't execute %s -c \"%s\": %s",
1090 shell, args, strerror(errno));
1091 _exit(1);
1092 } else if (pid == -1)
1093 fatal("fork failed: %.100s", strerror(errno));
1094 while (waitpid(pid, &status, 0) == -1)
1095 if (errno != EINTR)
1096 fatal("Couldn't wait for child: %s", strerror(errno));
1097
1098 if (!WIFEXITED(status))
1099 return (1);
1100
1101 return (WEXITSTATUS(status));
1102}
This page took 0.534943 seconds and 5 git commands to generate.