blob: 2eb8603d1565092638603371521c8875d2dd1b70 [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 Lindstrom44697232001-07-04 03:32:30 +000038RCSID("$OpenBSD: serverloop.c,v 1.71 2001/06/25 08:25:39 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;
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 */
Ben Lindstrombba81212001-06-25 05:01:22 +000087
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088static volatile int child_terminated; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Ben Lindstrombba81212001-06-25 05:01:22 +000090/* prototypes */
91static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +100092
Ben Lindstrom5744dc42001-04-13 23:28:01 +000093int client_alive_timeouts = 0;
94
Ben Lindstrombba81212001-06-25 05:01:22 +000095static void
Damien Miller95def091999-11-25 00:26:21 +110096sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097{
Damien Miller95def091999-11-25 00:26:21 +110098 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +100099 debug("Received SIGCHLD.");
100 child_terminated = 1;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000101 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000102 errno = save_errno;
103}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
Damien Miller95def091999-11-25 00:26:21 +1100105/*
Damien Miller95def091999-11-25 00:26:21 +1100106 * Make packets from buffered stderr data, and buffer it for sending
107 * to the client.
108 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000109static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000110make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111{
Damien Miller95def091999-11-25 00:26:21 +1100112 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Miller95def091999-11-25 00:26:21 +1100114 /* Send buffered stderr data to the client. */
115 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100116 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100117 len = buffer_len(&stderr_buffer);
118 if (packet_is_interactive()) {
119 if (len > 512)
120 len = 512;
121 } else {
122 /* Keep the packets at reasonable size. */
123 if (len > packet_get_maxsize())
124 len = packet_get_maxsize();
125 }
126 packet_start(SSH_SMSG_STDERR_DATA);
127 packet_put_string(buffer_ptr(&stderr_buffer), len);
128 packet_send();
129 buffer_consume(&stderr_buffer, len);
130 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132}
133
Damien Miller95def091999-11-25 00:26:21 +1100134/*
135 * Make packets from buffered stdout data, and buffer it for sending to the
136 * client.
137 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000138static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000139make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140{
Damien Miller95def091999-11-25 00:26:21 +1100141 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller95def091999-11-25 00:26:21 +1100143 /* Send buffered stdout data to the client. */
144 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100145 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100146 len = buffer_len(&stdout_buffer);
147 if (packet_is_interactive()) {
148 if (len > 512)
149 len = 512;
150 } else {
151 /* Keep the packets at reasonable size. */
152 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000153 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100154 }
155 packet_start(SSH_SMSG_STDOUT_DATA);
156 packet_put_string(buffer_ptr(&stdout_buffer), len);
157 packet_send();
158 buffer_consume(&stdout_buffer, len);
159 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161}
162
Damien Miller95def091999-11-25 00:26:21 +1100163/*
164 * Sleep in select() until we can do something. This will initialize the
165 * select masks. Upon return, the masks will indicate which descriptors
166 * have data or can accept data. Optionally, a maximum time can be specified
167 * for the duration of the wait (0 = infinite).
168 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000169static void
Damien Miller5e953212001-01-30 09:14:00 +1100170wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
171 u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172{
Damien Miller95def091999-11-25 00:26:21 +1100173 struct timeval tv, *tvp;
174 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000175 int client_alive_scheduled = 0;
176
177 /*
178 * if using client_alive, set the max timeout accordingly,
179 * and indicate that this particular timeout was for client
180 * alive by setting the client_alive_scheduled flag.
181 *
182 * this could be randomized somewhat to make traffic
183 * analysis more difficult, but we're not doing it yet.
184 */
185 if (max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000186 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000187 max_time_milliseconds = options.client_alive_interval * 1000;
188 } else
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000189 client_alive_scheduled = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Damien Miller95def091999-11-25 00:26:21 +1100191 /* When select fails we restart from here. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192retry_select:
193
Damien Miller5e953212001-01-30 09:14:00 +1100194 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000195 channel_prepare_select(readsetp, writesetp, maxfdp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Damien Millerefb4afe2000-04-12 18:45:05 +1000197 if (compat20) {
Damien Millere247cc42000-05-07 12:03:14 +1000198 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000199 if (channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100200 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000201 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000202 /*
203 * Read packets from the client unless we have too much
204 * buffered stdin or channel data.
205 */
206 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000207 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100208 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000209 /*
210 * If there is not too much data already buffered going to
211 * the client, try to get some more data from the program.
212 */
213 if (packet_not_very_much_data_to_write()) {
214 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100215 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000216 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100217 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000218 }
219 /*
220 * If we have buffered data, try to write some of that data
221 * to the program.
222 */
223 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100224 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000225 }
Damien Miller95def091999-11-25 00:26:21 +1100226
Damien Miller5428f641999-11-25 11:54:57 +1100227 /*
228 * If we have buffered packet data going to the client, mark that
229 * descriptor.
230 */
Damien Miller95def091999-11-25 00:26:21 +1100231 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100232 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100233
Damien Miller5428f641999-11-25 11:54:57 +1100234 /*
235 * If child has terminated and there is enough buffer space to read
236 * from it, then read as much as is available and exit.
237 */
Damien Miller95def091999-11-25 00:26:21 +1100238 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000239 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100240 max_time_milliseconds = 100;
241
242 if (max_time_milliseconds == 0)
243 tvp = NULL;
244 else {
245 tv.tv_sec = max_time_milliseconds / 1000;
246 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
247 tvp = &tv;
248 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000249 if (tvp!=NULL)
Ben Lindstromf4c73112001-03-05 05:58:23 +0000250 debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100251
252 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100253 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100254
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000255 if (ret == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100256 if (errno != EINTR)
257 error("select: %.100s", strerror(errno));
258 else
259 goto retry_select;
260 }
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000261 if (ret == 0 && client_alive_scheduled) {
262 /* timeout, check to see how many we have had */
263 client_alive_timeouts++;
264
265 if (client_alive_timeouts > options.client_alive_count_max ) {
266 packet_disconnect(
267 "Timeout, your session not responding.");
268 } else {
269 /*
270 * send a bogus channel request with "wantreply"
271 * we should get back a failure
272 */
273 int id;
274
275 id = channel_find_open();
276 if (id != -1) {
277 channel_request_start(id,
278 "keepalive@openssh.com", 1);
279 packet_send();
280 } else
281 packet_disconnect(
282 "No open channels after timeout!");
283 }
284 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285}
286
Damien Miller95def091999-11-25 00:26:21 +1100287/*
288 * Processes input from the client and the program. Input data is stored
289 * in buffers and processed later.
290 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000291static void
Damien Miller95def091999-11-25 00:26:21 +1100292process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293{
Damien Miller95def091999-11-25 00:26:21 +1100294 int len;
295 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller95def091999-11-25 00:26:21 +1100297 /* Read and buffer any input data from the client. */
298 if (FD_ISSET(connection_in, readset)) {
299 len = read(connection_in, buf, sizeof(buf));
300 if (len == 0) {
301 verbose("Connection closed by remote host.");
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000302 connection_closed = 1;
303 if (compat20)
304 return;
Damien Miller95def091999-11-25 00:26:21 +1100305 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000306 } else if (len < 0) {
307 if (errno != EINTR && errno != EAGAIN) {
308 verbose("Read error from remote host: %.100s", strerror(errno));
309 fatal_cleanup();
310 }
311 } else {
312 /* Buffer any received data. */
313 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100314 }
Damien Miller95def091999-11-25 00:26:21 +1100315 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000316 if (compat20)
317 return;
318
Damien Miller95def091999-11-25 00:26:21 +1100319 /* Read and buffer any available stdout data from the program. */
320 if (!fdout_eof && FD_ISSET(fdout, readset)) {
321 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000322 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
323 /* do nothing */
324 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100325 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000326 } else {
Damien Miller95def091999-11-25 00:26:21 +1100327 buffer_append(&stdout_buffer, buf, len);
328 fdout_bytes += len;
329 }
330 }
331 /* Read and buffer any available stderr data from the program. */
332 if (!fderr_eof && FD_ISSET(fderr, readset)) {
333 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000334 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
335 /* do nothing */
336 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100337 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000338 } else {
Damien Miller95def091999-11-25 00:26:21 +1100339 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000340 }
Damien Miller95def091999-11-25 00:26:21 +1100341 }
342}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller95def091999-11-25 00:26:21 +1100344/*
345 * Sends data from internal buffers to client program stdin.
346 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000347static void
Damien Miller95def091999-11-25 00:26:21 +1100348process_output(fd_set * writeset)
349{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000350 struct termios tio;
Damien Miller95def091999-11-25 00:26:21 +1100351 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
Damien Miller95def091999-11-25 00:26:21 +1100353 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000354 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Damien Miller95def091999-11-25 00:26:21 +1100355 len = write(fdin, buffer_ptr(&stdin_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100356 buffer_len(&stdin_buffer));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000357 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
358 /* do nothing */
359 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100360#ifdef USE_PIPES
361 close(fdin);
362#else
Damien Millerb38eff82000-04-01 11:09:21 +1000363 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100364 close(fdin);
365 else
366 shutdown(fdin, SHUT_WR); /* We will no longer send. */
367#endif
368 fdin = -1;
369 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000370 /* Successful write. */
Damien Miller225736c2001-02-19 21:51:08 +1100371 if (fdin_is_tty && tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100372 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000373 /*
374 * Simulate echo to reduce the impact of
375 * traffic analysis
376 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000377 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000378 packet_send();
379 }
380 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100381 buffer_consume(&stdin_buffer, len);
382 /* Update the count of bytes written to the program. */
383 stdin_bytes += len;
384 }
385 }
386 /* Send any buffered packet data to the client. */
387 if (FD_ISSET(connection_out, writeset))
388 packet_write_poll();
389}
390
391/*
392 * Wait until all buffered output has been sent to the client.
393 * This is used when the program terminates.
394 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000395static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000396drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100397{
398 /* Send any buffered stdout data to the client. */
399 if (buffer_len(&stdout_buffer) > 0) {
400 packet_start(SSH_SMSG_STDOUT_DATA);
401 packet_put_string(buffer_ptr(&stdout_buffer),
402 buffer_len(&stdout_buffer));
403 packet_send();
404 /* Update the count of sent bytes. */
405 stdout_bytes += buffer_len(&stdout_buffer);
406 }
407 /* Send any buffered stderr data to the client. */
408 if (buffer_len(&stderr_buffer) > 0) {
409 packet_start(SSH_SMSG_STDERR_DATA);
410 packet_put_string(buffer_ptr(&stderr_buffer),
411 buffer_len(&stderr_buffer));
412 packet_send();
413 /* Update the count of sent bytes. */
414 stderr_bytes += buffer_len(&stderr_buffer);
415 }
416 /* Wait until all buffered data has been written to the client. */
417 packet_write_wait();
418}
419
Ben Lindstrombba81212001-06-25 05:01:22 +0000420static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000421process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000422{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000423 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000424}
425
Damien Miller95def091999-11-25 00:26:21 +1100426/*
427 * Performs the interactive session. This handles data transmission between
428 * the client and the program. Note that the notion of stdin, stdout, and
429 * stderr in this function is sort of reversed: this function writes to
430 * stdin (of the child program), and reads from stdout and stderr (of the
431 * child program).
432 */
Damien Miller4af51302000-04-16 11:18:38 +1000433void
Damien Miller166fca82000-04-20 07:42:21 +1000434server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100435{
Damien Miller5e953212001-01-30 09:14:00 +1100436 fd_set *readset = NULL, *writeset = NULL;
437 int max_fd;
Damien Miller166fca82000-04-20 07:42:21 +1000438 int wait_status; /* Status returned by wait(). */
439 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100440 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000441 u_int max_time_milliseconds;
442 u_int previous_stdout_buffer_bytes;
443 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100444 int type;
445
446 debug("Entering interactive session.");
447
448 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100449 child_terminated = 0;
450 signal(SIGCHLD, sigchld_handler);
451
452 /* Initialize our global variables. */
453 fdin = fdin_arg;
454 fdout = fdout_arg;
455 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000456
457 /* nonblocking IO */
458 set_nonblock(fdin);
459 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000460 /* we don't have stderr for interactive terminal sessions, see below */
461 if (fderr != -1)
462 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000463
Damien Miller225736c2001-02-19 21:51:08 +1100464 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
465 fdin_is_tty = 1;
466
Damien Miller95def091999-11-25 00:26:21 +1100467 connection_in = packet_get_connection_in();
468 connection_out = packet_get_connection_out();
469
470 previous_stdout_buffer_bytes = 0;
471
472 /* Set approximate I/O buffer size. */
473 if (packet_is_interactive())
474 buffer_high = 4096;
475 else
476 buffer_high = 64 * 1024;
477
478 /* Initialize max_fd to the maximum of the known file descriptors. */
Damien Miller5e953212001-01-30 09:14:00 +1100479 max_fd = MAX(fdin, fdout);
480 if (fderr != -1)
481 max_fd = MAX(max_fd, fderr);
482 max_fd = MAX(max_fd, connection_in);
483 max_fd = MAX(max_fd, connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100484
485 /* Initialize Initialize buffers. */
486 buffer_init(&stdin_buffer);
487 buffer_init(&stdout_buffer);
488 buffer_init(&stderr_buffer);
489
Damien Miller5428f641999-11-25 11:54:57 +1100490 /*
491 * If we have no separate fderr (which is the case when we have a pty
492 * - there we cannot make difference between data sent to stdout and
493 * stderr), indicate that we have seen an EOF from stderr. This way
494 * we don\'t need to check the descriptor everywhere.
495 */
Damien Miller95def091999-11-25 00:26:21 +1100496 if (fderr == -1)
497 fderr_eof = 1;
498
Damien Millerb38eff82000-04-01 11:09:21 +1000499 server_init_dispatch();
500
Damien Miller95def091999-11-25 00:26:21 +1100501 /* Main loop of the server for the interactive session mode. */
502 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100503
504 /* Process buffered packets from the client. */
505 process_buffered_input_packets();
506
Damien Miller5428f641999-11-25 11:54:57 +1100507 /*
508 * If we have received eof, and there is no more pending
509 * input data, cause a real eof by closing fdin.
510 */
Damien Miller95def091999-11-25 00:26:21 +1100511 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
512#ifdef USE_PIPES
513 close(fdin);
514#else
Damien Millerb38eff82000-04-01 11:09:21 +1000515 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100516 close(fdin);
517 else
518 shutdown(fdin, SHUT_WR); /* We will no longer send. */
519#endif
520 fdin = -1;
521 }
Damien Miller5428f641999-11-25 11:54:57 +1100522 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100523 make_packets_from_stderr_data();
524
Damien Miller5428f641999-11-25 11:54:57 +1100525 /*
526 * Make packets from buffered stdout data to send to the
527 * client. If there is very little to send, this arranges to
528 * not send them now, but to wait a short while to see if we
529 * are getting more data. This is necessary, as some systems
530 * wake up readers from a pty after each separate character.
531 */
Damien Miller95def091999-11-25 00:26:21 +1100532 max_time_milliseconds = 0;
533 stdout_buffer_bytes = buffer_len(&stdout_buffer);
534 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
535 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
536 /* try again after a while */
537 max_time_milliseconds = 10;
538 } else {
539 /* Send it now. */
540 make_packets_from_stdout_data();
541 }
542 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
543
544 /* Send channel data to the client. */
545 if (packet_not_very_much_data_to_write())
546 channel_output_poll();
547
Damien Miller5428f641999-11-25 11:54:57 +1100548 /*
549 * Bail out of the loop if the program has closed its output
550 * descriptors, and we have no more data to send to the
551 * client, and there is no pending buffered data.
552 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100553 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
554 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100555 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000556 break;
Damien Miller95def091999-11-25 00:26:21 +1100557 if (!waiting_termination) {
558 const char *s = "Waiting for forwarded connections to terminate...\r\n";
559 char *cp;
560 waiting_termination = 1;
561 buffer_append(&stderr_buffer, s, strlen(s));
562
563 /* Display list of open channels. */
564 cp = channel_open_message();
565 buffer_append(&stderr_buffer, cp, strlen(cp));
566 xfree(cp);
567 }
568 }
569 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100570 wait_until_can_do_something(&readset, &writeset, &max_fd,
571 max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100572
573 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100574 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100575
576 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100577 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100578
579 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100580 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100581 }
Damien Miller5e953212001-01-30 09:14:00 +1100582 if (readset)
583 xfree(readset);
584 if (writeset)
585 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100586
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Cleanup and termination code. */
588
589 /* Wait until all output has been sent to the client. */
590 drain_output();
591
592 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
593 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
594
595 /* Free and clear the buffers. */
596 buffer_free(&stdin_buffer);
597 buffer_free(&stdout_buffer);
598 buffer_free(&stderr_buffer);
599
600 /* Close the file descriptors. */
601 if (fdout != -1)
602 close(fdout);
603 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100605 if (fderr != -1)
606 close(fderr);
607 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100609 if (fdin != -1)
610 close(fdin);
611 fdin = -1;
612
Ben Lindstrom601e4362001-06-21 03:19:23 +0000613 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100614
Damien Miller95def091999-11-25 00:26:21 +1100615 /* We no longer want our SIGCHLD handler to be called. */
616 signal(SIGCHLD, SIG_DFL);
617
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000618 wait_pid = waitpid(-1, &wait_status, child_terminated ? WNOHANG : 0);
619 if (wait_pid == -1)
620 packet_disconnect("wait: %.100s", strerror(errno));
621 else if (wait_pid != pid)
622 error("Strange, wait returned pid %d, expected %d",
623 wait_pid, pid);
624
Damien Miller95def091999-11-25 00:26:21 +1100625 /* Check if it exited normally. */
626 if (WIFEXITED(wait_status)) {
627 /* Yes, normal exit. Get exit status and send it to the client. */
628 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
629 packet_start(SSH_SMSG_EXITSTATUS);
630 packet_put_int(WEXITSTATUS(wait_status));
631 packet_send();
632 packet_write_wait();
633
Damien Miller5428f641999-11-25 11:54:57 +1100634 /*
635 * Wait for exit confirmation. Note that there might be
636 * other packets coming before it; however, the program has
637 * already died so we just ignore them. The client is
638 * supposed to respond with the confirmation when it receives
639 * the exit status.
640 */
Damien Miller95def091999-11-25 00:26:21 +1100641 do {
642 int plen;
643 type = packet_read(&plen);
644 }
645 while (type != SSH_CMSG_EXIT_CONFIRMATION);
646
647 debug("Received exit confirmation.");
648 return;
649 }
650 /* Check if the program terminated due to a signal. */
651 if (WIFSIGNALED(wait_status))
652 packet_disconnect("Command terminated on signal %d.",
653 WTERMSIG(wait_status));
654
655 /* Some weird exit cause. Just exit. */
656 packet_disconnect("wait returned status %04x.", wait_status);
657 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658}
Damien Millerb38eff82000-04-01 11:09:21 +1000659
Damien Miller4af51302000-04-16 11:18:38 +1000660void
Damien Millerefb4afe2000-04-12 18:45:05 +1000661server_loop2(void)
662{
Damien Miller5e953212001-01-30 09:14:00 +1100663 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000664 int rekeying = 0, max_fd, status;
Damien Millerefb4afe2000-04-12 18:45:05 +1000665 pid_t pid;
666
667 debug("Entering interactive session for SSH2.");
668
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000669 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000670 child_terminated = 0;
671 connection_in = packet_get_connection_in();
672 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100673
674 max_fd = MAX(connection_in, connection_out);
675
Damien Millerefb4afe2000-04-12 18:45:05 +1000676 server_init_dispatch();
677
678 for (;;) {
679 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000680
Ben Lindstroma3700052001-04-05 23:26:32 +0000681 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000682
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000683 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000684 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000685 wait_until_can_do_something(&readset, &writeset, &max_fd,
686 rekeying);
Damien Miller43dc8da2000-11-29 15:55:17 +1100687 if (child_terminated) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000688 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
689 session_close_by_pid(pid, status);
690 child_terminated = 0;
691 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000692 if (!rekeying)
693 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100694 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000695 if (connection_closed)
696 break;
Damien Miller5e953212001-01-30 09:14:00 +1100697 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000698 }
Damien Miller5e953212001-01-30 09:14:00 +1100699 if (readset)
700 xfree(readset);
701 if (writeset)
702 xfree(writeset);
703
Ben Lindstrom601e4362001-06-21 03:19:23 +0000704 channel_free_all();
705
Damien Millerefb4afe2000-04-12 18:45:05 +1000706 signal(SIGCHLD, SIG_DFL);
707 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
708 session_close_by_pid(pid, status);
Damien Millerefb4afe2000-04-12 18:45:05 +1000709}
710
Ben Lindstrombba81212001-06-25 05:01:22 +0000711static void
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000712server_input_channel_failure(int type, int plen, void *ctxt)
713{
714 debug("Got CHANNEL_FAILURE for keepalive");
715 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000716 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000717 * even if this was generated by something other than
718 * the bogus CHANNEL_REQUEST we send for keepalives.
719 */
720 client_alive_timeouts = 0;
721}
722
723
Ben Lindstrombba81212001-06-25 05:01:22 +0000724static void
Damien Miller62cee002000-09-23 17:15:56 +1100725server_input_stdin_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000726{
727 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000728 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000729
730 /* Stdin data from the client. Append it to the buffer. */
731 /* Ignore any data if the client has closed stdin. */
732 if (fdin == -1)
733 return;
734 data = packet_get_string(&data_len);
735 packet_integrity_check(plen, (4 + data_len), type);
736 buffer_append(&stdin_buffer, data, data_len);
737 memset(data, 0, data_len);
738 xfree(data);
739}
740
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static void
Damien Miller62cee002000-09-23 17:15:56 +1100742server_input_eof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000743{
744 /*
745 * Eof from the client. The stdin descriptor to the
746 * program will be closed when all buffered data has
747 * drained.
748 */
749 debug("EOF received for stdin.");
750 packet_integrity_check(plen, 0, type);
751 stdin_eof = 1;
752}
753
Ben Lindstrombba81212001-06-25 05:01:22 +0000754static void
Damien Miller62cee002000-09-23 17:15:56 +1100755server_input_window_size(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000756{
757 int row = packet_get_int();
758 int col = packet_get_int();
759 int xpixel = packet_get_int();
760 int ypixel = packet_get_int();
761
762 debug("Window change received.");
763 packet_integrity_check(plen, 4 * 4, type);
764 if (fdin != -1)
765 pty_change_window_size(fdin, row, col, xpixel, ypixel);
766}
767
Ben Lindstrombba81212001-06-25 05:01:22 +0000768static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100769server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000770{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000771 Channel *c;
772 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000773 char *target, *originator;
774 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000775
Damien Miller4af51302000-04-16 11:18:38 +1000776 target = packet_get_string(NULL);
777 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000778 originator = packet_get_string(NULL);
779 originator_port = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +1000780 packet_done();
Damien Millerb1715dc2000-05-30 13:44:51 +1000781
Damien Miller0bc1bd82000-11-13 22:57:25 +1100782 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000783 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000784
Damien Millerefb4afe2000-04-12 18:45:05 +1000785 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000786 sock = channel_connect_to(target, target_port);
787 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000788 xfree(originator);
789 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100790 return NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000791 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100792 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100793 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000794 if (c == NULL) {
795 error("server_request_direct_tcpip: channel_new failed");
796 close(sock);
797 }
798 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100799}
800
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100802server_request_session(char *ctype)
803{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000804 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100805
806 debug("input_session_request");
807 packet_done();
808 /*
809 * A server session has no fd to read or write until a
810 * CHANNEL_REQUEST for a shell is made, so we set the type to
811 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
812 * CHANNEL_REQUEST messages is registered.
813 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000814 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
815 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100816 0, xstrdup("server-session"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000817 if (c == NULL) {
818 error("server_request_session: channel_new failed");
819 return NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100820 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000821 if (session_open(c->self) != 1) {
822 debug("session open failed, free channel %d", c->self);
823 channel_free(c);
824 return NULL;
825 }
826 channel_register_callback(c->self, SSH2_MSG_CHANNEL_REQUEST,
827 session_input_channel_req, (void *)0);
828 channel_register_cleanup(c->self, session_close_by_channel);
829 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000830}
831
Ben Lindstrombba81212001-06-25 05:01:22 +0000832static void
Damien Miller62cee002000-09-23 17:15:56 +1100833server_input_channel_open(int type, int plen, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000834{
835 Channel *c = NULL;
836 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000837 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000838 int rchan;
839 int rmaxpack;
840 int rwindow;
841
842 ctype = packet_get_string(&len);
843 rchan = packet_get_int();
844 rwindow = packet_get_int();
845 rmaxpack = packet_get_int();
846
Damien Miller62cee002000-09-23 17:15:56 +1100847 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000848 ctype, rchan, rwindow, rmaxpack);
849
850 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000852 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100853 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000854 }
855 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100856 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000857 c->remote_id = rchan;
858 c->remote_window = rwindow;
859 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000860 if (c->type != SSH_CHANNEL_CONNECTING) {
861 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
862 packet_put_int(c->remote_id);
863 packet_put_int(c->self);
864 packet_put_int(c->local_window);
865 packet_put_int(c->local_maxpacket);
866 packet_send();
867 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000868 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100869 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000870 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
871 packet_put_int(rchan);
872 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +0000873 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +0000874 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000875 packet_put_cstring("");
876 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000877 packet_send();
878 }
879 xfree(ctype);
880}
881
Ben Lindstrombba81212001-06-25 05:01:22 +0000882static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883server_input_global_request(int type, int plen, void *ctxt)
884{
885 char *rtype;
886 int want_reply;
887 int success = 0;
888
889 rtype = packet_get_string(NULL);
890 want_reply = packet_get_char();
891 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000892
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000893 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100894 if (strcmp(rtype, "tcpip-forward") == 0) {
895 struct passwd *pw;
896 char *listen_address;
897 u_short listen_port;
898
899 pw = auth_get_user();
900 if (pw == NULL)
901 fatal("server_input_global_request: no user");
902 listen_address = packet_get_string(NULL); /* XXX currently ignored */
903 listen_port = (u_short)packet_get_int();
904 debug("server_input_global_request: tcpip-forward listen %s port %d",
905 listen_address, listen_port);
906
907 /* check permissions */
908 if (!options.allow_tcp_forwarding ||
909 no_port_forwarding_flag ||
910 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) {
911 success = 0;
912 packet_send_debug("Server has disabled port forwarding.");
913 } else {
914 /* Start listening on the port */
Kevin Steves12057502001-02-05 14:54:34 +0000915 success = channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100916 listen_address, listen_port,
917 /*unspec host_to_connect*/ "<unspec host>",
918 /*unspec port_to_connect*/ 0,
919 options.gateway_ports, /*remote*/ 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100920 }
921 xfree(listen_address);
922 }
923 if (want_reply) {
924 packet_start(success ?
925 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
926 packet_send();
927 packet_write_wait();
928 }
929 xfree(rtype);
930}
931
Ben Lindstrombba81212001-06-25 05:01:22 +0000932static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000933server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000934{
935 debug("server_init_dispatch_20");
936 dispatch_init(&dispatch_protocol_error);
937 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
938 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
939 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
940 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
941 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
942 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
943 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
944 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
945 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100946 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000947 /* client_alive */
948 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000949 /* rekeying */
950 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000951}
Ben Lindstrombba81212001-06-25 05:01:22 +0000952static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000953server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000954{
955 debug("server_init_dispatch_13");
956 dispatch_init(NULL);
957 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
958 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
959 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
960 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
961 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
962 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
963 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
964 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
965 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
966}
Ben Lindstrombba81212001-06-25 05:01:22 +0000967static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000968server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000969{
970 server_init_dispatch_13();
971 debug("server_init_dispatch_15");
972 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
973 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
974}
Ben Lindstrombba81212001-06-25 05:01:22 +0000975static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000976server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000977{
Damien Millerefb4afe2000-04-12 18:45:05 +1000978 if (compat20)
979 server_init_dispatch_20();
980 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000981 server_init_dispatch_13();
982 else
983 server_init_dispatch_15();
984}
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000985