]> andersk Git - openssh.git/blame - sshconnect.c
- markus@cvs.openbsd.org 2006/07/11 18:50:48
[openssh.git] / sshconnect.c
CommitLineData
d4530052 1/* $OpenBSD: sshconnect.c,v 1.189 2006/07/10 12:46:51 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>
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
d4530052 517check_host_key(char *hostname, 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);
d4530052 522 char *ip = NULL, *host = 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");
d4530052 573 ip = put_host_port(ntop, options.port);
7c49df64 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 */
d4530052 581 if (options.check_host_ip && (local ||
582 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
57112b5a 583 options.check_host_ip = 0;
584
8abcdba4 585 /*
d4530052 586 * Allow the user to record the key under a different name or
587 * differentiate a non-standard port. This is useful for ssh
588 * tunneling over forwarded connections or if you run multiple
589 * sshd's on different ports on the same machine.
8abcdba4 590 */
591 if (options.host_key_alias != NULL) {
d4530052 592 host = xstrdup(options.host_key_alias);
8abcdba4 593 debug("using hostkeyalias: %s", host);
d4530052 594 } else {
595 host = put_host_port(hostname, options.port);
8abcdba4 596 }
597
95f1eccc 598 /*
599 * Store the host key from the known host file in here so that we can
600 * compare it with the key for the IP address.
601 */
4fe2af09 602 file_key = key_new(host_key->type);
5260325f 603
aa3378df 604 /*
7b9b0103 605 * Check if the host key is present in the user's list of known
aa3378df 606 * hosts or in the systemwide list.
607 */
1e3b8b07 608 host_file = user_hostfile;
f49bc4f7 609 host_status = check_host_in_hostfile(host_file, host, host_key,
184eed6a 610 file_key, &host_line);
1e3b8b07 611 if (host_status == HOST_NEW) {
612 host_file = system_hostfile;
f49bc4f7 613 host_status = check_host_in_hostfile(host_file, host, host_key,
614 file_key, &host_line);
1e3b8b07 615 }
aa3378df 616 /*
617 * Also perform check for the ip address, skip the check if we are
618 * localhost or the hostname was an ip address to begin with
619 */
7c49df64 620 if (options.check_host_ip) {
4fe2af09 621 Key *ip_key = key_new(host_key->type);
5260325f 622
1e3b8b07 623 ip_file = user_hostfile;
f49bc4f7 624 ip_status = check_host_in_hostfile(ip_file, ip, host_key,
625 ip_key, &ip_line);
1e3b8b07 626 if (ip_status == HOST_NEW) {
627 ip_file = system_hostfile;
f49bc4f7 628 ip_status = check_host_in_hostfile(ip_file, ip,
629 host_key, ip_key, &ip_line);
1e3b8b07 630 }
5260325f 631 if (host_status == HOST_CHANGED &&
4fe2af09 632 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
5260325f 633 host_ip_differ = 1;
634
4fe2af09 635 key_free(ip_key);
5260325f 636 } else
637 ip_status = host_status;
638
4fe2af09 639 key_free(file_key);
5260325f 640
641 switch (host_status) {
642 case HOST_OK:
643 /* The host is known and the key matches. */
1d1ffb87 644 debug("Host '%.200s' is known and matches the %s host key.",
645 host, type);
1e3b8b07 646 debug("Found key in %s:%d", host_file, host_line);
7c49df64 647 if (options.check_host_ip && ip_status == HOST_NEW) {
f49bc4f7 648 if (readonly)
bbe88b6d 649 logit("%s host key for IP address "
f49bc4f7 650 "'%.128s' not in list of known hosts.",
7c49df64 651 type, ip);
f49bc4f7 652 else if (!add_host_to_hostfile(user_hostfile, ip,
5c63c2ab 653 host_key, options.hash_known_hosts))
bbe88b6d 654 logit("Failed to add the %s host key for IP "
f49bc4f7 655 "address '%.128s' to the list of known "
656 "hosts (%.30s).", type, ip, user_hostfile);
657 else
bbe88b6d 658 logit("Warning: Permanently added the %s host "
f49bc4f7 659 "key for IP address '%.128s' to the list "
660 "of known hosts.", type, ip);
5260325f 661 }
662 break;
663 case HOST_NEW:
f49bc4f7 664 if (readonly)
665 goto fail;
5260325f 666 /* The host is new. */
667 if (options.strict_host_key_checking == 1) {
f49bc4f7 668 /*
669 * User has requested strict host key checking. We
670 * will not add the host key automatically. The only
671 * alternative left is to abort.
672 */
673 error("No %s host key is known for %.200s and you "
674 "have requested strict checking.", type, host);
675 goto fail;
5260325f 676 } else if (options.strict_host_key_checking == 2) {
1432b5c4 677 char msg1[1024], msg2[1024];
678
679 if (show_other_keys(host, host_key))
680 snprintf(msg1, sizeof(msg1),
4e2e5cfd 681 "\nbut keys of different type are already"
682 " known for this host.");
1432b5c4 683 else
684 snprintf(msg1, sizeof(msg1), ".");
5260325f 685 /* The default */
22138a36 686 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1432b5c4 687 msg2[0] = '\0';
1432b5c4 688 if (options.verify_host_key_dns) {
0161a13d 689 if (matching_host_key_dns)
1432b5c4 690 snprintf(msg2, sizeof(msg2),
691 "Matching host key fingerprint"
692 " found in DNS.\n");
693 else
694 snprintf(msg2, sizeof(msg2),
695 "No matching host key fingerprint"
696 " found in DNS.\n");
697 }
616a6b93 698 snprintf(msg, sizeof(msg),
f49bc4f7 699 "The authenticity of host '%.200s (%s)' can't be "
8a48a7ef 700 "established%s\n"
1432b5c4 701 "%s key fingerprint is %s.\n%s"
f49bc4f7 702 "Are you sure you want to continue connecting "
8a48a7ef 703 "(yes/no)? ",
1432b5c4 704 host, ip, msg1, type, fp, msg2);
22138a36 705 xfree(fp);
616a6b93 706 if (!confirm(msg))
f49bc4f7 707 goto fail;
5260325f 708 }
f49bc4f7 709 /*
710 * If not in strict mode, add the key automatically to the
711 * local known_hosts file.
712 */
e79276c2 713 if (options.check_host_ip && ip_status == HOST_NEW) {
714 snprintf(hostline, sizeof(hostline), "%s,%s",
715 host, ip);
716 hostp = hostline;
717 if (options.hash_known_hosts) {
718 /* Add hash of host and IP separately */
719 r = add_host_to_hostfile(user_hostfile, host,
720 host_key, options.hash_known_hosts) &&
721 add_host_to_hostfile(user_hostfile, ip,
722 host_key, options.hash_known_hosts);
723 } else {
724 /* Add unhashed "host,ip" */
725 r = add_host_to_hostfile(user_hostfile,
726 hostline, host_key,
727 options.hash_known_hosts);
728 }
729 } else {
730 r = add_host_to_hostfile(user_hostfile, host, host_key,
731 options.hash_known_hosts);
732 hostp = host;
733 }
734
735 if (!r)
bbe88b6d 736 logit("Failed to add the host to the list of known "
f49bc4f7 737 "hosts (%.500s).", user_hostfile);
5260325f 738 else
bbe88b6d 739 logit("Warning: Permanently added '%.200s' (%s) to the "
f49bc4f7 740 "list of known hosts.", hostp, type);
5260325f 741 break;
742 case HOST_CHANGED:
743 if (options.check_host_ip && host_ip_differ) {
ca75d7de 744 char *key_msg;
5260325f 745 if (ip_status == HOST_NEW)
ca75d7de 746 key_msg = "is unknown";
5260325f 747 else if (ip_status == HOST_OK)
ca75d7de 748 key_msg = "is unchanged";
5260325f 749 else
ca75d7de 750 key_msg = "has a different value";
5260325f 751 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
752 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
753 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1d1ffb87 754 error("The %s host key for %s has changed,", type, host);
5260325f 755 error("and the key for the according IP address %s", ip);
ca75d7de 756 error("%s. This could either mean that", key_msg);
5260325f 757 error("DNS SPOOFING is happening or the IP address for the host");
1e3b8b07 758 error("and its host key have changed at the same time.");
7c49df64 759 if (ip_status != HOST_NEW)
1e3b8b07 760 error("Offending key for IP in %s:%d", ip_file, ip_line);
5260325f 761 }
762 /* The host key has changed. */
1a1bc5d5 763 warn_changed_key(host_key);
5260325f 764 error("Add correct host key in %.100s to get rid of this message.",
8abcdba4 765 user_hostfile);
1e3b8b07 766 error("Offending key in %s:%d", host_file, host_line);
5260325f 767
aa3378df 768 /*
769 * If strict host key checking is in use, the user will have
770 * to edit the key manually and we can only abort.
771 */
f49bc4f7 772 if (options.strict_host_key_checking) {
773 error("%s host key for %.200s has changed and you have "
774 "requested strict checking.", type, host);
775 goto fail;
776 }
5260325f 777
aa3378df 778 /*
779 * If strict host key checking has not been requested, allow
d453a600 780 * the connection but without MITM-able authentication or
aa3378df 781 * agent forwarding.
782 */
5260325f 783 if (options.password_authentication) {
f49bc4f7 784 error("Password authentication is disabled to avoid "
785 "man-in-the-middle attacks.");
5260325f 786 options.password_authentication = 0;
787 }
d453a600 788 if (options.kbd_interactive_authentication) {
789 error("Keyboard-interactive authentication is disabled"
790 " to avoid man-in-the-middle attacks.");
791 options.kbd_interactive_authentication = 0;
792 options.challenge_response_authentication = 0;
793 }
794 if (options.challenge_response_authentication) {
795 error("Challenge/response authentication is disabled"
796 " to avoid man-in-the-middle attacks.");
797 options.challenge_response_authentication = 0;
798 }
5260325f 799 if (options.forward_agent) {
f49bc4f7 800 error("Agent forwarding is disabled to avoid "
801 "man-in-the-middle attacks.");
5260325f 802 options.forward_agent = 0;
803 }
0b6fbf03 804 if (options.forward_x11) {
f49bc4f7 805 error("X11 forwarding is disabled to avoid "
806 "man-in-the-middle attacks.");
0b6fbf03 807 options.forward_x11 = 0;
808 }
f49bc4f7 809 if (options.num_local_forwards > 0 ||
810 options.num_remote_forwards > 0) {
811 error("Port forwarding is disabled to avoid "
812 "man-in-the-middle attacks.");
813 options.num_local_forwards =
184eed6a 814 options.num_remote_forwards = 0;
0b6fbf03 815 }
aa3378df 816 /*
817 * XXX Should permit the user to change to use the new id.
818 * This could be done by converting the host key to an
819 * identifying sentence, tell that the host identifies itself
820 * by that sentence, and ask the user if he/she whishes to
821 * accept the authentication.
822 */
5260325f 823 break;
8a48a7ef 824 case HOST_FOUND:
825 fatal("internal error");
826 break;
5260325f 827 }
0b6fbf03 828
7c49df64 829 if (options.check_host_ip && host_status != HOST_CHANGED &&
830 ip_status == HOST_CHANGED) {
616a6b93 831 snprintf(msg, sizeof(msg),
832 "Warning: the %s host key for '%.200s' "
833 "differs from the key for the IP address '%.128s'"
834 "\nOffending key for IP in %s:%d",
835 type, host, ip, ip_file, ip_line);
836 if (host_status == HOST_OK) {
837 len = strlen(msg);
838 snprintf(msg + len, sizeof(msg) - len,
839 "\nMatching host key in %s:%d",
7203d6bb 840 host_file, host_line);
616a6b93 841 }
7c49df64 842 if (options.strict_host_key_checking == 1) {
b0545fe6 843 logit("%s", msg);
f49bc4f7 844 error("Exiting, you have requested strict checking.");
845 goto fail;
7c49df64 846 } else if (options.strict_host_key_checking == 2) {
616a6b93 847 strlcat(msg, "\nAre you sure you want "
848 "to continue connecting (yes/no)? ", sizeof(msg));
849 if (!confirm(msg))
f49bc4f7 850 goto fail;
616a6b93 851 } else {
b0545fe6 852 logit("%s", msg);
7c49df64 853 }
854 }
855
0b6fbf03 856 xfree(ip);
d4530052 857 xfree(host);
f49bc4f7 858 return 0;
859
860fail:
861 xfree(ip);
d4530052 862 xfree(host);
f49bc4f7 863 return -1;
864}
865
21289cd0 866/* returns 0 if key verifies or -1 if key does NOT verify */
f49bc4f7 867int
868verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
869{
870 struct stat st;
0161a13d 871 int flags = 0;
f49bc4f7 872
0161a13d 873 if (options.verify_host_key_dns &&
874 verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) {
875
876 if (flags & DNS_VERIFY_FOUND) {
877
878 if (options.verify_host_key_dns == 1 &&
879 flags & DNS_VERIFY_MATCH &&
880 flags & DNS_VERIFY_SECURE)
881 return 0;
882
883 if (flags & DNS_VERIFY_MATCH) {
884 matching_host_key_dns = 1;
885 } else {
886 warn_changed_key(host_key);
887 error("Update the SSHFP RR in DNS with the new "
888 "host key to get rid of this message.");
889 }
21289cd0 890 }
891 }
21289cd0 892
f49bc4f7 893 /* return ok if the key can be found in an old keyfile */
894 if (stat(options.system_hostfile2, &st) == 0 ||
895 stat(options.user_hostfile2, &st) == 0) {
896 if (check_host_key(host, hostaddr, host_key, /*readonly*/ 1,
897 options.user_hostfile2, options.system_hostfile2) == 0)
898 return 0;
899 }
900 return check_host_key(host, hostaddr, host_key, /*readonly*/ 0,
901 options.user_hostfile, options.system_hostfile);
95f1eccc 902}
903
8ce64345 904/*
a306f2dd 905 * Starts a dialog with the server, and authenticates the current user on the
906 * server. This does not need any extra privileges. The basic connection
907 * to the server must already have been established before this is called.
908 * If login fails, this function prints an error and never returns.
909 * This function does not require super-user privileges.
8ce64345 910 */
911void
39c00dc2 912ssh_login(Sensitive *sensitive, const char *orighost,
63bd8c36 913 struct sockaddr *hostaddr, struct passwd *pw)
8ce64345 914{
a306f2dd 915 char *host, *cp;
8ce64345 916 char *server_user, *local_user;
8ce64345 917
8ce64345 918 local_user = xstrdup(pw->pw_name);
919 server_user = options.user ? options.user : local_user;
920
7b2ea3a1 921 /* Convert the user-supplied hostname into all lowercase. */
922 host = xstrdup(orighost);
923 for (cp = host; *cp; cp++)
924 if (isupper(*cp))
9555d258 925 *cp = (char)tolower(*cp);
7b2ea3a1 926
927 /* Exchange protocol version identification strings with the server. */
928 ssh_exchange_identification();
929
930 /* Put the connection into non-blocking mode. */
931 packet_set_nonblocking();
932
7b2ea3a1 933 /* key exchange */
7b2ea3a1 934 /* authenticate user */
8ce64345 935 if (compat20) {
936 ssh_kex2(host, hostaddr);
39c00dc2 937 ssh_userauth2(local_user, server_user, host, sensitive);
8ce64345 938 } else {
8ce64345 939 ssh_kex(host, hostaddr);
39c00dc2 940 ssh_userauth1(local_user, server_user, host, sensitive);
8ce64345 941 }
2b8dc5e3 942 xfree(local_user);
7b2ea3a1 943}
0ae4fe1d 944
945void
946ssh_put_password(char *password)
947{
948 int size;
949 char *padded;
950
99c415db 951 if (datafellows & SSH_BUG_PASSWORDPAD) {
449c5ba5 952 packet_put_cstring(password);
99c415db 953 return;
954 }
0ae4fe1d 955 size = roundup(strlen(password) + 1, 32);
52e3daed 956 padded = xcalloc(1, size);
0ae4fe1d 957 strlcpy(padded, password, size);
958 packet_put_string(padded, size);
959 memset(padded, 0, size);
960 xfree(padded);
961}
8a48a7ef 962
963static int
964show_key_from_file(const char *file, const char *host, int keytype)
965{
966 Key *found;
967 char *fp;
968 int line, ret;
969
970 found = key_new(keytype);
971 if ((ret = lookup_key_in_hostfile_by_type(file, host,
972 keytype, found, &line))) {
973 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
bbe88b6d 974 logit("WARNING: %s key found for host %s\n"
567a05bf 975 "in %s:%d\n"
8a48a7ef 976 "%s key fingerprint %s.",
977 key_type(found), host, file, line,
978 key_type(found), fp);
979 xfree(fp);
980 }
981 key_free(found);
982 return (ret);
983}
984
985/* print all known host keys for a given host, but skip keys of given type */
986static int
987show_other_keys(const char *host, Key *key)
988{
989 int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, -1};
990 int i, found = 0;
991
992 for (i = 0; type[i] != -1; i++) {
993 if (type[i] == key->type)
994 continue;
995 if (type[i] != KEY_RSA1 &&
996 show_key_from_file(options.user_hostfile2, host, type[i])) {
997 found = 1;
998 continue;
999 }
1000 if (type[i] != KEY_RSA1 &&
1001 show_key_from_file(options.system_hostfile2, host, type[i])) {
1002 found = 1;
1003 continue;
1004 }
1005 if (show_key_from_file(options.user_hostfile, host, type[i])) {
1006 found = 1;
1007 continue;
1008 }
1009 if (show_key_from_file(options.system_hostfile, host, type[i])) {
1010 found = 1;
1011 continue;
1012 }
1013 debug2("no key of type %d for host %s", type[i], host);
1014 }
1015 return (found);
1016}
1a1bc5d5 1017
1018static void
1019warn_changed_key(Key *host_key)
1020{
1021 char *fp;
f5da7f70 1022 const char *type = key_type(host_key);
1a1bc5d5 1023
1024 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1025
1026 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1027 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1028 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1029 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1030 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1031 error("It is also possible that the %s host key has just been changed.", type);
1032 error("The fingerprint for the %s key sent by the remote host is\n%s.",
1033 type, fp);
1034 error("Please contact your system administrator.");
1035
1036 xfree(fp);
1a1bc5d5 1037}
d20f3c9e 1038
1039/*
1040 * Execute a local command
1041 */
1042int
1043ssh_local_cmd(const char *args)
1044{
1045 char *shell;
1046 pid_t pid;
1047 int status;
1048
1049 if (!options.permit_local_command ||
1050 args == NULL || !*args)
1051 return (1);
1052
1053 if ((shell = getenv("SHELL")) == NULL)
1054 shell = _PATH_BSHELL;
1055
1056 pid = fork();
1057 if (pid == 0) {
1058 debug3("Executing %s -c \"%s\"", shell, args);
1059 execl(shell, shell, "-c", args, (char *)NULL);
1060 error("Couldn't execute %s -c \"%s\": %s",
1061 shell, args, strerror(errno));
1062 _exit(1);
1063 } else if (pid == -1)
1064 fatal("fork failed: %.100s", strerror(errno));
1065 while (waitpid(pid, &status, 0) == -1)
1066 if (errno != EINTR)
1067 fatal("Couldn't wait for child: %s", strerror(errno));
1068
1069 if (!WIFEXITED(status))
1070 return (1);
1071
1072 return (WEXITSTATUS(status));
1073}
This page took 0.475327 seconds and 5 git commands to generate.