1 /* $OpenBSD: serverloop.c,v 1.139 2006/07/11 20:07:25 stevesk Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Server main loop for handling the interactive session.
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
14 * SSH2 support by Markus Friedl.
15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <sys/types.h>
42 #include <sys/socket.h>
44 #include <netinet/in.h>
66 #include "auth-options.h"
67 #include "serverloop.h"
71 extern ServerOptions options
;
75 extern Authctxt
*the_authctxt
;
76 extern int use_privsep
;
78 static Buffer stdin_buffer
; /* Buffer for stdin data. */
79 static Buffer stdout_buffer
; /* Buffer for stdout data. */
80 static Buffer stderr_buffer
; /* Buffer for stderr data. */
81 static int fdin
; /* Descriptor for stdin (for writing) */
82 static int fdout
; /* Descriptor for stdout (for reading);
83 May be same number as fdin. */
84 static int fderr
; /* Descriptor for stderr. May be -1. */
85 static long stdin_bytes
= 0; /* Number of bytes written to stdin. */
86 static long stdout_bytes
= 0; /* Number of stdout bytes sent to client. */
87 static long stderr_bytes
= 0; /* Number of stderr bytes sent to client. */
88 static long fdout_bytes
= 0; /* Number of stdout bytes read from program. */
89 static int stdin_eof
= 0; /* EOF message received from client. */
90 static int fdout_eof
= 0; /* EOF encountered reading from fdout. */
91 static int fderr_eof
= 0; /* EOF encountered readung from fderr. */
92 static int fdin_is_tty
= 0; /* fdin points to a tty. */
93 static int connection_in
; /* Connection to client (input). */
94 static int connection_out
; /* Connection to client (output). */
95 static int connection_closed
= 0; /* Connection to client closed. */
96 static u_int buffer_high
; /* "Soft" max buffer size. */
97 static int client_alive_timeouts
= 0;
100 * This SIGCHLD kludge is used to detect when the child exits. The server
101 * will exit after that, as soon as forwarded connections have terminated.
104 static volatile sig_atomic_t child_terminated
= 0; /* The child has terminated. */
106 /* Cleanup on signals (!use_privsep case only) */
107 static volatile sig_atomic_t received_sigterm
= 0;
110 static void server_init_dispatch(void);
113 * we write to this pipe if a SIGCHLD is caught in order to avoid
114 * the race between select() and child_terminated
116 static int notify_pipe
[2];
120 if (pipe(notify_pipe
) < 0) {
121 error("pipe(notify_pipe) failed %s", strerror(errno
));
122 } else if ((fcntl(notify_pipe
[0], F_SETFD
, 1) == -1) ||
123 (fcntl(notify_pipe
[1], F_SETFD
, 1) == -1)) {
124 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno
));
125 close(notify_pipe
[0]);
126 close(notify_pipe
[1]);
128 set_nonblock(notify_pipe
[0]);
129 set_nonblock(notify_pipe
[1]);
132 notify_pipe
[0] = -1; /* read end */
133 notify_pipe
[1] = -1; /* write end */
138 if (notify_pipe
[1] != -1)
139 write(notify_pipe
[1], "", 1);
142 notify_prepare(fd_set
*readset
)
144 if (notify_pipe
[0] != -1)
145 FD_SET(notify_pipe
[0], readset
);
148 notify_done(fd_set
*readset
)
152 if (notify_pipe
[0] != -1 && FD_ISSET(notify_pipe
[0], readset
))
153 while (read(notify_pipe
[0], &c
, 1) != -1)
154 debug2("notify_done: reading");
159 sigchld_handler(int sig
)
161 int save_errno
= errno
;
162 child_terminated
= 1;
164 mysignal(SIGCHLD
, sigchld_handler
);
172 sigterm_handler(int sig
)
174 received_sigterm
= sig
;
178 * Make packets from buffered stderr data, and buffer it for sending
182 make_packets_from_stderr_data(void)
186 /* Send buffered stderr data to the client. */
187 while (buffer_len(&stderr_buffer
) > 0 &&
188 packet_not_very_much_data_to_write()) {
189 len
= buffer_len(&stderr_buffer
);
190 if (packet_is_interactive()) {
194 /* Keep the packets at reasonable size. */
195 if (len
> packet_get_maxsize())
196 len
= packet_get_maxsize();
198 packet_start(SSH_SMSG_STDERR_DATA
);
199 packet_put_string(buffer_ptr(&stderr_buffer
), len
);
201 buffer_consume(&stderr_buffer
, len
);
207 * Make packets from buffered stdout data, and buffer it for sending to the
211 make_packets_from_stdout_data(void)
215 /* Send buffered stdout data to the client. */
216 while (buffer_len(&stdout_buffer
) > 0 &&
217 packet_not_very_much_data_to_write()) {
218 len
= buffer_len(&stdout_buffer
);
219 if (packet_is_interactive()) {
223 /* Keep the packets at reasonable size. */
224 if (len
> packet_get_maxsize())
225 len
= packet_get_maxsize();
227 packet_start(SSH_SMSG_STDOUT_DATA
);
228 packet_put_string(buffer_ptr(&stdout_buffer
), len
);
230 buffer_consume(&stdout_buffer
, len
);
236 client_alive_check(void)
240 /* timeout, check to see how many we have had */
241 if (++client_alive_timeouts
> options
.client_alive_count_max
)
242 packet_disconnect("Timeout, your session not responding.");
245 * send a bogus global/channel request with "wantreply",
246 * we should get back a failure
248 if ((channel_id
= channel_find_open()) == -1) {
249 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
250 packet_put_cstring("keepalive@openssh.com");
251 packet_put_char(1); /* boolean: want reply */
253 channel_request_start(channel_id
, "keepalive@openssh.com", 1);
259 * Sleep in select() until we can do something. This will initialize the
260 * select masks. Upon return, the masks will indicate which descriptors
261 * have data or can accept data. Optionally, a maximum time can be specified
262 * for the duration of the wait (0 = infinite).
265 wait_until_can_do_something(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
266 u_int
*nallocp
, u_int max_time_milliseconds
)
268 struct timeval tv
, *tvp
;
270 int client_alive_scheduled
= 0;
273 * if using client_alive, set the max timeout accordingly,
274 * and indicate that this particular timeout was for client
275 * alive by setting the client_alive_scheduled flag.
277 * this could be randomized somewhat to make traffic
278 * analysis more difficult, but we're not doing it yet.
281 max_time_milliseconds
== 0 && options
.client_alive_interval
) {
282 client_alive_scheduled
= 1;
283 max_time_milliseconds
= options
.client_alive_interval
* 1000;
286 /* Allocate and update select() masks for channel descriptors. */
287 channel_prepare_select(readsetp
, writesetp
, maxfdp
, nallocp
, 0);
291 /* wrong: bad condition XXX */
292 if (channel_not_very_much_buffered_data())
294 FD_SET(connection_in
, *readsetp
);
297 * Read packets from the client unless we have too much
298 * buffered stdin or channel data.
300 if (buffer_len(&stdin_buffer
) < buffer_high
&&
301 channel_not_very_much_buffered_data())
302 FD_SET(connection_in
, *readsetp
);
304 * If there is not too much data already buffered going to
305 * the client, try to get some more data from the program.
307 if (packet_not_very_much_data_to_write()) {
309 FD_SET(fdout
, *readsetp
);
311 FD_SET(fderr
, *readsetp
);
314 * If we have buffered data, try to write some of that data
317 if (fdin
!= -1 && buffer_len(&stdin_buffer
) > 0)
318 FD_SET(fdin
, *writesetp
);
320 notify_prepare(*readsetp
);
323 * If we have buffered packet data going to the client, mark that
326 if (packet_have_data_to_write())
327 FD_SET(connection_out
, *writesetp
);
330 * If child has terminated and there is enough buffer space to read
331 * from it, then read as much as is available and exit.
333 if (child_terminated
&& packet_not_very_much_data_to_write())
334 if (max_time_milliseconds
== 0 || client_alive_scheduled
)
335 max_time_milliseconds
= 100;
337 if (max_time_milliseconds
== 0)
340 tv
.tv_sec
= max_time_milliseconds
/ 1000;
341 tv
.tv_usec
= 1000 * (max_time_milliseconds
% 1000);
345 /* Wait for something to happen, or the timeout to expire. */
346 ret
= select((*maxfdp
)+1, *readsetp
, *writesetp
, NULL
, tvp
);
349 memset(*readsetp
, 0, *nallocp
);
350 memset(*writesetp
, 0, *nallocp
);
352 error("select: %.100s", strerror(errno
));
353 } else if (ret
== 0 && client_alive_scheduled
)
354 client_alive_check();
356 notify_done(*readsetp
);
360 * Processes input from the client and the program. Input data is stored
361 * in buffers and processed later.
364 process_input(fd_set
*readset
)
369 /* Read and buffer any input data from the client. */
370 if (FD_ISSET(connection_in
, readset
)) {
371 len
= read(connection_in
, buf
, sizeof(buf
));
373 verbose("Connection closed by %.100s",
374 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
)) {
397 len
= read(fdout
, buf
, sizeof(buf
));
398 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
401 } else if (len
<= 0) {
403 } else if ((!isatty(fdout
) && len
<= 0) ||
404 (isatty(fdout
) && (len
< 0 || (len
== 0 && errno
!= 0)))) {
408 buffer_append(&stdout_buffer
, buf
, len
);
412 /* Read and buffer any available stderr data from the program. */
413 if (!fderr_eof
&& FD_ISSET(fderr
, readset
)) {
415 len
= read(fderr
, buf
, sizeof(buf
));
416 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
419 } else if (len
<= 0) {
421 } else if ((!isatty(fderr
) && len
<= 0) ||
422 (isatty(fderr
) && (len
< 0 || (len
== 0 && errno
!= 0)))) {
426 buffer_append(&stderr_buffer
, buf
, len
);
432 * Sends data from internal buffers to client program stdin.
435 process_output(fd_set
*writeset
)
442 /* Write buffered data to program stdin. */
443 if (!compat20
&& fdin
!= -1 && FD_ISSET(fdin
, writeset
)) {
444 data
= buffer_ptr(&stdin_buffer
);
445 dlen
= buffer_len(&stdin_buffer
);
446 len
= write(fdin
, data
, dlen
);
447 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
449 } else if (len
<= 0) {
453 shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
456 /* Successful write. */
457 if (fdin_is_tty
&& dlen
>= 1 && data
[0] != '\r' &&
458 tcgetattr(fdin
, &tio
) == 0 &&
459 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
461 * Simulate echo to reduce the impact of
464 packet_send_ignore(len
);
467 /* Consume the data from the buffer. */
468 buffer_consume(&stdin_buffer
, len
);
469 /* Update the count of bytes written to the program. */
473 /* Send any buffered packet data to the client. */
474 if (FD_ISSET(connection_out
, writeset
))
479 * Wait until all buffered output has been sent to the client.
480 * This is used when the program terminates.
485 /* Send any buffered stdout data to the client. */
486 if (buffer_len(&stdout_buffer
) > 0) {
487 packet_start(SSH_SMSG_STDOUT_DATA
);
488 packet_put_string(buffer_ptr(&stdout_buffer
),
489 buffer_len(&stdout_buffer
));
491 /* Update the count of sent bytes. */
492 stdout_bytes
+= buffer_len(&stdout_buffer
);
494 /* Send any buffered stderr data to the client. */
495 if (buffer_len(&stderr_buffer
) > 0) {
496 packet_start(SSH_SMSG_STDERR_DATA
);
497 packet_put_string(buffer_ptr(&stderr_buffer
),
498 buffer_len(&stderr_buffer
));
500 /* Update the count of sent bytes. */
501 stderr_bytes
+= buffer_len(&stderr_buffer
);
503 /* Wait until all buffered data has been written to the client. */
508 process_buffered_input_packets(void)
510 dispatch_run(DISPATCH_NONBLOCK
, NULL
, compat20
? xxx_kex
: NULL
);
514 * Performs the interactive session. This handles data transmission between
515 * the client and the program. Note that the notion of stdin, stdout, and
516 * stderr in this function is sort of reversed: this function writes to
517 * stdin (of the child program), and reads from stdout and stderr (of the
521 server_loop(pid_t pid
, int fdin_arg
, int fdout_arg
, int fderr_arg
)
523 fd_set
*readset
= NULL
, *writeset
= NULL
;
526 int wait_status
; /* Status returned by wait(). */
527 pid_t wait_pid
; /* pid returned by wait(). */
528 int waiting_termination
= 0; /* Have displayed waiting close message. */
529 u_int max_time_milliseconds
;
530 u_int previous_stdout_buffer_bytes
;
531 u_int stdout_buffer_bytes
;
534 debug("Entering interactive session.");
536 /* Initialize the SIGCHLD kludge. */
537 child_terminated
= 0;
538 mysignal(SIGCHLD
, sigchld_handler
);
541 signal(SIGTERM
, sigterm_handler
);
542 signal(SIGINT
, sigterm_handler
);
543 signal(SIGQUIT
, sigterm_handler
);
546 /* Initialize our global variables. */
554 /* we don't have stderr for interactive terminal sessions, see below */
558 if (!(datafellows
& SSH_BUG_IGNOREMSG
) && isatty(fdin
))
561 connection_in
= packet_get_connection_in();
562 connection_out
= packet_get_connection_out();
566 previous_stdout_buffer_bytes
= 0;
568 /* Set approximate I/O buffer size. */
569 if (packet_is_interactive())
572 buffer_high
= 64 * 1024;
575 /* Initialize max_fd to the maximum of the known file descriptors. */
576 max_fd
= MAX(connection_in
, connection_out
);
577 max_fd
= MAX(max_fd
, fdin
);
578 max_fd
= MAX(max_fd
, fdout
);
580 max_fd
= MAX(max_fd
, fderr
);
583 /* Initialize Initialize buffers. */
584 buffer_init(&stdin_buffer
);
585 buffer_init(&stdout_buffer
);
586 buffer_init(&stderr_buffer
);
589 * If we have no separate fderr (which is the case when we have a pty
590 * - there we cannot make difference between data sent to stdout and
591 * stderr), indicate that we have seen an EOF from stderr. This way
592 * we don't need to check the descriptor everywhere.
597 server_init_dispatch();
599 /* Main loop of the server for the interactive session mode. */
602 /* Process buffered packets from the client. */
603 process_buffered_input_packets();
606 * If we have received eof, and there is no more pending
607 * input data, cause a real eof by closing fdin.
609 if (stdin_eof
&& fdin
!= -1 && buffer_len(&stdin_buffer
) == 0) {
613 shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
616 /* Make packets from buffered stderr data to send to the client. */
617 make_packets_from_stderr_data();
620 * Make packets from buffered stdout data to send to the
621 * client. If there is very little to send, this arranges to
622 * not send them now, but to wait a short while to see if we
623 * are getting more data. This is necessary, as some systems
624 * wake up readers from a pty after each separate character.
626 max_time_milliseconds
= 0;
627 stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
628 if (stdout_buffer_bytes
!= 0 && stdout_buffer_bytes
< 256 &&
629 stdout_buffer_bytes
!= previous_stdout_buffer_bytes
) {
630 /* try again after a while */
631 max_time_milliseconds
= 10;
634 make_packets_from_stdout_data();
636 previous_stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
638 /* Send channel data to the client. */
639 if (packet_not_very_much_data_to_write())
640 channel_output_poll();
643 * Bail out of the loop if the program has closed its output
644 * descriptors, and we have no more data to send to the
645 * client, and there is no pending buffered data.
647 if (fdout_eof
&& fderr_eof
&& !packet_have_data_to_write() &&
648 buffer_len(&stdout_buffer
) == 0 && buffer_len(&stderr_buffer
) == 0) {
649 if (!channel_still_open())
651 if (!waiting_termination
) {
652 const char *s
= "Waiting for forwarded connections to terminate...\r\n";
654 waiting_termination
= 1;
655 buffer_append(&stderr_buffer
, s
, strlen(s
));
657 /* Display list of open channels. */
658 cp
= channel_open_message();
659 buffer_append(&stderr_buffer
, cp
, strlen(cp
));
663 max_fd
= MAX(connection_in
, connection_out
);
664 max_fd
= MAX(max_fd
, fdin
);
665 max_fd
= MAX(max_fd
, fdout
);
666 max_fd
= MAX(max_fd
, fderr
);
667 max_fd
= MAX(max_fd
, notify_pipe
[0]);
669 /* Sleep in select() until we can do something. */
670 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
671 &nalloc
, max_time_milliseconds
);
673 if (received_sigterm
) {
674 logit("Exiting on signal %d", received_sigterm
);
675 /* Clean up sessions, utmp, etc. */
679 /* Process any channel events. */
680 channel_after_select(readset
, writeset
);
682 /* Process input from the client and from program stdout/stderr. */
683 process_input(readset
);
685 /* Process output to the client and to program stdin. */
686 process_output(writeset
);
693 /* Cleanup and termination code. */
695 /* Wait until all output has been sent to the client. */
698 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
699 stdin_bytes
, fdout_bytes
, stdout_bytes
, stderr_bytes
);
701 /* Free and clear the buffers. */
702 buffer_free(&stdin_buffer
);
703 buffer_free(&stdout_buffer
);
704 buffer_free(&stderr_buffer
);
706 /* Close the file descriptors. */
721 /* We no longer want our SIGCHLD handler to be called. */
722 mysignal(SIGCHLD
, SIG_DFL
);
724 while ((wait_pid
= waitpid(-1, &wait_status
, 0)) < 0)
726 packet_disconnect("wait: %.100s", strerror(errno
));
728 error("Strange, wait returned pid %ld, expected %ld",
729 (long)wait_pid
, (long)pid
);
731 /* Check if it exited normally. */
732 if (WIFEXITED(wait_status
)) {
733 /* Yes, normal exit. Get exit status and send it to the client. */
734 debug("Command exited with status %d.", WEXITSTATUS(wait_status
));
735 packet_start(SSH_SMSG_EXITSTATUS
);
736 packet_put_int(WEXITSTATUS(wait_status
));
741 * Wait for exit confirmation. Note that there might be
742 * other packets coming before it; however, the program has
743 * already died so we just ignore them. The client is
744 * supposed to respond with the confirmation when it receives
748 type
= packet_read();
750 while (type
!= SSH_CMSG_EXIT_CONFIRMATION
);
752 debug("Received exit confirmation.");
755 /* Check if the program terminated due to a signal. */
756 if (WIFSIGNALED(wait_status
))
757 packet_disconnect("Command terminated on signal %d.",
758 WTERMSIG(wait_status
));
760 /* Some weird exit cause. Just exit. */
761 packet_disconnect("wait returned status %04x.", wait_status
);
766 collect_children(void)
772 /* block SIGCHLD while we check for dead children */
774 sigaddset(&nset
, SIGCHLD
);
775 sigprocmask(SIG_BLOCK
, &nset
, &oset
);
776 if (child_terminated
) {
777 debug("Received SIGCHLD.");
778 while ((pid
= waitpid(-1, &status
, WNOHANG
)) > 0 ||
779 (pid
< 0 && errno
== EINTR
))
781 session_close_by_pid(pid
, status
);
782 child_terminated
= 0;
784 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
788 server_loop2(Authctxt
*authctxt
)
790 fd_set
*readset
= NULL
, *writeset
= NULL
;
791 int rekeying
= 0, max_fd
, nalloc
= 0;
793 debug("Entering interactive session for SSH2.");
795 mysignal(SIGCHLD
, sigchld_handler
);
796 child_terminated
= 0;
797 connection_in
= packet_get_connection_in();
798 connection_out
= packet_get_connection_out();
801 signal(SIGTERM
, sigterm_handler
);
802 signal(SIGINT
, sigterm_handler
);
803 signal(SIGQUIT
, sigterm_handler
);
808 max_fd
= MAX(connection_in
, connection_out
);
809 max_fd
= MAX(max_fd
, notify_pipe
[0]);
811 server_init_dispatch();
814 process_buffered_input_packets();
816 rekeying
= (xxx_kex
!= NULL
&& !xxx_kex
->done
);
818 if (!rekeying
&& packet_not_very_much_data_to_write())
819 channel_output_poll();
820 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
823 if (received_sigterm
) {
824 logit("Exiting on signal %d", received_sigterm
);
825 /* Clean up sessions, utmp, etc. */
831 channel_after_select(readset
, writeset
);
832 if (packet_need_rekeying()) {
833 debug("need rekeying");
835 kex_send_kexinit(xxx_kex
);
838 process_input(readset
);
839 if (connection_closed
)
841 process_output(writeset
);
850 /* free all channels, no more reads and writes */
853 /* free remaining sessions, e.g. remove wtmp entries */
854 session_destroy_all(NULL
);
858 server_input_keep_alive(int type
, u_int32_t seq
, void *ctxt
)
860 debug("Got %d/%u for keepalive", type
, seq
);
862 * reset timeout, since we got a sane answer from the client.
863 * even if this was generated by something other than
864 * the bogus CHANNEL_REQUEST we send for keepalives.
866 client_alive_timeouts
= 0;
870 server_input_stdin_data(int type
, u_int32_t seq
, void *ctxt
)
875 /* Stdin data from the client. Append it to the buffer. */
876 /* Ignore any data if the client has closed stdin. */
879 data
= packet_get_string(&data_len
);
881 buffer_append(&stdin_buffer
, data
, data_len
);
882 memset(data
, 0, data_len
);
887 server_input_eof(int type
, u_int32_t seq
, void *ctxt
)
890 * Eof from the client. The stdin descriptor to the
891 * program will be closed when all buffered data has
894 debug("EOF received for stdin.");
900 server_input_window_size(int type
, u_int32_t seq
, void *ctxt
)
902 u_int row
= packet_get_int();
903 u_int col
= packet_get_int();
904 u_int xpixel
= packet_get_int();
905 u_int ypixel
= packet_get_int();
907 debug("Window change received.");
910 pty_change_window_size(fdin
, row
, col
, xpixel
, ypixel
);
914 server_request_direct_tcpip(void)
918 char *target
, *originator
;
919 int target_port
, originator_port
;
921 target
= packet_get_string(NULL
);
922 target_port
= packet_get_int();
923 originator
= packet_get_string(NULL
);
924 originator_port
= packet_get_int();
927 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
928 originator
, originator_port
, target
, target_port
);
930 /* XXX check permission */
931 sock
= channel_connect_to(target
, target_port
);
936 c
= channel_new("direct-tcpip", SSH_CHANNEL_CONNECTING
,
937 sock
, sock
, -1, CHAN_TCP_WINDOW_DEFAULT
,
938 CHAN_TCP_PACKET_DEFAULT
, 0, "direct-tcpip", 1);
943 server_request_tun(void)
949 mode
= packet_get_int();
951 case SSH_TUNMODE_POINTOPOINT
:
952 case SSH_TUNMODE_ETHERNET
:
955 packet_send_debug("Unsupported tunnel device mode.");
958 if ((options
.permit_tun
& mode
) == 0) {
959 packet_send_debug("Server has rejected tunnel device "
964 tun
= packet_get_int();
965 if (forced_tun_device
!= -1) {
966 if (tun
!= SSH_TUNID_ANY
&& forced_tun_device
!= tun
)
968 tun
= forced_tun_device
;
970 sock
= tun_open(tun
, mode
);
973 c
= channel_new("tun", SSH_CHANNEL_OPEN
, sock
, sock
, -1,
974 CHAN_TCP_WINDOW_DEFAULT
, CHAN_TCP_PACKET_DEFAULT
, 0, "tun", 1);
976 #if defined(SSH_TUN_FILTER)
977 if (mode
== SSH_TUNMODE_POINTOPOINT
)
978 channel_register_filter(c
->self
, sys_tun_infilter
,
984 packet_send_debug("Failed to open the tunnel device.");
989 server_request_session(void)
993 debug("input_session_request");
996 * A server session has no fd to read or write until a
997 * CHANNEL_REQUEST for a shell is made, so we set the type to
998 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
999 * CHANNEL_REQUEST messages is registered.
1001 c
= channel_new("session", SSH_CHANNEL_LARVAL
,
1002 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT
,
1003 0, "server-session", 1);
1004 if (session_open(the_authctxt
, c
->self
) != 1) {
1005 debug("session open failed, free channel %d", c
->self
);
1009 channel_register_cleanup(c
->self
, session_close_by_channel
, 0);
1014 server_input_channel_open(int type
, u_int32_t seq
, void *ctxt
)
1019 u_int rmaxpack
, rwindow
, len
;
1021 ctype
= packet_get_string(&len
);
1022 rchan
= packet_get_int();
1023 rwindow
= packet_get_int();
1024 rmaxpack
= packet_get_int();
1026 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
1027 ctype
, rchan
, rwindow
, rmaxpack
);
1029 if (strcmp(ctype
, "session") == 0) {
1030 c
= server_request_session();
1031 } else if (strcmp(ctype
, "direct-tcpip") == 0) {
1032 c
= server_request_direct_tcpip();
1033 } else if (strcmp(ctype
, "tun@openssh.com") == 0) {
1034 c
= server_request_tun();
1037 debug("server_input_channel_open: confirm %s", ctype
);
1038 c
->remote_id
= rchan
;
1039 c
->remote_window
= rwindow
;
1040 c
->remote_maxpacket
= rmaxpack
;
1041 if (c
->type
!= SSH_CHANNEL_CONNECTING
) {
1042 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
1043 packet_put_int(c
->remote_id
);
1044 packet_put_int(c
->self
);
1045 packet_put_int(c
->local_window
);
1046 packet_put_int(c
->local_maxpacket
);
1050 debug("server_input_channel_open: failure %s", ctype
);
1051 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
1052 packet_put_int(rchan
);
1053 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
);
1054 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
1055 packet_put_cstring("open failed");
1056 packet_put_cstring("");
1064 server_input_global_request(int type
, u_int32_t seq
, void *ctxt
)
1070 rtype
= packet_get_string(NULL
);
1071 want_reply
= packet_get_char();
1072 debug("server_input_global_request: rtype %s want_reply %d", rtype
, want_reply
);
1074 /* -R style forwarding */
1075 if (strcmp(rtype
, "tcpip-forward") == 0) {
1077 char *listen_address
;
1078 u_short listen_port
;
1080 pw
= the_authctxt
->pw
;
1081 if (pw
== NULL
|| !the_authctxt
->valid
)
1082 fatal("server_input_global_request: no/invalid user");
1083 listen_address
= packet_get_string(NULL
);
1084 listen_port
= (u_short
)packet_get_int();
1085 debug("server_input_global_request: tcpip-forward listen %s port %d",
1086 listen_address
, listen_port
);
1088 /* check permissions */
1089 if (!options
.allow_tcp_forwarding
||
1090 no_port_forwarding_flag
1091 #ifndef NO_IPPORT_RESERVED_CONCEPT
1092 || (listen_port
< IPPORT_RESERVED
&& pw
->pw_uid
!= 0)
1096 packet_send_debug("Server has disabled port forwarding.");
1098 /* Start listening on the port */
1099 success
= channel_setup_remote_fwd_listener(
1100 listen_address
, listen_port
, options
.gateway_ports
);
1102 xfree(listen_address
);
1103 } else if (strcmp(rtype
, "cancel-tcpip-forward") == 0) {
1104 char *cancel_address
;
1105 u_short cancel_port
;
1107 cancel_address
= packet_get_string(NULL
);
1108 cancel_port
= (u_short
)packet_get_int();
1109 debug("%s: cancel-tcpip-forward addr %s port %d", __func__
,
1110 cancel_address
, cancel_port
);
1112 success
= channel_cancel_rport_listener(cancel_address
,
1114 xfree(cancel_address
);
1117 packet_start(success
?
1118 SSH2_MSG_REQUEST_SUCCESS
: SSH2_MSG_REQUEST_FAILURE
);
1120 packet_write_wait();
1126 server_input_channel_req(int type
, u_int32_t seq
, void *ctxt
)
1129 int id
, reply
, success
= 0;
1132 id
= packet_get_int();
1133 rtype
= packet_get_string(NULL
);
1134 reply
= packet_get_char();
1136 debug("server_input_channel_req: channel %d request %s reply %d",
1139 if ((c
= channel_lookup(id
)) == NULL
)
1140 packet_disconnect("server_input_channel_req: "
1141 "unknown channel %d", id
);
1142 if (c
->type
== SSH_CHANNEL_LARVAL
|| c
->type
== SSH_CHANNEL_OPEN
)
1143 success
= session_input_channel_req(c
, rtype
);
1145 packet_start(success
?
1146 SSH2_MSG_CHANNEL_SUCCESS
: SSH2_MSG_CHANNEL_FAILURE
);
1147 packet_put_int(c
->remote_id
);
1154 server_init_dispatch_20(void)
1156 debug("server_init_dispatch_20");
1157 dispatch_init(&dispatch_protocol_error
);
1158 dispatch_set(SSH2_MSG_CHANNEL_CLOSE
, &channel_input_oclose
);
1159 dispatch_set(SSH2_MSG_CHANNEL_DATA
, &channel_input_data
);
1160 dispatch_set(SSH2_MSG_CHANNEL_EOF
, &channel_input_ieof
);
1161 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA
, &channel_input_extended_data
);
1162 dispatch_set(SSH2_MSG_CHANNEL_OPEN
, &server_input_channel_open
);
1163 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1164 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1165 dispatch_set(SSH2_MSG_CHANNEL_REQUEST
, &server_input_channel_req
);
1166 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST
, &channel_input_window_adjust
);
1167 dispatch_set(SSH2_MSG_GLOBAL_REQUEST
, &server_input_global_request
);
1169 dispatch_set(SSH2_MSG_CHANNEL_FAILURE
, &server_input_keep_alive
);
1170 dispatch_set(SSH2_MSG_REQUEST_SUCCESS
, &server_input_keep_alive
);
1171 dispatch_set(SSH2_MSG_REQUEST_FAILURE
, &server_input_keep_alive
);
1173 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
1176 server_init_dispatch_13(void)
1178 debug("server_init_dispatch_13");
1179 dispatch_init(NULL
);
1180 dispatch_set(SSH_CMSG_EOF
, &server_input_eof
);
1181 dispatch_set(SSH_CMSG_STDIN_DATA
, &server_input_stdin_data
);
1182 dispatch_set(SSH_CMSG_WINDOW_SIZE
, &server_input_window_size
);
1183 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_close
);
1184 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_close_confirmation
);
1185 dispatch_set(SSH_MSG_CHANNEL_DATA
, &channel_input_data
);
1186 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1187 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1188 dispatch_set(SSH_MSG_PORT_OPEN
, &channel_input_port_open
);
1191 server_init_dispatch_15(void)
1193 server_init_dispatch_13();
1194 debug("server_init_dispatch_15");
1195 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_ieof
);
1196 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_oclose
);
1199 server_init_dispatch(void)
1202 server_init_dispatch_20();
1204 server_init_dispatch_13();
1206 server_init_dispatch_15();