1 /* $NetBSD: serverloop.c,v 1.8 2013/11/11 16:44:43 christos Exp $ */ 2 /* $OpenBSD: serverloop.c,v 1.168 2013/07/12 00:19:59 djm Exp $ */ 3 /* 4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 6 * All rights reserved 7 * Server main loop for handling the interactive session. 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". 14 * 15 * SSH2 support by Markus Friedl. 16 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 17 * 18 * Redistribution and use in source and binary forms, with or without 19 * modification, are permitted provided that the following conditions 20 * are met: 21 * 1. Redistributions of source code must retain the above copyright 22 * notice, this list of conditions and the following disclaimer. 23 * 2. Redistributions in binary form must reproduce the above copyright 24 * notice, this list of conditions and the following disclaimer in the 25 * documentation and/or other materials provided with the distribution. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37 */ 38 39 #include "includes.h" 40 __RCSID("$NetBSD: serverloop.c,v 1.8 2013/11/11 16:44:43 christos Exp $"); 41 #include <sys/types.h> 42 #include <sys/wait.h> 43 #include <sys/socket.h> 44 #include <sys/time.h> 45 #include <sys/param.h> 46 #include <sys/queue.h> 47 48 #include <netinet/in.h> 49 50 #include <errno.h> 51 #include <fcntl.h> 52 #include <pwd.h> 53 #include <signal.h> 54 #include <string.h> 55 #include <termios.h> 56 #include <unistd.h> 57 #include <stdarg.h> 58 59 #include "xmalloc.h" 60 #include "packet.h" 61 #include "buffer.h" 62 #include "log.h" 63 #include "servconf.h" 64 #include "canohost.h" 65 #include "sshpty.h" 66 #include "channels.h" 67 #include "compat.h" 68 #include "ssh1.h" 69 #include "ssh2.h" 70 #include "key.h" 71 #include "cipher.h" 72 #include "kex.h" 73 #include "hostfile.h" 74 #include "auth.h" 75 #include "session.h" 76 #include "dispatch.h" 77 #include "auth-options.h" 78 #include "serverloop.h" 79 #include "misc.h" 80 #include "roaming.h" 81 82 extern ServerOptions options; 83 84 /* XXX */ 85 extern Kex *xxx_kex; 86 extern Authctxt *the_authctxt; 87 extern int use_privsep; 88 89 static Buffer stdin_buffer; /* Buffer for stdin data. */ 90 static Buffer stdout_buffer; /* Buffer for stdout data. */ 91 static Buffer stderr_buffer; /* Buffer for stderr data. */ 92 static int fdin; /* Descriptor for stdin (for writing) */ 93 static int fdout; /* Descriptor for stdout (for reading); 94 May be same number as fdin. */ 95 static int fderr; /* Descriptor for stderr. May be -1. */ 96 static u_long stdin_bytes = 0; /* Number of bytes written to stdin. */ 97 static u_long stdout_bytes = 0; /* Number of stdout bytes sent to client. */ 98 static u_long stderr_bytes = 0; /* Number of stderr bytes sent to client. */ 99 static u_long fdout_bytes = 0; /* Number of stdout bytes read from program. */ 100 static int stdin_eof = 0; /* EOF message received from client. */ 101 static int fdout_eof = 0; /* EOF encountered reading from fdout. */ 102 static int fderr_eof = 0; /* EOF encountered readung from fderr. */ 103 static int fdin_is_tty = 0; /* fdin points to a tty. */ 104 static int connection_in; /* Connection to client (input). */ 105 static int connection_out; /* Connection to client (output). */ 106 static int connection_closed = 0; /* Connection to client closed. */ 107 static u_int buffer_high; /* "Soft" max buffer size. */ 108 static int no_more_sessions = 0; /* Disallow further sessions. */ 109 110 /* 111 * This SIGCHLD kludge is used to detect when the child exits. The server 112 * will exit after that, as soon as forwarded connections have terminated. 113 */ 114 115 static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */ 116 117 /* Cleanup on signals (!use_privsep case only) */ 118 static volatile sig_atomic_t received_sigterm = 0; 119 120 /* prototypes */ 121 static void server_init_dispatch(void); 122 123 /* 124 * Returns current time in seconds from Jan 1, 1970 with the maximum 125 * available resolution. 126 */ 127 128 static double 129 get_current_time(void) 130 { 131 struct timeval tv; 132 gettimeofday(&tv, NULL); 133 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0; 134 } 135 136 /* 137 * we write to this pipe if a SIGCHLD is caught in order to avoid 138 * the race between select() and child_terminated 139 */ 140 static int notify_pipe[2]; 141 static void 142 notify_setup(void) 143 { 144 if (pipe(notify_pipe) < 0) { 145 error("pipe(notify_pipe) failed %s", strerror(errno)); 146 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) || 147 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) { 148 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno)); 149 close(notify_pipe[0]); 150 close(notify_pipe[1]); 151 } else { 152 set_nonblock(notify_pipe[0]); 153 set_nonblock(notify_pipe[1]); 154 return; 155 } 156 notify_pipe[0] = -1; /* read end */ 157 notify_pipe[1] = -1; /* write end */ 158 } 159 static void 160 notify_parent(void) 161 { 162 if (notify_pipe[1] != -1) 163 (void)write(notify_pipe[1], "", 1); 164 } 165 static void 166 notify_prepare(fd_set *readset) 167 { 168 if (notify_pipe[0] != -1) 169 FD_SET(notify_pipe[0], readset); 170 } 171 static void 172 notify_done(fd_set *readset) 173 { 174 char c; 175 176 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset)) 177 while (read(notify_pipe[0], &c, 1) != -1) 178 debug2("notify_done: reading"); 179 } 180 181 /*ARGSUSED*/ 182 static void 183 sigchld_handler(int sig) 184 { 185 int save_errno = errno; 186 child_terminated = 1; 187 signal(SIGCHLD, sigchld_handler); 188 notify_parent(); 189 errno = save_errno; 190 } 191 192 /*ARGSUSED*/ 193 static void 194 sigterm_handler(int sig) 195 { 196 received_sigterm = sig; 197 } 198 199 /* 200 * Make packets from buffered stderr data, and buffer it for sending 201 * to the client. 202 */ 203 static void 204 make_packets_from_stderr_data(void) 205 { 206 u_int len; 207 208 /* Send buffered stderr data to the client. */ 209 while (buffer_len(&stderr_buffer) > 0 && 210 packet_not_very_much_data_to_write()) { 211 len = buffer_len(&stderr_buffer); 212 if (packet_is_interactive()) { 213 if (len > 512) 214 len = 512; 215 } else { 216 /* Keep the packets at reasonable size. */ 217 if (len > packet_get_maxsize()) 218 len = packet_get_maxsize(); 219 } 220 packet_start(SSH_SMSG_STDERR_DATA); 221 packet_put_string(buffer_ptr(&stderr_buffer), len); 222 packet_send(); 223 buffer_consume(&stderr_buffer, len); 224 stderr_bytes += len; 225 } 226 } 227 228 /* 229 * Make packets from buffered stdout data, and buffer it for sending to the 230 * client. 231 */ 232 static void 233 make_packets_from_stdout_data(void) 234 { 235 u_int len; 236 237 /* Send buffered stdout data to the client. */ 238 while (buffer_len(&stdout_buffer) > 0 && 239 packet_not_very_much_data_to_write()) { 240 len = buffer_len(&stdout_buffer); 241 if (packet_is_interactive()) { 242 if (len > 512) 243 len = 512; 244 } else { 245 /* Keep the packets at reasonable size. */ 246 if (len > packet_get_maxsize()) 247 len = packet_get_maxsize(); 248 } 249 packet_start(SSH_SMSG_STDOUT_DATA); 250 packet_put_string(buffer_ptr(&stdout_buffer), len); 251 packet_send(); 252 buffer_consume(&stdout_buffer, len); 253 stdout_bytes += len; 254 } 255 } 256 257 static void 258 client_alive_check(void) 259 { 260 int channel_id; 261 262 /* timeout, check to see how many we have had */ 263 if (packet_inc_alive_timeouts() > options.client_alive_count_max) { 264 logit("Timeout, client not responding."); 265 cleanup_exit(255); 266 } 267 268 /* 269 * send a bogus global/channel request with "wantreply", 270 * we should get back a failure 271 */ 272 if ((channel_id = channel_find_open()) == -1) { 273 packet_start(SSH2_MSG_GLOBAL_REQUEST); 274 packet_put_cstring("keepalive@openssh.com"); 275 packet_put_char(1); /* boolean: want reply */ 276 } else { 277 channel_request_start(channel_id, "keepalive@openssh.com", 1); 278 } 279 packet_send(); 280 } 281 282 /* 283 * Sleep in select() until we can do something. This will initialize the 284 * select masks. Upon return, the masks will indicate which descriptors 285 * have data or can accept data. Optionally, a maximum time can be specified 286 * for the duration of the wait (0 = infinite). 287 */ 288 static void 289 wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp, 290 u_int *nallocp, u_int64_t max_time_milliseconds) 291 { 292 struct timeval tv, *tvp; 293 int ret; 294 time_t minwait_secs = 0; 295 int client_alive_scheduled = 0; 296 297 /* Allocate and update select() masks for channel descriptors. */ 298 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 299 &minwait_secs, 0); 300 301 if (minwait_secs != 0) 302 max_time_milliseconds = MIN(max_time_milliseconds, 303 (u_int)minwait_secs * 1000); 304 305 /* 306 * if using client_alive, set the max timeout accordingly, 307 * and indicate that this particular timeout was for client 308 * alive by setting the client_alive_scheduled flag. 309 * 310 * this could be randomized somewhat to make traffic 311 * analysis more difficult, but we're not doing it yet. 312 */ 313 if (compat20 && 314 max_time_milliseconds == 0 && options.client_alive_interval) { 315 client_alive_scheduled = 1; 316 max_time_milliseconds = options.client_alive_interval * 1000ULL; 317 } 318 319 if (compat20) { 320 #if 0 321 /* wrong: bad condition XXX */ 322 if (channel_not_very_much_buffered_data()) 323 #endif 324 FD_SET(connection_in, *readsetp); 325 } else { 326 /* 327 * Read packets from the client unless we have too much 328 * buffered stdin or channel data. 329 */ 330 if (buffer_len(&stdin_buffer) < buffer_high && 331 channel_not_very_much_buffered_data()) 332 FD_SET(connection_in, *readsetp); 333 /* 334 * If there is not too much data already buffered going to 335 * the client, try to get some more data from the program. 336 */ 337 if (packet_not_very_much_data_to_write()) { 338 if (!fdout_eof) 339 FD_SET(fdout, *readsetp); 340 if (!fderr_eof) 341 FD_SET(fderr, *readsetp); 342 } 343 /* 344 * If we have buffered data, try to write some of that data 345 * to the program. 346 */ 347 if (fdin != -1 && buffer_len(&stdin_buffer) > 0) 348 FD_SET(fdin, *writesetp); 349 } 350 notify_prepare(*readsetp); 351 352 /* 353 * If we have buffered packet data going to the client, mark that 354 * descriptor. 355 */ 356 if (packet_have_data_to_write()) 357 FD_SET(connection_out, *writesetp); 358 359 /* 360 * If child has terminated and there is enough buffer space to read 361 * from it, then read as much as is available and exit. 362 */ 363 if (child_terminated && packet_not_very_much_data_to_write()) 364 if (max_time_milliseconds == 0 || client_alive_scheduled) 365 max_time_milliseconds = 100; 366 367 if (max_time_milliseconds == 0) 368 tvp = NULL; 369 else { 370 tv.tv_sec = max_time_milliseconds / 1000; 371 tv.tv_usec = 1000 * (max_time_milliseconds % 1000); 372 tvp = &tv; 373 } 374 375 /* Wait for something to happen, or the timeout to expire. */ 376 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); 377 378 if (ret == -1) { 379 memset(*readsetp, 0, *nallocp); 380 memset(*writesetp, 0, *nallocp); 381 if (errno != EINTR) 382 error("select: %.100s", strerror(errno)); 383 } else if (ret == 0 && client_alive_scheduled) 384 client_alive_check(); 385 386 notify_done(*readsetp); 387 } 388 389 /* 390 * Processes input from the client and the program. Input data is stored 391 * in buffers and processed later. 392 */ 393 static void 394 process_input(fd_set *readset) 395 { 396 int len; 397 char buf[16384]; 398 399 /* Read and buffer any input data from the client. */ 400 if (FD_ISSET(connection_in, readset)) { 401 int cont = 0; 402 len = roaming_read(connection_in, buf, sizeof(buf), &cont); 403 if (len == 0) { 404 if (cont) 405 return; 406 verbose("Connection closed by %.100s", 407 get_remote_ipaddr()); 408 connection_closed = 1; 409 if (compat20) 410 return; 411 cleanup_exit(255); 412 } else if (len < 0) { 413 if (errno != EINTR && errno != EAGAIN) { 414 verbose("Read error from remote host " 415 "%.100s: %.100s", 416 get_remote_ipaddr(), strerror(errno)); 417 cleanup_exit(255); 418 } 419 } else { 420 /* Buffer any received data. */ 421 packet_process_incoming(buf, len); 422 fdout_bytes += len; 423 } 424 } 425 if (compat20) 426 return; 427 428 /* Read and buffer any available stdout data from the program. */ 429 if (!fdout_eof && FD_ISSET(fdout, readset)) { 430 len = read(fdout, buf, sizeof(buf)); 431 if (len < 0 && (errno == EINTR || errno == EAGAIN)) { 432 /* do nothing */ 433 } else if (len <= 0) { 434 fdout_eof = 1; 435 } else { 436 buffer_append(&stdout_buffer, buf, len); 437 debug ("FD out now: %ld", fdout_bytes); 438 fdout_bytes += len; 439 } 440 } 441 /* Read and buffer any available stderr data from the program. */ 442 if (!fderr_eof && FD_ISSET(fderr, readset)) { 443 len = read(fderr, buf, sizeof(buf)); 444 if (len < 0 && (errno == EINTR || errno == EAGAIN)) { 445 /* do nothing */ 446 } else if (len <= 0) { 447 fderr_eof = 1; 448 } else { 449 buffer_append(&stderr_buffer, buf, len); 450 } 451 } 452 } 453 454 /* 455 * Sends data from internal buffers to client program stdin. 456 */ 457 static void 458 process_output(fd_set *writeset) 459 { 460 struct termios tio; 461 u_char *data; 462 u_int dlen; 463 int len; 464 465 /* Write buffered data to program stdin. */ 466 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) { 467 data = buffer_ptr(&stdin_buffer); 468 dlen = buffer_len(&stdin_buffer); 469 len = write(fdin, data, dlen); 470 if (len < 0 && (errno == EINTR || errno == EAGAIN)) { 471 /* do nothing */ 472 } else if (len <= 0) { 473 if (fdin != fdout) 474 close(fdin); 475 else 476 shutdown(fdin, SHUT_WR); /* We will no longer send. */ 477 fdin = -1; 478 } else { 479 /* Successful write. */ 480 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' && 481 tcgetattr(fdin, &tio) == 0 && 482 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) { 483 /* 484 * Simulate echo to reduce the impact of 485 * traffic analysis 486 */ 487 packet_send_ignore(len); 488 packet_send(); 489 } 490 /* Consume the data from the buffer. */ 491 buffer_consume(&stdin_buffer, len); 492 /* Update the count of bytes written to the program. */ 493 stdin_bytes += len; 494 } 495 } 496 /* Send any buffered packet data to the client. */ 497 if (FD_ISSET(connection_out, writeset)) 498 stdin_bytes += packet_write_poll(); 499 } 500 501 /* 502 * Wait until all buffered output has been sent to the client. 503 * This is used when the program terminates. 504 */ 505 static void 506 drain_output(void) 507 { 508 /* Send any buffered stdout data to the client. */ 509 if (buffer_len(&stdout_buffer) > 0) { 510 packet_start(SSH_SMSG_STDOUT_DATA); 511 packet_put_string(buffer_ptr(&stdout_buffer), 512 buffer_len(&stdout_buffer)); 513 packet_send(); 514 /* Update the count of sent bytes. */ 515 stdout_bytes += buffer_len(&stdout_buffer); 516 } 517 /* Send any buffered stderr data to the client. */ 518 if (buffer_len(&stderr_buffer) > 0) { 519 packet_start(SSH_SMSG_STDERR_DATA); 520 packet_put_string(buffer_ptr(&stderr_buffer), 521 buffer_len(&stderr_buffer)); 522 packet_send(); 523 /* Update the count of sent bytes. */ 524 stderr_bytes += buffer_len(&stderr_buffer); 525 } 526 /* Wait until all buffered data has been written to the client. */ 527 packet_write_wait(); 528 } 529 530 static void 531 process_buffered_input_packets(void) 532 { 533 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL); 534 } 535 536 /* 537 * Performs the interactive session. This handles data transmission between 538 * the client and the program. Note that the notion of stdin, stdout, and 539 * stderr in this function is sort of reversed: this function writes to 540 * stdin (of the child program), and reads from stdout and stderr (of the 541 * child program). 542 */ 543 void 544 server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg) 545 { 546 fd_set *readset = NULL, *writeset = NULL; 547 int max_fd = 0; 548 u_int nalloc = 0; 549 int wait_status; /* Status returned by wait(). */ 550 pid_t wait_pid; /* pid returned by wait(). */ 551 int waiting_termination = 0; /* Have displayed waiting close message. */ 552 u_int64_t max_time_milliseconds; 553 u_int previous_stdout_buffer_bytes; 554 u_int stdout_buffer_bytes; 555 int type; 556 557 debug("Entering interactive session."); 558 559 /* Initialize the SIGCHLD kludge. */ 560 child_terminated = 0; 561 signal(SIGCHLD, sigchld_handler); 562 563 if (!use_privsep) { 564 signal(SIGTERM, sigterm_handler); 565 signal(SIGINT, sigterm_handler); 566 signal(SIGQUIT, sigterm_handler); 567 } 568 569 /* Initialize our global variables. */ 570 fdin = fdin_arg; 571 fdout = fdout_arg; 572 fderr = fderr_arg; 573 574 /* nonblocking IO */ 575 set_nonblock(fdin); 576 set_nonblock(fdout); 577 /* we don't have stderr for interactive terminal sessions, see below */ 578 if (fderr != -1) 579 set_nonblock(fderr); 580 581 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin)) 582 fdin_is_tty = 1; 583 584 connection_in = packet_get_connection_in(); 585 connection_out = packet_get_connection_out(); 586 587 notify_setup(); 588 589 previous_stdout_buffer_bytes = 0; 590 591 /* Set approximate I/O buffer size. */ 592 if (packet_is_interactive()) 593 buffer_high = 4096; 594 else 595 buffer_high = 64 * 1024; 596 597 #if 0 598 /* Initialize max_fd to the maximum of the known file descriptors. */ 599 max_fd = MAX(connection_in, connection_out); 600 max_fd = MAX(max_fd, fdin); 601 max_fd = MAX(max_fd, fdout); 602 if (fderr != -1) 603 max_fd = MAX(max_fd, fderr); 604 #endif 605 606 /* Initialize Initialize buffers. */ 607 buffer_init(&stdin_buffer); 608 buffer_init(&stdout_buffer); 609 buffer_init(&stderr_buffer); 610 611 /* 612 * If we have no separate fderr (which is the case when we have a pty 613 * - there we cannot make difference between data sent to stdout and 614 * stderr), indicate that we have seen an EOF from stderr. This way 615 * we don't need to check the descriptor everywhere. 616 */ 617 if (fderr == -1) 618 fderr_eof = 1; 619 620 server_init_dispatch(); 621 622 /* Main loop of the server for the interactive session mode. */ 623 for (;;) { 624 625 /* Process buffered packets from the client. */ 626 process_buffered_input_packets(); 627 628 /* 629 * If we have received eof, and there is no more pending 630 * input data, cause a real eof by closing fdin. 631 */ 632 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) { 633 if (fdin != fdout) 634 close(fdin); 635 else 636 shutdown(fdin, SHUT_WR); /* We will no longer send. */ 637 fdin = -1; 638 } 639 /* Make packets from buffered stderr data to send to the client. */ 640 make_packets_from_stderr_data(); 641 642 /* 643 * Make packets from buffered stdout data to send to the 644 * client. If there is very little to send, this arranges to 645 * not send them now, but to wait a short while to see if we 646 * are getting more data. This is necessary, as some systems 647 * wake up readers from a pty after each separate character. 648 */ 649 max_time_milliseconds = 0; 650 stdout_buffer_bytes = buffer_len(&stdout_buffer); 651 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 && 652 stdout_buffer_bytes != previous_stdout_buffer_bytes) { 653 /* try again after a while */ 654 max_time_milliseconds = 10; 655 } else { 656 /* Send it now. */ 657 make_packets_from_stdout_data(); 658 } 659 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer); 660 661 /* Send channel data to the client. */ 662 if (packet_not_very_much_data_to_write()) 663 channel_output_poll(); 664 665 /* 666 * Bail out of the loop if the program has closed its output 667 * descriptors, and we have no more data to send to the 668 * client, and there is no pending buffered data. 669 */ 670 if (fdout_eof && fderr_eof && !packet_have_data_to_write() && 671 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) { 672 if (!channel_still_open()) 673 break; 674 if (!waiting_termination) { 675 const char *s = "Waiting for forwarded connections to terminate...\r\n"; 676 char *cp; 677 waiting_termination = 1; 678 buffer_append(&stderr_buffer, s, strlen(s)); 679 680 /* Display list of open channels. */ 681 cp = channel_open_message(); 682 buffer_append(&stderr_buffer, cp, strlen(cp)); 683 free(cp); 684 } 685 } 686 max_fd = MAX(connection_in, connection_out); 687 max_fd = MAX(max_fd, fdin); 688 max_fd = MAX(max_fd, fdout); 689 max_fd = MAX(max_fd, fderr); 690 max_fd = MAX(max_fd, notify_pipe[0]); 691 692 /* Sleep in select() until we can do something. */ 693 wait_until_can_do_something(&readset, &writeset, &max_fd, 694 &nalloc, max_time_milliseconds); 695 696 if (received_sigterm) { 697 logit("Exiting on signal %d", (int)received_sigterm); 698 /* Clean up sessions, utmp, etc. */ 699 cleanup_exit(255); 700 } 701 702 /* Process any channel events. */ 703 channel_after_select(readset, writeset); 704 705 /* Process input from the client and from program stdout/stderr. */ 706 process_input(readset); 707 708 /* Process output to the client and to program stdin. */ 709 process_output(writeset); 710 } 711 free(readset); 712 free(writeset); 713 714 /* Cleanup and termination code. */ 715 716 /* Wait until all output has been sent to the client. */ 717 drain_output(); 718 719 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.", 720 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes); 721 722 /* Free and clear the buffers. */ 723 buffer_free(&stdin_buffer); 724 buffer_free(&stdout_buffer); 725 buffer_free(&stderr_buffer); 726 727 /* Close the file descriptors. */ 728 if (fdout != -1) 729 close(fdout); 730 fdout = -1; 731 fdout_eof = 1; 732 if (fderr != -1) 733 close(fderr); 734 fderr = -1; 735 fderr_eof = 1; 736 if (fdin != -1) 737 close(fdin); 738 fdin = -1; 739 740 channel_free_all(); 741 742 /* We no longer want our SIGCHLD handler to be called. */ 743 signal(SIGCHLD, SIG_DFL); 744 745 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0) 746 if (errno != EINTR) 747 packet_disconnect("wait: %.100s", strerror(errno)); 748 if (wait_pid != pid) 749 error("Strange, wait returned pid %ld, expected %ld", 750 (long)wait_pid, (long)pid); 751 752 /* Check if it exited normally. */ 753 if (WIFEXITED(wait_status)) { 754 /* Yes, normal exit. Get exit status and send it to the client. */ 755 debug("Command exited with status %d.", WEXITSTATUS(wait_status)); 756 packet_start(SSH_SMSG_EXITSTATUS); 757 packet_put_int(WEXITSTATUS(wait_status)); 758 packet_send(); 759 packet_write_wait(); 760 761 /* 762 * Wait for exit confirmation. Note that there might be 763 * other packets coming before it; however, the program has 764 * already died so we just ignore them. The client is 765 * supposed to respond with the confirmation when it receives 766 * the exit status. 767 */ 768 do { 769 type = packet_read(); 770 } 771 while (type != SSH_CMSG_EXIT_CONFIRMATION); 772 773 debug("Received exit confirmation."); 774 return; 775 } 776 /* Check if the program terminated due to a signal. */ 777 if (WIFSIGNALED(wait_status)) 778 packet_disconnect("Command terminated on signal %d.", 779 WTERMSIG(wait_status)); 780 781 /* Some weird exit cause. Just exit. */ 782 packet_disconnect("wait returned status %04x.", wait_status); 783 /* NOTREACHED */ 784 } 785 786 static void 787 collect_children(void) 788 { 789 pid_t pid; 790 sigset_t oset, nset; 791 int status; 792 793 /* block SIGCHLD while we check for dead children */ 794 sigemptyset(&nset); 795 sigaddset(&nset, SIGCHLD); 796 sigprocmask(SIG_BLOCK, &nset, &oset); 797 if (child_terminated) { 798 debug("Received SIGCHLD."); 799 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || 800 (pid < 0 && errno == EINTR)) 801 if (pid > 0) 802 session_close_by_pid(pid, status); 803 child_terminated = 0; 804 } 805 sigprocmask(SIG_SETMASK, &oset, NULL); 806 } 807 808 void 809 server_loop2(Authctxt *authctxt) 810 { 811 fd_set *readset = NULL, *writeset = NULL; 812 int rekeying = 0, max_fd; 813 u_int nalloc = 0; 814 u_int64_t rekey_timeout_ms = 0; 815 double start_time, total_time; 816 817 debug("Entering interactive session for SSH2."); 818 start_time = get_current_time(); 819 820 signal(SIGCHLD, sigchld_handler); 821 child_terminated = 0; 822 connection_in = packet_get_connection_in(); 823 connection_out = packet_get_connection_out(); 824 825 if (!use_privsep) { 826 signal(SIGTERM, sigterm_handler); 827 signal(SIGINT, sigterm_handler); 828 signal(SIGQUIT, sigterm_handler); 829 } 830 831 notify_setup(); 832 833 max_fd = MAX(connection_in, connection_out); 834 max_fd = MAX(max_fd, notify_pipe[0]); 835 836 server_init_dispatch(); 837 838 for (;;) { 839 process_buffered_input_packets(); 840 841 rekeying = (xxx_kex != NULL && !xxx_kex->done); 842 843 if (!rekeying && packet_not_very_much_data_to_write()) 844 channel_output_poll(); 845 if (options.rekey_interval > 0 && compat20 && !rekeying) 846 rekey_timeout_ms = packet_get_rekey_timeout() * 1000; 847 else 848 rekey_timeout_ms = 0; 849 850 wait_until_can_do_something(&readset, &writeset, &max_fd, 851 &nalloc, rekey_timeout_ms); 852 853 if (received_sigterm) { 854 logit("Exiting on signal %d", (int)received_sigterm); 855 /* Clean up sessions, utmp, etc. */ 856 cleanup_exit(255); 857 } 858 859 collect_children(); 860 if (!rekeying) { 861 channel_after_select(readset, writeset); 862 if (packet_need_rekeying()) { 863 debug("need rekeying"); 864 xxx_kex->done = 0; 865 kex_send_kexinit(xxx_kex); 866 } 867 } 868 process_input(readset); 869 if (connection_closed) 870 break; 871 process_output(writeset); 872 } 873 collect_children(); 874 875 free(readset); 876 free(writeset); 877 878 /* free all channels, no more reads and writes */ 879 channel_free_all(); 880 881 /* free remaining sessions, e.g. remove wtmp entries */ 882 session_destroy_all(NULL); 883 total_time = get_current_time() - start_time; 884 logit("SSH: Server;LType: Throughput;Remote: %s-%d;IN: %lu;OUT: %lu;Duration: %.1f;tPut_in: %.1f;tPut_out: %.1f", 885 get_remote_ipaddr(), get_remote_port(), 886 stdin_bytes, fdout_bytes, total_time, stdin_bytes / total_time, 887 fdout_bytes / total_time); 888 } 889 890 static void 891 server_input_keep_alive(int type, u_int32_t seq, void *ctxt) 892 { 893 debug("Got %d/%u for keepalive", type, seq); 894 /* 895 * reset timeout, since we got a sane answer from the client. 896 * even if this was generated by something other than 897 * the bogus CHANNEL_REQUEST we send for keepalives. 898 */ 899 packet_set_alive_timeouts(0); 900 } 901 902 static void 903 server_input_stdin_data(int type, u_int32_t seq, void *ctxt) 904 { 905 char *data; 906 u_int data_len; 907 908 /* Stdin data from the client. Append it to the buffer. */ 909 /* Ignore any data if the client has closed stdin. */ 910 if (fdin == -1) 911 return; 912 data = packet_get_string(&data_len); 913 packet_check_eom(); 914 buffer_append(&stdin_buffer, data, data_len); 915 memset(data, 0, data_len); 916 free(data); 917 } 918 919 static void 920 server_input_eof(int type, u_int32_t seq, void *ctxt) 921 { 922 /* 923 * Eof from the client. The stdin descriptor to the 924 * program will be closed when all buffered data has 925 * drained. 926 */ 927 debug("EOF received for stdin."); 928 packet_check_eom(); 929 stdin_eof = 1; 930 } 931 932 static void 933 server_input_window_size(int type, u_int32_t seq, void *ctxt) 934 { 935 u_int row = packet_get_int(); 936 u_int col = packet_get_int(); 937 u_int xpixel = packet_get_int(); 938 u_int ypixel = packet_get_int(); 939 940 debug("Window change received."); 941 packet_check_eom(); 942 if (fdin != -1) 943 pty_change_window_size(fdin, row, col, xpixel, ypixel); 944 } 945 946 static Channel * 947 server_request_direct_tcpip(void) 948 { 949 Channel *c = NULL; 950 char *target, *originator; 951 u_short target_port, originator_port; 952 953 target = packet_get_string(NULL); 954 target_port = packet_get_int(); 955 originator = packet_get_string(NULL); 956 originator_port = packet_get_int(); 957 packet_check_eom(); 958 959 debug("server_request_direct_tcpip: originator %s port %d, target %s " 960 "port %d", originator, originator_port, target, target_port); 961 962 /* XXX fine grained permissions */ 963 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0 && 964 !no_port_forwarding_flag) { 965 c = channel_connect_to(target, target_port, 966 "direct-tcpip", "direct-tcpip"); 967 } else { 968 logit("refused local port forward: " 969 "originator %s port %d, target %s port %d", 970 originator, originator_port, target, target_port); 971 } 972 973 free(originator); 974 free(target); 975 976 return c; 977 } 978 979 static Channel * 980 server_request_tun(void) 981 { 982 Channel *c = NULL; 983 int mode, tun; 984 int sock; 985 986 mode = packet_get_int(); 987 switch (mode) { 988 case SSH_TUNMODE_POINTOPOINT: 989 case SSH_TUNMODE_ETHERNET: 990 break; 991 default: 992 packet_send_debug("Unsupported tunnel device mode."); 993 return NULL; 994 } 995 if ((options.permit_tun & mode) == 0) { 996 packet_send_debug("Server has rejected tunnel device " 997 "forwarding"); 998 return NULL; 999 } 1000 1001 tun = packet_get_int(); 1002 if (forced_tun_device != -1) { 1003 if (tun != SSH_TUNID_ANY && forced_tun_device != tun) 1004 goto done; 1005 tun = forced_tun_device; 1006 } 1007 sock = tun_open(tun, mode); 1008 if (sock < 0) 1009 goto done; 1010 if (options.hpn_disabled) 1011 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1, 1012 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); 1013 else 1014 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1, 1015 options.hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); 1016 c->datagram = 1; 1017 1018 done: 1019 if (c == NULL) 1020 packet_send_debug("Failed to open the tunnel device."); 1021 return c; 1022 } 1023 1024 static Channel * 1025 server_request_session(void) 1026 { 1027 Channel *c; 1028 1029 debug("input_session_request"); 1030 packet_check_eom(); 1031 1032 if (no_more_sessions) { 1033 packet_disconnect("Possible attack: attempt to open a session " 1034 "after additional sessions disabled"); 1035 } 1036 1037 /* 1038 * A server session has no fd to read or write until a 1039 * CHANNEL_REQUEST for a shell is made, so we set the type to 1040 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all 1041 * CHANNEL_REQUEST messages is registered. 1042 */ 1043 c = channel_new("session", SSH_CHANNEL_LARVAL, 1044 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT, 1045 0, "server-session", 1); 1046 if ((options.tcp_rcv_buf_poll > 0) && (!options.hpn_disabled)) 1047 c->dynamic_window = 1; 1048 if (session_open(the_authctxt, c->self) != 1) { 1049 debug("session open failed, free channel %d", c->self); 1050 channel_free(c); 1051 return NULL; 1052 } 1053 channel_register_cleanup(c->self, session_close_by_channel, 0); 1054 return c; 1055 } 1056 1057 static void 1058 server_input_channel_open(int type, u_int32_t seq, void *ctxt) 1059 { 1060 Channel *c = NULL; 1061 char *ctype; 1062 int rchan; 1063 u_int rmaxpack, rwindow, len; 1064 1065 ctype = packet_get_string(&len); 1066 rchan = packet_get_int(); 1067 rwindow = packet_get_int(); 1068 rmaxpack = packet_get_int(); 1069 1070 debug("server_input_channel_open: ctype %s rchan %d win %d max %d", 1071 ctype, rchan, rwindow, rmaxpack); 1072 1073 if (strcmp(ctype, "session") == 0) { 1074 c = server_request_session(); 1075 } else if (strcmp(ctype, "direct-tcpip") == 0) { 1076 c = server_request_direct_tcpip(); 1077 } else if (strcmp(ctype, "tun@openssh.com") == 0) { 1078 c = server_request_tun(); 1079 } 1080 if (c != NULL) { 1081 debug("server_input_channel_open: confirm %s", ctype); 1082 c->remote_id = rchan; 1083 c->remote_window = rwindow; 1084 c->remote_maxpacket = rmaxpack; 1085 if (c->type != SSH_CHANNEL_CONNECTING) { 1086 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION); 1087 packet_put_int(c->remote_id); 1088 packet_put_int(c->self); 1089 packet_put_int(c->local_window); 1090 packet_put_int(c->local_maxpacket); 1091 packet_send(); 1092 } 1093 } else { 1094 debug("server_input_channel_open: failure %s", ctype); 1095 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE); 1096 packet_put_int(rchan); 1097 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED); 1098 if (!(datafellows & SSH_BUG_OPENFAILURE)) { 1099 packet_put_cstring("open failed"); 1100 packet_put_cstring(""); 1101 } 1102 packet_send(); 1103 } 1104 free(ctype); 1105 } 1106 1107 static void 1108 server_input_global_request(int type, u_int32_t seq, void *ctxt) 1109 { 1110 char *rtype; 1111 int want_reply; 1112 int success = 0, allocated_listen_port = 0; 1113 1114 rtype = packet_get_string(NULL); 1115 want_reply = packet_get_char(); 1116 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply); 1117 1118 /* -R style forwarding */ 1119 if (strcmp(rtype, "tcpip-forward") == 0) { 1120 struct passwd *pw; 1121 char *listen_address; 1122 u_short listen_port; 1123 1124 pw = the_authctxt->pw; 1125 if (pw == NULL || !the_authctxt->valid) 1126 fatal("server_input_global_request: no/invalid user"); 1127 listen_address = packet_get_string(NULL); 1128 listen_port = (u_short)packet_get_int(); 1129 debug("server_input_global_request: tcpip-forward listen %s port %d", 1130 listen_address, listen_port); 1131 1132 /* check permissions */ 1133 if ((options.allow_tcp_forwarding & FORWARD_REMOTE) == 0 || 1134 no_port_forwarding_flag || 1135 (!want_reply && listen_port == 0) || 1136 (listen_port != 0 && listen_port < IPPORT_RESERVED && 1137 pw->pw_uid != 0)) { 1138 success = 0; 1139 packet_send_debug("Server has disabled port forwarding."); 1140 } else { 1141 /* Start listening on the port */ 1142 success = channel_setup_remote_fwd_listener( 1143 listen_address, listen_port, 1144 &allocated_listen_port, options.gateway_ports); 1145 } 1146 free(listen_address); 1147 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) { 1148 char *cancel_address; 1149 u_short cancel_port; 1150 1151 cancel_address = packet_get_string(NULL); 1152 cancel_port = (u_short)packet_get_int(); 1153 debug("%s: cancel-tcpip-forward addr %s port %d", __func__, 1154 cancel_address, cancel_port); 1155 1156 success = channel_cancel_rport_listener(cancel_address, 1157 cancel_port); 1158 free(cancel_address); 1159 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) { 1160 no_more_sessions = 1; 1161 success = 1; 1162 } 1163 if (want_reply) { 1164 packet_start(success ? 1165 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE); 1166 if (success && allocated_listen_port > 0) 1167 packet_put_int(allocated_listen_port); 1168 packet_send(); 1169 packet_write_wait(); 1170 } 1171 free(rtype); 1172 } 1173 1174 static void 1175 server_input_channel_req(int type, u_int32_t seq, void *ctxt) 1176 { 1177 Channel *c; 1178 int id, reply, success = 0; 1179 char *rtype; 1180 1181 id = packet_get_int(); 1182 rtype = packet_get_string(NULL); 1183 reply = packet_get_char(); 1184 1185 debug("server_input_channel_req: channel %d request %s reply %d", 1186 id, rtype, reply); 1187 1188 if ((c = channel_lookup(id)) == NULL) 1189 packet_disconnect("server_input_channel_req: " 1190 "unknown channel %d", id); 1191 if (!strcmp(rtype, "eow@openssh.com")) { 1192 packet_check_eom(); 1193 chan_rcvd_eow(c); 1194 } else if ((c->type == SSH_CHANNEL_LARVAL || 1195 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0) 1196 success = session_input_channel_req(c, rtype); 1197 if (reply) { 1198 packet_start(success ? 1199 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE); 1200 packet_put_int(c->remote_id); 1201 packet_send(); 1202 } 1203 free(rtype); 1204 } 1205 1206 static void 1207 server_init_dispatch_20(void) 1208 { 1209 debug("server_init_dispatch_20"); 1210 dispatch_init(&dispatch_protocol_error); 1211 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); 1212 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); 1213 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); 1214 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); 1215 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open); 1216 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); 1217 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); 1218 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req); 1219 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); 1220 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request); 1221 /* client_alive */ 1222 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive); 1223 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive); 1224 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive); 1225 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive); 1226 /* rekeying */ 1227 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); 1228 } 1229 static void 1230 server_init_dispatch_13(void) 1231 { 1232 debug("server_init_dispatch_13"); 1233 dispatch_init(NULL); 1234 dispatch_set(SSH_CMSG_EOF, &server_input_eof); 1235 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data); 1236 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size); 1237 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close); 1238 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation); 1239 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data); 1240 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); 1241 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); 1242 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open); 1243 } 1244 static void 1245 server_init_dispatch_15(void) 1246 { 1247 server_init_dispatch_13(); 1248 debug("server_init_dispatch_15"); 1249 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); 1250 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose); 1251 } 1252 static void 1253 server_init_dispatch(void) 1254 { 1255 if (compat20) 1256 server_init_dispatch_20(); 1257 else if (compat13) 1258 server_init_dispatch_13(); 1259 else 1260 server_init_dispatch_15(); 1261 } 1262