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