blob: cd9368d079298f7646d9813f15f06c9cca58f601 [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 Lindstrom92a2e382001-03-05 06:59:27 +000014 * Copyright (c) 2000 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 Lindstroma3700052001-04-05 23:26:32 +000038RCSID("$OpenBSD: serverloop.c,v 1.59 2001/04/05 10:42:51 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"
Damien Millerb38eff82000-04-01 11:09:21 +100046#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;
62
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063static Buffer stdin_buffer; /* Buffer for stdin data. */
64static Buffer stdout_buffer; /* Buffer for stdout data. */
65static Buffer stderr_buffer; /* Buffer for stderr data. */
66static int fdin; /* Descriptor for stdin (for writing) */
67static int fdout; /* Descriptor for stdout (for reading);
68 May be same number as fdin. */
69static int fderr; /* Descriptor for stderr. May be -1. */
70static long stdin_bytes = 0; /* Number of bytes written to stdin. */
71static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
72static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
73static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
74static int stdin_eof = 0; /* EOF message received from client. */
75static int fdout_eof = 0; /* EOF encountered reading from fdout. */
76static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +110077static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078static int connection_in; /* Connection to client (input). */
79static int connection_out; /* Connection to client (output). */
Ben Lindstrom46c16222000-12-22 01:43:59 +000080static u_int buffer_high;/* "Soft" max buffer size. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * This SIGCHLD kludge is used to detect when the child exits. The server
84 * will exit after that, as soon as forwarded connections have terminated.
85 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller166fca82000-04-20 07:42:21 +100087static pid_t child_pid; /* Pid of the child. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088static volatile int child_terminated; /* The child has terminated. */
89static volatile int child_wait_status; /* Status from wait(). */
90
Damien Millerb38eff82000-04-01 11:09:21 +100091void server_init_dispatch(void);
92
Damien Miller4af51302000-04-16 11:18:38 +100093void
Damien Miller95def091999-11-25 00:26:21 +110094sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095{
Damien Miller95def091999-11-25 00:26:21 +110096 int save_errno = errno;
Damien Miller166fca82000-04-20 07:42:21 +100097 pid_t wait_pid;
98
Damien Miller95def091999-11-25 00:26:21 +110099 debug("Received SIGCHLD.");
100 wait_pid = wait((int *) &child_wait_status);
101 if (wait_pid != -1) {
102 if (wait_pid != child_pid)
103 error("Strange, got SIGCHLD and wait returned pid %d but child is %d",
104 wait_pid, child_pid);
105 if (WIFEXITED(child_wait_status) ||
Damien Miller43dc8da2000-11-29 15:55:17 +1100106 WIFSIGNALED(child_wait_status))
Damien Miller95def091999-11-25 00:26:21 +1100107 child_terminated = 1;
108 }
109 signal(SIGCHLD, sigchld_handler);
110 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111}
Damien Miller4af51302000-04-16 11:18:38 +1000112void
Damien Millerefb4afe2000-04-12 18:45:05 +1000113sigchld_handler2(int sig)
114{
115 int save_errno = errno;
116 debug("Received SIGCHLD.");
117 child_terminated = 1;
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000118 mysignal(SIGCHLD, sigchld_handler2);
Damien Millerefb4afe2000-04-12 18:45:05 +1000119 errno = save_errno;
120}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller95def091999-11-25 00:26:21 +1100122/*
Damien Miller95def091999-11-25 00:26:21 +1100123 * Make packets from buffered stderr data, and buffer it for sending
124 * to the client.
125 */
Damien Miller4af51302000-04-16 11:18:38 +1000126void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000127make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128{
Damien Miller95def091999-11-25 00:26:21 +1100129 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Damien Miller95def091999-11-25 00:26:21 +1100131 /* Send buffered stderr data to the client. */
132 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100133 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100134 len = buffer_len(&stderr_buffer);
135 if (packet_is_interactive()) {
136 if (len > 512)
137 len = 512;
138 } else {
139 /* Keep the packets at reasonable size. */
140 if (len > packet_get_maxsize())
141 len = packet_get_maxsize();
142 }
143 packet_start(SSH_SMSG_STDERR_DATA);
144 packet_put_string(buffer_ptr(&stderr_buffer), len);
145 packet_send();
146 buffer_consume(&stderr_buffer, len);
147 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149}
150
Damien Miller95def091999-11-25 00:26:21 +1100151/*
152 * Make packets from buffered stdout data, and buffer it for sending to the
153 * client.
154 */
Damien Miller4af51302000-04-16 11:18:38 +1000155void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000156make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157{
Damien Miller95def091999-11-25 00:26:21 +1100158 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller95def091999-11-25 00:26:21 +1100160 /* Send buffered stdout data to the client. */
161 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100162 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100163 len = buffer_len(&stdout_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())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000170 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100171 }
172 packet_start(SSH_SMSG_STDOUT_DATA);
173 packet_put_string(buffer_ptr(&stdout_buffer), len);
174 packet_send();
175 buffer_consume(&stdout_buffer, len);
176 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Miller95def091999-11-25 00:26:21 +1100180/*
181 * Sleep in select() until we can do something. This will initialize the
182 * select masks. Upon return, the masks will indicate which descriptors
183 * have data or can accept data. Optionally, a maximum time can be specified
184 * for the duration of the wait (0 = infinite).
185 */
Damien Miller4af51302000-04-16 11:18:38 +1000186void
Damien Miller5e953212001-01-30 09:14:00 +1100187wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
188 u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189{
Damien Miller95def091999-11-25 00:26:21 +1100190 struct timeval tv, *tvp;
191 int ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
Damien Miller95def091999-11-25 00:26:21 +1100193 /* When select fails we restart from here. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194retry_select:
195
Damien Miller5e953212001-01-30 09:14:00 +1100196 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000197 channel_prepare_select(readsetp, writesetp, maxfdp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198
Damien Millerefb4afe2000-04-12 18:45:05 +1000199 if (compat20) {
Damien Millere247cc42000-05-07 12:03:14 +1000200 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000201 if (channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100202 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000203 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000204 /*
205 * Read packets from the client unless we have too much
206 * buffered stdin or channel data.
207 */
208 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000209 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100210 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000211 /*
212 * If there is not too much data already buffered going to
213 * the client, try to get some more data from the program.
214 */
215 if (packet_not_very_much_data_to_write()) {
216 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100217 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000218 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100219 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000220 }
221 /*
222 * If we have buffered data, try to write some of that data
223 * to the program.
224 */
225 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100226 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000227 }
Damien Miller95def091999-11-25 00:26:21 +1100228
Damien Miller5428f641999-11-25 11:54:57 +1100229 /*
230 * If we have buffered packet data going to the client, mark that
231 * descriptor.
232 */
Damien Miller95def091999-11-25 00:26:21 +1100233 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100234 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100235
Damien Miller5428f641999-11-25 11:54:57 +1100236 /*
237 * If child has terminated and there is enough buffer space to read
238 * from it, then read as much as is available and exit.
239 */
Damien Miller95def091999-11-25 00:26:21 +1100240 if (child_terminated && packet_not_very_much_data_to_write())
241 if (max_time_milliseconds == 0)
242 max_time_milliseconds = 100;
243
244 if (max_time_milliseconds == 0)
245 tvp = NULL;
246 else {
247 tv.tv_sec = max_time_milliseconds / 1000;
248 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
249 tvp = &tv;
250 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000251 if (tvp!=NULL)
Ben Lindstromf4c73112001-03-05 05:58:23 +0000252 debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100253
254 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100255 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100256
257 if (ret < 0) {
258 if (errno != EINTR)
259 error("select: %.100s", strerror(errno));
260 else
261 goto retry_select;
262 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263}
264
Damien Miller95def091999-11-25 00:26:21 +1100265/*
266 * Processes input from the client and the program. Input data is stored
267 * in buffers and processed later.
268 */
Damien Miller4af51302000-04-16 11:18:38 +1000269void
Damien Miller95def091999-11-25 00:26:21 +1100270process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271{
Damien Miller95def091999-11-25 00:26:21 +1100272 int len;
273 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Read and buffer any input data from the client. */
276 if (FD_ISSET(connection_in, readset)) {
277 len = read(connection_in, buf, sizeof(buf));
278 if (len == 0) {
279 verbose("Connection closed by remote host.");
280 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000281 } else if (len < 0) {
282 if (errno != EINTR && errno != EAGAIN) {
283 verbose("Read error from remote host: %.100s", strerror(errno));
284 fatal_cleanup();
285 }
286 } else {
287 /* Buffer any received data. */
288 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100289 }
Damien Miller95def091999-11-25 00:26:21 +1100290 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000291 if (compat20)
292 return;
293
Damien Miller95def091999-11-25 00:26:21 +1100294 /* Read and buffer any available stdout data from the program. */
295 if (!fdout_eof && FD_ISSET(fdout, readset)) {
296 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000297 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
298 /* do nothing */
299 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100300 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000301 } else {
Damien Miller95def091999-11-25 00:26:21 +1100302 buffer_append(&stdout_buffer, buf, len);
303 fdout_bytes += len;
304 }
305 }
306 /* Read and buffer any available stderr data from the program. */
307 if (!fderr_eof && FD_ISSET(fderr, readset)) {
308 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000309 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
310 /* do nothing */
311 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100312 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000313 } else {
Damien Miller95def091999-11-25 00:26:21 +1100314 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000315 }
Damien Miller95def091999-11-25 00:26:21 +1100316 }
317}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller95def091999-11-25 00:26:21 +1100319/*
320 * Sends data from internal buffers to client program stdin.
321 */
Damien Miller4af51302000-04-16 11:18:38 +1000322void
Damien Miller95def091999-11-25 00:26:21 +1100323process_output(fd_set * writeset)
324{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000325 struct termios tio;
Damien Miller95def091999-11-25 00:26:21 +1100326 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327
Damien Miller95def091999-11-25 00:26:21 +1100328 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000329 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Damien Miller95def091999-11-25 00:26:21 +1100330 len = write(fdin, buffer_ptr(&stdin_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100331 buffer_len(&stdin_buffer));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000332 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
333 /* do nothing */
334 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100335#ifdef USE_PIPES
336 close(fdin);
337#else
Damien Millerb38eff82000-04-01 11:09:21 +1000338 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100339 close(fdin);
340 else
341 shutdown(fdin, SHUT_WR); /* We will no longer send. */
342#endif
343 fdin = -1;
344 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000345 /* Successful write. */
Damien Miller225736c2001-02-19 21:51:08 +1100346 if (fdin_is_tty && tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100347 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000348 /*
349 * Simulate echo to reduce the impact of
350 * traffic analysis
351 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000352 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000353 packet_send();
354 }
355 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100356 buffer_consume(&stdin_buffer, len);
357 /* Update the count of bytes written to the program. */
358 stdin_bytes += len;
359 }
360 }
361 /* Send any buffered packet data to the client. */
362 if (FD_ISSET(connection_out, writeset))
363 packet_write_poll();
364}
365
366/*
367 * Wait until all buffered output has been sent to the client.
368 * This is used when the program terminates.
369 */
Damien Miller4af51302000-04-16 11:18:38 +1000370void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000371drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100372{
373 /* Send any buffered stdout data to the client. */
374 if (buffer_len(&stdout_buffer) > 0) {
375 packet_start(SSH_SMSG_STDOUT_DATA);
376 packet_put_string(buffer_ptr(&stdout_buffer),
377 buffer_len(&stdout_buffer));
378 packet_send();
379 /* Update the count of sent bytes. */
380 stdout_bytes += buffer_len(&stdout_buffer);
381 }
382 /* Send any buffered stderr data to the client. */
383 if (buffer_len(&stderr_buffer) > 0) {
384 packet_start(SSH_SMSG_STDERR_DATA);
385 packet_put_string(buffer_ptr(&stderr_buffer),
386 buffer_len(&stderr_buffer));
387 packet_send();
388 /* Update the count of sent bytes. */
389 stderr_bytes += buffer_len(&stderr_buffer);
390 }
391 /* Wait until all buffered data has been written to the client. */
392 packet_write_wait();
393}
394
Damien Miller4af51302000-04-16 11:18:38 +1000395void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000396process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000397{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000398 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000399}
400
Damien Miller95def091999-11-25 00:26:21 +1100401/*
402 * Performs the interactive session. This handles data transmission between
403 * the client and the program. Note that the notion of stdin, stdout, and
404 * stderr in this function is sort of reversed: this function writes to
405 * stdin (of the child program), and reads from stdout and stderr (of the
406 * child program).
407 */
Damien Miller4af51302000-04-16 11:18:38 +1000408void
Damien Miller166fca82000-04-20 07:42:21 +1000409server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100410{
Damien Miller5e953212001-01-30 09:14:00 +1100411 fd_set *readset = NULL, *writeset = NULL;
412 int max_fd;
Damien Miller166fca82000-04-20 07:42:21 +1000413 int wait_status; /* Status returned by wait(). */
414 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100415 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000416 u_int max_time_milliseconds;
417 u_int previous_stdout_buffer_bytes;
418 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100419 int type;
420
421 debug("Entering interactive session.");
422
423 /* Initialize the SIGCHLD kludge. */
424 child_pid = pid;
425 child_terminated = 0;
426 signal(SIGCHLD, sigchld_handler);
427
428 /* Initialize our global variables. */
429 fdin = fdin_arg;
430 fdout = fdout_arg;
431 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000432
433 /* nonblocking IO */
434 set_nonblock(fdin);
435 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000436 /* we don't have stderr for interactive terminal sessions, see below */
437 if (fderr != -1)
438 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000439
Damien Miller225736c2001-02-19 21:51:08 +1100440 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
441 fdin_is_tty = 1;
442
Damien Miller95def091999-11-25 00:26:21 +1100443 connection_in = packet_get_connection_in();
444 connection_out = packet_get_connection_out();
445
446 previous_stdout_buffer_bytes = 0;
447
448 /* Set approximate I/O buffer size. */
449 if (packet_is_interactive())
450 buffer_high = 4096;
451 else
452 buffer_high = 64 * 1024;
453
454 /* Initialize max_fd to the maximum of the known file descriptors. */
Damien Miller5e953212001-01-30 09:14:00 +1100455 max_fd = MAX(fdin, fdout);
456 if (fderr != -1)
457 max_fd = MAX(max_fd, fderr);
458 max_fd = MAX(max_fd, connection_in);
459 max_fd = MAX(max_fd, connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100460
461 /* Initialize Initialize buffers. */
462 buffer_init(&stdin_buffer);
463 buffer_init(&stdout_buffer);
464 buffer_init(&stderr_buffer);
465
Damien Miller5428f641999-11-25 11:54:57 +1100466 /*
467 * If we have no separate fderr (which is the case when we have a pty
468 * - there we cannot make difference between data sent to stdout and
469 * stderr), indicate that we have seen an EOF from stderr. This way
470 * we don\'t need to check the descriptor everywhere.
471 */
Damien Miller95def091999-11-25 00:26:21 +1100472 if (fderr == -1)
473 fderr_eof = 1;
474
Damien Millerb38eff82000-04-01 11:09:21 +1000475 server_init_dispatch();
476
Damien Miller95def091999-11-25 00:26:21 +1100477 /* Main loop of the server for the interactive session mode. */
478 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100479
480 /* Process buffered packets from the client. */
481 process_buffered_input_packets();
482
Damien Miller5428f641999-11-25 11:54:57 +1100483 /*
484 * If we have received eof, and there is no more pending
485 * input data, cause a real eof by closing fdin.
486 */
Damien Miller95def091999-11-25 00:26:21 +1100487 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
488#ifdef USE_PIPES
489 close(fdin);
490#else
Damien Millerb38eff82000-04-01 11:09:21 +1000491 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100492 close(fdin);
493 else
494 shutdown(fdin, SHUT_WR); /* We will no longer send. */
495#endif
496 fdin = -1;
497 }
Damien Miller5428f641999-11-25 11:54:57 +1100498 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100499 make_packets_from_stderr_data();
500
Damien Miller5428f641999-11-25 11:54:57 +1100501 /*
502 * Make packets from buffered stdout data to send to the
503 * client. If there is very little to send, this arranges to
504 * not send them now, but to wait a short while to see if we
505 * are getting more data. This is necessary, as some systems
506 * wake up readers from a pty after each separate character.
507 */
Damien Miller95def091999-11-25 00:26:21 +1100508 max_time_milliseconds = 0;
509 stdout_buffer_bytes = buffer_len(&stdout_buffer);
510 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
511 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
512 /* try again after a while */
513 max_time_milliseconds = 10;
514 } else {
515 /* Send it now. */
516 make_packets_from_stdout_data();
517 }
518 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
519
520 /* Send channel data to the client. */
521 if (packet_not_very_much_data_to_write())
522 channel_output_poll();
523
Damien Miller5428f641999-11-25 11:54:57 +1100524 /*
525 * Bail out of the loop if the program has closed its output
526 * descriptors, and we have no more data to send to the
527 * client, and there is no pending buffered data.
528 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100529 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
530 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100531 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000532 break;
Damien Miller95def091999-11-25 00:26:21 +1100533 if (!waiting_termination) {
534 const char *s = "Waiting for forwarded connections to terminate...\r\n";
535 char *cp;
536 waiting_termination = 1;
537 buffer_append(&stderr_buffer, s, strlen(s));
538
539 /* Display list of open channels. */
540 cp = channel_open_message();
541 buffer_append(&stderr_buffer, cp, strlen(cp));
542 xfree(cp);
543 }
544 }
545 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100546 wait_until_can_do_something(&readset, &writeset, &max_fd,
547 max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100548
549 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100550 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100551
552 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100553 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100554
555 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100556 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100557 }
Damien Miller5e953212001-01-30 09:14:00 +1100558 if (readset)
559 xfree(readset);
560 if (writeset)
561 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Cleanup and termination code. */
564
565 /* Wait until all output has been sent to the client. */
566 drain_output();
567
568 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
569 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
570
571 /* Free and clear the buffers. */
572 buffer_free(&stdin_buffer);
573 buffer_free(&stdout_buffer);
574 buffer_free(&stderr_buffer);
575
576 /* Close the file descriptors. */
577 if (fdout != -1)
578 close(fdout);
579 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100581 if (fderr != -1)
582 close(fderr);
583 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100585 if (fdin != -1)
586 close(fdin);
587 fdin = -1;
588
589 /* Stop listening for channels; this removes unix domain sockets. */
590 channel_stop_listening();
591
592 /* Wait for the child to exit. Get its exit status. */
593 wait_pid = wait(&wait_status);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000594 if (wait_pid == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100595 /*
596 * It is possible that the wait was handled by SIGCHLD
597 * handler. This may result in either: this call
598 * returning with EINTR, or: this call returning ECHILD.
599 */
600 if (child_terminated)
601 wait_status = child_wait_status;
602 else
603 packet_disconnect("wait: %.100s", strerror(errno));
604 } else {
605 /* Check if it matches the process we forked. */
606 if (wait_pid != pid)
607 error("Strange, wait returned pid %d, expected %d",
Damien Milleraae6c611999-12-06 11:47:28 +1100608 wait_pid, pid);
Damien Miller95def091999-11-25 00:26:21 +1100609 }
610
611 /* We no longer want our SIGCHLD handler to be called. */
612 signal(SIGCHLD, SIG_DFL);
613
614 /* Check if it exited normally. */
615 if (WIFEXITED(wait_status)) {
616 /* Yes, normal exit. Get exit status and send it to the client. */
617 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
618 packet_start(SSH_SMSG_EXITSTATUS);
619 packet_put_int(WEXITSTATUS(wait_status));
620 packet_send();
621 packet_write_wait();
622
Damien Miller5428f641999-11-25 11:54:57 +1100623 /*
624 * Wait for exit confirmation. Note that there might be
625 * other packets coming before it; however, the program has
626 * already died so we just ignore them. The client is
627 * supposed to respond with the confirmation when it receives
628 * the exit status.
629 */
Damien Miller95def091999-11-25 00:26:21 +1100630 do {
631 int plen;
632 type = packet_read(&plen);
633 }
634 while (type != SSH_CMSG_EXIT_CONFIRMATION);
635
636 debug("Received exit confirmation.");
637 return;
638 }
639 /* Check if the program terminated due to a signal. */
640 if (WIFSIGNALED(wait_status))
641 packet_disconnect("Command terminated on signal %d.",
642 WTERMSIG(wait_status));
643
644 /* Some weird exit cause. Just exit. */
645 packet_disconnect("wait returned status %04x.", wait_status);
646 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647}
Damien Millerb38eff82000-04-01 11:09:21 +1000648
Damien Miller4af51302000-04-16 11:18:38 +1000649void
Damien Millerefb4afe2000-04-12 18:45:05 +1000650server_loop2(void)
651{
Damien Miller5e953212001-01-30 09:14:00 +1100652 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000653 int had_channel = 0, rekeying = 0, max_fd, status;
Damien Millerefb4afe2000-04-12 18:45:05 +1000654 pid_t pid;
655
656 debug("Entering interactive session for SSH2.");
657
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000658 mysignal(SIGCHLD, sigchld_handler2);
Damien Millerefb4afe2000-04-12 18:45:05 +1000659 child_terminated = 0;
660 connection_in = packet_get_connection_in();
661 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100662
663 max_fd = MAX(connection_in, connection_out);
664
Damien Millerefb4afe2000-04-12 18:45:05 +1000665 server_init_dispatch();
666
667 for (;;) {
668 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000669
Ben Lindstroma3700052001-04-05 23:26:32 +0000670 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000671
Damien Millerefb4afe2000-04-12 18:45:05 +1000672 if (!had_channel && channel_still_open())
673 had_channel = 1;
674 if (had_channel && !channel_still_open()) {
675 debug("!channel_still_open.");
676 break;
677 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000678 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000679 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000680 wait_until_can_do_something(&readset, &writeset, &max_fd,
681 rekeying);
Damien Miller43dc8da2000-11-29 15:55:17 +1100682 if (child_terminated) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000683 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
684 session_close_by_pid(pid, status);
685 child_terminated = 0;
686 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000687 if (!rekeying)
688 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100689 process_input(readset);
690 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000691 }
Damien Miller5e953212001-01-30 09:14:00 +1100692 if (readset)
693 xfree(readset);
694 if (writeset)
695 xfree(writeset);
696
Damien Millerefb4afe2000-04-12 18:45:05 +1000697 signal(SIGCHLD, SIG_DFL);
698 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
699 session_close_by_pid(pid, status);
700 channel_stop_listening();
701}
702
Damien Millerb38eff82000-04-01 11:09:21 +1000703void
Damien Miller62cee002000-09-23 17:15:56 +1100704server_input_stdin_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000705{
706 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000707 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000708
709 /* Stdin data from the client. Append it to the buffer. */
710 /* Ignore any data if the client has closed stdin. */
711 if (fdin == -1)
712 return;
713 data = packet_get_string(&data_len);
714 packet_integrity_check(plen, (4 + data_len), type);
715 buffer_append(&stdin_buffer, data, data_len);
716 memset(data, 0, data_len);
717 xfree(data);
718}
719
720void
Damien Miller62cee002000-09-23 17:15:56 +1100721server_input_eof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000722{
723 /*
724 * Eof from the client. The stdin descriptor to the
725 * program will be closed when all buffered data has
726 * drained.
727 */
728 debug("EOF received for stdin.");
729 packet_integrity_check(plen, 0, type);
730 stdin_eof = 1;
731}
732
733void
Damien Miller62cee002000-09-23 17:15:56 +1100734server_input_window_size(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000735{
736 int row = packet_get_int();
737 int col = packet_get_int();
738 int xpixel = packet_get_int();
739 int ypixel = packet_get_int();
740
741 debug("Window change received.");
742 packet_integrity_check(plen, 4 * 4, type);
743 if (fdin != -1)
744 pty_change_window_size(fdin, row, col, xpixel, ypixel);
745}
746
Damien Miller0bc1bd82000-11-13 22:57:25 +1100747Channel *
748server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000749{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100750 int sock, newch;
Damien Miller4af51302000-04-16 11:18:38 +1000751 char *target, *originator;
752 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000753
Damien Miller4af51302000-04-16 11:18:38 +1000754 target = packet_get_string(NULL);
755 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000756 originator = packet_get_string(NULL);
757 originator_port = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +1000758 packet_done();
Damien Millerb1715dc2000-05-30 13:44:51 +1000759
Damien Miller0bc1bd82000-11-13 22:57:25 +1100760 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000761 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000762
Damien Millerefb4afe2000-04-12 18:45:05 +1000763 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000764 sock = channel_connect_to(target, target_port);
765 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000766 xfree(originator);
767 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100768 return NULL;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000769 newch = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100770 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100771 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100772 return (newch >= 0) ? channel_lookup(newch) : NULL;
773}
774
775Channel *
776server_request_session(char *ctype)
777{
778 int newch;
779
780 debug("input_session_request");
781 packet_done();
782 /*
783 * A server session has no fd to read or write until a
784 * CHANNEL_REQUEST for a shell is made, so we set the type to
785 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
786 * CHANNEL_REQUEST messages is registered.
787 */
788 newch = channel_new(ctype, SSH_CHANNEL_LARVAL,
789 -1, -1, -1, 0, CHAN_SES_PACKET_DEFAULT,
790 0, xstrdup("server-session"), 1);
791 if (session_open(newch) == 1) {
792 channel_register_callback(newch, SSH2_MSG_CHANNEL_REQUEST,
793 session_input_channel_req, (void *)0);
794 channel_register_cleanup(newch, session_close_by_channel);
795 return channel_lookup(newch);
796 } else {
797 debug("session open failed, free channel %d", newch);
798 channel_free(newch);
799 }
800 return NULL;
Damien Millerefb4afe2000-04-12 18:45:05 +1000801}
802
Damien Miller4af51302000-04-16 11:18:38 +1000803void
Damien Miller62cee002000-09-23 17:15:56 +1100804server_input_channel_open(int type, int plen, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000805{
806 Channel *c = NULL;
807 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000808 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000809 int rchan;
810 int rmaxpack;
811 int rwindow;
812
813 ctype = packet_get_string(&len);
814 rchan = packet_get_int();
815 rwindow = packet_get_int();
816 rmaxpack = packet_get_int();
817
Damien Miller62cee002000-09-23 17:15:56 +1100818 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000819 ctype, rchan, rwindow, rmaxpack);
820
821 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100822 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000823 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000825 }
826 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100827 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000828 c->remote_id = rchan;
829 c->remote_window = rwindow;
830 c->remote_maxpacket = rmaxpack;
831
832 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
833 packet_put_int(c->remote_id);
834 packet_put_int(c->self);
835 packet_put_int(c->local_window);
836 packet_put_int(c->local_maxpacket);
837 packet_send();
838 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100839 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000840 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
841 packet_put_int(rchan);
842 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
843 packet_put_cstring("bla bla");
844 packet_put_cstring("");
845 packet_send();
846 }
847 xfree(ctype);
848}
849
Kevin Stevesef4eea92001-02-05 12:42:17 +0000850void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851server_input_global_request(int type, int plen, void *ctxt)
852{
853 char *rtype;
854 int want_reply;
855 int success = 0;
856
857 rtype = packet_get_string(NULL);
858 want_reply = packet_get_char();
859 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000860
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000861 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100862 if (strcmp(rtype, "tcpip-forward") == 0) {
863 struct passwd *pw;
864 char *listen_address;
865 u_short listen_port;
866
867 pw = auth_get_user();
868 if (pw == NULL)
869 fatal("server_input_global_request: no user");
870 listen_address = packet_get_string(NULL); /* XXX currently ignored */
871 listen_port = (u_short)packet_get_int();
872 debug("server_input_global_request: tcpip-forward listen %s port %d",
873 listen_address, listen_port);
874
875 /* check permissions */
876 if (!options.allow_tcp_forwarding ||
877 no_port_forwarding_flag ||
878 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) {
879 success = 0;
880 packet_send_debug("Server has disabled port forwarding.");
881 } else {
882 /* Start listening on the port */
Kevin Steves12057502001-02-05 14:54:34 +0000883 success = channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100884 listen_address, listen_port,
885 /*unspec host_to_connect*/ "<unspec host>",
886 /*unspec port_to_connect*/ 0,
887 options.gateway_ports, /*remote*/ 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100888 }
889 xfree(listen_address);
890 }
891 if (want_reply) {
892 packet_start(success ?
893 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
894 packet_send();
895 packet_write_wait();
896 }
897 xfree(rtype);
898}
899
Damien Miller4af51302000-04-16 11:18:38 +1000900void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000901server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000902{
903 debug("server_init_dispatch_20");
904 dispatch_init(&dispatch_protocol_error);
905 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
906 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
907 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
908 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
909 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
910 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
911 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
912 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
913 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100914 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000915
916 /* rekeying */
917 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000918}
Damien Miller4af51302000-04-16 11:18:38 +1000919void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000920server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000921{
922 debug("server_init_dispatch_13");
923 dispatch_init(NULL);
924 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
925 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
926 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
927 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
928 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
929 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
930 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
931 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
932 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
933}
Damien Miller4af51302000-04-16 11:18:38 +1000934void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000935server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000936{
937 server_init_dispatch_13();
938 debug("server_init_dispatch_15");
939 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
940 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
941}
Damien Miller4af51302000-04-16 11:18:38 +1000942void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000943server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000944{
Damien Millerefb4afe2000-04-12 18:45:05 +1000945 if (compat20)
946 server_init_dispatch_20();
947 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000948 server_init_dispatch_13();
949 else
950 server_init_dispatch_15();
951}