Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Server main loop for handling the interactive session. |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 6 | * |
| 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". |
| 12 | * |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 13 | * SSH2 support by Markus Friedl. |
Ben Lindstrom | 4469723 | 2001-07-04 03:32:30 +0000 | [diff] [blame] | 14 | * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 15 | * |
| 16 | * Redistribution and use in source and binary forms, with or without |
| 17 | * modification, are permitted provided that the following conditions |
| 18 | * are met: |
| 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. |
| 24 | * |
| 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. |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 35 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 36 | |
| 37 | #include "includes.h" |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 38 | RCSID("$OpenBSD: serverloop.c,v 1.110 2003/06/24 08:23:46 markus Exp $"); |
Damien Miller | 69b69aa | 2000-10-28 14:19:58 +1100 | [diff] [blame] | 39 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 40 | #include "xmalloc.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 41 | #include "packet.h" |
| 42 | #include "buffer.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 43 | #include "log.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 44 | #include "servconf.h" |
Damien Miller | 16aed05 | 2002-09-22 01:26:27 +1000 | [diff] [blame] | 45 | #include "canohost.h" |
Ben Lindstrom | d95c09c | 2001-02-18 19:13:33 +0000 | [diff] [blame] | 46 | #include "sshpty.h" |
Ben Lindstrom | c763767 | 2001-06-09 00:36:26 +0000 | [diff] [blame] | 47 | #include "channels.h" |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 48 | #include "compat.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 49 | #include "ssh1.h" |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 50 | #include "ssh2.h" |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 51 | #include "auth.h" |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 52 | #include "session.h" |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 53 | #include "dispatch.h" |
Damien Miller | f6d9e22 | 2000-06-18 14:50:44 +1000 | [diff] [blame] | 54 | #include "auth-options.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 55 | #include "serverloop.h" |
| 56 | #include "misc.h" |
Ben Lindstrom | 8ac9106 | 2001-04-04 17:57:54 +0000 | [diff] [blame] | 57 | #include "kex.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 58 | |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 59 | extern ServerOptions options; |
| 60 | |
Ben Lindstrom | 8ac9106 | 2001-04-04 17:57:54 +0000 | [diff] [blame] | 61 | /* XXX */ |
| 62 | extern Kex *xxx_kex; |
Ben Lindstrom | bddd551 | 2001-07-04 04:53:53 +0000 | [diff] [blame] | 63 | static Authctxt *xxx_authctxt; |
Ben Lindstrom | 8ac9106 | 2001-04-04 17:57:54 +0000 | [diff] [blame] | 64 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 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. */ |
Damien Miller | 225736c | 2001-02-19 21:51:08 +1100 | [diff] [blame] | 79 | static int fdin_is_tty = 0; /* fdin points to a tty. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 80 | static int connection_in; /* Connection to client (input). */ |
| 81 | static int connection_out; /* Connection to client (output). */ |
Ben Lindstrom | e34ab4c | 2001-04-07 01:12:11 +0000 | [diff] [blame] | 82 | static int connection_closed = 0; /* Connection to client closed. */ |
| 83 | static u_int buffer_high; /* "Soft" max buffer size. */ |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 84 | static int client_alive_timeouts = 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 85 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 86 | /* |
| 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. |
| 89 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 90 | |
Ben Lindstrom | 5e71c54 | 2001-12-06 16:48:14 +0000 | [diff] [blame] | 91 | static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 92 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 93 | /* prototypes */ |
| 94 | static void server_init_dispatch(void); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 95 | |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 96 | /* |
| 97 | * we write to this pipe if a SIGCHLD is caught in order to avoid |
| 98 | * the race between select() and child_terminated |
| 99 | */ |
| 100 | static int notify_pipe[2]; |
| 101 | static void |
| 102 | notify_setup(void) |
| 103 | { |
| 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]); |
| 111 | } else { |
| 112 | set_nonblock(notify_pipe[0]); |
| 113 | set_nonblock(notify_pipe[1]); |
| 114 | return; |
| 115 | } |
| 116 | notify_pipe[0] = -1; /* read end */ |
| 117 | notify_pipe[1] = -1; /* write end */ |
| 118 | } |
| 119 | static void |
| 120 | notify_parent(void) |
| 121 | { |
| 122 | if (notify_pipe[1] != -1) |
| 123 | write(notify_pipe[1], "", 1); |
| 124 | } |
| 125 | static void |
| 126 | notify_prepare(fd_set *readset) |
| 127 | { |
| 128 | if (notify_pipe[0] != -1) |
| 129 | FD_SET(notify_pipe[0], readset); |
| 130 | } |
| 131 | static void |
| 132 | notify_done(fd_set *readset) |
| 133 | { |
| 134 | char c; |
| 135 | |
| 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"); |
| 139 | } |
| 140 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 141 | static void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 142 | sigchld_handler(int sig) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 143 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 144 | int save_errno = errno; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 145 | debug("Received SIGCHLD."); |
| 146 | child_terminated = 1; |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 147 | #ifndef _UNICOS |
Ben Lindstrom | ec46e0b | 2001-06-09 01:27:31 +0000 | [diff] [blame] | 148 | mysignal(SIGCHLD, sigchld_handler); |
Tim Rice | 81ed518 | 2002-09-25 17:38:46 -0700 | [diff] [blame] | 149 | #endif |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 150 | notify_parent(); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 151 | errno = save_errno; |
| 152 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 153 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 154 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 155 | * Make packets from buffered stderr data, and buffer it for sending |
| 156 | * to the client. |
| 157 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 158 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 159 | make_packets_from_stderr_data(void) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 160 | { |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 161 | u_int len; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 162 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 163 | /* Send buffered stderr data to the client. */ |
| 164 | while (buffer_len(&stderr_buffer) > 0 && |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 165 | packet_not_very_much_data_to_write()) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 166 | len = buffer_len(&stderr_buffer); |
| 167 | if (packet_is_interactive()) { |
| 168 | if (len > 512) |
| 169 | len = 512; |
| 170 | } else { |
| 171 | /* Keep the packets at reasonable size. */ |
| 172 | if (len > packet_get_maxsize()) |
| 173 | len = packet_get_maxsize(); |
| 174 | } |
| 175 | packet_start(SSH_SMSG_STDERR_DATA); |
| 176 | packet_put_string(buffer_ptr(&stderr_buffer), len); |
| 177 | packet_send(); |
| 178 | buffer_consume(&stderr_buffer, len); |
| 179 | stderr_bytes += len; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 180 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 181 | } |
| 182 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 183 | /* |
| 184 | * Make packets from buffered stdout data, and buffer it for sending to the |
| 185 | * client. |
| 186 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 187 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 188 | make_packets_from_stdout_data(void) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 189 | { |
Darren Tucker | 502d384 | 2003-06-28 12:38:01 +1000 | [diff] [blame] | 190 | u_int len; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 191 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 192 | /* Send buffered stdout data to the client. */ |
| 193 | while (buffer_len(&stdout_buffer) > 0 && |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 194 | packet_not_very_much_data_to_write()) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 195 | len = buffer_len(&stdout_buffer); |
| 196 | if (packet_is_interactive()) { |
| 197 | if (len > 512) |
| 198 | len = 512; |
| 199 | } else { |
| 200 | /* Keep the packets at reasonable size. */ |
| 201 | if (len > packet_get_maxsize()) |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 202 | len = packet_get_maxsize(); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 203 | } |
| 204 | packet_start(SSH_SMSG_STDOUT_DATA); |
| 205 | packet_put_string(buffer_ptr(&stdout_buffer), len); |
| 206 | packet_send(); |
| 207 | buffer_consume(&stdout_buffer, len); |
| 208 | stdout_bytes += len; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 209 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 210 | } |
| 211 | |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 212 | static void |
| 213 | client_alive_check(void) |
| 214 | { |
Damien Miller | 056cf73 | 2002-01-22 23:21:39 +1100 | [diff] [blame] | 215 | static int had_channel = 0; |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 216 | int id; |
| 217 | |
Damien Miller | 056cf73 | 2002-01-22 23:21:39 +1100 | [diff] [blame] | 218 | id = channel_find_open(); |
| 219 | if (id == -1) { |
| 220 | if (!had_channel) |
| 221 | return; |
| 222 | packet_disconnect("No open channels after timeout!"); |
| 223 | } |
| 224 | had_channel = 1; |
| 225 | |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 226 | /* timeout, check to see how many we have had */ |
| 227 | if (++client_alive_timeouts > options.client_alive_count_max) |
| 228 | packet_disconnect("Timeout, your session not responding."); |
| 229 | |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 230 | /* |
| 231 | * send a bogus channel request with "wantreply", |
| 232 | * we should get back a failure |
| 233 | */ |
| 234 | channel_request_start(id, "keepalive@openssh.com", 1); |
| 235 | packet_send(); |
| 236 | } |
| 237 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 238 | /* |
| 239 | * Sleep in select() until we can do something. This will initialize the |
| 240 | * select masks. Upon return, the masks will indicate which descriptors |
| 241 | * have data or can accept data. Optionally, a maximum time can be specified |
| 242 | * for the duration of the wait (0 = infinite). |
| 243 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 244 | static void |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 245 | wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp, |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 246 | int *nallocp, u_int max_time_milliseconds) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 247 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 248 | struct timeval tv, *tvp; |
| 249 | int ret; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 250 | int client_alive_scheduled = 0; |
| 251 | |
| 252 | /* |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 253 | * if using client_alive, set the max timeout accordingly, |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 254 | * and indicate that this particular timeout was for client |
| 255 | * alive by setting the client_alive_scheduled flag. |
| 256 | * |
| 257 | * this could be randomized somewhat to make traffic |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 258 | * analysis more difficult, but we're not doing it yet. |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 259 | */ |
Ben Lindstrom | 36857f6 | 2001-07-18 15:48:57 +0000 | [diff] [blame] | 260 | if (compat20 && |
| 261 | max_time_milliseconds == 0 && options.client_alive_interval) { |
Ben Lindstrom | 2f0304c | 2001-04-29 19:49:14 +0000 | [diff] [blame] | 262 | client_alive_scheduled = 1; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 263 | max_time_milliseconds = options.client_alive_interval * 1000; |
Ben Lindstrom | 36857f6 | 2001-07-18 15:48:57 +0000 | [diff] [blame] | 264 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 265 | |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 266 | /* Allocate and update select() masks for channel descriptors. */ |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 267 | channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 268 | |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 269 | if (compat20) { |
Damien Miller | af5f2e6 | 2001-10-10 15:01:16 +1000 | [diff] [blame] | 270 | #if 0 |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 271 | /* wrong: bad condition XXX */ |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 272 | if (channel_not_very_much_buffered_data()) |
Damien Miller | af5f2e6 | 2001-10-10 15:01:16 +1000 | [diff] [blame] | 273 | #endif |
| 274 | FD_SET(connection_in, *readsetp); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 275 | } else { |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 276 | /* |
| 277 | * Read packets from the client unless we have too much |
| 278 | * buffered stdin or channel data. |
| 279 | */ |
| 280 | if (buffer_len(&stdin_buffer) < buffer_high && |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 281 | channel_not_very_much_buffered_data()) |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 282 | FD_SET(connection_in, *readsetp); |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 283 | /* |
| 284 | * If there is not too much data already buffered going to |
| 285 | * the client, try to get some more data from the program. |
| 286 | */ |
| 287 | if (packet_not_very_much_data_to_write()) { |
| 288 | if (!fdout_eof) |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 289 | FD_SET(fdout, *readsetp); |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 290 | if (!fderr_eof) |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 291 | FD_SET(fderr, *readsetp); |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 292 | } |
| 293 | /* |
| 294 | * If we have buffered data, try to write some of that data |
| 295 | * to the program. |
| 296 | */ |
| 297 | if (fdin != -1 && buffer_len(&stdin_buffer) > 0) |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 298 | FD_SET(fdin, *writesetp); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 299 | } |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 300 | notify_prepare(*readsetp); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 301 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 302 | /* |
| 303 | * If we have buffered packet data going to the client, mark that |
| 304 | * descriptor. |
| 305 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 306 | if (packet_have_data_to_write()) |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 307 | FD_SET(connection_out, *writesetp); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 308 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 309 | /* |
| 310 | * If child has terminated and there is enough buffer space to read |
| 311 | * from it, then read as much as is available and exit. |
| 312 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 313 | if (child_terminated && packet_not_very_much_data_to_write()) |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 314 | if (max_time_milliseconds == 0 || client_alive_scheduled) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 315 | max_time_milliseconds = 100; |
| 316 | |
| 317 | if (max_time_milliseconds == 0) |
| 318 | tvp = NULL; |
| 319 | else { |
| 320 | tv.tv_sec = max_time_milliseconds / 1000; |
| 321 | tv.tv_usec = 1000 * (max_time_milliseconds % 1000); |
| 322 | tvp = &tv; |
| 323 | } |
| 324 | |
| 325 | /* Wait for something to happen, or the timeout to expire. */ |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 326 | ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 327 | |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 328 | if (ret == -1) { |
Damien Miller | 79faeff | 2001-11-12 11:06:32 +1100 | [diff] [blame] | 329 | memset(*readsetp, 0, *nallocp); |
| 330 | memset(*writesetp, 0, *nallocp); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 331 | if (errno != EINTR) |
| 332 | error("select: %.100s", strerror(errno)); |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 333 | } else if (ret == 0 && client_alive_scheduled) |
Damien Miller | 8c3902a | 2001-10-10 15:01:40 +1000 | [diff] [blame] | 334 | client_alive_check(); |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 335 | |
| 336 | notify_done(*readsetp); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 337 | } |
| 338 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 339 | /* |
| 340 | * Processes input from the client and the program. Input data is stored |
| 341 | * in buffers and processed later. |
| 342 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 343 | static void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 344 | process_input(fd_set * readset) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 345 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 346 | int len; |
| 347 | char buf[16384]; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 348 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 349 | /* Read and buffer any input data from the client. */ |
| 350 | if (FD_ISSET(connection_in, readset)) { |
| 351 | len = read(connection_in, buf, sizeof(buf)); |
| 352 | if (len == 0) { |
Damien Miller | 16aed05 | 2002-09-22 01:26:27 +1000 | [diff] [blame] | 353 | verbose("Connection closed by %.100s", |
| 354 | get_remote_ipaddr()); |
Ben Lindstrom | e34ab4c | 2001-04-07 01:12:11 +0000 | [diff] [blame] | 355 | connection_closed = 1; |
| 356 | if (compat20) |
| 357 | return; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 358 | fatal_cleanup(); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 359 | } else if (len < 0) { |
| 360 | if (errno != EINTR && errno != EAGAIN) { |
Damien Miller | 16aed05 | 2002-09-22 01:26:27 +1000 | [diff] [blame] | 361 | verbose("Read error from remote host " |
| 362 | "%.100s: %.100s", |
| 363 | get_remote_ipaddr(), strerror(errno)); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 364 | fatal_cleanup(); |
| 365 | } |
| 366 | } else { |
| 367 | /* Buffer any received data. */ |
| 368 | packet_process_incoming(buf, len); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 369 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 370 | } |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 371 | if (compat20) |
| 372 | return; |
| 373 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 374 | /* Read and buffer any available stdout data from the program. */ |
| 375 | if (!fdout_eof && FD_ISSET(fdout, readset)) { |
| 376 | len = read(fdout, buf, sizeof(buf)); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 377 | if (len < 0 && (errno == EINTR || errno == EAGAIN)) { |
| 378 | /* do nothing */ |
| 379 | } else if (len <= 0) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 380 | fdout_eof = 1; |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 381 | } else { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 382 | buffer_append(&stdout_buffer, buf, len); |
| 383 | fdout_bytes += len; |
| 384 | } |
| 385 | } |
| 386 | /* Read and buffer any available stderr data from the program. */ |
| 387 | if (!fderr_eof && FD_ISSET(fderr, readset)) { |
| 388 | len = read(fderr, buf, sizeof(buf)); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 389 | if (len < 0 && (errno == EINTR || errno == EAGAIN)) { |
| 390 | /* do nothing */ |
| 391 | } else if (len <= 0) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 392 | fderr_eof = 1; |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 393 | } else { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 394 | buffer_append(&stderr_buffer, buf, len); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 395 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 396 | } |
| 397 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 398 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 399 | /* |
| 400 | * Sends data from internal buffers to client program stdin. |
| 401 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 402 | static void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 403 | process_output(fd_set * writeset) |
| 404 | { |
Ben Lindstrom | aa630de | 2001-02-10 23:44:47 +0000 | [diff] [blame] | 405 | struct termios tio; |
Ben Lindstrom | 6d218f4 | 2001-09-18 05:53:12 +0000 | [diff] [blame] | 406 | u_char *data; |
| 407 | u_int dlen; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 408 | int len; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 409 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 410 | /* Write buffered data to program stdin. */ |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 411 | if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) { |
Ben Lindstrom | 6d218f4 | 2001-09-18 05:53:12 +0000 | [diff] [blame] | 412 | data = buffer_ptr(&stdin_buffer); |
| 413 | dlen = buffer_len(&stdin_buffer); |
| 414 | len = write(fdin, data, dlen); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 415 | if (len < 0 && (errno == EINTR || errno == EAGAIN)) { |
| 416 | /* do nothing */ |
| 417 | } else if (len <= 0) { |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 418 | if (fdin != fdout) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 419 | close(fdin); |
| 420 | else |
| 421 | shutdown(fdin, SHUT_WR); /* We will no longer send. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 422 | fdin = -1; |
| 423 | } else { |
Ben Lindstrom | aa630de | 2001-02-10 23:44:47 +0000 | [diff] [blame] | 424 | /* Successful write. */ |
Ben Lindstrom | 6d218f4 | 2001-09-18 05:53:12 +0000 | [diff] [blame] | 425 | if (fdin_is_tty && dlen >= 1 && data[0] != '\r' && |
| 426 | tcgetattr(fdin, &tio) == 0 && |
Damien Miller | 79438cc | 2001-02-16 12:34:57 +1100 | [diff] [blame] | 427 | !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) { |
Kevin Steves | b7f036f | 2001-02-15 17:27:15 +0000 | [diff] [blame] | 428 | /* |
| 429 | * Simulate echo to reduce the impact of |
| 430 | * traffic analysis |
| 431 | */ |
Ben Lindstrom | e229b25 | 2001-03-05 06:28:06 +0000 | [diff] [blame] | 432 | packet_send_ignore(len); |
Ben Lindstrom | aa630de | 2001-02-10 23:44:47 +0000 | [diff] [blame] | 433 | packet_send(); |
| 434 | } |
| 435 | /* Consume the data from the buffer. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 436 | buffer_consume(&stdin_buffer, len); |
| 437 | /* Update the count of bytes written to the program. */ |
| 438 | stdin_bytes += len; |
| 439 | } |
| 440 | } |
| 441 | /* Send any buffered packet data to the client. */ |
| 442 | if (FD_ISSET(connection_out, writeset)) |
| 443 | packet_write_poll(); |
| 444 | } |
| 445 | |
| 446 | /* |
| 447 | * Wait until all buffered output has been sent to the client. |
| 448 | * This is used when the program terminates. |
| 449 | */ |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 450 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 451 | drain_output(void) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 452 | { |
| 453 | /* Send any buffered stdout data to the client. */ |
| 454 | if (buffer_len(&stdout_buffer) > 0) { |
| 455 | packet_start(SSH_SMSG_STDOUT_DATA); |
| 456 | packet_put_string(buffer_ptr(&stdout_buffer), |
| 457 | buffer_len(&stdout_buffer)); |
| 458 | packet_send(); |
| 459 | /* Update the count of sent bytes. */ |
| 460 | stdout_bytes += buffer_len(&stdout_buffer); |
| 461 | } |
| 462 | /* Send any buffered stderr data to the client. */ |
| 463 | if (buffer_len(&stderr_buffer) > 0) { |
| 464 | packet_start(SSH_SMSG_STDERR_DATA); |
| 465 | packet_put_string(buffer_ptr(&stderr_buffer), |
| 466 | buffer_len(&stderr_buffer)); |
| 467 | packet_send(); |
| 468 | /* Update the count of sent bytes. */ |
| 469 | stderr_bytes += buffer_len(&stderr_buffer); |
| 470 | } |
| 471 | /* Wait until all buffered data has been written to the client. */ |
| 472 | packet_write_wait(); |
| 473 | } |
| 474 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 475 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 476 | process_buffered_input_packets(void) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 477 | { |
Ben Lindstrom | 8ac9106 | 2001-04-04 17:57:54 +0000 | [diff] [blame] | 478 | dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 479 | } |
| 480 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 481 | /* |
| 482 | * Performs the interactive session. This handles data transmission between |
| 483 | * the client and the program. Note that the notion of stdin, stdout, and |
| 484 | * stderr in this function is sort of reversed: this function writes to |
| 485 | * stdin (of the child program), and reads from stdout and stderr (of the |
| 486 | * child program). |
| 487 | */ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 488 | void |
Damien Miller | 166fca8 | 2000-04-20 07:42:21 +1000 | [diff] [blame] | 489 | server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 490 | { |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 491 | fd_set *readset = NULL, *writeset = NULL; |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 492 | int max_fd = 0, nalloc = 0; |
Damien Miller | 166fca8 | 2000-04-20 07:42:21 +1000 | [diff] [blame] | 493 | int wait_status; /* Status returned by wait(). */ |
| 494 | pid_t wait_pid; /* pid returned by wait(). */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 495 | int waiting_termination = 0; /* Have displayed waiting close message. */ |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 496 | u_int max_time_milliseconds; |
| 497 | u_int previous_stdout_buffer_bytes; |
| 498 | u_int stdout_buffer_bytes; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 499 | int type; |
| 500 | |
| 501 | debug("Entering interactive session."); |
| 502 | |
| 503 | /* Initialize the SIGCHLD kludge. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 504 | child_terminated = 0; |
Kevin Steves | e26a155 | 2001-07-26 17:51:49 +0000 | [diff] [blame] | 505 | mysignal(SIGCHLD, sigchld_handler); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 506 | |
| 507 | /* Initialize our global variables. */ |
| 508 | fdin = fdin_arg; |
| 509 | fdout = fdout_arg; |
| 510 | fderr = fderr_arg; |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 511 | |
| 512 | /* nonblocking IO */ |
| 513 | set_nonblock(fdin); |
| 514 | set_nonblock(fdout); |
Damien Miller | 7d6656c | 2000-05-20 15:22:36 +1000 | [diff] [blame] | 515 | /* we don't have stderr for interactive terminal sessions, see below */ |
| 516 | if (fderr != -1) |
| 517 | set_nonblock(fderr); |
Damien Miller | dcb6ecd | 2000-05-17 22:34:22 +1000 | [diff] [blame] | 518 | |
Damien Miller | 225736c | 2001-02-19 21:51:08 +1100 | [diff] [blame] | 519 | if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin)) |
| 520 | fdin_is_tty = 1; |
| 521 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 522 | connection_in = packet_get_connection_in(); |
| 523 | connection_out = packet_get_connection_out(); |
| 524 | |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 525 | notify_setup(); |
| 526 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 527 | previous_stdout_buffer_bytes = 0; |
| 528 | |
| 529 | /* Set approximate I/O buffer size. */ |
| 530 | if (packet_is_interactive()) |
| 531 | buffer_high = 4096; |
| 532 | else |
| 533 | buffer_high = 64 * 1024; |
| 534 | |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 535 | #if 0 |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 536 | /* Initialize max_fd to the maximum of the known file descriptors. */ |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 537 | max_fd = MAX(connection_in, connection_out); |
| 538 | max_fd = MAX(max_fd, fdin); |
| 539 | max_fd = MAX(max_fd, fdout); |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 540 | if (fderr != -1) |
| 541 | max_fd = MAX(max_fd, fderr); |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 542 | #endif |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 543 | |
| 544 | /* Initialize Initialize buffers. */ |
| 545 | buffer_init(&stdin_buffer); |
| 546 | buffer_init(&stdout_buffer); |
| 547 | buffer_init(&stderr_buffer); |
| 548 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 549 | /* |
| 550 | * If we have no separate fderr (which is the case when we have a pty |
| 551 | * - there we cannot make difference between data sent to stdout and |
| 552 | * stderr), indicate that we have seen an EOF from stderr. This way |
| 553 | * we don\'t need to check the descriptor everywhere. |
| 554 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 555 | if (fderr == -1) |
| 556 | fderr_eof = 1; |
| 557 | |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 558 | server_init_dispatch(); |
| 559 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 560 | /* Main loop of the server for the interactive session mode. */ |
| 561 | for (;;) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 562 | |
| 563 | /* Process buffered packets from the client. */ |
| 564 | process_buffered_input_packets(); |
| 565 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 566 | /* |
| 567 | * If we have received eof, and there is no more pending |
| 568 | * input data, cause a real eof by closing fdin. |
| 569 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 570 | if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) { |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 571 | if (fdin != fdout) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 572 | close(fdin); |
| 573 | else |
| 574 | shutdown(fdin, SHUT_WR); /* We will no longer send. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 575 | fdin = -1; |
| 576 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 577 | /* Make packets from buffered stderr data to send to the client. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 578 | make_packets_from_stderr_data(); |
| 579 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 580 | /* |
| 581 | * Make packets from buffered stdout data to send to the |
| 582 | * client. If there is very little to send, this arranges to |
| 583 | * not send them now, but to wait a short while to see if we |
| 584 | * are getting more data. This is necessary, as some systems |
| 585 | * wake up readers from a pty after each separate character. |
| 586 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 587 | max_time_milliseconds = 0; |
| 588 | stdout_buffer_bytes = buffer_len(&stdout_buffer); |
| 589 | if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 && |
| 590 | stdout_buffer_bytes != previous_stdout_buffer_bytes) { |
| 591 | /* try again after a while */ |
| 592 | max_time_milliseconds = 10; |
| 593 | } else { |
| 594 | /* Send it now. */ |
| 595 | make_packets_from_stdout_data(); |
| 596 | } |
| 597 | previous_stdout_buffer_bytes = buffer_len(&stdout_buffer); |
| 598 | |
| 599 | /* Send channel data to the client. */ |
| 600 | if (packet_not_very_much_data_to_write()) |
| 601 | channel_output_poll(); |
| 602 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 603 | /* |
| 604 | * Bail out of the loop if the program has closed its output |
| 605 | * descriptors, and we have no more data to send to the |
| 606 | * client, and there is no pending buffered data. |
| 607 | */ |
Damien Miller | 43dc8da | 2000-11-29 15:55:17 +1100 | [diff] [blame] | 608 | if (fdout_eof && fderr_eof && !packet_have_data_to_write() && |
| 609 | buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 610 | if (!channel_still_open()) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 611 | break; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 612 | if (!waiting_termination) { |
| 613 | const char *s = "Waiting for forwarded connections to terminate...\r\n"; |
| 614 | char *cp; |
| 615 | waiting_termination = 1; |
| 616 | buffer_append(&stderr_buffer, s, strlen(s)); |
| 617 | |
| 618 | /* Display list of open channels. */ |
| 619 | cp = channel_open_message(); |
| 620 | buffer_append(&stderr_buffer, cp, strlen(cp)); |
| 621 | xfree(cp); |
| 622 | } |
| 623 | } |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 624 | max_fd = MAX(connection_in, connection_out); |
| 625 | max_fd = MAX(max_fd, fdin); |
| 626 | max_fd = MAX(max_fd, fdout); |
| 627 | max_fd = MAX(max_fd, fderr); |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 628 | max_fd = MAX(max_fd, notify_pipe[0]); |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 629 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 630 | /* Sleep in select() until we can do something. */ |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 631 | wait_until_can_do_something(&readset, &writeset, &max_fd, |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 632 | &nalloc, max_time_milliseconds); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 633 | |
| 634 | /* Process any channel events. */ |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 635 | channel_after_select(readset, writeset); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 636 | |
| 637 | /* Process input from the client and from program stdout/stderr. */ |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 638 | process_input(readset); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 639 | |
| 640 | /* Process output to the client and to program stdin. */ |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 641 | process_output(writeset); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 642 | } |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 643 | if (readset) |
| 644 | xfree(readset); |
| 645 | if (writeset) |
| 646 | xfree(writeset); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 647 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 648 | /* Cleanup and termination code. */ |
| 649 | |
| 650 | /* Wait until all output has been sent to the client. */ |
| 651 | drain_output(); |
| 652 | |
| 653 | debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 654 | stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 655 | |
| 656 | /* Free and clear the buffers. */ |
| 657 | buffer_free(&stdin_buffer); |
| 658 | buffer_free(&stdout_buffer); |
| 659 | buffer_free(&stderr_buffer); |
| 660 | |
| 661 | /* Close the file descriptors. */ |
| 662 | if (fdout != -1) |
| 663 | close(fdout); |
| 664 | fdout = -1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 665 | fdout_eof = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 666 | if (fderr != -1) |
| 667 | close(fderr); |
| 668 | fderr = -1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 669 | fderr_eof = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 670 | if (fdin != -1) |
| 671 | close(fdin); |
| 672 | fdin = -1; |
| 673 | |
Ben Lindstrom | 601e436 | 2001-06-21 03:19:23 +0000 | [diff] [blame] | 674 | channel_free_all(); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 675 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 676 | /* We no longer want our SIGCHLD handler to be called. */ |
Kevin Steves | e26a155 | 2001-07-26 17:51:49 +0000 | [diff] [blame] | 677 | mysignal(SIGCHLD, SIG_DFL); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 678 | |
Ben Lindstrom | 47fd811 | 2002-04-02 20:48:19 +0000 | [diff] [blame] | 679 | while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0) |
| 680 | if (errno != EINTR) |
| 681 | packet_disconnect("wait: %.100s", strerror(errno)); |
| 682 | if (wait_pid != pid) |
Ben Lindstrom | ce0f634 | 2002-06-11 16:42:49 +0000 | [diff] [blame] | 683 | error("Strange, wait returned pid %ld, expected %ld", |
| 684 | (long)wait_pid, (long)pid); |
Ben Lindstrom | ec46e0b | 2001-06-09 01:27:31 +0000 | [diff] [blame] | 685 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 686 | /* Check if it exited normally. */ |
| 687 | if (WIFEXITED(wait_status)) { |
| 688 | /* Yes, normal exit. Get exit status and send it to the client. */ |
| 689 | debug("Command exited with status %d.", WEXITSTATUS(wait_status)); |
| 690 | packet_start(SSH_SMSG_EXITSTATUS); |
| 691 | packet_put_int(WEXITSTATUS(wait_status)); |
| 692 | packet_send(); |
| 693 | packet_write_wait(); |
| 694 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 695 | /* |
| 696 | * Wait for exit confirmation. Note that there might be |
| 697 | * other packets coming before it; however, the program has |
| 698 | * already died so we just ignore them. The client is |
| 699 | * supposed to respond with the confirmation when it receives |
| 700 | * the exit status. |
| 701 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 702 | do { |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 703 | type = packet_read(); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 704 | } |
| 705 | while (type != SSH_CMSG_EXIT_CONFIRMATION); |
| 706 | |
| 707 | debug("Received exit confirmation."); |
| 708 | return; |
| 709 | } |
| 710 | /* Check if the program terminated due to a signal. */ |
| 711 | if (WIFSIGNALED(wait_status)) |
| 712 | packet_disconnect("Command terminated on signal %d.", |
| 713 | WTERMSIG(wait_status)); |
| 714 | |
| 715 | /* Some weird exit cause. Just exit. */ |
| 716 | packet_disconnect("wait returned status %04x.", wait_status); |
| 717 | /* NOTREACHED */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 718 | } |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 719 | |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 720 | static void |
| 721 | collect_children(void) |
| 722 | { |
| 723 | pid_t pid; |
| 724 | sigset_t oset, nset; |
| 725 | int status; |
| 726 | |
| 727 | /* block SIGCHLD while we check for dead children */ |
| 728 | sigemptyset(&nset); |
| 729 | sigaddset(&nset, SIGCHLD); |
| 730 | sigprocmask(SIG_BLOCK, &nset, &oset); |
| 731 | if (child_terminated) { |
Ben Lindstrom | 47fd811 | 2002-04-02 20:48:19 +0000 | [diff] [blame] | 732 | while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || |
| 733 | (pid < 0 && errno == EINTR)) |
| 734 | if (pid > 0) |
| 735 | session_close_by_pid(pid, status); |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 736 | child_terminated = 0; |
| 737 | } |
| 738 | sigprocmask(SIG_SETMASK, &oset, NULL); |
| 739 | } |
| 740 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 741 | void |
Ben Lindstrom | bddd551 | 2001-07-04 04:53:53 +0000 | [diff] [blame] | 742 | server_loop2(Authctxt *authctxt) |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 743 | { |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 744 | fd_set *readset = NULL, *writeset = NULL; |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 745 | int rekeying = 0, max_fd, nalloc = 0; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 746 | |
| 747 | debug("Entering interactive session for SSH2."); |
| 748 | |
Ben Lindstrom | ec46e0b | 2001-06-09 01:27:31 +0000 | [diff] [blame] | 749 | mysignal(SIGCHLD, sigchld_handler); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 750 | child_terminated = 0; |
| 751 | connection_in = packet_get_connection_in(); |
| 752 | connection_out = packet_get_connection_out(); |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 753 | |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 754 | notify_setup(); |
| 755 | |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 756 | max_fd = MAX(connection_in, connection_out); |
Damien Miller | f6681a3 | 2001-12-21 14:53:11 +1100 | [diff] [blame] | 757 | max_fd = MAX(max_fd, notify_pipe[0]); |
| 758 | |
Ben Lindstrom | bddd551 | 2001-07-04 04:53:53 +0000 | [diff] [blame] | 759 | xxx_authctxt = authctxt; |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 760 | |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 761 | server_init_dispatch(); |
| 762 | |
| 763 | for (;;) { |
| 764 | process_buffered_input_packets(); |
Ben Lindstrom | 8e312f3 | 2001-04-04 23:50:21 +0000 | [diff] [blame] | 765 | |
Ben Lindstrom | a370005 | 2001-04-05 23:26:32 +0000 | [diff] [blame] | 766 | rekeying = (xxx_kex != NULL && !xxx_kex->done); |
Ben Lindstrom | 8e312f3 | 2001-04-04 23:50:21 +0000 | [diff] [blame] | 767 | |
Ben Lindstrom | 8e312f3 | 2001-04-04 23:50:21 +0000 | [diff] [blame] | 768 | if (!rekeying && packet_not_very_much_data_to_write()) |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 769 | channel_output_poll(); |
Ben Lindstrom | 8e312f3 | 2001-04-04 23:50:21 +0000 | [diff] [blame] | 770 | wait_until_can_do_something(&readset, &writeset, &max_fd, |
Ben Lindstrom | 16d29d5 | 2001-07-18 16:01:46 +0000 | [diff] [blame] | 771 | &nalloc, 0); |
Damien Miller | 52b77be | 2001-10-10 15:14:37 +1000 | [diff] [blame] | 772 | |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 773 | collect_children(); |
Damien Miller | a5539d2 | 2003-04-09 20:50:06 +1000 | [diff] [blame] | 774 | if (!rekeying) { |
Ben Lindstrom | 8e312f3 | 2001-04-04 23:50:21 +0000 | [diff] [blame] | 775 | channel_after_select(readset, writeset); |
Damien Miller | a5539d2 | 2003-04-09 20:50:06 +1000 | [diff] [blame] | 776 | if (packet_need_rekeying()) { |
| 777 | debug("need rekeying"); |
| 778 | xxx_kex->done = 0; |
| 779 | kex_send_kexinit(xxx_kex); |
| 780 | } |
| 781 | } |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 782 | process_input(readset); |
Ben Lindstrom | e34ab4c | 2001-04-07 01:12:11 +0000 | [diff] [blame] | 783 | if (connection_closed) |
| 784 | break; |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 785 | process_output(writeset); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 786 | } |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 787 | collect_children(); |
| 788 | |
Damien Miller | 5e95321 | 2001-01-30 09:14:00 +1100 | [diff] [blame] | 789 | if (readset) |
| 790 | xfree(readset); |
| 791 | if (writeset) |
| 792 | xfree(writeset); |
| 793 | |
Damien Miller | 52b77be | 2001-10-10 15:14:37 +1000 | [diff] [blame] | 794 | /* free all channels, no more reads and writes */ |
| 795 | channel_free_all(); |
Ben Lindstrom | 4983d5e | 2001-07-04 05:17:40 +0000 | [diff] [blame] | 796 | |
Damien Miller | 3ec2759 | 2001-10-12 11:35:04 +1000 | [diff] [blame] | 797 | /* free remaining sessions, e.g. remove wtmp entries */ |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 798 | session_destroy_all(NULL); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 799 | } |
| 800 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 801 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 802 | server_input_channel_failure(int type, u_int32_t seq, void *ctxt) |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 803 | { |
| 804 | debug("Got CHANNEL_FAILURE for keepalive"); |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 805 | /* |
Ben Lindstrom | 2f0304c | 2001-04-29 19:49:14 +0000 | [diff] [blame] | 806 | * reset timeout, since we got a sane answer from the client. |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 807 | * even if this was generated by something other than |
| 808 | * the bogus CHANNEL_REQUEST we send for keepalives. |
| 809 | */ |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 810 | client_alive_timeouts = 0; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 814 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 815 | server_input_stdin_data(int type, u_int32_t seq, void *ctxt) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 816 | { |
| 817 | char *data; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 818 | u_int data_len; |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 819 | |
| 820 | /* Stdin data from the client. Append it to the buffer. */ |
| 821 | /* Ignore any data if the client has closed stdin. */ |
| 822 | if (fdin == -1) |
| 823 | return; |
| 824 | data = packet_get_string(&data_len); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 825 | packet_check_eom(); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 826 | buffer_append(&stdin_buffer, data, data_len); |
| 827 | memset(data, 0, data_len); |
| 828 | xfree(data); |
| 829 | } |
| 830 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 831 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 832 | server_input_eof(int type, u_int32_t seq, void *ctxt) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 833 | { |
| 834 | /* |
| 835 | * Eof from the client. The stdin descriptor to the |
| 836 | * program will be closed when all buffered data has |
| 837 | * drained. |
| 838 | */ |
| 839 | debug("EOF received for stdin."); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 840 | packet_check_eom(); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 841 | stdin_eof = 1; |
| 842 | } |
| 843 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 844 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 845 | server_input_window_size(int type, u_int32_t seq, void *ctxt) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 846 | { |
| 847 | int row = packet_get_int(); |
| 848 | int col = packet_get_int(); |
| 849 | int xpixel = packet_get_int(); |
| 850 | int ypixel = packet_get_int(); |
| 851 | |
| 852 | debug("Window change received."); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 853 | packet_check_eom(); |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 854 | if (fdin != -1) |
| 855 | pty_change_window_size(fdin, row, col, xpixel, ypixel); |
| 856 | } |
| 857 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 858 | static Channel * |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 859 | server_request_direct_tcpip(char *ctype) |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 860 | { |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 861 | Channel *c; |
| 862 | int sock; |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 863 | char *target, *originator; |
| 864 | int target_port, originator_port; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 865 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 866 | target = packet_get_string(NULL); |
| 867 | target_port = packet_get_int(); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 868 | originator = packet_get_string(NULL); |
| 869 | originator_port = packet_get_int(); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 870 | packet_check_eom(); |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 871 | |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 872 | debug("server_request_direct_tcpip: originator %s port %d, target %s port %d", |
Damien Miller | b1715dc | 2000-05-30 13:44:51 +1000 | [diff] [blame] | 873 | originator, originator_port, target, target_port); |
Damien Miller | f6d9e22 | 2000-06-18 14:50:44 +1000 | [diff] [blame] | 874 | |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 875 | /* XXX check permission */ |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 876 | sock = channel_connect_to(target, target_port); |
| 877 | xfree(target); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 878 | xfree(originator); |
| 879 | if (sock < 0) |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 880 | return NULL; |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 881 | c = channel_new(ctype, SSH_CHANNEL_CONNECTING, |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 882 | sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT, |
Damien Miller | b1ca8bb | 2003-05-14 13:45:42 +1000 | [diff] [blame] | 883 | CHAN_TCP_PACKET_DEFAULT, 0, "direct-tcpip", 1); |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 884 | return c; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 885 | } |
| 886 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 887 | static Channel * |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 888 | server_request_session(char *ctype) |
| 889 | { |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 890 | Channel *c; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 891 | |
| 892 | debug("input_session_request"); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 893 | packet_check_eom(); |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 894 | /* |
| 895 | * A server session has no fd to read or write until a |
| 896 | * CHANNEL_REQUEST for a shell is made, so we set the type to |
| 897 | * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all |
| 898 | * CHANNEL_REQUEST messages is registered. |
| 899 | */ |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 900 | c = channel_new(ctype, SSH_CHANNEL_LARVAL, |
| 901 | -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT, |
Damien Miller | b1ca8bb | 2003-05-14 13:45:42 +1000 | [diff] [blame] | 902 | 0, "server-session", 1); |
Ben Lindstrom | bddd551 | 2001-07-04 04:53:53 +0000 | [diff] [blame] | 903 | if (session_open(xxx_authctxt, c->self) != 1) { |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 904 | debug("session open failed, free channel %d", c->self); |
| 905 | channel_free(c); |
| 906 | return NULL; |
| 907 | } |
Ben Lindstrom | 99c73b3 | 2001-05-05 04:09:47 +0000 | [diff] [blame] | 908 | channel_register_cleanup(c->self, session_close_by_channel); |
| 909 | return c; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 910 | } |
| 911 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 912 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 913 | server_input_channel_open(int type, u_int32_t seq, void *ctxt) |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 914 | { |
| 915 | Channel *c = NULL; |
| 916 | char *ctype; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 917 | int rchan; |
Ben Lindstrom | 4fed2be | 2002-06-25 23:17:36 +0000 | [diff] [blame] | 918 | u_int rmaxpack, rwindow, len; |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 919 | |
| 920 | ctype = packet_get_string(&len); |
| 921 | rchan = packet_get_int(); |
| 922 | rwindow = packet_get_int(); |
| 923 | rmaxpack = packet_get_int(); |
| 924 | |
Damien Miller | 62cee00 | 2000-09-23 17:15:56 +1100 | [diff] [blame] | 925 | debug("server_input_channel_open: ctype %s rchan %d win %d max %d", |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 926 | ctype, rchan, rwindow, rmaxpack); |
| 927 | |
| 928 | if (strcmp(ctype, "session") == 0) { |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 929 | c = server_request_session(ctype); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 930 | } else if (strcmp(ctype, "direct-tcpip") == 0) { |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 931 | c = server_request_direct_tcpip(ctype); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 932 | } |
| 933 | if (c != NULL) { |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 934 | debug("server_input_channel_open: confirm %s", ctype); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 935 | c->remote_id = rchan; |
| 936 | c->remote_window = rwindow; |
| 937 | c->remote_maxpacket = rmaxpack; |
Ben Lindstrom | 6912866 | 2001-05-08 20:07:39 +0000 | [diff] [blame] | 938 | if (c->type != SSH_CHANNEL_CONNECTING) { |
| 939 | packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION); |
| 940 | packet_put_int(c->remote_id); |
| 941 | packet_put_int(c->self); |
| 942 | packet_put_int(c->local_window); |
| 943 | packet_put_int(c->local_maxpacket); |
| 944 | packet_send(); |
| 945 | } |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 946 | } else { |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 947 | debug("server_input_channel_open: failure %s", ctype); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 948 | packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE); |
| 949 | packet_put_int(rchan); |
| 950 | packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED); |
Ben Lindstrom | f343674 | 2001-04-29 19:52:00 +0000 | [diff] [blame] | 951 | if (!(datafellows & SSH_BUG_OPENFAILURE)) { |
Ben Lindstrom | 6912866 | 2001-05-08 20:07:39 +0000 | [diff] [blame] | 952 | packet_put_cstring("open failed"); |
Ben Lindstrom | f343674 | 2001-04-29 19:52:00 +0000 | [diff] [blame] | 953 | packet_put_cstring(""); |
| 954 | } |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 955 | packet_send(); |
| 956 | } |
| 957 | xfree(ctype); |
| 958 | } |
| 959 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 960 | static void |
Damien Miller | 630d6f4 | 2002-01-22 23:17:30 +1100 | [diff] [blame] | 961 | server_input_global_request(int type, u_int32_t seq, void *ctxt) |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 962 | { |
| 963 | char *rtype; |
| 964 | int want_reply; |
| 965 | int success = 0; |
| 966 | |
| 967 | rtype = packet_get_string(NULL); |
| 968 | want_reply = packet_get_char(); |
| 969 | debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply); |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 970 | |
Ben Lindstrom | 7bb8b49 | 2001-03-17 00:47:54 +0000 | [diff] [blame] | 971 | /* -R style forwarding */ |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 972 | if (strcmp(rtype, "tcpip-forward") == 0) { |
| 973 | struct passwd *pw; |
| 974 | char *listen_address; |
| 975 | u_short listen_port; |
| 976 | |
| 977 | pw = auth_get_user(); |
| 978 | if (pw == NULL) |
| 979 | fatal("server_input_global_request: no user"); |
Damien Miller | 9fc7c69 | 2003-06-04 22:50:54 +1000 | [diff] [blame] | 980 | listen_address = packet_get_string(NULL); |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 981 | listen_port = (u_short)packet_get_int(); |
| 982 | debug("server_input_global_request: tcpip-forward listen %s port %d", |
| 983 | listen_address, listen_port); |
| 984 | |
| 985 | /* check permissions */ |
| 986 | if (!options.allow_tcp_forwarding || |
Ben Lindstrom | 99a4e14 | 2002-07-09 14:06:40 +0000 | [diff] [blame] | 987 | no_port_forwarding_flag |
| 988 | #ifndef NO_IPPORT_RESERVED_CONCEPT |
| 989 | || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0) |
| 990 | #endif |
| 991 | ) { |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 992 | success = 0; |
| 993 | packet_send_debug("Server has disabled port forwarding."); |
| 994 | } else { |
| 995 | /* Start listening on the port */ |
Damien Miller | b16461c | 2002-01-22 23:29:22 +1100 | [diff] [blame] | 996 | success = channel_setup_remote_fwd_listener( |
| 997 | listen_address, listen_port, options.gateway_ports); |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 998 | } |
| 999 | xfree(listen_address); |
| 1000 | } |
| 1001 | if (want_reply) { |
| 1002 | packet_start(success ? |
| 1003 | SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE); |
| 1004 | packet_send(); |
| 1005 | packet_write_wait(); |
| 1006 | } |
| 1007 | xfree(rtype); |
| 1008 | } |
Damien Miller | c7ef63d | 2002-02-05 12:21:42 +1100 | [diff] [blame] | 1009 | static void |
| 1010 | server_input_channel_req(int type, u_int32_t seq, void *ctxt) |
| 1011 | { |
| 1012 | Channel *c; |
| 1013 | int id, reply, success = 0; |
| 1014 | char *rtype; |
| 1015 | |
| 1016 | id = packet_get_int(); |
| 1017 | rtype = packet_get_string(NULL); |
| 1018 | reply = packet_get_char(); |
| 1019 | |
| 1020 | debug("server_input_channel_req: channel %d request %s reply %d", |
| 1021 | id, rtype, reply); |
| 1022 | |
| 1023 | if ((c = channel_lookup(id)) == NULL) |
| 1024 | packet_disconnect("server_input_channel_req: " |
| 1025 | "unknown channel %d", id); |
| 1026 | if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN) |
| 1027 | success = session_input_channel_req(c, rtype); |
| 1028 | if (reply) { |
| 1029 | packet_start(success ? |
| 1030 | SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE); |
| 1031 | packet_put_int(c->remote_id); |
| 1032 | packet_send(); |
| 1033 | } |
| 1034 | xfree(rtype); |
| 1035 | } |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 1036 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 1037 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 1038 | server_init_dispatch_20(void) |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 1039 | { |
| 1040 | debug("server_init_dispatch_20"); |
| 1041 | dispatch_init(&dispatch_protocol_error); |
| 1042 | dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose); |
| 1043 | dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data); |
| 1044 | dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof); |
| 1045 | dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data); |
| 1046 | dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open); |
| 1047 | dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); |
| 1048 | dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); |
Damien Miller | c7ef63d | 2002-02-05 12:21:42 +1100 | [diff] [blame] | 1049 | dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 1050 | dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust); |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 1051 | dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request); |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 1052 | /* client_alive */ |
| 1053 | dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure); |
Ben Lindstrom | 8ac9106 | 2001-04-04 17:57:54 +0000 | [diff] [blame] | 1054 | /* rekeying */ |
| 1055 | dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit); |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 1056 | } |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 1057 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 1058 | server_init_dispatch_13(void) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 1059 | { |
| 1060 | debug("server_init_dispatch_13"); |
| 1061 | dispatch_init(NULL); |
| 1062 | dispatch_set(SSH_CMSG_EOF, &server_input_eof); |
| 1063 | dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data); |
| 1064 | dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size); |
| 1065 | dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close); |
| 1066 | dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation); |
| 1067 | dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data); |
| 1068 | dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation); |
| 1069 | dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure); |
| 1070 | dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open); |
| 1071 | } |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 1072 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 1073 | server_init_dispatch_15(void) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 1074 | { |
| 1075 | server_init_dispatch_13(); |
| 1076 | debug("server_init_dispatch_15"); |
| 1077 | dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); |
| 1078 | dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose); |
| 1079 | } |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 1080 | static void |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 1081 | server_init_dispatch(void) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 1082 | { |
Damien Miller | efb4afe | 2000-04-12 18:45:05 +1000 | [diff] [blame] | 1083 | if (compat20) |
| 1084 | server_init_dispatch_20(); |
| 1085 | else if (compat13) |
Damien Miller | b38eff8 | 2000-04-01 11:09:21 +1000 | [diff] [blame] | 1086 | server_init_dispatch_13(); |
| 1087 | else |
| 1088 | server_init_dispatch_15(); |
| 1089 | } |