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.
38 RCSID("$OpenBSD: serverloop.c,v 1.117 2004/08/11 21:43:05 avsm Exp $");
54 #include "auth-options.h"
55 #include "serverloop.h"
59 extern ServerOptions options
;
63 extern Authctxt
*the_authctxt
;
65 static Buffer stdin_buffer
; /* Buffer for stdin data. */
66 static Buffer stdout_buffer
; /* Buffer for stdout data. */
67 static Buffer stderr_buffer
; /* Buffer for stderr data. */
68 static int fdin
; /* Descriptor for stdin (for writing) */
69 static int fdout
; /* Descriptor for stdout (for reading);
70 May be same number as fdin. */
71 static int fderr
; /* Descriptor for stderr. May be -1. */
72 static long stdin_bytes
= 0; /* Number of bytes written to stdin. */
73 static long stdout_bytes
= 0; /* Number of stdout bytes sent to client. */
74 static long stderr_bytes
= 0; /* Number of stderr bytes sent to client. */
75 static long fdout_bytes
= 0; /* Number of stdout bytes read from program. */
76 static int stdin_eof
= 0; /* EOF message received from client. */
77 static int fdout_eof
= 0; /* EOF encountered reading from fdout. */
78 static int fderr_eof
= 0; /* EOF encountered readung from fderr. */
79 static int fdin_is_tty
= 0; /* fdin points to a tty. */
80 static int connection_in
; /* Connection to client (input). */
81 static int connection_out
; /* Connection to client (output). */
82 static int connection_closed
= 0; /* Connection to client closed. */
83 static u_int buffer_high
; /* "Soft" max buffer size. */
84 static int client_alive_timeouts
= 0;
87 * This SIGCHLD kludge is used to detect when the child exits. The server
88 * will exit after that, as soon as forwarded connections have terminated.
91 static volatile sig_atomic_t child_terminated
= 0; /* The child has terminated. */
94 static void server_init_dispatch(void);
97 * we write to this pipe if a SIGCHLD is caught in order to avoid
98 * the race between select() and child_terminated
100 static int notify_pipe
[2];
104 if (pipe(notify_pipe
) < 0) {
105 error("pipe(notify_pipe) failed %s", strerror(errno
));
106 } else if ((fcntl(notify_pipe
[0], F_SETFD
, 1) == -1) ||
107 (fcntl(notify_pipe
[1], F_SETFD
, 1) == -1)) {
108 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno
));
109 close(notify_pipe
[0]);
110 close(notify_pipe
[1]);
112 set_nonblock(notify_pipe
[0]);
113 set_nonblock(notify_pipe
[1]);
116 notify_pipe
[0] = -1; /* read end */
117 notify_pipe
[1] = -1; /* write end */
122 if (notify_pipe
[1] != -1)
123 write(notify_pipe
[1], "", 1);
126 notify_prepare(fd_set
*readset
)
128 if (notify_pipe
[0] != -1)
129 FD_SET(notify_pipe
[0], readset
);
132 notify_done(fd_set
*readset
)
136 if (notify_pipe
[0] != -1 && FD_ISSET(notify_pipe
[0], readset
))
137 while (read(notify_pipe
[0], &c
, 1) != -1)
138 debug2("notify_done: reading");
142 sigchld_handler(int sig
)
144 int save_errno
= errno
;
145 debug("Received SIGCHLD.");
146 child_terminated
= 1;
148 mysignal(SIGCHLD
, sigchld_handler
);
155 * Make packets from buffered stderr data, and buffer it for sending
159 make_packets_from_stderr_data(void)
163 /* Send buffered stderr data to the client. */
164 while (buffer_len(&stderr_buffer
) > 0 &&
165 packet_not_very_much_data_to_write()) {
166 len
= buffer_len(&stderr_buffer
);
167 if (packet_is_interactive()) {
171 /* Keep the packets at reasonable size. */
172 if (len
> packet_get_maxsize())
173 len
= packet_get_maxsize();
175 packet_start(SSH_SMSG_STDERR_DATA
);
176 packet_put_string(buffer_ptr(&stderr_buffer
), len
);
178 buffer_consume(&stderr_buffer
, len
);
184 * Make packets from buffered stdout data, and buffer it for sending to the
188 make_packets_from_stdout_data(void)
192 /* Send buffered stdout data to the client. */
193 while (buffer_len(&stdout_buffer
) > 0 &&
194 packet_not_very_much_data_to_write()) {
195 len
= buffer_len(&stdout_buffer
);
196 if (packet_is_interactive()) {
200 /* Keep the packets at reasonable size. */
201 if (len
> packet_get_maxsize())
202 len
= packet_get_maxsize();
204 packet_start(SSH_SMSG_STDOUT_DATA
);
205 packet_put_string(buffer_ptr(&stdout_buffer
), len
);
207 buffer_consume(&stdout_buffer
, len
);
213 client_alive_check(void)
217 /* timeout, check to see how many we have had */
218 if (++client_alive_timeouts
> options
.client_alive_count_max
)
219 packet_disconnect("Timeout, your session not responding.");
222 * send a bogus global/channel request with "wantreply",
223 * we should get back a failure
225 if ((channel_id
= channel_find_open()) == -1) {
226 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
227 packet_put_cstring("keepalive@openssh.com");
228 packet_put_char(1); /* boolean: want reply */
230 channel_request_start(channel_id
, "keepalive@openssh.com", 1);
236 * Sleep in select() until we can do something. This will initialize the
237 * select masks. Upon return, the masks will indicate which descriptors
238 * have data or can accept data. Optionally, a maximum time can be specified
239 * for the duration of the wait (0 = infinite).
242 wait_until_can_do_something(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
243 u_int
*nallocp
, u_int max_time_milliseconds
)
245 struct timeval tv
, *tvp
;
247 int client_alive_scheduled
= 0;
250 * if using client_alive, set the max timeout accordingly,
251 * and indicate that this particular timeout was for client
252 * alive by setting the client_alive_scheduled flag.
254 * this could be randomized somewhat to make traffic
255 * analysis more difficult, but we're not doing it yet.
258 max_time_milliseconds
== 0 && options
.client_alive_interval
) {
259 client_alive_scheduled
= 1;
260 max_time_milliseconds
= options
.client_alive_interval
* 1000;
263 /* Allocate and update select() masks for channel descriptors. */
264 channel_prepare_select(readsetp
, writesetp
, maxfdp
, nallocp
, 0);
268 /* wrong: bad condition XXX */
269 if (channel_not_very_much_buffered_data())
271 FD_SET(connection_in
, *readsetp
);
274 * Read packets from the client unless we have too much
275 * buffered stdin or channel data.
277 if (buffer_len(&stdin_buffer
) < buffer_high
&&
278 channel_not_very_much_buffered_data())
279 FD_SET(connection_in
, *readsetp
);
281 * If there is not too much data already buffered going to
282 * the client, try to get some more data from the program.
284 if (packet_not_very_much_data_to_write()) {
286 FD_SET(fdout
, *readsetp
);
288 FD_SET(fderr
, *readsetp
);
291 * If we have buffered data, try to write some of that data
294 if (fdin
!= -1 && buffer_len(&stdin_buffer
) > 0)
295 FD_SET(fdin
, *writesetp
);
297 notify_prepare(*readsetp
);
300 * If we have buffered packet data going to the client, mark that
303 if (packet_have_data_to_write())
304 FD_SET(connection_out
, *writesetp
);
307 * If child has terminated and there is enough buffer space to read
308 * from it, then read as much as is available and exit.
310 if (child_terminated
&& packet_not_very_much_data_to_write())
311 if (max_time_milliseconds
== 0 || client_alive_scheduled
)
312 max_time_milliseconds
= 100;
314 if (max_time_milliseconds
== 0)
317 tv
.tv_sec
= max_time_milliseconds
/ 1000;
318 tv
.tv_usec
= 1000 * (max_time_milliseconds
% 1000);
322 /* Wait for something to happen, or the timeout to expire. */
323 ret
= select((*maxfdp
)+1, *readsetp
, *writesetp
, NULL
, tvp
);
326 memset(*readsetp
, 0, *nallocp
);
327 memset(*writesetp
, 0, *nallocp
);
329 error("select: %.100s", strerror(errno
));
330 } else if (ret
== 0 && client_alive_scheduled
)
331 client_alive_check();
333 notify_done(*readsetp
);
337 * Processes input from the client and the program. Input data is stored
338 * in buffers and processed later.
341 process_input(fd_set
* readset
)
346 /* Read and buffer any input data from the client. */
347 if (FD_ISSET(connection_in
, readset
)) {
348 len
= read(connection_in
, buf
, sizeof(buf
));
350 verbose("Connection closed by %.100s",
351 get_remote_ipaddr());
352 connection_closed
= 1;
356 } else if (len
< 0) {
357 if (errno
!= EINTR
&& errno
!= EAGAIN
) {
358 verbose("Read error from remote host "
360 get_remote_ipaddr(), strerror(errno
));
364 /* Buffer any received data. */
365 packet_process_incoming(buf
, len
);
371 /* Read and buffer any available stdout data from the program. */
372 if (!fdout_eof
&& FD_ISSET(fdout
, readset
)) {
373 len
= read(fdout
, buf
, sizeof(buf
));
374 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
376 } else if (len
<= 0) {
379 buffer_append(&stdout_buffer
, buf
, len
);
383 /* Read and buffer any available stderr data from the program. */
384 if (!fderr_eof
&& FD_ISSET(fderr
, readset
)) {
385 len
= read(fderr
, buf
, sizeof(buf
));
386 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
388 } else if (len
<= 0) {
391 buffer_append(&stderr_buffer
, buf
, len
);
397 * Sends data from internal buffers to client program stdin.
400 process_output(fd_set
* writeset
)
407 /* Write buffered data to program stdin. */
408 if (!compat20
&& fdin
!= -1 && FD_ISSET(fdin
, writeset
)) {
409 data
= buffer_ptr(&stdin_buffer
);
410 dlen
= buffer_len(&stdin_buffer
);
411 len
= write(fdin
, data
, dlen
);
412 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
414 } else if (len
<= 0) {
418 shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
421 /* Successful write. */
422 if (fdin_is_tty
&& dlen
>= 1 && data
[0] != '\r' &&
423 tcgetattr(fdin
, &tio
) == 0 &&
424 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
426 * Simulate echo to reduce the impact of
429 packet_send_ignore(len
);
432 /* Consume the data from the buffer. */
433 buffer_consume(&stdin_buffer
, len
);
434 /* Update the count of bytes written to the program. */
438 /* Send any buffered packet data to the client. */
439 if (FD_ISSET(connection_out
, writeset
))
444 * Wait until all buffered output has been sent to the client.
445 * This is used when the program terminates.
450 /* Send any buffered stdout data to the client. */
451 if (buffer_len(&stdout_buffer
) > 0) {
452 packet_start(SSH_SMSG_STDOUT_DATA
);
453 packet_put_string(buffer_ptr(&stdout_buffer
),
454 buffer_len(&stdout_buffer
));
456 /* Update the count of sent bytes. */
457 stdout_bytes
+= buffer_len(&stdout_buffer
);
459 /* Send any buffered stderr data to the client. */
460 if (buffer_len(&stderr_buffer
) > 0) {
461 packet_start(SSH_SMSG_STDERR_DATA
);
462 packet_put_string(buffer_ptr(&stderr_buffer
),
463 buffer_len(&stderr_buffer
));
465 /* Update the count of sent bytes. */
466 stderr_bytes
+= buffer_len(&stderr_buffer
);
468 /* Wait until all buffered data has been written to the client. */
473 process_buffered_input_packets(void)
475 dispatch_run(DISPATCH_NONBLOCK
, NULL
, compat20
? xxx_kex
: NULL
);
479 * Performs the interactive session. This handles data transmission between
480 * the client and the program. Note that the notion of stdin, stdout, and
481 * stderr in this function is sort of reversed: this function writes to
482 * stdin (of the child program), and reads from stdout and stderr (of the
486 server_loop(pid_t pid
, int fdin_arg
, int fdout_arg
, int fderr_arg
)
488 fd_set
*readset
= NULL
, *writeset
= NULL
;
491 int wait_status
; /* Status returned by wait(). */
492 pid_t wait_pid
; /* pid returned by wait(). */
493 int waiting_termination
= 0; /* Have displayed waiting close message. */
494 u_int max_time_milliseconds
;
495 u_int previous_stdout_buffer_bytes
;
496 u_int stdout_buffer_bytes
;
499 debug("Entering interactive session.");
501 /* Initialize the SIGCHLD kludge. */
502 child_terminated
= 0;
503 mysignal(SIGCHLD
, sigchld_handler
);
505 /* Initialize our global variables. */
513 /* we don't have stderr for interactive terminal sessions, see below */
517 if (!(datafellows
& SSH_BUG_IGNOREMSG
) && isatty(fdin
))
520 connection_in
= packet_get_connection_in();
521 connection_out
= packet_get_connection_out();
525 previous_stdout_buffer_bytes
= 0;
527 /* Set approximate I/O buffer size. */
528 if (packet_is_interactive())
531 buffer_high
= 64 * 1024;
534 /* Initialize max_fd to the maximum of the known file descriptors. */
535 max_fd
= MAX(connection_in
, connection_out
);
536 max_fd
= MAX(max_fd
, fdin
);
537 max_fd
= MAX(max_fd
, fdout
);
539 max_fd
= MAX(max_fd
, fderr
);
542 /* Initialize Initialize buffers. */
543 buffer_init(&stdin_buffer
);
544 buffer_init(&stdout_buffer
);
545 buffer_init(&stderr_buffer
);
548 * If we have no separate fderr (which is the case when we have a pty
549 * - there we cannot make difference between data sent to stdout and
550 * stderr), indicate that we have seen an EOF from stderr. This way
551 * we don\'t need to check the descriptor everywhere.
556 server_init_dispatch();
558 /* Main loop of the server for the interactive session mode. */
561 /* Process buffered packets from the client. */
562 process_buffered_input_packets();
565 * If we have received eof, and there is no more pending
566 * input data, cause a real eof by closing fdin.
568 if (stdin_eof
&& fdin
!= -1 && buffer_len(&stdin_buffer
) == 0) {
572 shutdown(fdin
, SHUT_WR
); /* We will no longer send. */
575 /* Make packets from buffered stderr data to send to the client. */
576 make_packets_from_stderr_data();
579 * Make packets from buffered stdout data to send to the
580 * client. If there is very little to send, this arranges to
581 * not send them now, but to wait a short while to see if we
582 * are getting more data. This is necessary, as some systems
583 * wake up readers from a pty after each separate character.
585 max_time_milliseconds
= 0;
586 stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
587 if (stdout_buffer_bytes
!= 0 && stdout_buffer_bytes
< 256 &&
588 stdout_buffer_bytes
!= previous_stdout_buffer_bytes
) {
589 /* try again after a while */
590 max_time_milliseconds
= 10;
593 make_packets_from_stdout_data();
595 previous_stdout_buffer_bytes
= buffer_len(&stdout_buffer
);
597 /* Send channel data to the client. */
598 if (packet_not_very_much_data_to_write())
599 channel_output_poll();
602 * Bail out of the loop if the program has closed its output
603 * descriptors, and we have no more data to send to the
604 * client, and there is no pending buffered data.
606 if (fdout_eof
&& fderr_eof
&& !packet_have_data_to_write() &&
607 buffer_len(&stdout_buffer
) == 0 && buffer_len(&stderr_buffer
) == 0) {
608 if (!channel_still_open())
610 if (!waiting_termination
) {
611 const char *s
= "Waiting for forwarded connections to terminate...\r\n";
613 waiting_termination
= 1;
614 buffer_append(&stderr_buffer
, s
, strlen(s
));
616 /* Display list of open channels. */
617 cp
= channel_open_message();
618 buffer_append(&stderr_buffer
, cp
, strlen(cp
));
622 max_fd
= MAX(connection_in
, connection_out
);
623 max_fd
= MAX(max_fd
, fdin
);
624 max_fd
= MAX(max_fd
, fdout
);
625 max_fd
= MAX(max_fd
, fderr
);
626 max_fd
= MAX(max_fd
, notify_pipe
[0]);
628 /* Sleep in select() until we can do something. */
629 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
630 &nalloc
, max_time_milliseconds
);
632 /* Process any channel events. */
633 channel_after_select(readset
, writeset
);
635 /* Process input from the client and from program stdout/stderr. */
636 process_input(readset
);
638 /* Process output to the client and to program stdin. */
639 process_output(writeset
);
646 /* Cleanup and termination code. */
648 /* Wait until all output has been sent to the client. */
651 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
652 stdin_bytes
, fdout_bytes
, stdout_bytes
, stderr_bytes
);
654 /* Free and clear the buffers. */
655 buffer_free(&stdin_buffer
);
656 buffer_free(&stdout_buffer
);
657 buffer_free(&stderr_buffer
);
659 /* Close the file descriptors. */
674 /* We no longer want our SIGCHLD handler to be called. */
675 mysignal(SIGCHLD
, SIG_DFL
);
677 while ((wait_pid
= waitpid(-1, &wait_status
, 0)) < 0)
679 packet_disconnect("wait: %.100s", strerror(errno
));
681 error("Strange, wait returned pid %ld, expected %ld",
682 (long)wait_pid
, (long)pid
);
684 /* Check if it exited normally. */
685 if (WIFEXITED(wait_status
)) {
686 /* Yes, normal exit. Get exit status and send it to the client. */
687 debug("Command exited with status %d.", WEXITSTATUS(wait_status
));
688 packet_start(SSH_SMSG_EXITSTATUS
);
689 packet_put_int(WEXITSTATUS(wait_status
));
694 * Wait for exit confirmation. Note that there might be
695 * other packets coming before it; however, the program has
696 * already died so we just ignore them. The client is
697 * supposed to respond with the confirmation when it receives
701 type
= packet_read();
703 while (type
!= SSH_CMSG_EXIT_CONFIRMATION
);
705 debug("Received exit confirmation.");
708 /* Check if the program terminated due to a signal. */
709 if (WIFSIGNALED(wait_status
))
710 packet_disconnect("Command terminated on signal %d.",
711 WTERMSIG(wait_status
));
713 /* Some weird exit cause. Just exit. */
714 packet_disconnect("wait returned status %04x.", wait_status
);
719 collect_children(void)
725 /* block SIGCHLD while we check for dead children */
727 sigaddset(&nset
, SIGCHLD
);
728 sigprocmask(SIG_BLOCK
, &nset
, &oset
);
729 if (child_terminated
) {
730 while ((pid
= waitpid(-1, &status
, WNOHANG
)) > 0 ||
731 (pid
< 0 && errno
== EINTR
))
733 session_close_by_pid(pid
, status
);
734 child_terminated
= 0;
736 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
740 server_loop2(Authctxt
*authctxt
)
742 fd_set
*readset
= NULL
, *writeset
= NULL
;
743 int rekeying
= 0, max_fd
, nalloc
= 0;
745 debug("Entering interactive session for SSH2.");
747 mysignal(SIGCHLD
, sigchld_handler
);
748 child_terminated
= 0;
749 connection_in
= packet_get_connection_in();
750 connection_out
= packet_get_connection_out();
754 max_fd
= MAX(connection_in
, connection_out
);
755 max_fd
= MAX(max_fd
, notify_pipe
[0]);
757 server_init_dispatch();
760 process_buffered_input_packets();
762 rekeying
= (xxx_kex
!= NULL
&& !xxx_kex
->done
);
764 if (!rekeying
&& packet_not_very_much_data_to_write())
765 channel_output_poll();
766 wait_until_can_do_something(&readset
, &writeset
, &max_fd
,
771 channel_after_select(readset
, writeset
);
772 if (packet_need_rekeying()) {
773 debug("need rekeying");
775 kex_send_kexinit(xxx_kex
);
778 process_input(readset
);
779 if (connection_closed
)
781 process_output(writeset
);
790 /* free all channels, no more reads and writes */
793 /* free remaining sessions, e.g. remove wtmp entries */
794 session_destroy_all(NULL
);
798 server_input_keep_alive(int type
, u_int32_t seq
, void *ctxt
)
800 debug("Got %d/%u for keepalive", type
, seq
);
802 * reset timeout, since we got a sane answer from the client.
803 * even if this was generated by something other than
804 * the bogus CHANNEL_REQUEST we send for keepalives.
806 client_alive_timeouts
= 0;
810 server_input_stdin_data(int type
, u_int32_t seq
, void *ctxt
)
815 /* Stdin data from the client. Append it to the buffer. */
816 /* Ignore any data if the client has closed stdin. */
819 data
= packet_get_string(&data_len
);
821 buffer_append(&stdin_buffer
, data
, data_len
);
822 memset(data
, 0, data_len
);
827 server_input_eof(int type
, u_int32_t seq
, void *ctxt
)
830 * Eof from the client. The stdin descriptor to the
831 * program will be closed when all buffered data has
834 debug("EOF received for stdin.");
840 server_input_window_size(int type
, u_int32_t seq
, void *ctxt
)
842 int row
= packet_get_int();
843 int col
= packet_get_int();
844 int xpixel
= packet_get_int();
845 int ypixel
= packet_get_int();
847 debug("Window change received.");
850 pty_change_window_size(fdin
, row
, col
, xpixel
, ypixel
);
854 server_request_direct_tcpip(void)
858 char *target
, *originator
;
859 int target_port
, originator_port
;
861 target
= packet_get_string(NULL
);
862 target_port
= packet_get_int();
863 originator
= packet_get_string(NULL
);
864 originator_port
= packet_get_int();
867 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
868 originator
, originator_port
, target
, target_port
);
870 /* XXX check permission */
871 sock
= channel_connect_to(target
, target_port
);
876 c
= channel_new("direct-tcpip", SSH_CHANNEL_CONNECTING
,
877 sock
, sock
, -1, CHAN_TCP_WINDOW_DEFAULT
,
878 CHAN_TCP_PACKET_DEFAULT
, 0, "direct-tcpip", 1);
883 server_request_session(void)
887 debug("input_session_request");
890 * A server session has no fd to read or write until a
891 * CHANNEL_REQUEST for a shell is made, so we set the type to
892 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
893 * CHANNEL_REQUEST messages is registered.
895 c
= channel_new("session", SSH_CHANNEL_LARVAL
,
896 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT
,
897 0, "server-session", 1);
898 if (session_open(the_authctxt
, c
->self
) != 1) {
899 debug("session open failed, free channel %d", c
->self
);
903 channel_register_cleanup(c
->self
, session_close_by_channel
);
908 server_input_channel_open(int type
, u_int32_t seq
, void *ctxt
)
913 u_int rmaxpack
, rwindow
, len
;
915 ctype
= packet_get_string(&len
);
916 rchan
= packet_get_int();
917 rwindow
= packet_get_int();
918 rmaxpack
= packet_get_int();
920 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
921 ctype
, rchan
, rwindow
, rmaxpack
);
923 if (strcmp(ctype
, "session") == 0) {
924 c
= server_request_session();
925 } else if (strcmp(ctype
, "direct-tcpip") == 0) {
926 c
= server_request_direct_tcpip();
929 debug("server_input_channel_open: confirm %s", ctype
);
930 c
->remote_id
= rchan
;
931 c
->remote_window
= rwindow
;
932 c
->remote_maxpacket
= rmaxpack
;
933 if (c
->type
!= SSH_CHANNEL_CONNECTING
) {
934 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
935 packet_put_int(c
->remote_id
);
936 packet_put_int(c
->self
);
937 packet_put_int(c
->local_window
);
938 packet_put_int(c
->local_maxpacket
);
942 debug("server_input_channel_open: failure %s", ctype
);
943 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
944 packet_put_int(rchan
);
945 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
);
946 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
947 packet_put_cstring("open failed");
948 packet_put_cstring("");
956 server_input_global_request(int type
, u_int32_t seq
, void *ctxt
)
962 rtype
= packet_get_string(NULL
);
963 want_reply
= packet_get_char();
964 debug("server_input_global_request: rtype %s want_reply %d", rtype
, want_reply
);
966 /* -R style forwarding */
967 if (strcmp(rtype
, "tcpip-forward") == 0) {
969 char *listen_address
;
972 pw
= the_authctxt
->pw
;
973 if (pw
== NULL
|| !the_authctxt
->valid
)
974 fatal("server_input_global_request: no/invalid user");
975 listen_address
= packet_get_string(NULL
);
976 listen_port
= (u_short
)packet_get_int();
977 debug("server_input_global_request: tcpip-forward listen %s port %d",
978 listen_address
, listen_port
);
980 /* check permissions */
981 if (!options
.allow_tcp_forwarding
||
982 no_port_forwarding_flag
983 #ifndef NO_IPPORT_RESERVED_CONCEPT
984 || (listen_port
< IPPORT_RESERVED
&& pw
->pw_uid
!= 0)
988 packet_send_debug("Server has disabled port forwarding.");
990 /* Start listening on the port */
991 success
= channel_setup_remote_fwd_listener(
992 listen_address
, listen_port
, options
.gateway_ports
);
994 xfree(listen_address
);
995 } else if (strcmp(rtype
, "cancel-tcpip-forward") == 0) {
996 char *cancel_address
;
999 cancel_address
= packet_get_string(NULL
);
1000 cancel_port
= (u_short
)packet_get_int();
1001 debug("%s: cancel-tcpip-forward addr %s port %d", __func__
,
1002 cancel_address
, cancel_port
);
1004 success
= channel_cancel_rport_listener(cancel_address
,
1008 packet_start(success
?
1009 SSH2_MSG_REQUEST_SUCCESS
: SSH2_MSG_REQUEST_FAILURE
);
1011 packet_write_wait();
1016 server_input_channel_req(int type
, u_int32_t seq
, void *ctxt
)
1019 int id
, reply
, success
= 0;
1022 id
= packet_get_int();
1023 rtype
= packet_get_string(NULL
);
1024 reply
= packet_get_char();
1026 debug("server_input_channel_req: channel %d request %s reply %d",
1029 if ((c
= channel_lookup(id
)) == NULL
)
1030 packet_disconnect("server_input_channel_req: "
1031 "unknown channel %d", id
);
1032 if (c
->type
== SSH_CHANNEL_LARVAL
|| c
->type
== SSH_CHANNEL_OPEN
)
1033 success
= session_input_channel_req(c
, rtype
);
1035 packet_start(success
?
1036 SSH2_MSG_CHANNEL_SUCCESS
: SSH2_MSG_CHANNEL_FAILURE
);
1037 packet_put_int(c
->remote_id
);
1044 server_init_dispatch_20(void)
1046 debug("server_init_dispatch_20");
1047 dispatch_init(&dispatch_protocol_error
);
1048 dispatch_set(SSH2_MSG_CHANNEL_CLOSE
, &channel_input_oclose
);
1049 dispatch_set(SSH2_MSG_CHANNEL_DATA
, &channel_input_data
);
1050 dispatch_set(SSH2_MSG_CHANNEL_EOF
, &channel_input_ieof
);
1051 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA
, &channel_input_extended_data
);
1052 dispatch_set(SSH2_MSG_CHANNEL_OPEN
, &server_input_channel_open
);
1053 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1054 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1055 dispatch_set(SSH2_MSG_CHANNEL_REQUEST
, &server_input_channel_req
);
1056 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST
, &channel_input_window_adjust
);
1057 dispatch_set(SSH2_MSG_GLOBAL_REQUEST
, &server_input_global_request
);
1059 dispatch_set(SSH2_MSG_CHANNEL_FAILURE
, &server_input_keep_alive
);
1060 dispatch_set(SSH2_MSG_REQUEST_SUCCESS
, &server_input_keep_alive
);
1061 dispatch_set(SSH2_MSG_REQUEST_FAILURE
, &server_input_keep_alive
);
1063 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
1066 server_init_dispatch_13(void)
1068 debug("server_init_dispatch_13");
1069 dispatch_init(NULL
);
1070 dispatch_set(SSH_CMSG_EOF
, &server_input_eof
);
1071 dispatch_set(SSH_CMSG_STDIN_DATA
, &server_input_stdin_data
);
1072 dispatch_set(SSH_CMSG_WINDOW_SIZE
, &server_input_window_size
);
1073 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_close
);
1074 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_close_confirmation
);
1075 dispatch_set(SSH_MSG_CHANNEL_DATA
, &channel_input_data
);
1076 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
, &channel_input_open_confirmation
);
1077 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE
, &channel_input_open_failure
);
1078 dispatch_set(SSH_MSG_PORT_OPEN
, &channel_input_port_open
);
1081 server_init_dispatch_15(void)
1083 server_init_dispatch_13();
1084 debug("server_init_dispatch_15");
1085 dispatch_set(SSH_MSG_CHANNEL_CLOSE
, &channel_input_ieof
);
1086 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
, &channel_input_oclose
);
1089 server_init_dispatch(void)
1092 server_init_dispatch_20();
1094 server_init_dispatch_13();
1096 server_init_dispatch_15();