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