blob: d6b360d9adc499f1177604c15e1adfacf7487f21 [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 Lindstrome34ab4c2001-04-07 01:12:11 +000038RCSID("$OpenBSD: serverloop.c,v 1.60 2001/04/05 23:39:20 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 Lindstrome34ab4c2001-04-07 01:12:11 +000080static int connection_closed = 0; /* Connection to client closed. */
81static u_int buffer_high; /* "Soft" max buffer size. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * This SIGCHLD kludge is used to detect when the child exits. The server
85 * will exit after that, as soon as forwarded connections have terminated.
86 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller166fca82000-04-20 07:42:21 +100088static pid_t child_pid; /* Pid of the child. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089static volatile int child_terminated; /* The child has terminated. */
90static volatile int child_wait_status; /* Status from wait(). */
91
Damien Millerb38eff82000-04-01 11:09:21 +100092void server_init_dispatch(void);
93
Damien Miller4af51302000-04-16 11:18:38 +100094void
Damien Miller95def091999-11-25 00:26:21 +110095sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096{
Damien Miller95def091999-11-25 00:26:21 +110097 int save_errno = errno;
Damien Miller166fca82000-04-20 07:42:21 +100098 pid_t wait_pid;
99
Damien Miller95def091999-11-25 00:26:21 +1100100 debug("Received SIGCHLD.");
101 wait_pid = wait((int *) &child_wait_status);
102 if (wait_pid != -1) {
103 if (wait_pid != child_pid)
104 error("Strange, got SIGCHLD and wait returned pid %d but child is %d",
105 wait_pid, child_pid);
106 if (WIFEXITED(child_wait_status) ||
Damien Miller43dc8da2000-11-29 15:55:17 +1100107 WIFSIGNALED(child_wait_status))
Damien Miller95def091999-11-25 00:26:21 +1100108 child_terminated = 1;
109 }
110 signal(SIGCHLD, sigchld_handler);
111 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112}
Damien Miller4af51302000-04-16 11:18:38 +1000113void
Damien Millerefb4afe2000-04-12 18:45:05 +1000114sigchld_handler2(int sig)
115{
116 int save_errno = errno;
117 debug("Received SIGCHLD.");
118 child_terminated = 1;
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000119 mysignal(SIGCHLD, sigchld_handler2);
Damien Millerefb4afe2000-04-12 18:45:05 +1000120 errno = save_errno;
121}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
Damien Miller95def091999-11-25 00:26:21 +1100123/*
Damien Miller95def091999-11-25 00:26:21 +1100124 * Make packets from buffered stderr data, and buffer it for sending
125 * to the client.
126 */
Damien Miller4af51302000-04-16 11:18:38 +1000127void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000128make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129{
Damien Miller95def091999-11-25 00:26:21 +1100130 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller95def091999-11-25 00:26:21 +1100132 /* Send buffered stderr data to the client. */
133 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100134 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100135 len = buffer_len(&stderr_buffer);
136 if (packet_is_interactive()) {
137 if (len > 512)
138 len = 512;
139 } else {
140 /* Keep the packets at reasonable size. */
141 if (len > packet_get_maxsize())
142 len = packet_get_maxsize();
143 }
144 packet_start(SSH_SMSG_STDERR_DATA);
145 packet_put_string(buffer_ptr(&stderr_buffer), len);
146 packet_send();
147 buffer_consume(&stderr_buffer, len);
148 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150}
151
Damien Miller95def091999-11-25 00:26:21 +1100152/*
153 * Make packets from buffered stdout data, and buffer it for sending to the
154 * client.
155 */
Damien Miller4af51302000-04-16 11:18:38 +1000156void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller95def091999-11-25 00:26:21 +1100159 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Damien Miller95def091999-11-25 00:26:21 +1100161 /* Send buffered stdout data to the client. */
162 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100163 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100164 len = buffer_len(&stdout_buffer);
165 if (packet_is_interactive()) {
166 if (len > 512)
167 len = 512;
168 } else {
169 /* Keep the packets at reasonable size. */
170 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000171 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100172 }
173 packet_start(SSH_SMSG_STDOUT_DATA);
174 packet_put_string(buffer_ptr(&stdout_buffer), len);
175 packet_send();
176 buffer_consume(&stdout_buffer, len);
177 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179}
180
Damien Miller95def091999-11-25 00:26:21 +1100181/*
182 * Sleep in select() until we can do something. This will initialize the
183 * select masks. Upon return, the masks will indicate which descriptors
184 * have data or can accept data. Optionally, a maximum time can be specified
185 * for the duration of the wait (0 = infinite).
186 */
Damien Miller4af51302000-04-16 11:18:38 +1000187void
Damien Miller5e953212001-01-30 09:14:00 +1100188wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
189 u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller95def091999-11-25 00:26:21 +1100191 struct timeval tv, *tvp;
192 int ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
Damien Miller95def091999-11-25 00:26:21 +1100194 /* When select fails we restart from here. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195retry_select:
196
Damien Miller5e953212001-01-30 09:14:00 +1100197 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000198 channel_prepare_select(readsetp, writesetp, maxfdp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Damien Millerefb4afe2000-04-12 18:45:05 +1000200 if (compat20) {
Damien Millere247cc42000-05-07 12:03:14 +1000201 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000202 if (channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100203 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000204 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000205 /*
206 * Read packets from the client unless we have too much
207 * buffered stdin or channel data.
208 */
209 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000210 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100211 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000212 /*
213 * If there is not too much data already buffered going to
214 * the client, try to get some more data from the program.
215 */
216 if (packet_not_very_much_data_to_write()) {
217 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100218 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000219 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100220 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000221 }
222 /*
223 * If we have buffered data, try to write some of that data
224 * to the program.
225 */
226 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100227 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000228 }
Damien Miller95def091999-11-25 00:26:21 +1100229
Damien Miller5428f641999-11-25 11:54:57 +1100230 /*
231 * If we have buffered packet data going to the client, mark that
232 * descriptor.
233 */
Damien Miller95def091999-11-25 00:26:21 +1100234 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100235 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100236
Damien Miller5428f641999-11-25 11:54:57 +1100237 /*
238 * If child has terminated and there is enough buffer space to read
239 * from it, then read as much as is available and exit.
240 */
Damien Miller95def091999-11-25 00:26:21 +1100241 if (child_terminated && packet_not_very_much_data_to_write())
242 if (max_time_milliseconds == 0)
243 max_time_milliseconds = 100;
244
245 if (max_time_milliseconds == 0)
246 tvp = NULL;
247 else {
248 tv.tv_sec = max_time_milliseconds / 1000;
249 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
250 tvp = &tv;
251 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000252 if (tvp!=NULL)
Ben Lindstromf4c73112001-03-05 05:58:23 +0000253 debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100254
255 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100256 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100257
258 if (ret < 0) {
259 if (errno != EINTR)
260 error("select: %.100s", strerror(errno));
261 else
262 goto retry_select;
263 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264}
265
Damien Miller95def091999-11-25 00:26:21 +1100266/*
267 * Processes input from the client and the program. Input data is stored
268 * in buffers and processed later.
269 */
Damien Miller4af51302000-04-16 11:18:38 +1000270void
Damien Miller95def091999-11-25 00:26:21 +1100271process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272{
Damien Miller95def091999-11-25 00:26:21 +1100273 int len;
274 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Miller95def091999-11-25 00:26:21 +1100276 /* Read and buffer any input data from the client. */
277 if (FD_ISSET(connection_in, readset)) {
278 len = read(connection_in, buf, sizeof(buf));
279 if (len == 0) {
280 verbose("Connection closed by remote host.");
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000281 connection_closed = 1;
282 if (compat20)
283 return;
Damien Miller95def091999-11-25 00:26:21 +1100284 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000285 } else if (len < 0) {
286 if (errno != EINTR && errno != EAGAIN) {
287 verbose("Read error from remote host: %.100s", strerror(errno));
288 fatal_cleanup();
289 }
290 } else {
291 /* Buffer any received data. */
292 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100293 }
Damien Miller95def091999-11-25 00:26:21 +1100294 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000295 if (compat20)
296 return;
297
Damien Miller95def091999-11-25 00:26:21 +1100298 /* Read and buffer any available stdout data from the program. */
299 if (!fdout_eof && FD_ISSET(fdout, readset)) {
300 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000301 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
302 /* do nothing */
303 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100304 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000305 } else {
Damien Miller95def091999-11-25 00:26:21 +1100306 buffer_append(&stdout_buffer, buf, len);
307 fdout_bytes += len;
308 }
309 }
310 /* Read and buffer any available stderr data from the program. */
311 if (!fderr_eof && FD_ISSET(fderr, readset)) {
312 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000313 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
314 /* do nothing */
315 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100316 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000317 } else {
Damien Miller95def091999-11-25 00:26:21 +1100318 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000319 }
Damien Miller95def091999-11-25 00:26:21 +1100320 }
321}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Miller95def091999-11-25 00:26:21 +1100323/*
324 * Sends data from internal buffers to client program stdin.
325 */
Damien Miller4af51302000-04-16 11:18:38 +1000326void
Damien Miller95def091999-11-25 00:26:21 +1100327process_output(fd_set * writeset)
328{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000329 struct termios tio;
Damien Miller95def091999-11-25 00:26:21 +1100330 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Damien Miller95def091999-11-25 00:26:21 +1100332 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000333 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Damien Miller95def091999-11-25 00:26:21 +1100334 len = write(fdin, buffer_ptr(&stdin_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100335 buffer_len(&stdin_buffer));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000336 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
337 /* do nothing */
338 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100339#ifdef USE_PIPES
340 close(fdin);
341#else
Damien Millerb38eff82000-04-01 11:09:21 +1000342 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100343 close(fdin);
344 else
345 shutdown(fdin, SHUT_WR); /* We will no longer send. */
346#endif
347 fdin = -1;
348 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000349 /* Successful write. */
Damien Miller225736c2001-02-19 21:51:08 +1100350 if (fdin_is_tty && tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100351 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000352 /*
353 * Simulate echo to reduce the impact of
354 * traffic analysis
355 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000356 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000357 packet_send();
358 }
359 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100360 buffer_consume(&stdin_buffer, len);
361 /* Update the count of bytes written to the program. */
362 stdin_bytes += len;
363 }
364 }
365 /* Send any buffered packet data to the client. */
366 if (FD_ISSET(connection_out, writeset))
367 packet_write_poll();
368}
369
370/*
371 * Wait until all buffered output has been sent to the client.
372 * This is used when the program terminates.
373 */
Damien Miller4af51302000-04-16 11:18:38 +1000374void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000375drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100376{
377 /* Send any buffered stdout data to the client. */
378 if (buffer_len(&stdout_buffer) > 0) {
379 packet_start(SSH_SMSG_STDOUT_DATA);
380 packet_put_string(buffer_ptr(&stdout_buffer),
381 buffer_len(&stdout_buffer));
382 packet_send();
383 /* Update the count of sent bytes. */
384 stdout_bytes += buffer_len(&stdout_buffer);
385 }
386 /* Send any buffered stderr data to the client. */
387 if (buffer_len(&stderr_buffer) > 0) {
388 packet_start(SSH_SMSG_STDERR_DATA);
389 packet_put_string(buffer_ptr(&stderr_buffer),
390 buffer_len(&stderr_buffer));
391 packet_send();
392 /* Update the count of sent bytes. */
393 stderr_bytes += buffer_len(&stderr_buffer);
394 }
395 /* Wait until all buffered data has been written to the client. */
396 packet_write_wait();
397}
398
Damien Miller4af51302000-04-16 11:18:38 +1000399void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000400process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000401{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000402 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000403}
404
Damien Miller95def091999-11-25 00:26:21 +1100405/*
406 * Performs the interactive session. This handles data transmission between
407 * the client and the program. Note that the notion of stdin, stdout, and
408 * stderr in this function is sort of reversed: this function writes to
409 * stdin (of the child program), and reads from stdout and stderr (of the
410 * child program).
411 */
Damien Miller4af51302000-04-16 11:18:38 +1000412void
Damien Miller166fca82000-04-20 07:42:21 +1000413server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100414{
Damien Miller5e953212001-01-30 09:14:00 +1100415 fd_set *readset = NULL, *writeset = NULL;
416 int max_fd;
Damien Miller166fca82000-04-20 07:42:21 +1000417 int wait_status; /* Status returned by wait(). */
418 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100419 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000420 u_int max_time_milliseconds;
421 u_int previous_stdout_buffer_bytes;
422 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100423 int type;
424
425 debug("Entering interactive session.");
426
427 /* Initialize the SIGCHLD kludge. */
428 child_pid = pid;
429 child_terminated = 0;
430 signal(SIGCHLD, sigchld_handler);
431
432 /* Initialize our global variables. */
433 fdin = fdin_arg;
434 fdout = fdout_arg;
435 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000436
437 /* nonblocking IO */
438 set_nonblock(fdin);
439 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000440 /* we don't have stderr for interactive terminal sessions, see below */
441 if (fderr != -1)
442 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000443
Damien Miller225736c2001-02-19 21:51:08 +1100444 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
445 fdin_is_tty = 1;
446
Damien Miller95def091999-11-25 00:26:21 +1100447 connection_in = packet_get_connection_in();
448 connection_out = packet_get_connection_out();
449
450 previous_stdout_buffer_bytes = 0;
451
452 /* Set approximate I/O buffer size. */
453 if (packet_is_interactive())
454 buffer_high = 4096;
455 else
456 buffer_high = 64 * 1024;
457
458 /* Initialize max_fd to the maximum of the known file descriptors. */
Damien Miller5e953212001-01-30 09:14:00 +1100459 max_fd = MAX(fdin, fdout);
460 if (fderr != -1)
461 max_fd = MAX(max_fd, fderr);
462 max_fd = MAX(max_fd, connection_in);
463 max_fd = MAX(max_fd, connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100464
465 /* Initialize Initialize buffers. */
466 buffer_init(&stdin_buffer);
467 buffer_init(&stdout_buffer);
468 buffer_init(&stderr_buffer);
469
Damien Miller5428f641999-11-25 11:54:57 +1100470 /*
471 * If we have no separate fderr (which is the case when we have a pty
472 * - there we cannot make difference between data sent to stdout and
473 * stderr), indicate that we have seen an EOF from stderr. This way
474 * we don\'t need to check the descriptor everywhere.
475 */
Damien Miller95def091999-11-25 00:26:21 +1100476 if (fderr == -1)
477 fderr_eof = 1;
478
Damien Millerb38eff82000-04-01 11:09:21 +1000479 server_init_dispatch();
480
Damien Miller95def091999-11-25 00:26:21 +1100481 /* Main loop of the server for the interactive session mode. */
482 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100483
484 /* Process buffered packets from the client. */
485 process_buffered_input_packets();
486
Damien Miller5428f641999-11-25 11:54:57 +1100487 /*
488 * If we have received eof, and there is no more pending
489 * input data, cause a real eof by closing fdin.
490 */
Damien Miller95def091999-11-25 00:26:21 +1100491 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
492#ifdef USE_PIPES
493 close(fdin);
494#else
Damien Millerb38eff82000-04-01 11:09:21 +1000495 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100496 close(fdin);
497 else
498 shutdown(fdin, SHUT_WR); /* We will no longer send. */
499#endif
500 fdin = -1;
501 }
Damien Miller5428f641999-11-25 11:54:57 +1100502 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100503 make_packets_from_stderr_data();
504
Damien Miller5428f641999-11-25 11:54:57 +1100505 /*
506 * Make packets from buffered stdout data to send to the
507 * client. If there is very little to send, this arranges to
508 * not send them now, but to wait a short while to see if we
509 * are getting more data. This is necessary, as some systems
510 * wake up readers from a pty after each separate character.
511 */
Damien Miller95def091999-11-25 00:26:21 +1100512 max_time_milliseconds = 0;
513 stdout_buffer_bytes = buffer_len(&stdout_buffer);
514 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
515 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
516 /* try again after a while */
517 max_time_milliseconds = 10;
518 } else {
519 /* Send it now. */
520 make_packets_from_stdout_data();
521 }
522 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
523
524 /* Send channel data to the client. */
525 if (packet_not_very_much_data_to_write())
526 channel_output_poll();
527
Damien Miller5428f641999-11-25 11:54:57 +1100528 /*
529 * Bail out of the loop if the program has closed its output
530 * descriptors, and we have no more data to send to the
531 * client, and there is no pending buffered data.
532 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100533 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
534 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100535 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000536 break;
Damien Miller95def091999-11-25 00:26:21 +1100537 if (!waiting_termination) {
538 const char *s = "Waiting for forwarded connections to terminate...\r\n";
539 char *cp;
540 waiting_termination = 1;
541 buffer_append(&stderr_buffer, s, strlen(s));
542
543 /* Display list of open channels. */
544 cp = channel_open_message();
545 buffer_append(&stderr_buffer, cp, strlen(cp));
546 xfree(cp);
547 }
548 }
549 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100550 wait_until_can_do_something(&readset, &writeset, &max_fd,
551 max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100552
553 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100554 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100555
556 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100557 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100558
559 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100560 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100561 }
Damien Miller5e953212001-01-30 09:14:00 +1100562 if (readset)
563 xfree(readset);
564 if (writeset)
565 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100566
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Cleanup and termination code. */
568
569 /* Wait until all output has been sent to the client. */
570 drain_output();
571
572 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
573 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
574
575 /* Free and clear the buffers. */
576 buffer_free(&stdin_buffer);
577 buffer_free(&stdout_buffer);
578 buffer_free(&stderr_buffer);
579
580 /* Close the file descriptors. */
581 if (fdout != -1)
582 close(fdout);
583 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100585 if (fderr != -1)
586 close(fderr);
587 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100589 if (fdin != -1)
590 close(fdin);
591 fdin = -1;
592
593 /* Stop listening for channels; this removes unix domain sockets. */
594 channel_stop_listening();
595
596 /* Wait for the child to exit. Get its exit status. */
597 wait_pid = wait(&wait_status);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000598 if (wait_pid == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100599 /*
600 * It is possible that the wait was handled by SIGCHLD
601 * handler. This may result in either: this call
602 * returning with EINTR, or: this call returning ECHILD.
603 */
604 if (child_terminated)
605 wait_status = child_wait_status;
606 else
607 packet_disconnect("wait: %.100s", strerror(errno));
608 } else {
609 /* Check if it matches the process we forked. */
610 if (wait_pid != pid)
611 error("Strange, wait returned pid %d, expected %d",
Damien Milleraae6c611999-12-06 11:47:28 +1100612 wait_pid, pid);
Damien Miller95def091999-11-25 00:26:21 +1100613 }
614
615 /* We no longer want our SIGCHLD handler to be called. */
616 signal(SIGCHLD, SIG_DFL);
617
618 /* Check if it exited normally. */
619 if (WIFEXITED(wait_status)) {
620 /* Yes, normal exit. Get exit status and send it to the client. */
621 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
622 packet_start(SSH_SMSG_EXITSTATUS);
623 packet_put_int(WEXITSTATUS(wait_status));
624 packet_send();
625 packet_write_wait();
626
Damien Miller5428f641999-11-25 11:54:57 +1100627 /*
628 * Wait for exit confirmation. Note that there might be
629 * other packets coming before it; however, the program has
630 * already died so we just ignore them. The client is
631 * supposed to respond with the confirmation when it receives
632 * the exit status.
633 */
Damien Miller95def091999-11-25 00:26:21 +1100634 do {
635 int plen;
636 type = packet_read(&plen);
637 }
638 while (type != SSH_CMSG_EXIT_CONFIRMATION);
639
640 debug("Received exit confirmation.");
641 return;
642 }
643 /* Check if the program terminated due to a signal. */
644 if (WIFSIGNALED(wait_status))
645 packet_disconnect("Command terminated on signal %d.",
646 WTERMSIG(wait_status));
647
648 /* Some weird exit cause. Just exit. */
649 packet_disconnect("wait returned status %04x.", wait_status);
650 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651}
Damien Millerb38eff82000-04-01 11:09:21 +1000652
Damien Miller4af51302000-04-16 11:18:38 +1000653void
Damien Millerefb4afe2000-04-12 18:45:05 +1000654server_loop2(void)
655{
Damien Miller5e953212001-01-30 09:14:00 +1100656 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000657 int rekeying = 0, max_fd, status;
Damien Millerefb4afe2000-04-12 18:45:05 +1000658 pid_t pid;
659
660 debug("Entering interactive session for SSH2.");
661
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000662 mysignal(SIGCHLD, sigchld_handler2);
Damien Millerefb4afe2000-04-12 18:45:05 +1000663 child_terminated = 0;
664 connection_in = packet_get_connection_in();
665 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100666
667 max_fd = MAX(connection_in, connection_out);
668
Damien Millerefb4afe2000-04-12 18:45:05 +1000669 server_init_dispatch();
670
671 for (;;) {
672 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000673
Ben Lindstroma3700052001-04-05 23:26:32 +0000674 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000675
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000676 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000677 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000678 wait_until_can_do_something(&readset, &writeset, &max_fd,
679 rekeying);
Damien Miller43dc8da2000-11-29 15:55:17 +1100680 if (child_terminated) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000681 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
682 session_close_by_pid(pid, status);
683 child_terminated = 0;
684 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000685 if (!rekeying)
686 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100687 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000688 if (connection_closed)
689 break;
Damien Miller5e953212001-01-30 09:14:00 +1100690 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}