blob: 0c75b05c9602d34cb6d5dc6b960c0994409b4f0f [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 Miller630d6f42002-01-22 23:17:30 +110038RCSID("$OpenBSD: serverloop.c,v 1.93 2001/12/28 15:06:00 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
Ben Lindstrom5e71c542001-12-06 16:48:14 +000090static volatile sig_atomic_t child_terminated = 0; /* 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
Damien Millerf6681a32001-12-21 14:53:11 +110095/*
96 * we write to this pipe if a SIGCHLD is caught in order to avoid
97 * the race between select() and child_terminated
98 */
99static int notify_pipe[2];
100static void
101notify_setup(void)
102{
103 if (pipe(notify_pipe) < 0) {
104 error("pipe(notify_pipe) failed %s", strerror(errno));
105 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
106 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
107 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
108 close(notify_pipe[0]);
109 close(notify_pipe[1]);
110 } else {
111 set_nonblock(notify_pipe[0]);
112 set_nonblock(notify_pipe[1]);
113 return;
114 }
115 notify_pipe[0] = -1; /* read end */
116 notify_pipe[1] = -1; /* write end */
117}
118static void
119notify_parent(void)
120{
121 if (notify_pipe[1] != -1)
122 write(notify_pipe[1], "", 1);
123}
124static void
125notify_prepare(fd_set *readset)
126{
127 if (notify_pipe[0] != -1)
128 FD_SET(notify_pipe[0], readset);
129}
130static void
131notify_done(fd_set *readset)
132{
133 char c;
134
135 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
136 while (read(notify_pipe[0], &c, 1) != -1)
137 debug2("notify_done: reading");
138}
139
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void
Damien Miller95def091999-11-25 00:26:21 +1100141sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142{
Damien Miller95def091999-11-25 00:26:21 +1100143 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000144 debug("Received SIGCHLD.");
145 child_terminated = 1;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000146 mysignal(SIGCHLD, sigchld_handler);
Damien Millerf6681a32001-12-21 14:53:11 +1100147 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000148 errno = save_errno;
149}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150
Damien Miller95def091999-11-25 00:26:21 +1100151/*
Damien Miller95def091999-11-25 00:26:21 +1100152 * Make packets from buffered stderr data, and buffer it for sending
153 * to the client.
154 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000155static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000156make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157{
Damien Miller95def091999-11-25 00:26:21 +1100158 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller95def091999-11-25 00:26:21 +1100160 /* Send buffered stderr data to the client. */
161 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100162 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100163 len = buffer_len(&stderr_buffer);
164 if (packet_is_interactive()) {
165 if (len > 512)
166 len = 512;
167 } else {
168 /* Keep the packets at reasonable size. */
169 if (len > packet_get_maxsize())
170 len = packet_get_maxsize();
171 }
172 packet_start(SSH_SMSG_STDERR_DATA);
173 packet_put_string(buffer_ptr(&stderr_buffer), len);
174 packet_send();
175 buffer_consume(&stderr_buffer, len);
176 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Miller95def091999-11-25 00:26:21 +1100180/*
181 * Make packets from buffered stdout data, and buffer it for sending to the
182 * client.
183 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000185make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186{
Damien Miller95def091999-11-25 00:26:21 +1100187 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188
Damien Miller95def091999-11-25 00:26:21 +1100189 /* Send buffered stdout data to the client. */
190 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100191 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100192 len = buffer_len(&stdout_buffer);
193 if (packet_is_interactive()) {
194 if (len > 512)
195 len = 512;
196 } else {
197 /* Keep the packets at reasonable size. */
198 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000199 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100200 }
201 packet_start(SSH_SMSG_STDOUT_DATA);
202 packet_put_string(buffer_ptr(&stdout_buffer), len);
203 packet_send();
204 buffer_consume(&stdout_buffer, len);
205 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207}
208
Damien Miller8c3902a2001-10-10 15:01:40 +1000209static void
210client_alive_check(void)
211{
212 int id;
213
214 /* timeout, check to see how many we have had */
215 if (++client_alive_timeouts > options.client_alive_count_max)
216 packet_disconnect("Timeout, your session not responding.");
217
218 id = channel_find_open();
219 if (id == -1)
220 packet_disconnect("No open channels after timeout!");
221 /*
222 * send a bogus channel request with "wantreply",
223 * we should get back a failure
224 */
225 channel_request_start(id, "keepalive@openssh.com", 1);
226 packet_send();
227}
228
Damien Miller95def091999-11-25 00:26:21 +1100229/*
230 * Sleep in select() until we can do something. This will initialize the
231 * select masks. Upon return, the masks will indicate which descriptors
232 * have data or can accept data. Optionally, a maximum time can be specified
233 * for the duration of the wait (0 = infinite).
234 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000235static void
Damien Miller5e953212001-01-30 09:14:00 +1100236wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000237 int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238{
Damien Miller95def091999-11-25 00:26:21 +1100239 struct timeval tv, *tvp;
240 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000241 int client_alive_scheduled = 0;
242
243 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100244 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000245 * and indicate that this particular timeout was for client
246 * alive by setting the client_alive_scheduled flag.
247 *
248 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100249 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000250 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000251 if (compat20 &&
252 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000253 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000254 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000255 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Miller5e953212001-01-30 09:14:00 +1100257 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000258 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Millerefb4afe2000-04-12 18:45:05 +1000260 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000261#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000262 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000263 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000264#endif
265 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000266 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000267 /*
268 * Read packets from the client unless we have too much
269 * buffered stdin or channel data.
270 */
271 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000272 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100273 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000274 /*
275 * If there is not too much data already buffered going to
276 * the client, try to get some more data from the program.
277 */
278 if (packet_not_very_much_data_to_write()) {
279 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100280 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000281 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100282 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000283 }
284 /*
285 * If we have buffered data, try to write some of that data
286 * to the program.
287 */
288 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100289 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000290 }
Damien Millerf6681a32001-12-21 14:53:11 +1100291 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100292
Damien Miller5428f641999-11-25 11:54:57 +1100293 /*
294 * If we have buffered packet data going to the client, mark that
295 * descriptor.
296 */
Damien Miller95def091999-11-25 00:26:21 +1100297 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100298 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100299
Damien Miller5428f641999-11-25 11:54:57 +1100300 /*
301 * If child has terminated and there is enough buffer space to read
302 * from it, then read as much as is available and exit.
303 */
Damien Miller95def091999-11-25 00:26:21 +1100304 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000305 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100306 max_time_milliseconds = 100;
307
308 if (max_time_milliseconds == 0)
309 tvp = NULL;
310 else {
311 tv.tv_sec = max_time_milliseconds / 1000;
312 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
313 tvp = &tv;
314 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000315 if (tvp!=NULL)
Ben Lindstromf8f065b2001-12-06 17:52:16 +0000316 debug3("tvp!=NULL kid %d mili %d", (int) child_terminated,
317 max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100318
319 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100320 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100321
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000322 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100323 memset(*readsetp, 0, *nallocp);
324 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100325 if (errno != EINTR)
326 error("select: %.100s", strerror(errno));
Damien Miller3ec27592001-10-12 11:35:04 +1000327 } else if (ret == 0 && client_alive_scheduled)
Damien Miller8c3902a2001-10-10 15:01:40 +1000328 client_alive_check();
Damien Millerf6681a32001-12-21 14:53:11 +1100329
330 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331}
332
Damien Miller95def091999-11-25 00:26:21 +1100333/*
334 * Processes input from the client and the program. Input data is stored
335 * in buffers and processed later.
336 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000337static void
Damien Miller95def091999-11-25 00:26:21 +1100338process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339{
Damien Miller95def091999-11-25 00:26:21 +1100340 int len;
341 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342
Damien Miller95def091999-11-25 00:26:21 +1100343 /* Read and buffer any input data from the client. */
344 if (FD_ISSET(connection_in, readset)) {
345 len = read(connection_in, buf, sizeof(buf));
346 if (len == 0) {
347 verbose("Connection closed by remote host.");
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000348 connection_closed = 1;
349 if (compat20)
350 return;
Damien Miller95def091999-11-25 00:26:21 +1100351 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000352 } else if (len < 0) {
353 if (errno != EINTR && errno != EAGAIN) {
354 verbose("Read error from remote host: %.100s", strerror(errno));
355 fatal_cleanup();
356 }
357 } else {
358 /* Buffer any received data. */
359 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100360 }
Damien Miller95def091999-11-25 00:26:21 +1100361 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000362 if (compat20)
363 return;
364
Damien Miller95def091999-11-25 00:26:21 +1100365 /* Read and buffer any available stdout data from the program. */
366 if (!fdout_eof && FD_ISSET(fdout, readset)) {
367 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000368 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
369 /* do nothing */
370 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100371 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000372 } else {
Damien Miller95def091999-11-25 00:26:21 +1100373 buffer_append(&stdout_buffer, buf, len);
374 fdout_bytes += len;
375 }
376 }
377 /* Read and buffer any available stderr data from the program. */
378 if (!fderr_eof && FD_ISSET(fderr, readset)) {
379 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000380 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
381 /* do nothing */
382 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100383 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000384 } else {
Damien Miller95def091999-11-25 00:26:21 +1100385 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000386 }
Damien Miller95def091999-11-25 00:26:21 +1100387 }
388}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389
Damien Miller95def091999-11-25 00:26:21 +1100390/*
391 * Sends data from internal buffers to client program stdin.
392 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000393static void
Damien Miller95def091999-11-25 00:26:21 +1100394process_output(fd_set * writeset)
395{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000396 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000397 u_char *data;
398 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100399 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400
Damien Miller95def091999-11-25 00:26:21 +1100401 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000402 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000403 data = buffer_ptr(&stdin_buffer);
404 dlen = buffer_len(&stdin_buffer);
405 len = write(fdin, data, dlen);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000406 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
407 /* do nothing */
408 } else if (len <= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000409 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100410 close(fdin);
411 else
412 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100413 fdin = -1;
414 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000415 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000416 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
417 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100418 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000419 /*
420 * Simulate echo to reduce the impact of
421 * traffic analysis
422 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000423 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000424 packet_send();
425 }
426 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100427 buffer_consume(&stdin_buffer, len);
428 /* Update the count of bytes written to the program. */
429 stdin_bytes += len;
430 }
431 }
432 /* Send any buffered packet data to the client. */
433 if (FD_ISSET(connection_out, writeset))
434 packet_write_poll();
435}
436
437/*
438 * Wait until all buffered output has been sent to the client.
439 * This is used when the program terminates.
440 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000441static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000442drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100443{
444 /* Send any buffered stdout data to the client. */
445 if (buffer_len(&stdout_buffer) > 0) {
446 packet_start(SSH_SMSG_STDOUT_DATA);
447 packet_put_string(buffer_ptr(&stdout_buffer),
448 buffer_len(&stdout_buffer));
449 packet_send();
450 /* Update the count of sent bytes. */
451 stdout_bytes += buffer_len(&stdout_buffer);
452 }
453 /* Send any buffered stderr data to the client. */
454 if (buffer_len(&stderr_buffer) > 0) {
455 packet_start(SSH_SMSG_STDERR_DATA);
456 packet_put_string(buffer_ptr(&stderr_buffer),
457 buffer_len(&stderr_buffer));
458 packet_send();
459 /* Update the count of sent bytes. */
460 stderr_bytes += buffer_len(&stderr_buffer);
461 }
462 /* Wait until all buffered data has been written to the client. */
463 packet_write_wait();
464}
465
Ben Lindstrombba81212001-06-25 05:01:22 +0000466static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000467process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000468{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000469 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000470}
471
Damien Miller95def091999-11-25 00:26:21 +1100472/*
473 * Performs the interactive session. This handles data transmission between
474 * the client and the program. Note that the notion of stdin, stdout, and
475 * stderr in this function is sort of reversed: this function writes to
476 * stdin (of the child program), and reads from stdout and stderr (of the
477 * child program).
478 */
Damien Miller4af51302000-04-16 11:18:38 +1000479void
Damien Miller166fca82000-04-20 07:42:21 +1000480server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100481{
Damien Miller5e953212001-01-30 09:14:00 +1100482 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000483 int max_fd = 0, nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000484 int wait_status; /* Status returned by wait(). */
485 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100486 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000487 u_int max_time_milliseconds;
488 u_int previous_stdout_buffer_bytes;
489 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100490 int type;
491
492 debug("Entering interactive session.");
493
494 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100495 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000496 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100497
498 /* Initialize our global variables. */
499 fdin = fdin_arg;
500 fdout = fdout_arg;
501 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000502
503 /* nonblocking IO */
504 set_nonblock(fdin);
505 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000506 /* we don't have stderr for interactive terminal sessions, see below */
507 if (fderr != -1)
508 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000509
Damien Miller225736c2001-02-19 21:51:08 +1100510 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
511 fdin_is_tty = 1;
512
Damien Miller95def091999-11-25 00:26:21 +1100513 connection_in = packet_get_connection_in();
514 connection_out = packet_get_connection_out();
515
Damien Millerf6681a32001-12-21 14:53:11 +1100516 notify_setup();
517
Damien Miller95def091999-11-25 00:26:21 +1100518 previous_stdout_buffer_bytes = 0;
519
520 /* Set approximate I/O buffer size. */
521 if (packet_is_interactive())
522 buffer_high = 4096;
523 else
524 buffer_high = 64 * 1024;
525
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000526#if 0
Damien Miller95def091999-11-25 00:26:21 +1100527 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000528 max_fd = MAX(connection_in, connection_out);
529 max_fd = MAX(max_fd, fdin);
530 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100531 if (fderr != -1)
532 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000533#endif
Damien Miller95def091999-11-25 00:26:21 +1100534
535 /* Initialize Initialize buffers. */
536 buffer_init(&stdin_buffer);
537 buffer_init(&stdout_buffer);
538 buffer_init(&stderr_buffer);
539
Damien Miller5428f641999-11-25 11:54:57 +1100540 /*
541 * If we have no separate fderr (which is the case when we have a pty
542 * - there we cannot make difference between data sent to stdout and
543 * stderr), indicate that we have seen an EOF from stderr. This way
544 * we don\'t need to check the descriptor everywhere.
545 */
Damien Miller95def091999-11-25 00:26:21 +1100546 if (fderr == -1)
547 fderr_eof = 1;
548
Damien Millerb38eff82000-04-01 11:09:21 +1000549 server_init_dispatch();
550
Damien Miller95def091999-11-25 00:26:21 +1100551 /* Main loop of the server for the interactive session mode. */
552 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100553
554 /* Process buffered packets from the client. */
555 process_buffered_input_packets();
556
Damien Miller5428f641999-11-25 11:54:57 +1100557 /*
558 * If we have received eof, and there is no more pending
559 * input data, cause a real eof by closing fdin.
560 */
Damien Miller95def091999-11-25 00:26:21 +1100561 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000562 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100563 close(fdin);
564 else
565 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100566 fdin = -1;
567 }
Damien Miller5428f641999-11-25 11:54:57 +1100568 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100569 make_packets_from_stderr_data();
570
Damien Miller5428f641999-11-25 11:54:57 +1100571 /*
572 * Make packets from buffered stdout data to send to the
573 * client. If there is very little to send, this arranges to
574 * not send them now, but to wait a short while to see if we
575 * are getting more data. This is necessary, as some systems
576 * wake up readers from a pty after each separate character.
577 */
Damien Miller95def091999-11-25 00:26:21 +1100578 max_time_milliseconds = 0;
579 stdout_buffer_bytes = buffer_len(&stdout_buffer);
580 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
581 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
582 /* try again after a while */
583 max_time_milliseconds = 10;
584 } else {
585 /* Send it now. */
586 make_packets_from_stdout_data();
587 }
588 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
589
590 /* Send channel data to the client. */
591 if (packet_not_very_much_data_to_write())
592 channel_output_poll();
593
Damien Miller5428f641999-11-25 11:54:57 +1100594 /*
595 * Bail out of the loop if the program has closed its output
596 * descriptors, and we have no more data to send to the
597 * client, and there is no pending buffered data.
598 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100599 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
600 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100601 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000602 break;
Damien Miller95def091999-11-25 00:26:21 +1100603 if (!waiting_termination) {
604 const char *s = "Waiting for forwarded connections to terminate...\r\n";
605 char *cp;
606 waiting_termination = 1;
607 buffer_append(&stderr_buffer, s, strlen(s));
608
609 /* Display list of open channels. */
610 cp = channel_open_message();
611 buffer_append(&stderr_buffer, cp, strlen(cp));
612 xfree(cp);
613 }
614 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000615 max_fd = MAX(connection_in, connection_out);
616 max_fd = MAX(max_fd, fdin);
617 max_fd = MAX(max_fd, fdout);
618 max_fd = MAX(max_fd, fderr);
Damien Millerf6681a32001-12-21 14:53:11 +1100619 max_fd = MAX(max_fd, notify_pipe[0]);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000620
Damien Miller95def091999-11-25 00:26:21 +1100621 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100622 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000623 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100624
625 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100626 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100627
628 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100629 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100630
631 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100632 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100633 }
Damien Miller5e953212001-01-30 09:14:00 +1100634 if (readset)
635 xfree(readset);
636 if (writeset)
637 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100638
Damien Miller95def091999-11-25 00:26:21 +1100639 /* Cleanup and termination code. */
640
641 /* Wait until all output has been sent to the client. */
642 drain_output();
643
644 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100645 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100646
647 /* Free and clear the buffers. */
648 buffer_free(&stdin_buffer);
649 buffer_free(&stdout_buffer);
650 buffer_free(&stderr_buffer);
651
652 /* Close the file descriptors. */
653 if (fdout != -1)
654 close(fdout);
655 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100657 if (fderr != -1)
658 close(fderr);
659 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100661 if (fdin != -1)
662 close(fdin);
663 fdin = -1;
664
Ben Lindstrom601e4362001-06-21 03:19:23 +0000665 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100666
Damien Miller95def091999-11-25 00:26:21 +1100667 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000668 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100669
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000670 wait_pid = waitpid(-1, &wait_status, child_terminated ? WNOHANG : 0);
671 if (wait_pid == -1)
672 packet_disconnect("wait: %.100s", strerror(errno));
673 else if (wait_pid != pid)
674 error("Strange, wait returned pid %d, expected %d",
675 wait_pid, pid);
676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* Check if it exited normally. */
678 if (WIFEXITED(wait_status)) {
679 /* Yes, normal exit. Get exit status and send it to the client. */
680 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
681 packet_start(SSH_SMSG_EXITSTATUS);
682 packet_put_int(WEXITSTATUS(wait_status));
683 packet_send();
684 packet_write_wait();
685
Damien Miller5428f641999-11-25 11:54:57 +1100686 /*
687 * Wait for exit confirmation. Note that there might be
688 * other packets coming before it; however, the program has
689 * already died so we just ignore them. The client is
690 * supposed to respond with the confirmation when it receives
691 * the exit status.
692 */
Damien Miller95def091999-11-25 00:26:21 +1100693 do {
Damien Millerdff50992002-01-22 23:16:32 +1100694 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100695 }
696 while (type != SSH_CMSG_EXIT_CONFIRMATION);
697
698 debug("Received exit confirmation.");
699 return;
700 }
701 /* Check if the program terminated due to a signal. */
702 if (WIFSIGNALED(wait_status))
703 packet_disconnect("Command terminated on signal %d.",
704 WTERMSIG(wait_status));
705
706 /* Some weird exit cause. Just exit. */
707 packet_disconnect("wait returned status %04x.", wait_status);
708 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709}
Damien Millerb38eff82000-04-01 11:09:21 +1000710
Damien Miller3ec27592001-10-12 11:35:04 +1000711static void
712collect_children(void)
713{
714 pid_t pid;
715 sigset_t oset, nset;
716 int status;
717
718 /* block SIGCHLD while we check for dead children */
719 sigemptyset(&nset);
720 sigaddset(&nset, SIGCHLD);
721 sigprocmask(SIG_BLOCK, &nset, &oset);
722 if (child_terminated) {
723 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
724 session_close_by_pid(pid, status);
725 child_terminated = 0;
726 }
727 sigprocmask(SIG_SETMASK, &oset, NULL);
728}
729
Damien Miller4af51302000-04-16 11:18:38 +1000730void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000731server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000732{
Damien Miller5e953212001-01-30 09:14:00 +1100733 fd_set *readset = NULL, *writeset = NULL;
Damien Miller3ec27592001-10-12 11:35:04 +1000734 int rekeying = 0, max_fd, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000735
736 debug("Entering interactive session for SSH2.");
737
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000738 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000739 child_terminated = 0;
740 connection_in = packet_get_connection_in();
741 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100742
Damien Millerf6681a32001-12-21 14:53:11 +1100743 notify_setup();
744
Damien Miller5e953212001-01-30 09:14:00 +1100745 max_fd = MAX(connection_in, connection_out);
Damien Millerf6681a32001-12-21 14:53:11 +1100746 max_fd = MAX(max_fd, notify_pipe[0]);
747
Ben Lindstrombddd5512001-07-04 04:53:53 +0000748 xxx_authctxt = authctxt;
Damien Miller5e953212001-01-30 09:14:00 +1100749
Damien Millerefb4afe2000-04-12 18:45:05 +1000750 server_init_dispatch();
751
752 for (;;) {
753 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000754
Ben Lindstroma3700052001-04-05 23:26:32 +0000755 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000756
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000757 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000758 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000759 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000760 &nalloc, 0);
Damien Miller52b77be2001-10-10 15:14:37 +1000761
Damien Miller3ec27592001-10-12 11:35:04 +1000762 collect_children();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000763 if (!rekeying)
764 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100765 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000766 if (connection_closed)
767 break;
Damien Miller5e953212001-01-30 09:14:00 +1100768 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000769 }
Damien Miller3ec27592001-10-12 11:35:04 +1000770 collect_children();
771
Damien Miller5e953212001-01-30 09:14:00 +1100772 if (readset)
773 xfree(readset);
774 if (writeset)
775 xfree(writeset);
776
Damien Miller52b77be2001-10-10 15:14:37 +1000777 /* free all channels, no more reads and writes */
778 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000779
Damien Miller3ec27592001-10-12 11:35:04 +1000780 /* free remaining sessions, e.g. remove wtmp entries */
781 session_destroy_all();
Damien Millerefb4afe2000-04-12 18:45:05 +1000782}
783
Ben Lindstrombba81212001-06-25 05:01:22 +0000784static void
Damien Miller630d6f42002-01-22 23:17:30 +1100785server_input_channel_failure(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000786{
787 debug("Got CHANNEL_FAILURE for keepalive");
Damien Miller9f0f5c62001-12-21 14:45:46 +1100788 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000789 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000790 * even if this was generated by something other than
791 * the bogus CHANNEL_REQUEST we send for keepalives.
792 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100793 client_alive_timeouts = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000794}
795
796
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Miller630d6f42002-01-22 23:17:30 +1100798server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000799{
800 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000801 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000802
803 /* Stdin data from the client. Append it to the buffer. */
804 /* Ignore any data if the client has closed stdin. */
805 if (fdin == -1)
806 return;
807 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100808 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000809 buffer_append(&stdin_buffer, data, data_len);
810 memset(data, 0, data_len);
811 xfree(data);
812}
813
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static void
Damien Miller630d6f42002-01-22 23:17:30 +1100815server_input_eof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000816{
817 /*
818 * Eof from the client. The stdin descriptor to the
819 * program will be closed when all buffered data has
820 * drained.
821 */
822 debug("EOF received for stdin.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100823 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000824 stdin_eof = 1;
825}
826
Ben Lindstrombba81212001-06-25 05:01:22 +0000827static void
Damien Miller630d6f42002-01-22 23:17:30 +1100828server_input_window_size(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000829{
830 int row = packet_get_int();
831 int col = packet_get_int();
832 int xpixel = packet_get_int();
833 int ypixel = packet_get_int();
834
835 debug("Window change received.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100836 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000837 if (fdin != -1)
838 pty_change_window_size(fdin, row, col, xpixel, ypixel);
839}
840
Ben Lindstrombba81212001-06-25 05:01:22 +0000841static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100842server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000843{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000844 Channel *c;
845 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000846 char *target, *originator;
847 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000848
Damien Miller4af51302000-04-16 11:18:38 +1000849 target = packet_get_string(NULL);
850 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000851 originator = packet_get_string(NULL);
852 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100853 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000854
Damien Miller0bc1bd82000-11-13 22:57:25 +1100855 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000856 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000857
Damien Millerefb4afe2000-04-12 18:45:05 +1000858 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000859 sock = channel_connect_to(target, target_port);
860 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000861 xfree(originator);
862 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100863 return NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000864 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100865 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100866 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000867 if (c == NULL) {
868 error("server_request_direct_tcpip: channel_new failed");
869 close(sock);
870 }
871 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100872}
873
Ben Lindstrombba81212001-06-25 05:01:22 +0000874static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100875server_request_session(char *ctype)
876{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000877 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100878
879 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +1100880 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 /*
882 * A server session has no fd to read or write until a
883 * CHANNEL_REQUEST for a shell is made, so we set the type to
884 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
885 * CHANNEL_REQUEST messages is registered.
886 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000887 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
888 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100889 0, xstrdup("server-session"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000890 if (c == NULL) {
891 error("server_request_session: channel_new failed");
892 return NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100893 }
Ben Lindstrombddd5512001-07-04 04:53:53 +0000894 if (session_open(xxx_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000895 debug("session open failed, free channel %d", c->self);
896 channel_free(c);
897 return NULL;
898 }
899 channel_register_callback(c->self, SSH2_MSG_CHANNEL_REQUEST,
900 session_input_channel_req, (void *)0);
901 channel_register_cleanup(c->self, session_close_by_channel);
902 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000903}
904
Ben Lindstrombba81212001-06-25 05:01:22 +0000905static void
Damien Miller630d6f42002-01-22 23:17:30 +1100906server_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000907{
908 Channel *c = NULL;
909 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000910 u_int len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000911 int rchan;
912 int rmaxpack;
913 int rwindow;
914
915 ctype = packet_get_string(&len);
916 rchan = packet_get_int();
917 rwindow = packet_get_int();
918 rmaxpack = packet_get_int();
919
Damien Miller62cee002000-09-23 17:15:56 +1100920 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000921 ctype, rchan, rwindow, rmaxpack);
922
923 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100924 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000925 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100926 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000927 }
928 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100929 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000930 c->remote_id = rchan;
931 c->remote_window = rwindow;
932 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000933 if (c->type != SSH_CHANNEL_CONNECTING) {
934 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
935 packet_put_int(c->remote_id);
936 packet_put_int(c->self);
937 packet_put_int(c->local_window);
938 packet_put_int(c->local_maxpacket);
939 packet_send();
940 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000941 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100942 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000943 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
944 packet_put_int(rchan);
945 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +0000946 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +0000947 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000948 packet_put_cstring("");
949 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000950 packet_send();
951 }
952 xfree(ctype);
953}
954
Ben Lindstrombba81212001-06-25 05:01:22 +0000955static void
Damien Miller630d6f42002-01-22 23:17:30 +1100956server_input_global_request(int type, u_int32_t seq, void *ctxt)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100957{
958 char *rtype;
959 int want_reply;
960 int success = 0;
961
962 rtype = packet_get_string(NULL);
963 want_reply = packet_get_char();
964 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000965
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000966 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100967 if (strcmp(rtype, "tcpip-forward") == 0) {
968 struct passwd *pw;
969 char *listen_address;
970 u_short listen_port;
971
972 pw = auth_get_user();
973 if (pw == NULL)
974 fatal("server_input_global_request: no user");
975 listen_address = packet_get_string(NULL); /* XXX currently ignored */
976 listen_port = (u_short)packet_get_int();
977 debug("server_input_global_request: tcpip-forward listen %s port %d",
978 listen_address, listen_port);
979
980 /* check permissions */
981 if (!options.allow_tcp_forwarding ||
982 no_port_forwarding_flag ||
983 (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)) {
984 success = 0;
985 packet_send_debug("Server has disabled port forwarding.");
986 } else {
987 /* Start listening on the port */
Kevin Steves12057502001-02-05 14:54:34 +0000988 success = channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100989 listen_address, listen_port,
990 /*unspec host_to_connect*/ "<unspec host>",
991 /*unspec port_to_connect*/ 0,
992 options.gateway_ports, /*remote*/ 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100993 }
994 xfree(listen_address);
995 }
996 if (want_reply) {
997 packet_start(success ?
998 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
999 packet_send();
1000 packet_write_wait();
1001 }
1002 xfree(rtype);
1003}
1004
Ben Lindstrombba81212001-06-25 05:01:22 +00001005static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001006server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001007{
1008 debug("server_init_dispatch_20");
1009 dispatch_init(&dispatch_protocol_error);
1010 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1011 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1012 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1013 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1014 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1015 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1016 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1017 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
1018 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001019 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001020 /* client_alive */
1021 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001022 /* rekeying */
1023 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001024}
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001026server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001027{
1028 debug("server_init_dispatch_13");
1029 dispatch_init(NULL);
1030 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1031 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1032 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1033 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1034 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1035 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1036 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1037 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1038 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1039}
Ben Lindstrombba81212001-06-25 05:01:22 +00001040static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001041server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001042{
1043 server_init_dispatch_13();
1044 debug("server_init_dispatch_15");
1045 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1046 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1047}
Ben Lindstrombba81212001-06-25 05:01:22 +00001048static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001049server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001050{
Damien Millerefb4afe2000-04-12 18:45:05 +10001051 if (compat20)
1052 server_init_dispatch_20();
1053 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001054 server_init_dispatch_13();
1055 else
1056 server_init_dispatch_15();
1057}