blob: 4577cc804adff9fa7e5562fb8d0053a64fc5f659 [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"
Damien Miller8c3902a2001-10-10 15:01:40 +100038RCSID("$OpenBSD: serverloop.c,v 1.79 2001/10/04 15:12:37 markus Exp $");
Damien Miller69b69aa2000-10-28 14:19:58 +110039
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041#include "packet.h"
42#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000045#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000046#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100047#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100049#include "ssh2.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000050#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100051#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100052#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100053#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "serverloop.h"
55#include "misc.h"
Ben Lindstrom8ac91062001-04-04 17:57:54 +000056#include "kex.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller50a41ed2000-10-16 12:14:42 +110058extern ServerOptions options;
59
Ben Lindstrom8ac91062001-04-04 17:57:54 +000060/* XXX */
61extern Kex *xxx_kex;
Ben Lindstrombddd5512001-07-04 04:53:53 +000062static Authctxt *xxx_authctxt;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000063
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064static Buffer stdin_buffer; /* Buffer for stdin data. */
65static Buffer stdout_buffer; /* Buffer for stdout data. */
66static Buffer stderr_buffer; /* Buffer for stderr data. */
67static int fdin; /* Descriptor for stdin (for writing) */
68static int fdout; /* Descriptor for stdout (for reading);
69 May be same number as fdin. */
70static int fderr; /* Descriptor for stderr. May be -1. */
71static long stdin_bytes = 0; /* Number of bytes written to stdin. */
72static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
73static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
74static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
75static int stdin_eof = 0; /* EOF message received from client. */
76static int fdout_eof = 0; /* EOF encountered reading from fdout. */
77static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +110078static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079static int connection_in; /* Connection to client (input). */
80static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +000081static int connection_closed = 0; /* Connection to client closed. */
82static u_int buffer_high; /* "Soft" max buffer size. */
Damien Miller8c3902a2001-10-10 15:01:40 +100083static int client_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller5428f641999-11-25 11:54:57 +110085/*
86 * This SIGCHLD kludge is used to detect when the child exits. The server
87 * will exit after that, as soon as forwarded connections have terminated.
88 */
Ben Lindstrombba81212001-06-25 05:01:22 +000089
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090static volatile int child_terminated; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091
Ben Lindstrombba81212001-06-25 05:01:22 +000092/* prototypes */
93static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +100094
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 Miller8c3902a2001-10-10 15:01:40 +1000163static void
164client_alive_check(void)
165{
166 int id;
167
168 /* timeout, check to see how many we have had */
169 if (++client_alive_timeouts > options.client_alive_count_max)
170 packet_disconnect("Timeout, your session not responding.");
171
172 id = channel_find_open();
173 if (id == -1)
174 packet_disconnect("No open channels after timeout!");
175 /*
176 * send a bogus channel request with "wantreply",
177 * we should get back a failure
178 */
179 channel_request_start(id, "keepalive@openssh.com", 1);
180 packet_send();
181}
182
Damien Miller95def091999-11-25 00:26:21 +1100183/*
184 * Sleep in select() until we can do something. This will initialize the
185 * select masks. Upon return, the masks will indicate which descriptors
186 * have data or can accept data. Optionally, a maximum time can be specified
187 * for the duration of the wait (0 = infinite).
188 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000189static void
Damien Miller5e953212001-01-30 09:14:00 +1100190wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000191 int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192{
Damien Miller95def091999-11-25 00:26:21 +1100193 struct timeval tv, *tvp;
194 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000195 int client_alive_scheduled = 0;
196
197 /*
198 * if using client_alive, set the max timeout accordingly,
199 * and indicate that this particular timeout was for client
200 * alive by setting the client_alive_scheduled flag.
201 *
202 * this could be randomized somewhat to make traffic
203 * analysis more difficult, but we're not doing it yet.
204 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000205 if (compat20 &&
206 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000207 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000208 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000209 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210
Damien Miller95def091999-11-25 00:26:21 +1100211 /* When select fails we restart from here. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212retry_select:
213
Damien Miller5e953212001-01-30 09:14:00 +1100214 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000215 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Damien Millerefb4afe2000-04-12 18:45:05 +1000217 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000218#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000219 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000220 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000221#endif
222 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000223 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000224 /*
225 * Read packets from the client unless we have too much
226 * buffered stdin or channel data.
227 */
228 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000229 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100230 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000231 /*
232 * If there is not too much data already buffered going to
233 * the client, try to get some more data from the program.
234 */
235 if (packet_not_very_much_data_to_write()) {
236 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100237 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000238 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100239 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000240 }
241 /*
242 * If we have buffered data, try to write some of that data
243 * to the program.
244 */
245 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100246 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000247 }
Damien Miller95def091999-11-25 00:26:21 +1100248
Damien Miller5428f641999-11-25 11:54:57 +1100249 /*
250 * If we have buffered packet data going to the client, mark that
251 * descriptor.
252 */
Damien Miller95def091999-11-25 00:26:21 +1100253 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100254 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100255
Damien Miller5428f641999-11-25 11:54:57 +1100256 /*
257 * If child has terminated and there is enough buffer space to read
258 * from it, then read as much as is available and exit.
259 */
Damien Miller95def091999-11-25 00:26:21 +1100260 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000261 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100262 max_time_milliseconds = 100;
263
264 if (max_time_milliseconds == 0)
265 tvp = NULL;
266 else {
267 tv.tv_sec = max_time_milliseconds / 1000;
268 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
269 tvp = &tv;
270 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000271 if (tvp!=NULL)
Ben Lindstromf4c73112001-03-05 05:58:23 +0000272 debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100273
274 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100275 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100276
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000277 if (ret == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100278 if (errno != EINTR)
279 error("select: %.100s", strerror(errno));
280 else
281 goto retry_select;
282 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000283 if (ret == 0 && client_alive_scheduled)
284 client_alive_check();
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;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000351 u_char *data;
352 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100353 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller95def091999-11-25 00:26:21 +1100355 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000356 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000357 data = buffer_ptr(&stdin_buffer);
358 dlen = buffer_len(&stdin_buffer);
359 len = write(fdin, data, dlen);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000360 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
361 /* do nothing */
362 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100363#ifdef USE_PIPES
364 close(fdin);
365#else
Damien Millerb38eff82000-04-01 11:09:21 +1000366 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100367 close(fdin);
368 else
369 shutdown(fdin, SHUT_WR); /* We will no longer send. */
370#endif
371 fdin = -1;
372 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000373 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000374 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
375 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100376 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000377 /*
378 * Simulate echo to reduce the impact of
379 * traffic analysis
380 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000381 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000382 packet_send();
383 }
384 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100385 buffer_consume(&stdin_buffer, len);
386 /* Update the count of bytes written to the program. */
387 stdin_bytes += len;
388 }
389 }
390 /* Send any buffered packet data to the client. */
391 if (FD_ISSET(connection_out, writeset))
392 packet_write_poll();
393}
394
395/*
396 * Wait until all buffered output has been sent to the client.
397 * This is used when the program terminates.
398 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000399static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000400drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100401{
402 /* Send any buffered stdout data to the client. */
403 if (buffer_len(&stdout_buffer) > 0) {
404 packet_start(SSH_SMSG_STDOUT_DATA);
405 packet_put_string(buffer_ptr(&stdout_buffer),
406 buffer_len(&stdout_buffer));
407 packet_send();
408 /* Update the count of sent bytes. */
409 stdout_bytes += buffer_len(&stdout_buffer);
410 }
411 /* Send any buffered stderr data to the client. */
412 if (buffer_len(&stderr_buffer) > 0) {
413 packet_start(SSH_SMSG_STDERR_DATA);
414 packet_put_string(buffer_ptr(&stderr_buffer),
415 buffer_len(&stderr_buffer));
416 packet_send();
417 /* Update the count of sent bytes. */
418 stderr_bytes += buffer_len(&stderr_buffer);
419 }
420 /* Wait until all buffered data has been written to the client. */
421 packet_write_wait();
422}
423
Ben Lindstrombba81212001-06-25 05:01:22 +0000424static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000425process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000426{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000427 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000428}
429
Damien Miller95def091999-11-25 00:26:21 +1100430/*
431 * Performs the interactive session. This handles data transmission between
432 * the client and the program. Note that the notion of stdin, stdout, and
433 * stderr in this function is sort of reversed: this function writes to
434 * stdin (of the child program), and reads from stdout and stderr (of the
435 * child program).
436 */
Damien Miller4af51302000-04-16 11:18:38 +1000437void
Damien Miller166fca82000-04-20 07:42:21 +1000438server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100439{
Damien Miller5e953212001-01-30 09:14:00 +1100440 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000441 int max_fd = 0, nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000442 int wait_status; /* Status returned by wait(). */
443 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100444 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000445 u_int max_time_milliseconds;
446 u_int previous_stdout_buffer_bytes;
447 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100448 int type;
449
450 debug("Entering interactive session.");
451
452 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100453 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000454 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100455
456 /* Initialize our global variables. */
457 fdin = fdin_arg;
458 fdout = fdout_arg;
459 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000460
461 /* nonblocking IO */
462 set_nonblock(fdin);
463 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000464 /* we don't have stderr for interactive terminal sessions, see below */
465 if (fderr != -1)
466 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000467
Damien Miller225736c2001-02-19 21:51:08 +1100468 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
469 fdin_is_tty = 1;
470
Damien Miller95def091999-11-25 00:26:21 +1100471 connection_in = packet_get_connection_in();
472 connection_out = packet_get_connection_out();
473
474 previous_stdout_buffer_bytes = 0;
475
476 /* Set approximate I/O buffer size. */
477 if (packet_is_interactive())
478 buffer_high = 4096;
479 else
480 buffer_high = 64 * 1024;
481
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000482#if 0
Damien Miller95def091999-11-25 00:26:21 +1100483 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000484 max_fd = MAX(connection_in, connection_out);
485 max_fd = MAX(max_fd, fdin);
486 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100487 if (fderr != -1)
488 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000489#endif
Damien Miller95def091999-11-25 00:26:21 +1100490
491 /* Initialize Initialize buffers. */
492 buffer_init(&stdin_buffer);
493 buffer_init(&stdout_buffer);
494 buffer_init(&stderr_buffer);
495
Damien Miller5428f641999-11-25 11:54:57 +1100496 /*
497 * If we have no separate fderr (which is the case when we have a pty
498 * - there we cannot make difference between data sent to stdout and
499 * stderr), indicate that we have seen an EOF from stderr. This way
500 * we don\'t need to check the descriptor everywhere.
501 */
Damien Miller95def091999-11-25 00:26:21 +1100502 if (fderr == -1)
503 fderr_eof = 1;
504
Damien Millerb38eff82000-04-01 11:09:21 +1000505 server_init_dispatch();
506
Damien Miller95def091999-11-25 00:26:21 +1100507 /* Main loop of the server for the interactive session mode. */
508 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100509
510 /* Process buffered packets from the client. */
511 process_buffered_input_packets();
512
Damien Miller5428f641999-11-25 11:54:57 +1100513 /*
514 * If we have received eof, and there is no more pending
515 * input data, cause a real eof by closing fdin.
516 */
Damien Miller95def091999-11-25 00:26:21 +1100517 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
518#ifdef USE_PIPES
519 close(fdin);
520#else
Damien Millerb38eff82000-04-01 11:09:21 +1000521 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100522 close(fdin);
523 else
524 shutdown(fdin, SHUT_WR); /* We will no longer send. */
525#endif
526 fdin = -1;
527 }
Damien Miller5428f641999-11-25 11:54:57 +1100528 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100529 make_packets_from_stderr_data();
530
Damien Miller5428f641999-11-25 11:54:57 +1100531 /*
532 * Make packets from buffered stdout data to send to the
533 * client. If there is very little to send, this arranges to
534 * not send them now, but to wait a short while to see if we
535 * are getting more data. This is necessary, as some systems
536 * wake up readers from a pty after each separate character.
537 */
Damien Miller95def091999-11-25 00:26:21 +1100538 max_time_milliseconds = 0;
539 stdout_buffer_bytes = buffer_len(&stdout_buffer);
540 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
541 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
542 /* try again after a while */
543 max_time_milliseconds = 10;
544 } else {
545 /* Send it now. */
546 make_packets_from_stdout_data();
547 }
548 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
549
550 /* Send channel data to the client. */
551 if (packet_not_very_much_data_to_write())
552 channel_output_poll();
553
Damien Miller5428f641999-11-25 11:54:57 +1100554 /*
555 * Bail out of the loop if the program has closed its output
556 * descriptors, and we have no more data to send to the
557 * client, and there is no pending buffered data.
558 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100559 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
560 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100561 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000562 break;
Damien Miller95def091999-11-25 00:26:21 +1100563 if (!waiting_termination) {
564 const char *s = "Waiting for forwarded connections to terminate...\r\n";
565 char *cp;
566 waiting_termination = 1;
567 buffer_append(&stderr_buffer, s, strlen(s));
568
569 /* Display list of open channels. */
570 cp = channel_open_message();
571 buffer_append(&stderr_buffer, cp, strlen(cp));
572 xfree(cp);
573 }
574 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000575 max_fd = MAX(connection_in, connection_out);
576 max_fd = MAX(max_fd, fdin);
577 max_fd = MAX(max_fd, fdout);
578 max_fd = MAX(max_fd, fderr);
579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100581 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000582 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100583
584 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100585 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100586
587 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100588 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100589
590 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100591 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100592 }
Damien Miller5e953212001-01-30 09:14:00 +1100593 if (readset)
594 xfree(readset);
595 if (writeset)
596 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100597
Damien Miller95def091999-11-25 00:26:21 +1100598 /* Cleanup and termination code. */
599
600 /* Wait until all output has been sent to the client. */
601 drain_output();
602
603 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
604 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
605
606 /* Free and clear the buffers. */
607 buffer_free(&stdin_buffer);
608 buffer_free(&stdout_buffer);
609 buffer_free(&stderr_buffer);
610
611 /* Close the file descriptors. */
612 if (fdout != -1)
613 close(fdout);
614 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100616 if (fderr != -1)
617 close(fderr);
618 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100620 if (fdin != -1)
621 close(fdin);
622 fdin = -1;
623
Ben Lindstrom601e4362001-06-21 03:19:23 +0000624 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100625
Damien Miller95def091999-11-25 00:26:21 +1100626 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000627 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100628
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000629 wait_pid = waitpid(-1, &wait_status, child_terminated ? WNOHANG : 0);
630 if (wait_pid == -1)
631 packet_disconnect("wait: %.100s", strerror(errno));
632 else if (wait_pid != pid)
633 error("Strange, wait returned pid %d, expected %d",
634 wait_pid, pid);
635
Damien Miller95def091999-11-25 00:26:21 +1100636 /* Check if it exited normally. */
637 if (WIFEXITED(wait_status)) {
638 /* Yes, normal exit. Get exit status and send it to the client. */
639 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
640 packet_start(SSH_SMSG_EXITSTATUS);
641 packet_put_int(WEXITSTATUS(wait_status));
642 packet_send();
643 packet_write_wait();
644
Damien Miller5428f641999-11-25 11:54:57 +1100645 /*
646 * Wait for exit confirmation. Note that there might be
647 * other packets coming before it; however, the program has
648 * already died so we just ignore them. The client is
649 * supposed to respond with the confirmation when it receives
650 * the exit status.
651 */
Damien Miller95def091999-11-25 00:26:21 +1100652 do {
653 int plen;
654 type = packet_read(&plen);
655 }
656 while (type != SSH_CMSG_EXIT_CONFIRMATION);
657
658 debug("Received exit confirmation.");
659 return;
660 }
661 /* Check if the program terminated due to a signal. */
662 if (WIFSIGNALED(wait_status))
663 packet_disconnect("Command terminated on signal %d.",
664 WTERMSIG(wait_status));
665
666 /* Some weird exit cause. Just exit. */
667 packet_disconnect("wait returned status %04x.", wait_status);
668 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669}
Damien Millerb38eff82000-04-01 11:09:21 +1000670
Damien Miller4af51302000-04-16 11:18:38 +1000671void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000672server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000673{
Damien Miller5e953212001-01-30 09:14:00 +1100674 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000675 int rekeying = 0, max_fd, status, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000676 pid_t pid;
677
678 debug("Entering interactive session for SSH2.");
679
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000680 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000681 child_terminated = 0;
682 connection_in = packet_get_connection_in();
683 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100684
685 max_fd = MAX(connection_in, connection_out);
Ben Lindstrombddd5512001-07-04 04:53:53 +0000686 xxx_authctxt = authctxt;
Damien Miller5e953212001-01-30 09:14:00 +1100687
Damien Millerefb4afe2000-04-12 18:45:05 +1000688 server_init_dispatch();
689
690 for (;;) {
691 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000692
Ben Lindstroma3700052001-04-05 23:26:32 +0000693 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000694
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000695 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000696 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000697 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000698 &nalloc, 0);
Damien Miller43dc8da2000-11-29 15:55:17 +1100699 if (child_terminated) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000700 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
701 session_close_by_pid(pid, status);
702 child_terminated = 0;
703 }
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000704 if (!rekeying)
705 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100706 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000707 if (connection_closed)
708 break;
Damien Miller5e953212001-01-30 09:14:00 +1100709 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000710 }
Damien Miller5e953212001-01-30 09:14:00 +1100711 if (readset)
712 xfree(readset);
713 if (writeset)
714 xfree(writeset);
715
Kevin Stevese26a1552001-07-26 17:51:49 +0000716 mysignal(SIGCHLD, SIG_DFL);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000717
Damien Millerefb4afe2000-04-12 18:45:05 +1000718 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
719 session_close_by_pid(pid, status);
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000720 /*
721 * there is a race between channel_free_all() killing children and
722 * children dying before kill()
723 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000724 channel_detach_all();
725 channel_stop_listening();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000726
727 while (session_have_children()) {
728 pid = waitpid(-1, &status, 0);
729 if (pid > 0)
730 session_close_by_pid(pid, status);
731 else {
732 error("waitpid returned %d: %s", pid, strerror(errno));
733 break;
734 }
735 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000736 channel_free_all();
Damien Millerefb4afe2000-04-12 18:45:05 +1000737}
738
Ben Lindstrombba81212001-06-25 05:01:22 +0000739static void
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000740server_input_channel_failure(int type, int plen, void *ctxt)
741{
742 debug("Got CHANNEL_FAILURE for keepalive");
743 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000744 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000745 * even if this was generated by something other than
746 * the bogus CHANNEL_REQUEST we send for keepalives.
747 */
748 client_alive_timeouts = 0;
749}
750
751
Ben Lindstrombba81212001-06-25 05:01:22 +0000752static void
Damien Miller62cee002000-09-23 17:15:56 +1100753server_input_stdin_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000754{
755 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000756 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000757
758 /* Stdin data from the client. Append it to the buffer. */
759 /* Ignore any data if the client has closed stdin. */
760 if (fdin == -1)
761 return;
762 data = packet_get_string(&data_len);
763 packet_integrity_check(plen, (4 + data_len), type);
764 buffer_append(&stdin_buffer, data, data_len);
765 memset(data, 0, data_len);
766 xfree(data);
767}
768
Ben Lindstrombba81212001-06-25 05:01:22 +0000769static void
Damien Miller62cee002000-09-23 17:15:56 +1100770server_input_eof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000771{
772 /*
773 * Eof from the client. The stdin descriptor to the
774 * program will be closed when all buffered data has
775 * drained.
776 */
777 debug("EOF received for stdin.");
778 packet_integrity_check(plen, 0, type);
779 stdin_eof = 1;
780}
781
Ben Lindstrombba81212001-06-25 05:01:22 +0000782static void
Damien Miller62cee002000-09-23 17:15:56 +1100783server_input_window_size(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000784{
785 int row = packet_get_int();
786 int col = packet_get_int();
787 int xpixel = packet_get_int();
788 int ypixel = packet_get_int();
789
790 debug("Window change received.");
791 packet_integrity_check(plen, 4 * 4, type);
792 if (fdin != -1)
793 pty_change_window_size(fdin, row, col, xpixel, ypixel);
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000798{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000799 Channel *c;
800 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000801 char *target, *originator;
802 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000803
Damien Miller4af51302000-04-16 11:18:38 +1000804 target = packet_get_string(NULL);
805 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000806 originator = packet_get_string(NULL);
807 originator_port = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +1000808 packet_done();
Damien Millerb1715dc2000-05-30 13:44:51 +1000809
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000811 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000812
Damien Millerefb4afe2000-04-12 18:45:05 +1000813 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000814 sock = channel_connect_to(target, target_port);
815 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000816 xfree(originator);
817 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100818 return NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000819 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100820 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100821 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000822 if (c == NULL) {
823 error("server_request_direct_tcpip: channel_new failed");
824 close(sock);
825 }
826 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100827}
828
Ben Lindstrombba81212001-06-25 05:01:22 +0000829static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830server_request_session(char *ctype)
831{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000832 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100833
834 debug("input_session_request");
835 packet_done();
836 /*
837 * A server session has no fd to read or write until a
838 * CHANNEL_REQUEST for a shell is made, so we set the type to
839 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
840 * CHANNEL_REQUEST messages is registered.
841 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000842 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
843 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844 0, xstrdup("server-session"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000845 if (c == NULL) {
846 error("server_request_session: channel_new failed");
847 return NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100848 }
Ben Lindstrombddd5512001-07-04 04:53:53 +0000849 if (session_open(xxx_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000850 debug("session open failed, free channel %d", c->self);
851 channel_free(c);
852 return NULL;
853 }
854 channel_register_callback(c->self, SSH2_MSG_CHANNEL_REQUEST,
855 session_input_channel_req, (void *)0);
856 channel_register_cleanup(c->self, session_close_by_channel);
857 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000858}
859
Ben Lindstrombba81212001-06-25 05:01:22 +0000860static void
Damien Miller62cee002000-09-23 17:15:56 +1100861server_input_channel_open(int type, int plen, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000862{
863 Channel *c = NULL;
864 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000865 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000866 int rchan;
867 int rmaxpack;
868 int rwindow;
869
870 ctype = packet_get_string(&len);
871 rchan = packet_get_int();
872 rwindow = packet_get_int();
873 rmaxpack = packet_get_int();
874
Damien Miller62cee002000-09-23 17:15:56 +1100875 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000876 ctype, rchan, rwindow, rmaxpack);
877
878 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100879 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000880 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000882 }
883 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100884 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000885 c->remote_id = rchan;
886 c->remote_window = rwindow;
887 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000888 if (c->type != SSH_CHANNEL_CONNECTING) {
889 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
890 packet_put_int(c->remote_id);
891 packet_put_int(c->self);
892 packet_put_int(c->local_window);
893 packet_put_int(c->local_maxpacket);
894 packet_send();
895 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000896 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100897 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000898 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
899 packet_put_int(rchan);
900 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +0000901 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +0000902 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000903 packet_put_cstring("");
904 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000905 packet_send();
906 }
907 xfree(ctype);
908}
909
Ben Lindstrombba81212001-06-25 05:01:22 +0000910static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100911server_input_global_request(int type, int plen, void *ctxt)
912{
913 char *rtype;
914 int want_reply;
915 int success = 0;
916
917 rtype = packet_get_string(NULL);
918 want_reply = packet_get_char();
919 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000920
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000921 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100922 if (strcmp(rtype, "tcpip-forward") == 0) {
923 struct passwd *pw;
924 char *listen_address;
925 u_short listen_port;
926
927 pw = auth_get_user();
928 if (pw == NULL)
929 fatal("server_input_global_request: no user");
930 listen_address = packet_get_string(NULL); /* XXX currently ignored */
931 listen_port = (u_short)packet_get_int();
932 debug("server_input_global_request: tcpip-forward listen %s port %d",
933 listen_address, listen_port);
934
935 /* check permissions */
936 if (!options.allow_tcp_forwarding ||
937 no_port_forwarding_flag ||
938 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) {
939 success = 0;
940 packet_send_debug("Server has disabled port forwarding.");
941 } else {
942 /* Start listening on the port */
Kevin Steves12057502001-02-05 14:54:34 +0000943 success = channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100944 listen_address, listen_port,
945 /*unspec host_to_connect*/ "<unspec host>",
946 /*unspec port_to_connect*/ 0,
947 options.gateway_ports, /*remote*/ 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100948 }
949 xfree(listen_address);
950 }
951 if (want_reply) {
952 packet_start(success ?
953 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
954 packet_send();
955 packet_write_wait();
956 }
957 xfree(rtype);
958}
959
Ben Lindstrombba81212001-06-25 05:01:22 +0000960static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000961server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000962{
963 debug("server_init_dispatch_20");
964 dispatch_init(&dispatch_protocol_error);
965 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
966 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
967 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
968 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
969 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
970 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
971 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
972 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
973 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100974 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000975 /* client_alive */
976 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000977 /* rekeying */
978 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +1000979}
Ben Lindstrombba81212001-06-25 05:01:22 +0000980static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000981server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000982{
983 debug("server_init_dispatch_13");
984 dispatch_init(NULL);
985 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
986 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
987 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
988 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
989 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
990 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
991 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
992 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
993 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
994}
Ben Lindstrombba81212001-06-25 05:01:22 +0000995static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000996server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000997{
998 server_init_dispatch_13();
999 debug("server_init_dispatch_15");
1000 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1001 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1002}
Ben Lindstrombba81212001-06-25 05:01:22 +00001003static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001004server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001005{
Damien Millerefb4afe2000-04-12 18:45:05 +10001006 if (compat20)
1007 server_init_dispatch_20();
1008 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001009 server_init_dispatch_13();
1010 else
1011 server_init_dispatch_15();
1012}