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