blob: 773292a94e9be8d176f0466d7526347710558f68 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Server main loop for handling the interactive session.
Damien Millere4340be2000-09-16 13:29:08 +11006 *
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 Millerefb4afe2000-04-12 18:45:05 +100013 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000014 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110015 *
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 Millerefb4afe2000-04-12 18:45:05 +100035 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37#include "includes.h"
Ben Lindstrom4983d5e2001-07-04 05:17:40 +000038RCSID("$OpenBSD: serverloop.c,v 1.73 2001/07/02 13:59:14 markus Exp $");
Damien Miller69b69aa2000-10-28 14:19:58 +110039
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041#include "packet.h"
42#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000045#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000046#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100047#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100049#include "ssh2.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000050#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100051#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100052#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100053#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "serverloop.h"
55#include "misc.h"
Ben Lindstrom8ac91062001-04-04 17:57:54 +000056#include "kex.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller50a41ed2000-10-16 12:14:42 +110058extern ServerOptions options;
59
Ben Lindstrom8ac91062001-04-04 17:57:54 +000060/* XXX */
61extern Kex *xxx_kex;
Ben Lindstrombddd5512001-07-04 04:53:53 +000062static Authctxt *xxx_authctxt;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000063
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064static Buffer stdin_buffer; /* Buffer for stdin data. */
65static Buffer stdout_buffer; /* Buffer for stdout data. */
66static Buffer stderr_buffer; /* Buffer for stderr data. */
67static int fdin; /* Descriptor for stdin (for writing) */
68static int fdout; /* Descriptor for stdout (for reading);
69 May be same number as fdin. */
70static int fderr; /* Descriptor for stderr. May be -1. */
71static long stdin_bytes = 0; /* Number of bytes written to stdin. */
72static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
73static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
74static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
75static int stdin_eof = 0; /* EOF message received from client. */
76static int fdout_eof = 0; /* EOF encountered reading from fdout. */
77static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +110078static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079static int connection_in; /* Connection to client (input). */
80static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +000081static int connection_closed = 0; /* Connection to client closed. */
82static u_int buffer_high; /* "Soft" max buffer size. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller5428f641999-11-25 11:54:57 +110084/*
85 * This SIGCHLD kludge is used to detect when the child exits. The server
86 * will exit after that, as soon as forwarded connections have terminated.
87 */
Ben Lindstrombba81212001-06-25 05:01:22 +000088
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089static volatile int child_terminated; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Ben Lindstrombba81212001-06-25 05:01:22 +000091/* prototypes */
92static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +100093
Ben Lindstrom5744dc42001-04-13 23:28:01 +000094int client_alive_timeouts = 0;
95
Ben Lindstrombba81212001-06-25 05:01:22 +000096static void
Damien Miller95def091999-11-25 00:26:21 +110097sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098{
Damien Miller95def091999-11-25 00:26:21 +110099 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000100 debug("Received SIGCHLD.");
101 child_terminated = 1;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000102 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000103 errno = save_errno;
104}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Damien Miller95def091999-11-25 00:26:21 +1100106/*
Damien Miller95def091999-11-25 00:26:21 +1100107 * Make packets from buffered stderr data, and buffer it for sending
108 * to the client.
109 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000110static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000111make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112{
Damien Miller95def091999-11-25 00:26:21 +1100113 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Miller95def091999-11-25 00:26:21 +1100115 /* Send buffered stderr data to the client. */
116 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100117 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100118 len = buffer_len(&stderr_buffer);
119 if (packet_is_interactive()) {
120 if (len > 512)
121 len = 512;
122 } else {
123 /* Keep the packets at reasonable size. */
124 if (len > packet_get_maxsize())
125 len = packet_get_maxsize();
126 }
127 packet_start(SSH_SMSG_STDERR_DATA);
128 packet_put_string(buffer_ptr(&stderr_buffer), len);
129 packet_send();
130 buffer_consume(&stderr_buffer, len);
131 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133}
134
Damien Miller95def091999-11-25 00:26:21 +1100135/*
136 * Make packets from buffered stdout data, and buffer it for sending to the
137 * client.
138 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000139static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000140make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141{
Damien Miller95def091999-11-25 00:26:21 +1100142 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Damien Miller95def091999-11-25 00:26:21 +1100144 /* Send buffered stdout data to the client. */
145 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100146 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100147 len = buffer_len(&stdout_buffer);
148 if (packet_is_interactive()) {
149 if (len > 512)
150 len = 512;
151 } else {
152 /* Keep the packets at reasonable size. */
153 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000154 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100155 }
156 packet_start(SSH_SMSG_STDOUT_DATA);
157 packet_put_string(buffer_ptr(&stdout_buffer), len);
158 packet_send();
159 buffer_consume(&stdout_buffer, len);
160 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162}
163
Damien Miller95def091999-11-25 00:26:21 +1100164/*
165 * Sleep in select() until we can do something. This will initialize the
166 * select masks. Upon return, the masks will indicate which descriptors
167 * have data or can accept data. Optionally, a maximum time can be specified
168 * for the duration of the wait (0 = infinite).
169 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void
Damien Miller5e953212001-01-30 09:14:00 +1100171wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
172 u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173{
Damien Miller95def091999-11-25 00:26:21 +1100174 struct timeval tv, *tvp;
175 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000176 int client_alive_scheduled = 0;
177
178 /*
179 * if using client_alive, set the max timeout accordingly,
180 * and indicate that this particular timeout was for client
181 * alive by setting the client_alive_scheduled flag.
182 *
183 * this could be randomized somewhat to make traffic
184 * analysis more difficult, but we're not doing it yet.
185 */
186 if (max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000187 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000188 max_time_milliseconds = options.client_alive_interval * 1000;
189 } else
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000190 client_alive_scheduled = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Miller95def091999-11-25 00:26:21 +1100192 /* When select fails we restart from here. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193retry_select:
194
Damien Miller5e953212001-01-30 09:14:00 +1100195 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000196 channel_prepare_select(readsetp, writesetp, maxfdp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197
Damien Millerefb4afe2000-04-12 18:45:05 +1000198 if (compat20) {
Damien Millere247cc42000-05-07 12:03:14 +1000199 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000200 if (channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100201 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000202 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000203 /*
204 * Read packets from the client unless we have too much
205 * buffered stdin or channel data.
206 */
207 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000208 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100209 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000210 /*
211 * If there is not too much data already buffered going to
212 * the client, try to get some more data from the program.
213 */
214 if (packet_not_very_much_data_to_write()) {
215 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100216 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000217 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100218 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000219 }
220 /*
221 * If we have buffered data, try to write some of that data
222 * to the program.
223 */
224 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100225 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000226 }
Damien Miller95def091999-11-25 00:26:21 +1100227
Damien Miller5428f641999-11-25 11:54:57 +1100228 /*
229 * If we have buffered packet data going to the client, mark that
230 * descriptor.
231 */
Damien Miller95def091999-11-25 00:26:21 +1100232 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100233 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100234
Damien Miller5428f641999-11-25 11:54:57 +1100235 /*
236 * If child has terminated and there is enough buffer space to read
237 * from it, then read as much as is available and exit.
238 */
Damien Miller95def091999-11-25 00:26:21 +1100239 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000240 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100241 max_time_milliseconds = 100;
242
243 if (max_time_milliseconds == 0)
244 tvp = NULL;
245 else {
246 tv.tv_sec = max_time_milliseconds / 1000;
247 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
248 tvp = &tv;
249 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000250 if (tvp!=NULL)
Ben Lindstromf4c73112001-03-05 05:58:23 +0000251 debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100252
253 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100254 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100255
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000256 if (ret == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100257 if (errno != EINTR)
258 error("select: %.100s", strerror(errno));
259 else
260 goto retry_select;
261 }
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000262 if (ret == 0 && client_alive_scheduled) {
263 /* timeout, check to see how many we have had */
264 client_alive_timeouts++;
265
266 if (client_alive_timeouts > options.client_alive_count_max ) {
267 packet_disconnect(
268 "Timeout, your session not responding.");
269 } else {
270 /*
271 * send a bogus channel request with "wantreply"
272 * we should get back a failure
273 */
274 int id;
275
276 id = channel_find_open();
277 if (id != -1) {
278 channel_request_start(id,
279 "keepalive@openssh.com", 1);
280 packet_send();
281 } else
282 packet_disconnect(
283 "No open channels after timeout!");
284 }
285 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286}
287
Damien Miller95def091999-11-25 00:26:21 +1100288/*
289 * Processes input from the client and the program. Input data is stored
290 * in buffers and processed later.
291 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000292static void
Damien Miller95def091999-11-25 00:26:21 +1100293process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294{
Damien Miller95def091999-11-25 00:26:21 +1100295 int len;
296 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
Damien Miller95def091999-11-25 00:26:21 +1100298 /* Read and buffer any input data from the client. */
299 if (FD_ISSET(connection_in, readset)) {
300 len = read(connection_in, buf, sizeof(buf));
301 if (len == 0) {
302 verbose("Connection closed by remote host.");
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000303 connection_closed = 1;
304 if (compat20)
305 return;
Damien Miller95def091999-11-25 00:26:21 +1100306 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000307 } else if (len < 0) {
308 if (errno != EINTR && errno != EAGAIN) {
309 verbose("Read error from remote host: %.100s", strerror(errno));
310 fatal_cleanup();
311 }
312 } else {
313 /* Buffer any received data. */
314 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100315 }
Damien Miller95def091999-11-25 00:26:21 +1100316 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000317 if (compat20)
318 return;
319
Damien Miller95def091999-11-25 00:26:21 +1100320 /* Read and buffer any available stdout data from the program. */
321 if (!fdout_eof && FD_ISSET(fdout, readset)) {
322 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000323 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
324 /* do nothing */
325 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100326 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000327 } else {
Damien Miller95def091999-11-25 00:26:21 +1100328 buffer_append(&stdout_buffer, buf, len);
329 fdout_bytes += len;
330 }
331 }
332 /* Read and buffer any available stderr data from the program. */
333 if (!fderr_eof && FD_ISSET(fderr, readset)) {
334 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000335 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
336 /* do nothing */
337 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100338 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000339 } else {
Damien Miller95def091999-11-25 00:26:21 +1100340 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000341 }
Damien Miller95def091999-11-25 00:26:21 +1100342 }
343}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344
Damien Miller95def091999-11-25 00:26:21 +1100345/*
346 * Sends data from internal buffers to client program stdin.
347 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static void
Damien Miller95def091999-11-25 00:26:21 +1100349process_output(fd_set * writeset)
350{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000351 struct termios tio;
Damien Miller95def091999-11-25 00:26:21 +1100352 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353
Damien Miller95def091999-11-25 00:26:21 +1100354 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000355 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Damien Miller95def091999-11-25 00:26:21 +1100356 len = write(fdin, buffer_ptr(&stdin_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100357 buffer_len(&stdin_buffer));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000358 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
359 /* do nothing */
360 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100361#ifdef USE_PIPES
362 close(fdin);
363#else
Damien Millerb38eff82000-04-01 11:09:21 +1000364 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100365 close(fdin);
366 else
367 shutdown(fdin, SHUT_WR); /* We will no longer send. */
368#endif
369 fdin = -1;
370 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000371 /* Successful write. */
Damien Miller225736c2001-02-19 21:51:08 +1100372 if (fdin_is_tty && tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100373 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000374 /*
375 * Simulate echo to reduce the impact of
376 * traffic analysis
377 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000378 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000379 packet_send();
380 }
381 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100382 buffer_consume(&stdin_buffer, len);
383 /* Update the count of bytes written to the program. */
384 stdin_bytes += len;
385 }
386 }
387 /* Send any buffered packet data to the client. */
388 if (FD_ISSET(connection_out, writeset))
389 packet_write_poll();
390}
391
392/*
393 * Wait until all buffered output has been sent to the client.
394 * This is used when the program terminates.
395 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000396static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000397drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100398{
399 /* Send any buffered stdout data to the client. */
400 if (buffer_len(&stdout_buffer) > 0) {
401 packet_start(SSH_SMSG_STDOUT_DATA);
402 packet_put_string(buffer_ptr(&stdout_buffer),
403 buffer_len(&stdout_buffer));
404 packet_send();
405 /* Update the count of sent bytes. */
406 stdout_bytes += buffer_len(&stdout_buffer);
407 }
408 /* Send any buffered stderr data to the client. */
409 if (buffer_len(&stderr_buffer) > 0) {
410 packet_start(SSH_SMSG_STDERR_DATA);
411 packet_put_string(buffer_ptr(&stderr_buffer),
412 buffer_len(&stderr_buffer));
413 packet_send();
414 /* Update the count of sent bytes. */
415 stderr_bytes += buffer_len(&stderr_buffer);
416 }
417 /* Wait until all buffered data has been written to the client. */
418 packet_write_wait();
419}
420
Ben Lindstrombba81212001-06-25 05:01:22 +0000421static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000422process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000423{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000424 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000425}
426
Damien Miller95def091999-11-25 00:26:21 +1100427/*
428 * Performs the interactive session. This handles data transmission between
429 * the client and the program. Note that the notion of stdin, stdout, and
430 * stderr in this function is sort of reversed: this function writes to
431 * stdin (of the child program), and reads from stdout and stderr (of the
432 * child program).
433 */
Damien Miller4af51302000-04-16 11:18:38 +1000434void
Damien Miller166fca82000-04-20 07:42:21 +1000435server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100436{
Damien Miller5e953212001-01-30 09:14:00 +1100437 fd_set *readset = NULL, *writeset = NULL;
438 int max_fd;
Damien Miller166fca82000-04-20 07:42:21 +1000439 int wait_status; /* Status returned by wait(). */
440 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100441 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000442 u_int max_time_milliseconds;
443 u_int previous_stdout_buffer_bytes;
444 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100445 int type;
446
447 debug("Entering interactive session.");
448
449 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100450 child_terminated = 0;
451 signal(SIGCHLD, sigchld_handler);
452
453 /* Initialize our global variables. */
454 fdin = fdin_arg;
455 fdout = fdout_arg;
456 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000457
458 /* nonblocking IO */
459 set_nonblock(fdin);
460 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000461 /* we don't have stderr for interactive terminal sessions, see below */
462 if (fderr != -1)
463 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000464
Damien Miller225736c2001-02-19 21:51:08 +1100465 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
466 fdin_is_tty = 1;
467
Damien Miller95def091999-11-25 00:26:21 +1100468 connection_in = packet_get_connection_in();
469 connection_out = packet_get_connection_out();
470
471 previous_stdout_buffer_bytes = 0;
472
473 /* Set approximate I/O buffer size. */
474 if (packet_is_interactive())
475 buffer_high = 4096;
476 else
477 buffer_high = 64 * 1024;
478
479 /* Initialize max_fd to the maximum of the known file descriptors. */
Damien Miller5e953212001-01-30 09:14:00 +1100480 max_fd = MAX(fdin, fdout);
481 if (fderr != -1)
482 max_fd = MAX(max_fd, fderr);
483 max_fd = MAX(max_fd, connection_in);
484 max_fd = MAX(max_fd, connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100485
486 /* Initialize Initialize buffers. */
487 buffer_init(&stdin_buffer);
488 buffer_init(&stdout_buffer);
489 buffer_init(&stderr_buffer);
490
Damien Miller5428f641999-11-25 11:54:57 +1100491 /*
492 * If we have no separate fderr (which is the case when we have a pty
493 * - there we cannot make difference between data sent to stdout and
494 * stderr), indicate that we have seen an EOF from stderr. This way
495 * we don\'t need to check the descriptor everywhere.
496 */
Damien Miller95def091999-11-25 00:26:21 +1100497 if (fderr == -1)
498 fderr_eof = 1;
499
Damien Millerb38eff82000-04-01 11:09:21 +1000500 server_init_dispatch();
501
Damien Miller95def091999-11-25 00:26:21 +1100502 /* Main loop of the server for the interactive session mode. */
503 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100504
505 /* Process buffered packets from the client. */
506 process_buffered_input_packets();
507
Damien Miller5428f641999-11-25 11:54:57 +1100508 /*
509 * If we have received eof, and there is no more pending
510 * input data, cause a real eof by closing fdin.
511 */
Damien Miller95def091999-11-25 00:26:21 +1100512 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
513#ifdef USE_PIPES
514 close(fdin);
515#else
Damien Millerb38eff82000-04-01 11:09:21 +1000516 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100517 close(fdin);
518 else
519 shutdown(fdin, SHUT_WR); /* We will no longer send. */
520#endif
521 fdin = -1;
522 }
Damien Miller5428f641999-11-25 11:54:57 +1100523 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100524 make_packets_from_stderr_data();
525
Damien Miller5428f641999-11-25 11:54:57 +1100526 /*
527 * Make packets from buffered stdout data to send to the
528 * client. If there is very little to send, this arranges to
529 * not send them now, but to wait a short while to see if we
530 * are getting more data. This is necessary, as some systems
531 * wake up readers from a pty after each separate character.
532 */
Damien Miller95def091999-11-25 00:26:21 +1100533 max_time_milliseconds = 0;
534 stdout_buffer_bytes = buffer_len(&stdout_buffer);
535 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
536 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
537 /* try again after a while */
538 max_time_milliseconds = 10;
539 } else {
540 /* Send it now. */
541 make_packets_from_stdout_data();
542 }
543 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
544
545 /* Send channel data to the client. */
546 if (packet_not_very_much_data_to_write())
547 channel_output_poll();
548
Damien Miller5428f641999-11-25 11:54:57 +1100549 /*
550 * Bail out of the loop if the program has closed its output
551 * descriptors, and we have no more data to send to the
552 * client, and there is no pending buffered data.
553 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100554 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
555 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100556 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000557 break;
Damien Miller95def091999-11-25 00:26:21 +1100558 if (!waiting_termination) {
559 const char *s = "Waiting for forwarded connections to terminate...\r\n";
560 char *cp;
561 waiting_termination = 1;
562 buffer_append(&stderr_buffer, s, strlen(s));
563
564 /* Display list of open channels. */
565 cp = channel_open_message();
566 buffer_append(&stderr_buffer, cp, strlen(cp));
567 xfree(cp);
568 }
569 }
570 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100571 wait_until_can_do_something(&readset, &writeset, &max_fd,
572 max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100573
574 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100575 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100576
577 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100578 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100579
580 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100581 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100582 }
Damien Miller5e953212001-01-30 09:14:00 +1100583 if (readset)
584 xfree(readset);
585 if (writeset)
586 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100587
Damien Miller95def091999-11-25 00:26:21 +1100588 /* Cleanup and termination code. */
589
590 /* Wait until all output has been sent to the client. */
591 drain_output();
592
593 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
594 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
595
596 /* Free and clear the buffers. */
597 buffer_free(&stdin_buffer);
598 buffer_free(&stdout_buffer);
599 buffer_free(&stderr_buffer);
600
601 /* Close the file descriptors. */
602 if (fdout != -1)
603 close(fdout);
604 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100606 if (fderr != -1)
607 close(fderr);
608 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100610 if (fdin != -1)
611 close(fdin);
612 fdin = -1;
613
Ben Lindstrom601e4362001-06-21 03:19:23 +0000614 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100615
Damien Miller95def091999-11-25 00:26:21 +1100616 /* We no longer want our SIGCHLD handler to be called. */
617 signal(SIGCHLD, SIG_DFL);
618
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000619 wait_pid = waitpid(-1, &wait_status, child_terminated ? WNOHANG : 0);
620 if (wait_pid == -1)
621 packet_disconnect("wait: %.100s", strerror(errno));
622 else if (wait_pid != pid)
623 error("Strange, wait returned pid %d, expected %d",
624 wait_pid, pid);
625
Damien Miller95def091999-11-25 00:26:21 +1100626 /* Check if it exited normally. */
627 if (WIFEXITED(wait_status)) {
628 /* Yes, normal exit. Get exit status and send it to the client. */
629 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
630 packet_start(SSH_SMSG_EXITSTATUS);
631 packet_put_int(WEXITSTATUS(wait_status));
632 packet_send();
633 packet_write_wait();
634
Damien Miller5428f641999-11-25 11:54:57 +1100635 /*
636 * Wait for exit confirmation. Note that there might be
637 * other packets coming before it; however, the program has
638 * already died so we just ignore them. The client is
639 * supposed to respond with the confirmation when it receives
640 * the exit status.
641 */
Damien Miller95def091999-11-25 00:26:21 +1100642 do {
643 int plen;
644 type = packet_read(&plen);
645 }
646 while (type != SSH_CMSG_EXIT_CONFIRMATION);
647
648 debug("Received exit confirmation.");
649 return;
650 }
651 /* Check if the program terminated due to a signal. */
652 if (WIFSIGNALED(wait_status))
653 packet_disconnect("Command terminated on signal %d.",
654 WTERMSIG(wait_status));
655
656 /* Some weird exit cause. Just exit. */
657 packet_disconnect("wait returned status %04x.", wait_status);
658 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659}
Damien Millerb38eff82000-04-01 11:09:21 +1000660
Damien Miller4af51302000-04-16 11:18:38 +1000661void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000662server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000663{
Damien Miller5e953212001-01-30 09:14:00 +1100664 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000665 int rekeying = 0, max_fd, status;
Damien Millerefb4afe2000-04-12 18:45:05 +1000666 pid_t pid;
667
668 debug("Entering interactive session for SSH2.");
669
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000670 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000671 child_terminated = 0;
672 connection_in = packet_get_connection_in();
673 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100674
675 max_fd = MAX(connection_in, connection_out);
Ben Lindstrombddd5512001-07-04 04:53:53 +0000676 xxx_authctxt = authctxt;
Damien Miller5e953212001-01-30 09:14:00 +1100677
Damien Millerefb4afe2000-04-12 18:45:05 +1000678 server_init_dispatch();
679
680 for (;;) {
681 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000682
Ben Lindstroma3700052001-04-05 23:26:32 +0000683 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000684
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000685 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000686 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000687 wait_until_can_do_something(&readset, &writeset, &max_fd,
688 rekeying);
Damien Miller43dc8da2000-11-29 15:55:17 +1100689 if (child_terminated) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000690 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
691 session_close_by_pid(pid, status);
692 child_terminated = 0;
693 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000694 if (!rekeying)
695 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100696 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000697 if (connection_closed)
698 break;
Damien Miller5e953212001-01-30 09:14:00 +1100699 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000700 }
Damien Miller5e953212001-01-30 09:14:00 +1100701 if (readset)
702 xfree(readset);
703 if (writeset)
704 xfree(writeset);
705
Damien Millerefb4afe2000-04-12 18:45:05 +1000706 signal(SIGCHLD, SIG_DFL);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000707
Damien Millerefb4afe2000-04-12 18:45:05 +1000708 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
709 session_close_by_pid(pid, status);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000710 /*
711 * there is a race between channel_free_all() killing children and
712 * children dying before kill()
713 */
714 channel_free_all();
715
716 while (session_have_children()) {
717 pid = waitpid(-1, &status, 0);
718 if (pid > 0)
719 session_close_by_pid(pid, status);
720 else {
721 error("waitpid returned %d: %s", pid, strerror(errno));
722 break;
723 }
724 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000725}
726
Ben Lindstrombba81212001-06-25 05:01:22 +0000727static void
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000728server_input_channel_failure(int type, int plen, void *ctxt)
729{
730 debug("Got CHANNEL_FAILURE for keepalive");
731 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000732 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000733 * even if this was generated by something other than
734 * the bogus CHANNEL_REQUEST we send for keepalives.
735 */
736 client_alive_timeouts = 0;
737}
738
739
Ben Lindstrombba81212001-06-25 05:01:22 +0000740static void
Damien Miller62cee002000-09-23 17:15:56 +1100741server_input_stdin_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000742{
743 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000744 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000745
746 /* Stdin data from the client. Append it to the buffer. */
747 /* Ignore any data if the client has closed stdin. */
748 if (fdin == -1)
749 return;
750 data = packet_get_string(&data_len);
751 packet_integrity_check(plen, (4 + data_len), type);
752 buffer_append(&stdin_buffer, data, data_len);
753 memset(data, 0, data_len);
754 xfree(data);
755}
756
Ben Lindstrombba81212001-06-25 05:01:22 +0000757static void
Damien Miller62cee002000-09-23 17:15:56 +1100758server_input_eof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000759{
760 /*
761 * Eof from the client. The stdin descriptor to the
762 * program will be closed when all buffered data has
763 * drained.
764 */
765 debug("EOF received for stdin.");
766 packet_integrity_check(plen, 0, type);
767 stdin_eof = 1;
768}
769
Ben Lindstrombba81212001-06-25 05:01:22 +0000770static void
Damien Miller62cee002000-09-23 17:15:56 +1100771server_input_window_size(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000772{
773 int row = packet_get_int();
774 int col = packet_get_int();
775 int xpixel = packet_get_int();
776 int ypixel = packet_get_int();
777
778 debug("Window change received.");
779 packet_integrity_check(plen, 4 * 4, type);
780 if (fdin != -1)
781 pty_change_window_size(fdin, row, col, xpixel, ypixel);
782}
783
Ben Lindstrombba81212001-06-25 05:01:22 +0000784static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100785server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000786{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000787 Channel *c;
788 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000789 char *target, *originator;
790 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000791
Damien Miller4af51302000-04-16 11:18:38 +1000792 target = packet_get_string(NULL);
793 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000794 originator = packet_get_string(NULL);
795 originator_port = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +1000796 packet_done();
Damien Millerb1715dc2000-05-30 13:44:51 +1000797
Damien Miller0bc1bd82000-11-13 22:57:25 +1100798 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000799 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000800
Damien Millerefb4afe2000-04-12 18:45:05 +1000801 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000802 sock = channel_connect_to(target, target_port);
803 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000804 xfree(originator);
805 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100806 return NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000807 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100808 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100809 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000810 if (c == NULL) {
811 error("server_request_direct_tcpip: channel_new failed");
812 close(sock);
813 }
814 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815}
816
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100818server_request_session(char *ctype)
819{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000820 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100821
822 debug("input_session_request");
823 packet_done();
824 /*
825 * A server session has no fd to read or write until a
826 * CHANNEL_REQUEST for a shell is made, so we set the type to
827 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
828 * CHANNEL_REQUEST messages is registered.
829 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000830 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
831 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100832 0, xstrdup("server-session"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000833 if (c == NULL) {
834 error("server_request_session: channel_new failed");
835 return NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836 }
Ben Lindstrombddd5512001-07-04 04:53:53 +0000837 if (session_open(xxx_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000838 debug("session open failed, free channel %d", c->self);
839 channel_free(c);
840 return NULL;
841 }
842 channel_register_callback(c->self, SSH2_MSG_CHANNEL_REQUEST,
843 session_input_channel_req, (void *)0);
844 channel_register_cleanup(c->self, session_close_by_channel);
845 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller62cee002000-09-23 17:15:56 +1100849server_input_channel_open(int type, int plen, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000850{
851 Channel *c = NULL;
852 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000853 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000854 int rchan;
855 int rmaxpack;
856 int rwindow;
857
858 ctype = packet_get_string(&len);
859 rchan = packet_get_int();
860 rwindow = packet_get_int();
861 rmaxpack = packet_get_int();
862
Damien Miller62cee002000-09-23 17:15:56 +1100863 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000864 ctype, rchan, rwindow, rmaxpack);
865
866 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100867 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000868 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100869 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000870 }
871 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100872 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000873 c->remote_id = rchan;
874 c->remote_window = rwindow;
875 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000876 if (c->type != SSH_CHANNEL_CONNECTING) {
877 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
878 packet_put_int(c->remote_id);
879 packet_put_int(c->self);
880 packet_put_int(c->local_window);
881 packet_put_int(c->local_maxpacket);
882 packet_send();
883 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000884 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100885 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000886 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
887 packet_put_int(rchan);
888 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +0000889 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +0000890 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000891 packet_put_cstring("");
892 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000893 packet_send();
894 }
895 xfree(ctype);
896}
897
Ben Lindstrombba81212001-06-25 05:01:22 +0000898static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100899server_input_global_request(int type, int plen, void *ctxt)
900{
901 char *rtype;
902 int want_reply;
903 int success = 0;
904
905 rtype = packet_get_string(NULL);
906 want_reply = packet_get_char();
907 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000908
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000909 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100910 if (strcmp(rtype, "tcpip-forward") == 0) {
911 struct passwd *pw;
912 char *listen_address;
913 u_short listen_port;
914
915 pw = auth_get_user();
916 if (pw == NULL)
917 fatal("server_input_global_request: no user");
918 listen_address = packet_get_string(NULL); /* XXX currently ignored */
919 listen_port = (u_short)packet_get_int();
920 debug("server_input_global_request: tcpip-forward listen %s port %d",
921 listen_address, listen_port);
922
923 /* check permissions */
924 if (!options.allow_tcp_forwarding ||
925 no_port_forwarding_flag ||
926 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) {
927 success = 0;
928 packet_send_debug("Server has disabled port forwarding.");
929 } else {
930 /* Start listening on the port */
Kevin Steves12057502001-02-05 14:54:34 +0000931 success = channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100932 listen_address, listen_port,
933 /*unspec host_to_connect*/ "<unspec host>",
934 /*unspec port_to_connect*/ 0,
935 options.gateway_ports, /*remote*/ 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100936 }
937 xfree(listen_address);
938 }
939 if (want_reply) {
940 packet_start(success ?
941 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
942 packet_send();
943 packet_write_wait();
944 }
945 xfree(rtype);
946}
947
Ben Lindstrombba81212001-06-25 05:01:22 +0000948static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000949server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000950{
951 debug("server_init_dispatch_20");
952 dispatch_init(&dispatch_protocol_error);
953 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
954 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
955 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
956 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
957 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
958 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
959 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
960 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
961 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100962 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000963 /* client_alive */
964 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000965 /* rekeying */
966 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000967}
Ben Lindstrombba81212001-06-25 05:01:22 +0000968static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000969server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000970{
971 debug("server_init_dispatch_13");
972 dispatch_init(NULL);
973 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
974 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
975 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
976 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
977 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
978 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
979 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
980 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
981 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
982}
Ben Lindstrombba81212001-06-25 05:01:22 +0000983static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000984server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000985{
986 server_init_dispatch_13();
987 debug("server_init_dispatch_15");
988 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
989 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
990}
Ben Lindstrombba81212001-06-25 05:01:22 +0000991static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000992server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000993{
Damien Millerefb4afe2000-04-12 18:45:05 +1000994 if (compat20)
995 server_init_dispatch_20();
996 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000997 server_init_dispatch_13();
998 else
999 server_init_dispatch_15();
1000}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001001