2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * Server main loop for handling the interactive session.
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
13 * SSH2 support by Markus Friedl.
14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
38 * Use is subject to license terms.
42 RCSID("$OpenBSD: serverloop.c,v 1.104 2002/09/19 16:03:15 stevesk Exp $");
58 #include "auth-options.h"
59 #include "serverloop.h"
64 #include "altprivsep.h"
65 #endif /* ALTPRIVSEP*/
67 extern ServerOptions options
;
71 static Authctxt
*xxx_authctxt
;
73 static Buffer stdin_buffer
; /* Buffer for stdin data. */
74 static Buffer stdout_buffer
; /* Buffer for stdout data. */
75 static Buffer stderr_buffer
; /* Buffer for stderr data. */
76 static int fdin
; /* Descriptor for stdin (for writing) */
77 static int fdout
; /* Descriptor for stdout (for reading);
78 May be same number as fdin. */
79 static int fderr
; /* Descriptor for stderr. May be -1. */
80 static long stdin_bytes
= 0; /* Number of bytes written to stdin. */
81 static long stdout_bytes
= 0; /* Number of stdout bytes sent to client. */
82 static long stderr_bytes
= 0; /* Number of stderr bytes sent to client. */
83 static long fdout_bytes
= 0; /* Number of stdout bytes read from program. */
84 static int stdin_eof
= 0; /* EOF message received from client. */
85 static int fdout_eof
= 0; /* EOF encountered reading from fdout. */
86 static int fderr_eof
= 0; /* EOF encountered readung from fderr. */
87 static int fdin_is_tty
= 0; /* fdin points to a tty. */
88 static int connection_in
; /* Connection to client (input). */
89 static int connection_out
; /* Connection to client (output). */
90 static int connection_closed
= 0; /* Connection to client closed. */
91 static u_int buffer_high
; /* "Soft" max buffer size. */
92 static int client_alive_timeouts
= 0;
95 * This SIGCHLD kludge is used to detect when the child exits. The server
96 * will exit after that, as soon as forwarded connections have terminated.
99 static volatile sig_atomic_t child_terminated
= 0; /* The child has terminated. */
102 static void server_init_dispatch(void);
105 * we write to this pipe if a SIGCHLD is caught in order to avoid
106 * the race between select() and child_terminated
108 static int notify_pipe
[2];
112 if (pipe(notify_pipe
) < 0) {
113 error("pipe(notify_pipe) failed %s", strerror(errno
));
114 } else if ((fcntl(notify_pipe
[0], F_SETFD
, FD_CLOEXEC
) == -1) ||
115 (fcntl(notify_pipe
[1], F_SETFD
, FD_CLOEXEC
) == -1)) {
116 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno
));
117 (void) close(notify_pipe
[0]);
118 (void) close(notify_pipe
[1]);
120 set_nonblock(notify_pipe
[0]);
121 set_nonblock(notify_pipe
[1]);
124 notify_pipe
[0] = -1; /* read end */
125 notify_pipe
[1] = -1; /* write end */
130 if (notify_pipe
[1] != -1)
131 (void) write(notify_pipe
[1], "", 1);
134 notify_prepare(fd_set
*readset
)
136 if (notify_pipe
[0] != -1)
137 FD_SET(notify_pipe
[0], readset
);
140 notify_done(fd_set
*readset
)
144 if (notify_pipe
[0] != -1 && FD_ISSET(notify_pipe
[0], readset
))
145 while (read(notify_pipe
[0], &c
, 1) != -1)
146 debug2("notify_done: reading");
150 sigchld_handler(int sig
)
152 int save_errno
= errno
;
153 debug("Received SIGCHLD.");
154 child_terminated
= 1;
156 mysignal(SIGCHLD
, sigchld_handler
);
163 * Make packets from buffered stderr data, and buffer it for sending
167 make_packets_from_stderr_data(void)
171 /* Send buffered stderr data to the client. */
172 while (buffer_len(&stderr_buffer
) > 0 &&
173 packet_not_very_much_data_to_write()) {
174 len
= buffer_len(&stderr_buffer
);
175 if (packet_is_interactive()) {
179 /* Keep the packets at reasonable size. */
180 if (len
> packet_get_maxsize())
181 len
= packet_get_maxsize();
183 packet_start(SSH_SMSG_STDERR_DATA
);
184 packet_put_string(buffer_ptr(&stderr_buffer
), len
);
186 buffer_consume(&stderr_buffer
, len
);
192 * Make packets from buffered stdout data, and buffer it for sending to the
196 make_packets_from_stdout_data(void)
200 /* Send buffered stdout data to the client. */
201 while (buffer_len(&stdout_buffer
) > 0 &&
202 packet_not_very_much_data_to_write()) {
203 len
= buffer_len(&stdout_buffer
);
204 if (packet_is_interactive()) {
208 /* Keep the packets at reasonable size. */
209 if (len
> packet_get_maxsize())
210 len
= packet_get_maxsize();
212 packet_start(SSH_SMSG_STDOUT_DATA
);
213 packet_put_string(buffer_ptr(&stdout_buffer
), len
);
215 buffer_consume(&stdout_buffer
, len
);
221 client_alive_check(void)
223 static int had_channel
= 0;
226 id
= channel_find_open();
230 packet_disconnect("No open channels after timeout!");
234 /* timeout, check to see how many we have had */
235 if (++client_alive_timeouts
> options
.client_alive_count_max
)
236 packet_disconnect("Timeout, your session not responding.");
239 * send a bogus channel request with "wantreply",
240 * we should get back a failure
242 channel_request_start(id
, "keepalive@openssh.com", 1);
247 * Sleep in select() until we can do something. This will initialize the
248 * select masks. Upon return, the masks will indicate which descriptors
249 * have data or can accept data. Optionally, a maximum time can be specified
250 * for the duration of the wait (0 = infinite).
253 wait_until_can_do_something(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
254 int *nallocp
, u_int max_time_milliseconds
)
256 struct timeval tv
, *tvp
;
258 int client_alive_scheduled
= 0;
261 * if using client_alive, set the max timeout accordingly,
262 * and indicate that this particular timeout was for client
263 * alive by setting the client_alive_scheduled flag.
265 * this could be randomized somewhat to make traffic
266 * analysis more difficult, but we're not doing it yet.
269 max_time_milliseconds
== 0 && options
.client_alive_interval
) {
270 client_alive_scheduled
= 1;
271 max_time_milliseconds
= options
.client_alive_interval
* 1000;
274 /* Allocate and update select() masks for channel descriptors. */
275 channel_prepare_select(readsetp
, writesetp
, maxfdp
, nallocp
, 0);
281 if ((pipe_fd
= altprivsep_get_pipe_fd()) != -1) {
282 *maxfdp
= MAX(*maxfdp
, pipe_fd
);
283 FD_SET(altprivsep_get_pipe_fd(), *readsetp
);
285 #endif /* ALTPRIVSEP */
287 /* wrong: bad condition XXX */
288 if (channel_not_very_much_buffered_data())
290 FD_SET(connection_in
, *readsetp
);
293 * Read packets from the client unless we have too much
294 * buffered stdin or channel data.
296 if (buffer_len(&stdin_buffer
) < buffer_high
&&
297 channel_not_very_much_buffered_data())
298 FD_SET(connection_in
, *readsetp
);
300 * If there is not too much data already buffered going to
301 * the client, try to get some more data from the program.
303 if (packet_not_very_much_data_to_write()) {
305 FD_SET(fdout
, *readsetp
);
307 FD_SET(fderr
, *readsetp
);
310 * If we have buffered data, try to write some of that data
313 if (fdin
!= -1 && buffer_len(&stdin_buffer
) > 0)
314 FD_SET(fdin
, *writesetp
);
316 notify_prepare(*readsetp
);
319 * If we have buffered packet data going to the client, mark that
322 if (packet_have_data_to_write())
323 FD_SET(connection_out
, *writesetp
);
326 * If child has terminated and there is enough buffer space to read
327 * from it, then read as much as is available and exit.
329 if (child_terminated
&& packet_not_very_much_data_to_write())
330 if (max_time_milliseconds
== 0 || client_alive_scheduled
)
331 max_time_milliseconds
= 100;
333 if (max_time_milliseconds
== 0)
336 tv
.tv_sec
= max_time_milliseconds
/ 1000;
337 tv
.tv_usec
= 1000 * (max_time_milliseconds
% 1000);
341 /* Wait for something to happen, or the timeout to expire. */
342 ret
= select((*maxfdp
)+1, *readsetp
, *writesetp
, NULL
, tvp
);
345 memset(*readsetp
, 0, *nallocp
);
346 memset(*writesetp
, 0, *nallocp
);
348 error("select: %.100s", strerror(errno
));
349 } else if (ret
== 0 && client_alive_scheduled
)
350 client_alive_check();
352 notify_done(*readsetp
);
356 * Processes input from the client and the program. Input data is stored
357 * in buffers and processed later.
360 process_input(fd_set
* readset
)
365 /* Read and buffer any input data from the client. */
366 if (FD_ISSET(connection_in
, readset
)) {
367 len
= read(connection_in
, buf
, sizeof(buf
));
369 if (packet_is_monitor()) {
370 debug("child closed the communication pipe");
372 verbose("Connection closed by %.100s",
373 get_remote_ipaddr());
375 connection_closed
= 1;
379 } else if (len
< 0) {
380 if (errno
!= EINTR
&& errno
!= EAGAIN
) {
381 verbose("Read error from remote host "
383 get_remote_ipaddr(), strerror(errno
));
387 /* Buffer any received data. */
388 packet_process_incoming(buf
, len
);
394 /* Read and buffer any available stdout data from the program. */
395 if (!fdout_eof
&& FD_ISSET(fdout
, readset
)) {
396 len
= read(fdout
, buf
, sizeof(buf
));
397 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
399 } else if (len
<= 0) {
402 buffer_append(&stdout_buffer
, buf
, len
);
406 /* Read and buffer any available stderr data from the program. */
407 if (!fderr_eof
&& FD_ISSET(fderr
, readset
)) {
408 len
= read(fderr
, buf
, sizeof(buf
));
409 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
411 } else if (len
<= 0) {
414 buffer_append(&stderr_buffer
, buf
, len
);
420 * Sends data from internal buffers to client program stdin.
423 process_output(fd_set
* writeset
)
430 /* Write buffered data to program stdin. */
431 if (!compat20
&& fdin
!= -1 && FD_ISSET(fdin
, writeset
)) {
432 data
= buffer_ptr(&stdin_buffer
);
433 dlen
= buffer_len(&stdin_buffer
);
434 len
= write(fdin
, data
, dlen
);
435 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
437 } else if (len
<= 0) {
441 (void) shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
444 /* Successful write. */
445 if (fdin_is_tty
&& dlen
>= 1 && data
[0] != '\r' &&
446 tcgetattr(fdin
, &tio
) == 0 &&
447 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
449 * Simulate echo to reduce the impact of
452 packet_send_ignore(len
);
455 /* Consume the data from the buffer. */
456 buffer_consume(&stdin_buffer
, len
);
457 /* Update the count of bytes written to the program. */
461 /* Send any buffered packet data to the client. */
462 if (FD_ISSET(connection_out
, writeset
))
467 * Wait until all buffered output has been sent to the client.
468 * This is used when the program terminates.
473 /* Send any buffered stdout data to the client. */
474 if (buffer_len(&stdout_buffer
) > 0) {
475 packet_start(SSH_SMSG_STDOUT_DATA
);
476 packet_put_string(buffer_ptr(&stdout_buffer
),
477 buffer_len(&stdout_buffer
));
479 /* Update the count of sent bytes. */
480 stdout_bytes
+= buffer_len(&stdout_buffer
);
482 /* Send any buffered stderr data to the client. */
483 if (buffer_len(&stderr_buffer
) > 0) {
484 packet_start(SSH_SMSG_STDERR_DATA
);
485 packet_put_string(buffer_ptr(&stderr_buffer
),
486 buffer_len(&stderr_buffer
));
488 /* Update the count of sent bytes. */
489 stderr_bytes
+= buffer_len(&stderr_buffer
);
491 /* Wait until all buffered data has been written to the client. */
496 process_buffered_input_packets(void)
498 dispatch_run(DISPATCH_NONBLOCK
, NULL
, compat20
? xxx_kex
: NULL
);
502 * Performs the interactive session. This handles data transmission between
503 * the client and the program. Note that the notion of stdin, stdout, and
504 * stderr in this function is sort of reversed: this function writes to
505 * stdin (of the child program), and reads from stdout and stderr (of the
509 server_loop(pid_t pid
, int fdin_arg
, int fdout_arg
, int fderr_arg
)
511 fd_set
*readset
= NULL
, *writeset
= NULL
;
512 int max_fd
= 0, nalloc
= 0;
513 int wait_status
; /* Status returned by wait(). */
514 pid_t wait_pid
; /* pid returned by wait(). */
515 int waiting_termination
= 0; /* Have displayed waiting close message. */
516 u_int max_time_milliseconds
;
517 u_int previous_stdout_buffer_bytes
;
518 u_int stdout_buffer_bytes
;
521 debug("Entering interactive session.");
523 /* Initialize the SIGCHLD kludge. */
524 child_terminated
= 0;
525 mysignal(SIGCHLD
, sigchld_handler
);
527 /* Initialize our global variables. */
535 /* we don't have stderr for interactive terminal sessions, see below */
539 if (!(datafellows
& SSH_BUG_IGNOREMSG
) && isatty(fdin
))
542 connection_in
= packet_get_connection_in();
543 connection_out
= packet_get_connection_out();
547 previous_stdout_buffer_bytes
= 0;
549 /* Set approximate I/O buffer size. */
550 if (packet_is_interactive())
553 buffer_high
= 64 * 1024;
556 /* Initialize max_fd to the maximum of the known file descriptors. */
557 max_fd
= MAX(connection_in
, connection_out
);
558 max_fd
= MAX(max_fd
, fdin
);
559 max_fd
= MAX(max_fd
, fdout
);
561 max_fd
= MAX(max_fd
, fderr
);
564 /* Initialize Initialize buffers. */
565 buffer_init(&stdin_buffer
);
566 buffer_init(&stdout_buffer
);
567 buffer_init(&stderr_buffer
);
570 * If we have no separate fderr (which is the case when we have a pty
571 * - there we cannot make difference between data sent to stdout and
572 * stderr), indicate that we have seen an EOF from stderr. This way
573 * we don\'t need to check the descriptor everywhere.
578 server_init_dispatch();
580 /* Main loop of the server for the interactive session mode. */
583 /* Process buffered packets from the client. */
584 process_buffered_input_packets();
587 * If we have received eof, and there is no more pending
588 * input data, cause a real eof by closing fdin.
590 if (stdin_eof
&& fdin
!= -1 && buffer_len(&stdin_buffer
) == 0) {
594 (void) shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
597 /* Make packets from buffered stderr data to send to the client. */
598 make_packets_from_stderr_data();
601 * Make packets from buffered stdout data to send to the
602 * client. If there is very little to send, this arranges to
603 * not send them now, but to wait a short while to see if we
604 * are getting more data. This is necessary, as some systems
605 * wake up readers from a pty after each separate character.
607 max_time_milliseconds
= 0;
608 stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
609 if (stdout_buffer_bytes
!= 0 && stdout_buffer_bytes
< 256 &&
610 stdout_buffer_bytes
!= previous_stdout_buffer_bytes
) {
611 /* try again after a while */
612 max_time_milliseconds
= 10;
615 make_packets_from_stdout_data();
617 previous_stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
619 /* Send channel data to the client. */
620 if (packet_not_very_much_data_to_write())
621 channel_output_poll();
624 * Bail out of the loop if the program has closed its output
625 * descriptors, and we have no more data to send to the
626 * client, and there is no pending buffered data.
628 if (fdout_eof
&& fderr_eof
&& !packet_have_data_to_write() &&
629 buffer_len(&stdout_buffer
) == 0 && buffer_len(&stderr_buffer
) == 0) {
630 if (!channel_still_open())
632 if (!waiting_termination
) {
633 const char *s
= "Waiting for forwarded connections to terminate...\r\n";
635 waiting_termination
= 1;
636 buffer_append(&stderr_buffer
, s
, strlen(s
));
638 /* Display list of open channels. */
639 cp
= channel_open_message();
640 buffer_append(&stderr_buffer
, cp
, strlen(cp
));
644 max_fd
= MAX(connection_in
, connection_out
);
645 max_fd
= MAX(max_fd
, fdin
);
646 max_fd
= MAX(max_fd
, fdout
);
647 max_fd
= MAX(max_fd
, fderr
);
648 max_fd
= MAX(max_fd
, notify_pipe
[0]);
650 /* Sleep in select() until we can do something. */
651 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
652 &nalloc
, max_time_milliseconds
);
654 /* Process any channel events. */
655 channel_after_select(readset
, writeset
);
657 /* Process input from the client and from program stdout/stderr. */
658 process_input(readset
);
660 /* Process output to the client and to program stdin. */
661 process_output(writeset
);
668 /* Cleanup and termination code. */
670 /* Wait until all output has been sent to the client. */
673 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
674 stdin_bytes
, fdout_bytes
, stdout_bytes
, stderr_bytes
);
676 /* Free and clear the buffers. */
677 buffer_free(&stdin_buffer
);
678 buffer_free(&stdout_buffer
);
679 buffer_free(&stderr_buffer
);
681 /* Close the file descriptors. */
696 /* We no longer want our SIGCHLD handler to be called. */
697 mysignal(SIGCHLD
, SIG_DFL
);
699 while ((wait_pid
= waitpid(-1, &wait_status
, 0)) < 0)
701 packet_disconnect("wait: %.100s", strerror(errno
));
703 error("Strange, wait returned pid %ld, expected %ld",
704 (long)wait_pid
, (long)pid
);
706 /* Check if it exited normally. */
707 if (WIFEXITED(wait_status
)) {
708 /* Yes, normal exit. Get exit status and send it to the client. */
709 debug("Command exited with status %d.", WEXITSTATUS(wait_status
));
710 packet_start(SSH_SMSG_EXITSTATUS
);
711 packet_put_int(WEXITSTATUS(wait_status
));
716 * Wait for exit confirmation. Note that there might be
717 * other packets coming before it; however, the program has
718 * already died so we just ignore them. The client is
719 * supposed to respond with the confirmation when it receives
723 type
= packet_read();
725 while (type
!= SSH_CMSG_EXIT_CONFIRMATION
);
727 debug("Received exit confirmation.");
730 /* Check if the program terminated due to a signal. */
731 if (WIFSIGNALED(wait_status
))
732 packet_disconnect("Command terminated on signal %d.",
733 WTERMSIG(wait_status
));
735 /* Some weird exit cause. Just exit. */
736 packet_disconnect("wait returned status %04x.", wait_status
);
741 collect_children(void)
747 /* block SIGCHLD while we check for dead children */
748 (void) sigemptyset(&nset
);
749 (void) sigaddset(&nset
, SIGCHLD
);
750 (void) sigprocmask(SIG_BLOCK
, &nset
, &oset
);
751 if (child_terminated
) {
752 while ((pid
= waitpid(-1, &status
, WNOHANG
)) > 0 ||
753 (pid
< 0 && errno
== EINTR
))
755 session_close_by_pid(pid
, status
);
756 child_terminated
= 0;
758 (void) sigprocmask(SIG_SETMASK
, &oset
, NULL
);
763 * For ALTPRIVSEP the wait_until_can_do_something function is very
764 * simple: select() on the read side of the pipe, and if there's packets
765 * to send, on the write side, and on the read side of the SIGCHLD
766 * handler pipe. That's it.
769 aps_wait_until_can_do_something(fd_set
**readsetp
, fd_set
**writesetp
,
770 int *maxfdp
, int *nallocp
, u_int max_time_milliseconds
)
775 * Use channel_prepare_select() to make the fd sets.
777 * This is cheating, really, since because the last argument in
778 * this call is '1' nothing related to channels will be done --
779 * we're using this function only to callocate the fd sets.
781 channel_prepare_select(readsetp
, writesetp
, maxfdp
, nallocp
, 1);
783 if ((connection_in
= packet_get_connection_in()) >= 0 &&
785 FD_SET(connection_in
, *readsetp
);
787 notify_prepare(*readsetp
);
789 if ((connection_out
= packet_get_connection_out()) >= 0 &&
790 packet_have_data_to_write() && !connection_closed
)
791 FD_SET(connection_out
, *writesetp
);
793 /* Wait for something to happen, or the timeout to expire. */
794 ret
= select((*maxfdp
)+1, *readsetp
, *writesetp
, NULL
, NULL
);
797 memset(*readsetp
, 0, *nallocp
);
798 memset(*writesetp
, 0, *nallocp
);
800 error("select: %.100s", strerror(errno
));
803 notify_done(*readsetp
);
807 * Slightly different than collect_children, aps_collect_child() has
808 * only the unprivileged sshd to wait for, no sessions, no channells,
812 aps_collect_child(pid_t child
)
818 /* block SIGCHLD while we check for dead children */
819 (void) sigemptyset(&nset
);
820 (void) sigaddset(&nset
, SIGCHLD
);
821 (void) sigprocmask(SIG_BLOCK
, &nset
, &oset
);
822 if (child_terminated
) {
823 while ((pid
= waitpid(child
, &status
, WNOHANG
)) > 0 ||
824 (pid
< 0 && errno
== EINTR
))
826 (void) sigprocmask(SIG_SETMASK
, &oset
, NULL
);
829 child_terminated
= 0;
831 (void) sigprocmask(SIG_SETMASK
, &oset
, NULL
);
835 static int killed
= 0;
838 aps_monitor_kill_handler(int sig
)
840 int save_errno
= errno
;
843 mysignal(sig
, aps_monitor_kill_handler
);
848 aps_monitor_sigchld_handler(int sig
)
850 int save_errno
= errno
;
851 debug("Monitor received SIGCHLD.");
852 child_terminated
= 1;
853 mysignal(SIGCHLD
, aps_monitor_sigchld_handler
);
859 aps_monitor_loop(Authctxt
*authctxt
, pid_t child_pid
)
861 fd_set
*readset
= NULL
, *writeset
= NULL
;
862 int max_fd
, nalloc
= 0;
864 debug("Entering monitor loop.");
867 * Awful hack follows: fake compat20 == 1 to cause process_input()
868 * and process_output() to behave as they would for SSHv2 because that's
869 * the behaviour we need in SSHv2.
871 * This same hack is done in packet.c
873 compat20
= 1; /* causes process_input/output() to ignore stdio */
875 mysignal(SIGHUP
, aps_monitor_kill_handler
);
876 mysignal(SIGINT
, aps_monitor_kill_handler
);
877 mysignal(SIGTERM
, aps_monitor_kill_handler
);
879 child_terminated
= 0;
880 mysignal(SIGCHLD
, aps_monitor_sigchld_handler
);
882 connection_in
= packet_get_connection_in();
883 connection_out
= packet_get_connection_out();
887 max_fd
= MAX(connection_in
, connection_out
);
888 max_fd
= MAX(max_fd
, notify_pipe
[0]);
890 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
891 dispatch_range(SSH2_MSG_USERAUTH_MIN
, SSH2_MSG_MAX
,
892 &dispatch_protocol_error
);
893 dispatch_set(SSH2_PRIV_MSG_ALTPRIVSEP
, &aps_input_altpriv_msg
);
896 process_buffered_input_packets();
898 aps_wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
901 if (aps_collect_child(child_pid
))
905 /* fatal cleanups will kill child, audit logout */
906 log("Monitor killed; exiting");
911 * Unlike server_loop2() we don't care if connection_closed
912 * since we still want to wait for the monitor's child.
914 process_input(readset
);
915 process_output(writeset
);
920 #endif /* ALTPRIVSEP */
923 * This server loop is for unprivileged child only. Our monitor runs its own
924 * aps_monitor_loop() funtion.
927 server_loop2(Authctxt
*authctxt
)
929 fd_set
*readset
= NULL
, *writeset
= NULL
;
930 int rekeying
= 0, max_fd
, nalloc
= 0;
932 debug("Entering interactive session for SSH2.");
934 mysignal(SIGCHLD
, sigchld_handler
);
935 child_terminated
= 0;
936 connection_in
= packet_get_connection_in();
937 connection_out
= packet_get_connection_out();
941 max_fd
= MAX(connection_in
, connection_out
);
942 max_fd
= MAX(max_fd
, notify_pipe
[0]);
944 xxx_authctxt
= authctxt
;
946 server_init_dispatch();
949 process_buffered_input_packets();
951 rekeying
= (xxx_kex
!= NULL
&& !xxx_kex
->done
);
953 if (!rekeying
&& packet_not_very_much_data_to_write())
954 channel_output_poll();
955 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
961 channel_after_select(readset
, writeset
);
962 if (packet_need_rekeying()) {
963 debug("rekey limit reached, need rekeying");
965 debug("poking the monitor to start "
967 altprivsep_start_rekex();
972 altprivsep_process_input(readset
);
973 #endif /* ALTPRIVSEP */
975 process_input(readset
);
976 if (connection_closed
)
978 process_output(writeset
);
987 /* free all channels, no more reads and writes */
990 /* free remaining sessions, e.g. remove wtmp entries */
991 session_destroy_all(NULL
);
995 server_input_channel_failure(int type
, u_int32_t seq
, void *ctxt
)
997 debug("Got CHANNEL_FAILURE for keepalive");
999 * reset timeout, since we got a sane answer from the client.
1000 * even if this was generated by something other than
1001 * the bogus CHANNEL_REQUEST we send for keepalives.
1003 client_alive_timeouts
= 0;
1007 server_input_stdin_data(int type
, u_int32_t seq
, void *ctxt
)
1012 /* Stdin data from the client. Append it to the buffer. */
1013 /* Ignore any data if the client has closed stdin. */
1016 data
= packet_get_string(&data_len
);
1018 buffer_append(&stdin_buffer
, data
, data_len
);
1019 memset(data
, 0, data_len
);
1024 server_input_eof(int type
, u_int32_t seq
, void *ctxt
)
1027 * Eof from the client. The stdin descriptor to the
1028 * program will be closed when all buffered data has
1031 debug("EOF received for stdin.");
1037 server_input_window_size(int type
, u_int32_t seq
, void *ctxt
)
1039 int row
= packet_get_int();
1040 int col
= packet_get_int();
1041 int xpixel
= packet_get_int();
1042 int ypixel
= packet_get_int();
1044 debug("Window change received.");
1047 pty_change_window_size(fdin
, row
, col
, xpixel
, ypixel
);
1051 server_request_direct_tcpip(char *ctype
)
1055 char *target
, *originator
;
1056 int target_port
, originator_port
;
1058 target
= packet_get_string(NULL
);
1059 target_port
= packet_get_int();
1060 originator
= packet_get_string(NULL
);
1061 originator_port
= packet_get_int();
1064 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
1065 originator
, originator_port
, target
, target_port
);
1067 /* XXX check permission */
1068 sock
= channel_connect_to(target
, target_port
);
1074 c
= channel_new(ctype
, SSH_CHANNEL_CONNECTING
,
1075 sock
, sock
, -1, CHAN_TCP_WINDOW_DEFAULT
,
1076 CHAN_TCP_PACKET_DEFAULT
, 0, xstrdup("direct-tcpip"), 1);
1081 server_request_session(char *ctype
)
1085 debug("input_session_request");
1088 * A server session has no fd to read or write until a
1089 * CHANNEL_REQUEST for a shell is made, so we set the type to
1090 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
1091 * CHANNEL_REQUEST messages is registered.
1093 c
= channel_new(ctype
, SSH_CHANNEL_LARVAL
,
1094 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT
,
1095 0, xstrdup("server-session"), 1);
1096 if (session_open(xxx_authctxt
, c
->self
) != 1) {
1097 debug("session open failed, free channel %d", c
->self
);
1101 channel_register_cleanup(c
->self
, session_close_by_channel
);
1106 server_input_channel_open(int type
, u_int32_t seq
, void *ctxt
)
1111 u_int rmaxpack
, rwindow
, len
;
1113 ctype
= packet_get_string(&len
);
1114 rchan
= packet_get_int();
1115 rwindow
= packet_get_int();
1116 rmaxpack
= packet_get_int();
1118 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
1119 ctype
, rchan
, rwindow
, rmaxpack
);
1121 if (strcmp(ctype
, "session") == 0) {
1122 c
= server_request_session(ctype
);
1123 } else if (strcmp(ctype
, "direct-tcpip") == 0) {
1124 c
= server_request_direct_tcpip(ctype
);
1127 debug("server_input_channel_open: confirm %s", ctype
);
1128 c
->remote_id
= rchan
;
1129 c
->remote_window
= rwindow
;
1130 c
->remote_maxpacket
= rmaxpack
;
1131 if (c
->type
!= SSH_CHANNEL_CONNECTING
) {
1132 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
1133 packet_put_int(c
->remote_id
);
1134 packet_put_int(c
->self
);
1135 packet_put_int(c
->local_window
);
1136 packet_put_int(c
->local_maxpacket
);
1140 debug("server_input_channel_open: failure %s", ctype
);
1141 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
1142 packet_put_int(rchan
);
1143 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
);
1144 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
1145 packet_put_utf8_cstring("open failed");
1146 packet_put_cstring("");
1154 server_input_global_request(int type
, u_int32_t seq
, void *ctxt
)
1160 rtype
= packet_get_string(NULL
);
1161 want_reply
= packet_get_char();
1162 debug("server_input_global_request: rtype %s want_reply %d", rtype
, want_reply
);
1164 /* -R style forwarding */
1165 if (strcmp(rtype
, "tcpip-forward") == 0) {
1167 char *listen_address
;
1168 u_short listen_port
;
1170 pw
= auth_get_user();
1172 fatal("server_input_global_request: no user");
1173 listen_address
= packet_get_string(NULL
); /* XXX currently ignored */
1174 listen_port
= (u_short
)packet_get_int();
1175 debug("server_input_global_request: tcpip-forward listen %s port %d",
1176 listen_address
, listen_port
);
1178 /* check permissions */
1179 if (!options
.allow_tcp_forwarding
||
1180 no_port_forwarding_flag
1181 #ifndef NO_IPPORT_RESERVED_CONCEPT
1182 || (listen_port
< IPPORT_RESERVED
&& pw
->pw_uid
!= 0)
1186 packet_send_debug("Server has disabled port forwarding.");
1188 /* Start listening on the port */
1189 success
= channel_setup_remote_fwd_listener(
1190 listen_address
, listen_port
, options
.gateway_ports
);
1192 xfree(listen_address
);
1193 } else if (strcmp(rtype
, "cancel-tcpip-forward") == 0) {
1194 char *cancel_address
;
1195 u_short cancel_port
;
1197 cancel_address
= packet_get_string(NULL
);
1198 cancel_port
= (u_short
)packet_get_int();
1199 debug("%s: cancel-tcpip-forward addr %s port %d", __func__
,
1200 cancel_address
, cancel_port
);
1202 success
= channel_cancel_rport_listener(cancel_address
,
1204 xfree(cancel_address
);
1207 packet_start(success
?
1208 SSH2_MSG_REQUEST_SUCCESS
: SSH2_MSG_REQUEST_FAILURE
);
1210 packet_write_wait();
1216 server_input_channel_req(int type
, u_int32_t seq
, void *ctxt
)
1219 int id
, reply
, success
= 0;
1222 id
= packet_get_int();
1223 rtype
= packet_get_string(NULL
);
1224 reply
= packet_get_char();
1226 debug("server_input_channel_req: channel %d request %s reply %d",
1229 if ((c
= channel_lookup(id
)) == NULL
)
1230 packet_disconnect("server_input_channel_req: "
1231 "unknown channel %d", id
);
1232 if (!strcmp(rtype
, "eow@openssh.com")) {
1235 } else if (c
->type
== SSH_CHANNEL_LARVAL
|| c
->type
== SSH_CHANNEL_OPEN
)
1236 success
= session_input_channel_req(c
, rtype
);
1238 packet_start(success
?
1239 SSH2_MSG_CHANNEL_SUCCESS
: SSH2_MSG_CHANNEL_FAILURE
);
1240 packet_put_int(c
->remote_id
);
1247 server_init_dispatch_20(void)
1249 debug("server_init_dispatch_20");
1250 dispatch_init(&dispatch_protocol_error
);
1251 dispatch_set(SSH2_MSG_CHANNEL_CLOSE
, &channel_input_oclose
);
1252 dispatch_set(SSH2_MSG_CHANNEL_DATA
, &channel_input_data
);
1253 dispatch_set(SSH2_MSG_CHANNEL_EOF
, &channel_input_ieof
);
1254 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA
, &channel_input_extended_data
);
1255 dispatch_set(SSH2_MSG_CHANNEL_OPEN
, &server_input_channel_open
);
1256 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1257 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1258 dispatch_set(SSH2_MSG_CHANNEL_REQUEST
, &server_input_channel_req
);
1259 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST
, &channel_input_window_adjust
);
1260 dispatch_set(SSH2_MSG_GLOBAL_REQUEST
, &server_input_global_request
);
1262 dispatch_set(SSH2_MSG_CHANNEL_FAILURE
, &server_input_channel_failure
);
1266 /* unprivileged sshd has a kex packet handler that must not be reset */
1267 debug3("server_init_dispatch_20 -- should we dispatch_set(KEXINIT) here? %d && !%d",
1268 packet_is_server(), packet_is_monitor());
1269 if (packet_is_server() && !packet_is_monitor()) {
1270 debug3("server_init_dispatch_20 -- skipping dispatch_set(KEXINIT) in unpriv proc");
1271 dispatch_range(SSH2_MSG_KEXINIT
, SSH2_MSG_TRANSPORT_MAX
,
1275 #endif /* ALTPRIVSEP */
1276 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
1279 server_init_dispatch_13(void)
1281 debug("server_init_dispatch_13");
1282 dispatch_init(NULL
);
1283 dispatch_set(SSH_CMSG_EOF
, &server_input_eof
);
1284 dispatch_set(SSH_CMSG_STDIN_DATA
, &server_input_stdin_data
);
1285 dispatch_set(SSH_CMSG_WINDOW_SIZE
, &server_input_window_size
);
1286 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_close
);
1287 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_close_confirmation
);
1288 dispatch_set(SSH_MSG_CHANNEL_DATA
, &channel_input_data
);
1289 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1290 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1291 dispatch_set(SSH_MSG_PORT_OPEN
, &channel_input_port_open
);
1294 server_init_dispatch_15(void)
1296 server_init_dispatch_13();
1297 debug("server_init_dispatch_15");
1298 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_ieof
);
1299 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_oclose
);
1302 server_init_dispatch(void)
1305 server_init_dispatch_20();
1307 server_init_dispatch_13();
1309 server_init_dispatch_15();