blob: 5112de6801da7714f56a12e81f5c272db77833da [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 Miller16aed052002-09-22 01:26:27 +100038RCSID("$OpenBSD: serverloop.c,v 1.104 2002/09/19 16:03:15 stevesk 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"
Damien Miller16aed052002-09-22 01:26:27 +100045#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000046#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000047#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100048#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100050#include "ssh2.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000051#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100052#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100053#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100054#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "serverloop.h"
56#include "misc.h"
Ben Lindstrom8ac91062001-04-04 17:57:54 +000057#include "kex.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Damien Miller50a41ed2000-10-16 12:14:42 +110059extern ServerOptions options;
60
Ben Lindstrom8ac91062001-04-04 17:57:54 +000061/* XXX */
62extern Kex *xxx_kex;
Ben Lindstrombddd5512001-07-04 04:53:53 +000063static Authctxt *xxx_authctxt;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000064
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065static Buffer stdin_buffer; /* Buffer for stdin data. */
66static Buffer stdout_buffer; /* Buffer for stdout data. */
67static Buffer stderr_buffer; /* Buffer for stderr data. */
68static int fdin; /* Descriptor for stdin (for writing) */
69static int fdout; /* Descriptor for stdout (for reading);
70 May be same number as fdin. */
71static int fderr; /* Descriptor for stderr. May be -1. */
72static long stdin_bytes = 0; /* Number of bytes written to stdin. */
73static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
74static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
75static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
76static int stdin_eof = 0; /* EOF message received from client. */
77static int fdout_eof = 0; /* EOF encountered reading from fdout. */
78static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +110079static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080static int connection_in; /* Connection to client (input). */
81static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +000082static int connection_closed = 0; /* Connection to client closed. */
83static u_int buffer_high; /* "Soft" max buffer size. */
Damien Miller8c3902a2001-10-10 15:01:40 +100084static int client_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Damien Miller5428f641999-11-25 11:54:57 +110086/*
87 * This SIGCHLD kludge is used to detect when the child exits. The server
88 * will exit after that, as soon as forwarded connections have terminated.
89 */
Ben Lindstrombba81212001-06-25 05:01:22 +000090
Ben Lindstrom5e71c542001-12-06 16:48:14 +000091static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Ben Lindstrombba81212001-06-25 05:01:22 +000093/* prototypes */
94static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +100095
Damien Millerf6681a32001-12-21 14:53:11 +110096/*
97 * we write to this pipe if a SIGCHLD is caught in order to avoid
98 * the race between select() and child_terminated
99 */
100static int notify_pipe[2];
101static void
102notify_setup(void)
103{
104 if (pipe(notify_pipe) < 0) {
105 error("pipe(notify_pipe) failed %s", strerror(errno));
106 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
107 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
108 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
109 close(notify_pipe[0]);
110 close(notify_pipe[1]);
111 } else {
112 set_nonblock(notify_pipe[0]);
113 set_nonblock(notify_pipe[1]);
114 return;
115 }
116 notify_pipe[0] = -1; /* read end */
117 notify_pipe[1] = -1; /* write end */
118}
119static void
120notify_parent(void)
121{
122 if (notify_pipe[1] != -1)
123 write(notify_pipe[1], "", 1);
124}
125static void
126notify_prepare(fd_set *readset)
127{
128 if (notify_pipe[0] != -1)
129 FD_SET(notify_pipe[0], readset);
130}
131static void
132notify_done(fd_set *readset)
133{
134 char c;
135
136 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
137 while (read(notify_pipe[0], &c, 1) != -1)
138 debug2("notify_done: reading");
139}
140
Ben Lindstrombba81212001-06-25 05:01:22 +0000141static void
Damien Miller95def091999-11-25 00:26:21 +1100142sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143{
Damien Miller95def091999-11-25 00:26:21 +1100144 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000145 debug("Received SIGCHLD.");
146 child_terminated = 1;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000147 mysignal(SIGCHLD, sigchld_handler);
Damien Millerf6681a32001-12-21 14:53:11 +1100148 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000149 errno = save_errno;
150}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151
Damien Miller95def091999-11-25 00:26:21 +1100152/*
Damien Miller95def091999-11-25 00:26:21 +1100153 * Make packets from buffered stderr data, and buffer it for sending
154 * to the client.
155 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller95def091999-11-25 00:26:21 +1100159 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Damien Miller95def091999-11-25 00:26:21 +1100161 /* Send buffered stderr data to the client. */
162 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100163 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100164 len = buffer_len(&stderr_buffer);
165 if (packet_is_interactive()) {
166 if (len > 512)
167 len = 512;
168 } else {
169 /* Keep the packets at reasonable size. */
170 if (len > packet_get_maxsize())
171 len = packet_get_maxsize();
172 }
173 packet_start(SSH_SMSG_STDERR_DATA);
174 packet_put_string(buffer_ptr(&stderr_buffer), len);
175 packet_send();
176 buffer_consume(&stderr_buffer, len);
177 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179}
180
Damien Miller95def091999-11-25 00:26:21 +1100181/*
182 * Make packets from buffered stdout data, and buffer it for sending to the
183 * client.
184 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000185static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000186make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187{
Damien Miller95def091999-11-25 00:26:21 +1100188 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Miller95def091999-11-25 00:26:21 +1100190 /* Send buffered stdout data to the client. */
191 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100192 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100193 len = buffer_len(&stdout_buffer);
194 if (packet_is_interactive()) {
195 if (len > 512)
196 len = 512;
197 } else {
198 /* Keep the packets at reasonable size. */
199 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000200 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100201 }
202 packet_start(SSH_SMSG_STDOUT_DATA);
203 packet_put_string(buffer_ptr(&stdout_buffer), len);
204 packet_send();
205 buffer_consume(&stdout_buffer, len);
206 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Damien Miller8c3902a2001-10-10 15:01:40 +1000210static void
211client_alive_check(void)
212{
Damien Miller056cf732002-01-22 23:21:39 +1100213 static int had_channel = 0;
Damien Miller8c3902a2001-10-10 15:01:40 +1000214 int id;
215
Damien Miller056cf732002-01-22 23:21:39 +1100216 id = channel_find_open();
217 if (id == -1) {
218 if (!had_channel)
219 return;
220 packet_disconnect("No open channels after timeout!");
221 }
222 had_channel = 1;
223
Damien Miller8c3902a2001-10-10 15:01:40 +1000224 /* timeout, check to see how many we have had */
225 if (++client_alive_timeouts > options.client_alive_count_max)
226 packet_disconnect("Timeout, your session not responding.");
227
Damien Miller8c3902a2001-10-10 15:01:40 +1000228 /*
229 * send a bogus channel request with "wantreply",
230 * we should get back a failure
231 */
232 channel_request_start(id, "keepalive@openssh.com", 1);
233 packet_send();
234}
235
Damien Miller95def091999-11-25 00:26:21 +1100236/*
237 * Sleep in select() until we can do something. This will initialize the
238 * select masks. Upon return, the masks will indicate which descriptors
239 * have data or can accept data. Optionally, a maximum time can be specified
240 * for the duration of the wait (0 = infinite).
241 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static void
Damien Miller5e953212001-01-30 09:14:00 +1100243wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000244 int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245{
Damien Miller95def091999-11-25 00:26:21 +1100246 struct timeval tv, *tvp;
247 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000248 int client_alive_scheduled = 0;
249
250 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100251 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000252 * and indicate that this particular timeout was for client
253 * alive by setting the client_alive_scheduled flag.
254 *
255 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100256 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000257 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000258 if (compat20 &&
259 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000260 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000261 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000262 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263
Damien Miller5e953212001-01-30 09:14:00 +1100264 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000265 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Millerefb4afe2000-04-12 18:45:05 +1000267 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000268#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000269 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000270 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000271#endif
272 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000273 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000274 /*
275 * Read packets from the client unless we have too much
276 * buffered stdin or channel data.
277 */
278 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000279 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100280 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000281 /*
282 * If there is not too much data already buffered going to
283 * the client, try to get some more data from the program.
284 */
285 if (packet_not_very_much_data_to_write()) {
286 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100287 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000288 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100289 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000290 }
291 /*
292 * If we have buffered data, try to write some of that data
293 * to the program.
294 */
295 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100296 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000297 }
Damien Millerf6681a32001-12-21 14:53:11 +1100298 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100299
Damien Miller5428f641999-11-25 11:54:57 +1100300 /*
301 * If we have buffered packet data going to the client, mark that
302 * descriptor.
303 */
Damien Miller95def091999-11-25 00:26:21 +1100304 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100305 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100306
Damien Miller5428f641999-11-25 11:54:57 +1100307 /*
308 * If child has terminated and there is enough buffer space to read
309 * from it, then read as much as is available and exit.
310 */
Damien Miller95def091999-11-25 00:26:21 +1100311 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000312 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100313 max_time_milliseconds = 100;
314
315 if (max_time_milliseconds == 0)
316 tvp = NULL;
317 else {
318 tv.tv_sec = max_time_milliseconds / 1000;
319 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
320 tvp = &tv;
321 }
322
323 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100324 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100325
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000326 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100327 memset(*readsetp, 0, *nallocp);
328 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100329 if (errno != EINTR)
330 error("select: %.100s", strerror(errno));
Damien Miller3ec27592001-10-12 11:35:04 +1000331 } else if (ret == 0 && client_alive_scheduled)
Damien Miller8c3902a2001-10-10 15:01:40 +1000332 client_alive_check();
Damien Millerf6681a32001-12-21 14:53:11 +1100333
334 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000335}
336
Damien Miller95def091999-11-25 00:26:21 +1100337/*
338 * Processes input from the client and the program. Input data is stored
339 * in buffers and processed later.
340 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000341static void
Damien Miller95def091999-11-25 00:26:21 +1100342process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343{
Damien Miller95def091999-11-25 00:26:21 +1100344 int len;
345 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346
Damien Miller95def091999-11-25 00:26:21 +1100347 /* Read and buffer any input data from the client. */
348 if (FD_ISSET(connection_in, readset)) {
349 len = read(connection_in, buf, sizeof(buf));
350 if (len == 0) {
Damien Miller16aed052002-09-22 01:26:27 +1000351 verbose("Connection closed by %.100s",
352 get_remote_ipaddr());
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000353 connection_closed = 1;
354 if (compat20)
355 return;
Damien Miller95def091999-11-25 00:26:21 +1100356 fatal_cleanup();
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000357 } else if (len < 0) {
358 if (errno != EINTR && errno != EAGAIN) {
Damien Miller16aed052002-09-22 01:26:27 +1000359 verbose("Read error from remote host "
360 "%.100s: %.100s",
361 get_remote_ipaddr(), strerror(errno));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000362 fatal_cleanup();
363 }
364 } else {
365 /* Buffer any received data. */
366 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100367 }
Damien Miller95def091999-11-25 00:26:21 +1100368 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000369 if (compat20)
370 return;
371
Damien Miller95def091999-11-25 00:26:21 +1100372 /* Read and buffer any available stdout data from the program. */
373 if (!fdout_eof && FD_ISSET(fdout, readset)) {
374 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000375 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
376 /* do nothing */
377 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100378 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000379 } else {
Damien Miller95def091999-11-25 00:26:21 +1100380 buffer_append(&stdout_buffer, buf, len);
381 fdout_bytes += len;
382 }
383 }
384 /* Read and buffer any available stderr data from the program. */
385 if (!fderr_eof && FD_ISSET(fderr, readset)) {
386 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000387 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
388 /* do nothing */
389 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100390 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000391 } else {
Damien Miller95def091999-11-25 00:26:21 +1100392 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000393 }
Damien Miller95def091999-11-25 00:26:21 +1100394 }
395}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
Damien Miller95def091999-11-25 00:26:21 +1100397/*
398 * Sends data from internal buffers to client program stdin.
399 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000400static void
Damien Miller95def091999-11-25 00:26:21 +1100401process_output(fd_set * writeset)
402{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000403 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000404 u_char *data;
405 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100406 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407
Damien Miller95def091999-11-25 00:26:21 +1100408 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000409 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000410 data = buffer_ptr(&stdin_buffer);
411 dlen = buffer_len(&stdin_buffer);
412 len = write(fdin, data, dlen);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000413 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
414 /* do nothing */
415 } else if (len <= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000416 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100417 close(fdin);
418 else
419 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100420 fdin = -1;
421 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000422 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000423 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
424 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100425 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000426 /*
427 * Simulate echo to reduce the impact of
428 * traffic analysis
429 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000430 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000431 packet_send();
432 }
433 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100434 buffer_consume(&stdin_buffer, len);
435 /* Update the count of bytes written to the program. */
436 stdin_bytes += len;
437 }
438 }
439 /* Send any buffered packet data to the client. */
440 if (FD_ISSET(connection_out, writeset))
441 packet_write_poll();
442}
443
444/*
445 * Wait until all buffered output has been sent to the client.
446 * This is used when the program terminates.
447 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000448static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000449drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100450{
451 /* Send any buffered stdout data to the client. */
452 if (buffer_len(&stdout_buffer) > 0) {
453 packet_start(SSH_SMSG_STDOUT_DATA);
454 packet_put_string(buffer_ptr(&stdout_buffer),
455 buffer_len(&stdout_buffer));
456 packet_send();
457 /* Update the count of sent bytes. */
458 stdout_bytes += buffer_len(&stdout_buffer);
459 }
460 /* Send any buffered stderr data to the client. */
461 if (buffer_len(&stderr_buffer) > 0) {
462 packet_start(SSH_SMSG_STDERR_DATA);
463 packet_put_string(buffer_ptr(&stderr_buffer),
464 buffer_len(&stderr_buffer));
465 packet_send();
466 /* Update the count of sent bytes. */
467 stderr_bytes += buffer_len(&stderr_buffer);
468 }
469 /* Wait until all buffered data has been written to the client. */
470 packet_write_wait();
471}
472
Ben Lindstrombba81212001-06-25 05:01:22 +0000473static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000474process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000475{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000476 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000477}
478
Damien Miller95def091999-11-25 00:26:21 +1100479/*
480 * Performs the interactive session. This handles data transmission between
481 * the client and the program. Note that the notion of stdin, stdout, and
482 * stderr in this function is sort of reversed: this function writes to
483 * stdin (of the child program), and reads from stdout and stderr (of the
484 * child program).
485 */
Damien Miller4af51302000-04-16 11:18:38 +1000486void
Damien Miller166fca82000-04-20 07:42:21 +1000487server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100488{
Damien Miller5e953212001-01-30 09:14:00 +1100489 fd_set *readset = NULL, *writeset = NULL;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000490 int max_fd = 0, nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000491 int wait_status; /* Status returned by wait(). */
492 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100493 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000494 u_int max_time_milliseconds;
495 u_int previous_stdout_buffer_bytes;
496 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100497 int type;
498
499 debug("Entering interactive session.");
500
501 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100502 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000503 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100504
505 /* Initialize our global variables. */
506 fdin = fdin_arg;
507 fdout = fdout_arg;
508 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000509
510 /* nonblocking IO */
511 set_nonblock(fdin);
512 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000513 /* we don't have stderr for interactive terminal sessions, see below */
514 if (fderr != -1)
515 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000516
Damien Miller225736c2001-02-19 21:51:08 +1100517 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
518 fdin_is_tty = 1;
519
Damien Miller95def091999-11-25 00:26:21 +1100520 connection_in = packet_get_connection_in();
521 connection_out = packet_get_connection_out();
522
Damien Millerf6681a32001-12-21 14:53:11 +1100523 notify_setup();
524
Damien Miller95def091999-11-25 00:26:21 +1100525 previous_stdout_buffer_bytes = 0;
526
527 /* Set approximate I/O buffer size. */
528 if (packet_is_interactive())
529 buffer_high = 4096;
530 else
531 buffer_high = 64 * 1024;
532
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000533#if 0
Damien Miller95def091999-11-25 00:26:21 +1100534 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000535 max_fd = MAX(connection_in, connection_out);
536 max_fd = MAX(max_fd, fdin);
537 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100538 if (fderr != -1)
539 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000540#endif
Damien Miller95def091999-11-25 00:26:21 +1100541
542 /* Initialize Initialize buffers. */
543 buffer_init(&stdin_buffer);
544 buffer_init(&stdout_buffer);
545 buffer_init(&stderr_buffer);
546
Damien Miller5428f641999-11-25 11:54:57 +1100547 /*
548 * If we have no separate fderr (which is the case when we have a pty
549 * - there we cannot make difference between data sent to stdout and
550 * stderr), indicate that we have seen an EOF from stderr. This way
551 * we don\'t need to check the descriptor everywhere.
552 */
Damien Miller95def091999-11-25 00:26:21 +1100553 if (fderr == -1)
554 fderr_eof = 1;
555
Damien Millerb38eff82000-04-01 11:09:21 +1000556 server_init_dispatch();
557
Damien Miller95def091999-11-25 00:26:21 +1100558 /* Main loop of the server for the interactive session mode. */
559 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100560
561 /* Process buffered packets from the client. */
562 process_buffered_input_packets();
563
Damien Miller5428f641999-11-25 11:54:57 +1100564 /*
565 * If we have received eof, and there is no more pending
566 * input data, cause a real eof by closing fdin.
567 */
Damien Miller95def091999-11-25 00:26:21 +1100568 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000569 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100570 close(fdin);
571 else
572 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100573 fdin = -1;
574 }
Damien Miller5428f641999-11-25 11:54:57 +1100575 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100576 make_packets_from_stderr_data();
577
Damien Miller5428f641999-11-25 11:54:57 +1100578 /*
579 * Make packets from buffered stdout data to send to the
580 * client. If there is very little to send, this arranges to
581 * not send them now, but to wait a short while to see if we
582 * are getting more data. This is necessary, as some systems
583 * wake up readers from a pty after each separate character.
584 */
Damien Miller95def091999-11-25 00:26:21 +1100585 max_time_milliseconds = 0;
586 stdout_buffer_bytes = buffer_len(&stdout_buffer);
587 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
588 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
589 /* try again after a while */
590 max_time_milliseconds = 10;
591 } else {
592 /* Send it now. */
593 make_packets_from_stdout_data();
594 }
595 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
596
597 /* Send channel data to the client. */
598 if (packet_not_very_much_data_to_write())
599 channel_output_poll();
600
Damien Miller5428f641999-11-25 11:54:57 +1100601 /*
602 * Bail out of the loop if the program has closed its output
603 * descriptors, and we have no more data to send to the
604 * client, and there is no pending buffered data.
605 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100606 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
607 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100608 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000609 break;
Damien Miller95def091999-11-25 00:26:21 +1100610 if (!waiting_termination) {
611 const char *s = "Waiting for forwarded connections to terminate...\r\n";
612 char *cp;
613 waiting_termination = 1;
614 buffer_append(&stderr_buffer, s, strlen(s));
615
616 /* Display list of open channels. */
617 cp = channel_open_message();
618 buffer_append(&stderr_buffer, cp, strlen(cp));
619 xfree(cp);
620 }
621 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000622 max_fd = MAX(connection_in, connection_out);
623 max_fd = MAX(max_fd, fdin);
624 max_fd = MAX(max_fd, fdout);
625 max_fd = MAX(max_fd, fderr);
Damien Millerf6681a32001-12-21 14:53:11 +1100626 max_fd = MAX(max_fd, notify_pipe[0]);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000627
Damien Miller95def091999-11-25 00:26:21 +1100628 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100629 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000630 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100631
632 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100633 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100634
635 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100636 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100637
638 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100639 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100640 }
Damien Miller5e953212001-01-30 09:14:00 +1100641 if (readset)
642 xfree(readset);
643 if (writeset)
644 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100645
Damien Miller95def091999-11-25 00:26:21 +1100646 /* Cleanup and termination code. */
647
648 /* Wait until all output has been sent to the client. */
649 drain_output();
650
651 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100652 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100653
654 /* Free and clear the buffers. */
655 buffer_free(&stdin_buffer);
656 buffer_free(&stdout_buffer);
657 buffer_free(&stderr_buffer);
658
659 /* Close the file descriptors. */
660 if (fdout != -1)
661 close(fdout);
662 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100664 if (fderr != -1)
665 close(fderr);
666 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100668 if (fdin != -1)
669 close(fdin);
670 fdin = -1;
671
Ben Lindstrom601e4362001-06-21 03:19:23 +0000672 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100673
Damien Miller95def091999-11-25 00:26:21 +1100674 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000675 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100676
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000677 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
678 if (errno != EINTR)
679 packet_disconnect("wait: %.100s", strerror(errno));
680 if (wait_pid != pid)
Ben Lindstromce0f6342002-06-11 16:42:49 +0000681 error("Strange, wait returned pid %ld, expected %ld",
682 (long)wait_pid, (long)pid);
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000683
Damien Miller95def091999-11-25 00:26:21 +1100684 /* Check if it exited normally. */
685 if (WIFEXITED(wait_status)) {
686 /* Yes, normal exit. Get exit status and send it to the client. */
687 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
688 packet_start(SSH_SMSG_EXITSTATUS);
689 packet_put_int(WEXITSTATUS(wait_status));
690 packet_send();
691 packet_write_wait();
692
Damien Miller5428f641999-11-25 11:54:57 +1100693 /*
694 * Wait for exit confirmation. Note that there might be
695 * other packets coming before it; however, the program has
696 * already died so we just ignore them. The client is
697 * supposed to respond with the confirmation when it receives
698 * the exit status.
699 */
Damien Miller95def091999-11-25 00:26:21 +1100700 do {
Damien Millerdff50992002-01-22 23:16:32 +1100701 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100702 }
703 while (type != SSH_CMSG_EXIT_CONFIRMATION);
704
705 debug("Received exit confirmation.");
706 return;
707 }
708 /* Check if the program terminated due to a signal. */
709 if (WIFSIGNALED(wait_status))
710 packet_disconnect("Command terminated on signal %d.",
711 WTERMSIG(wait_status));
712
713 /* Some weird exit cause. Just exit. */
714 packet_disconnect("wait returned status %04x.", wait_status);
715 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716}
Damien Millerb38eff82000-04-01 11:09:21 +1000717
Damien Miller3ec27592001-10-12 11:35:04 +1000718static void
719collect_children(void)
720{
721 pid_t pid;
722 sigset_t oset, nset;
723 int status;
724
725 /* block SIGCHLD while we check for dead children */
726 sigemptyset(&nset);
727 sigaddset(&nset, SIGCHLD);
728 sigprocmask(SIG_BLOCK, &nset, &oset);
729 if (child_terminated) {
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000730 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
731 (pid < 0 && errno == EINTR))
732 if (pid > 0)
733 session_close_by_pid(pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000734 child_terminated = 0;
735 }
736 sigprocmask(SIG_SETMASK, &oset, NULL);
737}
738
Damien Miller4af51302000-04-16 11:18:38 +1000739void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000740server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000741{
Damien Miller5e953212001-01-30 09:14:00 +1100742 fd_set *readset = NULL, *writeset = NULL;
Damien Miller3ec27592001-10-12 11:35:04 +1000743 int rekeying = 0, max_fd, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000744
745 debug("Entering interactive session for SSH2.");
746
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000747 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000748 child_terminated = 0;
749 connection_in = packet_get_connection_in();
750 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100751
Damien Millerf6681a32001-12-21 14:53:11 +1100752 notify_setup();
753
Damien Miller5e953212001-01-30 09:14:00 +1100754 max_fd = MAX(connection_in, connection_out);
Damien Millerf6681a32001-12-21 14:53:11 +1100755 max_fd = MAX(max_fd, notify_pipe[0]);
756
Ben Lindstrombddd5512001-07-04 04:53:53 +0000757 xxx_authctxt = authctxt;
Damien Miller5e953212001-01-30 09:14:00 +1100758
Damien Millerefb4afe2000-04-12 18:45:05 +1000759 server_init_dispatch();
760
761 for (;;) {
762 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000763
Ben Lindstroma3700052001-04-05 23:26:32 +0000764 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000765
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000766 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000767 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000768 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000769 &nalloc, 0);
Damien Miller52b77be2001-10-10 15:14:37 +1000770
Damien Miller3ec27592001-10-12 11:35:04 +1000771 collect_children();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000772 if (!rekeying)
773 channel_after_select(readset, writeset);
Damien Miller5e953212001-01-30 09:14:00 +1100774 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000775 if (connection_closed)
776 break;
Damien Miller5e953212001-01-30 09:14:00 +1100777 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000778 }
Damien Miller3ec27592001-10-12 11:35:04 +1000779 collect_children();
780
Damien Miller5e953212001-01-30 09:14:00 +1100781 if (readset)
782 xfree(readset);
783 if (writeset)
784 xfree(writeset);
785
Damien Miller52b77be2001-10-10 15:14:37 +1000786 /* free all channels, no more reads and writes */
787 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000788
Damien Miller3ec27592001-10-12 11:35:04 +1000789 /* free remaining sessions, e.g. remove wtmp entries */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000790 session_destroy_all(NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000791}
792
Ben Lindstrombba81212001-06-25 05:01:22 +0000793static void
Damien Miller630d6f42002-01-22 23:17:30 +1100794server_input_channel_failure(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000795{
796 debug("Got CHANNEL_FAILURE for keepalive");
Damien Miller9f0f5c62001-12-21 14:45:46 +1100797 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000798 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000799 * even if this was generated by something other than
800 * the bogus CHANNEL_REQUEST we send for keepalives.
801 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100802 client_alive_timeouts = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000803}
804
805
Ben Lindstrombba81212001-06-25 05:01:22 +0000806static void
Damien Miller630d6f42002-01-22 23:17:30 +1100807server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000808{
809 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000810 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000811
812 /* Stdin data from the client. Append it to the buffer. */
813 /* Ignore any data if the client has closed stdin. */
814 if (fdin == -1)
815 return;
816 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100817 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000818 buffer_append(&stdin_buffer, data, data_len);
819 memset(data, 0, data_len);
820 xfree(data);
821}
822
Ben Lindstrombba81212001-06-25 05:01:22 +0000823static void
Damien Miller630d6f42002-01-22 23:17:30 +1100824server_input_eof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000825{
826 /*
827 * Eof from the client. The stdin descriptor to the
828 * program will be closed when all buffered data has
829 * drained.
830 */
831 debug("EOF received for stdin.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100832 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000833 stdin_eof = 1;
834}
835
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Miller630d6f42002-01-22 23:17:30 +1100837server_input_window_size(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
839 int row = packet_get_int();
840 int col = packet_get_int();
841 int xpixel = packet_get_int();
842 int ypixel = packet_get_int();
843
844 debug("Window change received.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100845 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000846 if (fdin != -1)
847 pty_change_window_size(fdin, row, col, xpixel, ypixel);
848}
849
Ben Lindstrombba81212001-06-25 05:01:22 +0000850static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851server_request_direct_tcpip(char *ctype)
Damien Millerefb4afe2000-04-12 18:45:05 +1000852{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000853 Channel *c;
854 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000855 char *target, *originator;
856 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000857
Damien Miller4af51302000-04-16 11:18:38 +1000858 target = packet_get_string(NULL);
859 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000860 originator = packet_get_string(NULL);
861 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100862 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000863
Damien Miller0bc1bd82000-11-13 22:57:25 +1100864 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Millerb1715dc2000-05-30 13:44:51 +1000865 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000866
Damien Millerefb4afe2000-04-12 18:45:05 +1000867 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000868 sock = channel_connect_to(target, target_port);
869 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000870 xfree(originator);
871 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100872 return NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000873 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100874 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +1100875 CHAN_TCP_PACKET_DEFAULT, 0, xstrdup("direct-tcpip"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000876 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100877}
878
Ben Lindstrombba81212001-06-25 05:01:22 +0000879static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100880server_request_session(char *ctype)
881{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000882 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883
884 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +1100885 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100886 /*
887 * A server session has no fd to read or write until a
888 * CHANNEL_REQUEST for a shell is made, so we set the type to
889 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
890 * CHANNEL_REQUEST messages is registered.
891 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000892 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
893 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100894 0, xstrdup("server-session"), 1);
Ben Lindstrombddd5512001-07-04 04:53:53 +0000895 if (session_open(xxx_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000896 debug("session open failed, free channel %d", c->self);
897 channel_free(c);
898 return NULL;
899 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000900 channel_register_cleanup(c->self, session_close_by_channel);
901 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000902}
903
Ben Lindstrombba81212001-06-25 05:01:22 +0000904static void
Damien Miller630d6f42002-01-22 23:17:30 +1100905server_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000906{
907 Channel *c = NULL;
908 char *ctype;
Damien Millerefb4afe2000-04-12 18:45:05 +1000909 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000910 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000911
912 ctype = packet_get_string(&len);
913 rchan = packet_get_int();
914 rwindow = packet_get_int();
915 rmaxpack = packet_get_int();
916
Damien Miller62cee002000-09-23 17:15:56 +1100917 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +1000918 ctype, rchan, rwindow, rmaxpack);
919
920 if (strcmp(ctype, "session") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100921 c = server_request_session(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000922 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100923 c = server_request_direct_tcpip(ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000924 }
925 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100926 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000927 c->remote_id = rchan;
928 c->remote_window = rwindow;
929 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +0000930 if (c->type != SSH_CHANNEL_CONNECTING) {
931 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
932 packet_put_int(c->remote_id);
933 packet_put_int(c->self);
934 packet_put_int(c->local_window);
935 packet_put_int(c->local_maxpacket);
936 packet_send();
937 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000938 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +1000940 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
941 packet_put_int(rchan);
942 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +0000943 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +0000944 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +0000945 packet_put_cstring("");
946 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000947 packet_send();
948 }
949 xfree(ctype);
950}
951
Ben Lindstrombba81212001-06-25 05:01:22 +0000952static void
Damien Miller630d6f42002-01-22 23:17:30 +1100953server_input_global_request(int type, u_int32_t seq, void *ctxt)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100954{
955 char *rtype;
956 int want_reply;
957 int success = 0;
958
959 rtype = packet_get_string(NULL);
960 want_reply = packet_get_char();
961 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000962
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000963 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100964 if (strcmp(rtype, "tcpip-forward") == 0) {
965 struct passwd *pw;
966 char *listen_address;
967 u_short listen_port;
968
969 pw = auth_get_user();
970 if (pw == NULL)
971 fatal("server_input_global_request: no user");
972 listen_address = packet_get_string(NULL); /* XXX currently ignored */
973 listen_port = (u_short)packet_get_int();
974 debug("server_input_global_request: tcpip-forward listen %s port %d",
975 listen_address, listen_port);
976
977 /* check permissions */
978 if (!options.allow_tcp_forwarding ||
Ben Lindstrom99a4e142002-07-09 14:06:40 +0000979 no_port_forwarding_flag
980#ifndef NO_IPPORT_RESERVED_CONCEPT
981 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
982#endif
983 ) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100984 success = 0;
985 packet_send_debug("Server has disabled port forwarding.");
986 } else {
987 /* Start listening on the port */
Damien Millerb16461c2002-01-22 23:29:22 +1100988 success = channel_setup_remote_fwd_listener(
989 listen_address, listen_port, options.gateway_ports);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100990 }
991 xfree(listen_address);
992 }
993 if (want_reply) {
994 packet_start(success ?
995 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
996 packet_send();
997 packet_write_wait();
998 }
999 xfree(rtype);
1000}
Damien Millerc7ef63d2002-02-05 12:21:42 +11001001static void
1002server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1003{
1004 Channel *c;
1005 int id, reply, success = 0;
1006 char *rtype;
1007
1008 id = packet_get_int();
1009 rtype = packet_get_string(NULL);
1010 reply = packet_get_char();
1011
1012 debug("server_input_channel_req: channel %d request %s reply %d",
1013 id, rtype, reply);
1014
1015 if ((c = channel_lookup(id)) == NULL)
1016 packet_disconnect("server_input_channel_req: "
1017 "unknown channel %d", id);
1018 if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN)
1019 success = session_input_channel_req(c, rtype);
1020 if (reply) {
1021 packet_start(success ?
1022 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1023 packet_put_int(c->remote_id);
1024 packet_send();
1025 }
1026 xfree(rtype);
1027}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001028
Ben Lindstrombba81212001-06-25 05:01:22 +00001029static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001030server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001031{
1032 debug("server_init_dispatch_20");
1033 dispatch_init(&dispatch_protocol_error);
1034 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1035 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1036 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1037 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1038 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1039 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1040 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +11001041 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +10001042 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001043 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001044 /* client_alive */
1045 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001046 /* rekeying */
1047 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001048}
Ben Lindstrombba81212001-06-25 05:01:22 +00001049static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001050server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001051{
1052 debug("server_init_dispatch_13");
1053 dispatch_init(NULL);
1054 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1055 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1056 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1057 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1058 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1059 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1060 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1061 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1062 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1063}
Ben Lindstrombba81212001-06-25 05:01:22 +00001064static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001065server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001066{
1067 server_init_dispatch_13();
1068 debug("server_init_dispatch_15");
1069 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1070 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1071}
Ben Lindstrombba81212001-06-25 05:01:22 +00001072static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001073server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001074{
Damien Millerefb4afe2000-04-12 18:45:05 +10001075 if (compat20)
1076 server_init_dispatch_20();
1077 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001078 server_init_dispatch_13();
1079 else
1080 server_init_dispatch_15();
1081}