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