blob: 23f8831ef04b894d49d8945a57a603931f1d78d1 [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 Miller99bd21e2006-03-15 11:11:28 +110038RCSID("$OpenBSD: serverloop.c,v 1.125 2006/02/07 01:42:00 stevesk Exp $");
39
40#include <termios.h>
Damien Miller69b69aa2000-10-28 14:19:58 +110041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043#include "packet.h"
44#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100047#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000048#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000049#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100050#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100052#include "ssh2.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000053#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100054#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100055#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100056#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "serverloop.h"
58#include "misc.h"
Ben Lindstrom8ac91062001-04-04 17:57:54 +000059#include "kex.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller50a41ed2000-10-16 12:14:42 +110061extern ServerOptions options;
62
Ben Lindstrom8ac91062001-04-04 17:57:54 +000063/* XXX */
64extern Kex *xxx_kex;
Darren Tucker3e33cec2003-10-02 16:12:36 +100065extern Authctxt *the_authctxt;
Damien Miller24ecf612005-11-05 15:16:52 +110066extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000067
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068static Buffer stdin_buffer; /* Buffer for stdin data. */
69static Buffer stdout_buffer; /* Buffer for stdout data. */
70static Buffer stderr_buffer; /* Buffer for stderr data. */
71static int fdin; /* Descriptor for stdin (for writing) */
72static int fdout; /* Descriptor for stdout (for reading);
73 May be same number as fdin. */
74static int fderr; /* Descriptor for stderr. May be -1. */
75static long stdin_bytes = 0; /* Number of bytes written to stdin. */
76static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
77static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
78static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
79static int stdin_eof = 0; /* EOF message received from client. */
80static int fdout_eof = 0; /* EOF encountered reading from fdout. */
81static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +110082static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083static int connection_in; /* Connection to client (input). */
84static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +000085static int connection_closed = 0; /* Connection to client closed. */
86static u_int buffer_high; /* "Soft" max buffer size. */
Damien Miller8c3902a2001-10-10 15:01:40 +100087static int client_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * This SIGCHLD kludge is used to detect when the child exits. The server
91 * will exit after that, as soon as forwarded connections have terminated.
92 */
Ben Lindstrombba81212001-06-25 05:01:22 +000093
Ben Lindstrom5e71c542001-12-06 16:48:14 +000094static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller24ecf612005-11-05 15:16:52 +110096/* Cleanup on signals (!use_privsep case only) */
97static volatile sig_atomic_t received_sigterm = 0;
98
Ben Lindstrombba81212001-06-25 05:01:22 +000099/* prototypes */
100static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000101
Damien Millerf6681a32001-12-21 14:53:11 +1100102/*
103 * we write to this pipe if a SIGCHLD is caught in order to avoid
104 * the race between select() and child_terminated
105 */
106static int notify_pipe[2];
107static void
108notify_setup(void)
109{
110 if (pipe(notify_pipe) < 0) {
111 error("pipe(notify_pipe) failed %s", strerror(errno));
112 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
113 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
114 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
115 close(notify_pipe[0]);
116 close(notify_pipe[1]);
117 } else {
118 set_nonblock(notify_pipe[0]);
119 set_nonblock(notify_pipe[1]);
120 return;
121 }
122 notify_pipe[0] = -1; /* read end */
123 notify_pipe[1] = -1; /* write end */
124}
125static void
126notify_parent(void)
127{
128 if (notify_pipe[1] != -1)
129 write(notify_pipe[1], "", 1);
130}
131static void
132notify_prepare(fd_set *readset)
133{
134 if (notify_pipe[0] != -1)
135 FD_SET(notify_pipe[0], readset);
136}
137static void
138notify_done(fd_set *readset)
139{
140 char c;
141
142 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
143 while (read(notify_pipe[0], &c, 1) != -1)
144 debug2("notify_done: reading");
145}
146
Ben Lindstrombba81212001-06-25 05:01:22 +0000147static void
Damien Miller95def091999-11-25 00:26:21 +1100148sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Damien Miller95def091999-11-25 00:26:21 +1100150 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000151 debug("Received SIGCHLD.");
152 child_terminated = 1;
Tim Rice81ed5182002-09-25 17:38:46 -0700153#ifndef _UNICOS
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000154 mysignal(SIGCHLD, sigchld_handler);
Tim Rice81ed5182002-09-25 17:38:46 -0700155#endif
Damien Millerf6681a32001-12-21 14:53:11 +1100156 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000157 errno = save_errno;
158}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller24ecf612005-11-05 15:16:52 +1100160static void
161sigterm_handler(int sig)
162{
163 received_sigterm = sig;
164}
165
Damien Miller95def091999-11-25 00:26:21 +1100166/*
Damien Miller95def091999-11-25 00:26:21 +1100167 * Make packets from buffered stderr data, and buffer it for sending
168 * to the client.
169 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000171make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172{
Darren Tucker502d3842003-06-28 12:38:01 +1000173 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller95def091999-11-25 00:26:21 +1100175 /* Send buffered stderr data to the client. */
176 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100177 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100178 len = buffer_len(&stderr_buffer);
179 if (packet_is_interactive()) {
180 if (len > 512)
181 len = 512;
182 } else {
183 /* Keep the packets at reasonable size. */
184 if (len > packet_get_maxsize())
185 len = packet_get_maxsize();
186 }
187 packet_start(SSH_SMSG_STDERR_DATA);
188 packet_put_string(buffer_ptr(&stderr_buffer), len);
189 packet_send();
190 buffer_consume(&stderr_buffer, len);
191 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193}
194
Damien Miller95def091999-11-25 00:26:21 +1100195/*
196 * Make packets from buffered stdout data, and buffer it for sending to the
197 * client.
198 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000200make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Darren Tucker502d3842003-06-28 12:38:01 +1000202 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller95def091999-11-25 00:26:21 +1100204 /* Send buffered stdout data to the client. */
205 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100206 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100207 len = buffer_len(&stdout_buffer);
208 if (packet_is_interactive()) {
209 if (len > 512)
210 len = 512;
211 } else {
212 /* Keep the packets at reasonable size. */
213 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000214 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100215 }
216 packet_start(SSH_SMSG_STDOUT_DATA);
217 packet_put_string(buffer_ptr(&stdout_buffer), len);
218 packet_send();
219 buffer_consume(&stdout_buffer, len);
220 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222}
223
Damien Miller8c3902a2001-10-10 15:01:40 +1000224static void
225client_alive_check(void)
226{
Damien Millerb5820f42003-12-17 16:27:32 +1100227 int channel_id;
Damien Miller056cf732002-01-22 23:21:39 +1100228
Damien Miller8c3902a2001-10-10 15:01:40 +1000229 /* timeout, check to see how many we have had */
230 if (++client_alive_timeouts > options.client_alive_count_max)
231 packet_disconnect("Timeout, your session not responding.");
232
Damien Miller8c3902a2001-10-10 15:01:40 +1000233 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100234 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000235 * we should get back a failure
236 */
Damien Millerb5820f42003-12-17 16:27:32 +1100237 if ((channel_id = channel_find_open()) == -1) {
238 packet_start(SSH2_MSG_GLOBAL_REQUEST);
239 packet_put_cstring("keepalive@openssh.com");
240 packet_put_char(1); /* boolean: want reply */
241 } else {
242 channel_request_start(channel_id, "keepalive@openssh.com", 1);
243 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000244 packet_send();
245}
246
Damien Miller95def091999-11-25 00:26:21 +1100247/*
248 * Sleep in select() until we can do something. This will initialize the
249 * select masks. Upon return, the masks will indicate which descriptors
250 * have data or can accept data. Optionally, a maximum time can be specified
251 * for the duration of the wait (0 = infinite).
252 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000253static void
Damien Miller5e953212001-01-30 09:14:00 +1100254wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000255 u_int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256{
Damien Miller95def091999-11-25 00:26:21 +1100257 struct timeval tv, *tvp;
258 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000259 int client_alive_scheduled = 0;
260
261 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100262 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000263 * and indicate that this particular timeout was for client
264 * alive by setting the client_alive_scheduled flag.
265 *
266 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100267 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000268 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000269 if (compat20 &&
270 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000271 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000272 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000273 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller5e953212001-01-30 09:14:00 +1100275 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000276 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Millerefb4afe2000-04-12 18:45:05 +1000278 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000279#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000280 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000281 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000282#endif
283 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000284 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000285 /*
286 * Read packets from the client unless we have too much
287 * buffered stdin or channel data.
288 */
289 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000290 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100291 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000292 /*
293 * If there is not too much data already buffered going to
294 * the client, try to get some more data from the program.
295 */
296 if (packet_not_very_much_data_to_write()) {
297 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100298 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000299 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100300 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000301 }
302 /*
303 * If we have buffered data, try to write some of that data
304 * to the program.
305 */
306 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100307 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000308 }
Damien Millerf6681a32001-12-21 14:53:11 +1100309 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100310
Damien Miller5428f641999-11-25 11:54:57 +1100311 /*
312 * If we have buffered packet data going to the client, mark that
313 * descriptor.
314 */
Damien Miller95def091999-11-25 00:26:21 +1100315 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100316 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100317
Damien Miller5428f641999-11-25 11:54:57 +1100318 /*
319 * If child has terminated and there is enough buffer space to read
320 * from it, then read as much as is available and exit.
321 */
Damien Miller95def091999-11-25 00:26:21 +1100322 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000323 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100324 max_time_milliseconds = 100;
325
326 if (max_time_milliseconds == 0)
327 tvp = NULL;
328 else {
329 tv.tv_sec = max_time_milliseconds / 1000;
330 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
331 tvp = &tv;
332 }
333
334 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100335 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100336
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000337 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100338 memset(*readsetp, 0, *nallocp);
339 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100340 if (errno != EINTR)
341 error("select: %.100s", strerror(errno));
Damien Miller3ec27592001-10-12 11:35:04 +1000342 } else if (ret == 0 && client_alive_scheduled)
Damien Miller8c3902a2001-10-10 15:01:40 +1000343 client_alive_check();
Damien Millerf6681a32001-12-21 14:53:11 +1100344
345 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346}
347
Damien Miller95def091999-11-25 00:26:21 +1100348/*
349 * Processes input from the client and the program. Input data is stored
350 * in buffers and processed later.
351 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000352static void
Damien Miller95def091999-11-25 00:26:21 +1100353process_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354{
Damien Miller95def091999-11-25 00:26:21 +1100355 int len;
356 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller95def091999-11-25 00:26:21 +1100358 /* Read and buffer any input data from the client. */
359 if (FD_ISSET(connection_in, readset)) {
360 len = read(connection_in, buf, sizeof(buf));
361 if (len == 0) {
Damien Miller16aed052002-09-22 01:26:27 +1000362 verbose("Connection closed by %.100s",
363 get_remote_ipaddr());
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000364 connection_closed = 1;
365 if (compat20)
366 return;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000367 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000368 } else if (len < 0) {
369 if (errno != EINTR && errno != EAGAIN) {
Damien Miller16aed052002-09-22 01:26:27 +1000370 verbose("Read error from remote host "
371 "%.100s: %.100s",
372 get_remote_ipaddr(), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000373 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000374 }
375 } else {
376 /* Buffer any received data. */
377 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100378 }
Damien Miller95def091999-11-25 00:26:21 +1100379 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000380 if (compat20)
381 return;
382
Damien Miller95def091999-11-25 00:26:21 +1100383 /* Read and buffer any available stdout data from the program. */
384 if (!fdout_eof && FD_ISSET(fdout, readset)) {
385 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000386 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
387 /* do nothing */
388 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100389 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000390 } else {
Damien Miller95def091999-11-25 00:26:21 +1100391 buffer_append(&stdout_buffer, buf, len);
392 fdout_bytes += len;
393 }
394 }
395 /* Read and buffer any available stderr data from the program. */
396 if (!fderr_eof && FD_ISSET(fderr, readset)) {
397 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000398 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
399 /* do nothing */
400 } else if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +1100401 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000402 } else {
Damien Miller95def091999-11-25 00:26:21 +1100403 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000404 }
Damien Miller95def091999-11-25 00:26:21 +1100405 }
406}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407
Damien Miller95def091999-11-25 00:26:21 +1100408/*
409 * Sends data from internal buffers to client program stdin.
410 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000411static void
Damien Miller95def091999-11-25 00:26:21 +1100412process_output(fd_set * writeset)
413{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000414 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000415 u_char *data;
416 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100417 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418
Damien Miller95def091999-11-25 00:26:21 +1100419 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000420 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000421 data = buffer_ptr(&stdin_buffer);
422 dlen = buffer_len(&stdin_buffer);
423 len = write(fdin, data, dlen);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000424 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
425 /* do nothing */
426 } else if (len <= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000427 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100428 close(fdin);
429 else
430 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100431 fdin = -1;
432 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000433 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000434 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
435 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100436 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000437 /*
438 * Simulate echo to reduce the impact of
439 * traffic analysis
440 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000441 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000442 packet_send();
443 }
444 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100445 buffer_consume(&stdin_buffer, len);
446 /* Update the count of bytes written to the program. */
447 stdin_bytes += len;
448 }
449 }
450 /* Send any buffered packet data to the client. */
451 if (FD_ISSET(connection_out, writeset))
452 packet_write_poll();
453}
454
455/*
456 * Wait until all buffered output has been sent to the client.
457 * This is used when the program terminates.
458 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000459static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000460drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100461{
462 /* Send any buffered stdout data to the client. */
463 if (buffer_len(&stdout_buffer) > 0) {
464 packet_start(SSH_SMSG_STDOUT_DATA);
465 packet_put_string(buffer_ptr(&stdout_buffer),
466 buffer_len(&stdout_buffer));
467 packet_send();
468 /* Update the count of sent bytes. */
469 stdout_bytes += buffer_len(&stdout_buffer);
470 }
471 /* Send any buffered stderr data to the client. */
472 if (buffer_len(&stderr_buffer) > 0) {
473 packet_start(SSH_SMSG_STDERR_DATA);
474 packet_put_string(buffer_ptr(&stderr_buffer),
475 buffer_len(&stderr_buffer));
476 packet_send();
477 /* Update the count of sent bytes. */
478 stderr_bytes += buffer_len(&stderr_buffer);
479 }
480 /* Wait until all buffered data has been written to the client. */
481 packet_write_wait();
482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000485process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000486{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000487 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000488}
489
Damien Miller95def091999-11-25 00:26:21 +1100490/*
491 * Performs the interactive session. This handles data transmission between
492 * the client and the program. Note that the notion of stdin, stdout, and
493 * stderr in this function is sort of reversed: this function writes to
494 * stdin (of the child program), and reads from stdout and stderr (of the
495 * child program).
496 */
Damien Miller4af51302000-04-16 11:18:38 +1000497void
Damien Miller166fca82000-04-20 07:42:21 +1000498server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100499{
Damien Miller5e953212001-01-30 09:14:00 +1100500 fd_set *readset = NULL, *writeset = NULL;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000501 int max_fd = 0;
502 u_int nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000503 int wait_status; /* Status returned by wait(). */
504 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100505 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000506 u_int max_time_milliseconds;
507 u_int previous_stdout_buffer_bytes;
508 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100509 int type;
510
511 debug("Entering interactive session.");
512
513 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100514 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000515 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100516
Damien Miller24ecf612005-11-05 15:16:52 +1100517 if (!use_privsep) {
518 signal(SIGTERM, sigterm_handler);
519 signal(SIGINT, sigterm_handler);
520 signal(SIGQUIT, sigterm_handler);
521 }
522
Damien Miller95def091999-11-25 00:26:21 +1100523 /* Initialize our global variables. */
524 fdin = fdin_arg;
525 fdout = fdout_arg;
526 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000527
528 /* nonblocking IO */
529 set_nonblock(fdin);
530 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000531 /* we don't have stderr for interactive terminal sessions, see below */
532 if (fderr != -1)
533 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000534
Damien Miller225736c2001-02-19 21:51:08 +1100535 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
536 fdin_is_tty = 1;
537
Damien Miller95def091999-11-25 00:26:21 +1100538 connection_in = packet_get_connection_in();
539 connection_out = packet_get_connection_out();
540
Damien Millerf6681a32001-12-21 14:53:11 +1100541 notify_setup();
542
Damien Miller95def091999-11-25 00:26:21 +1100543 previous_stdout_buffer_bytes = 0;
544
545 /* Set approximate I/O buffer size. */
546 if (packet_is_interactive())
547 buffer_high = 4096;
548 else
549 buffer_high = 64 * 1024;
550
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000551#if 0
Damien Miller95def091999-11-25 00:26:21 +1100552 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000553 max_fd = MAX(connection_in, connection_out);
554 max_fd = MAX(max_fd, fdin);
555 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100556 if (fderr != -1)
557 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000558#endif
Damien Miller95def091999-11-25 00:26:21 +1100559
560 /* Initialize Initialize buffers. */
561 buffer_init(&stdin_buffer);
562 buffer_init(&stdout_buffer);
563 buffer_init(&stderr_buffer);
564
Damien Miller5428f641999-11-25 11:54:57 +1100565 /*
566 * If we have no separate fderr (which is the case when we have a pty
567 * - there we cannot make difference between data sent to stdout and
568 * stderr), indicate that we have seen an EOF from stderr. This way
Damien Miller788f2122005-11-05 15:14:59 +1100569 * we don't need to check the descriptor everywhere.
Damien Miller5428f641999-11-25 11:54:57 +1100570 */
Damien Miller95def091999-11-25 00:26:21 +1100571 if (fderr == -1)
572 fderr_eof = 1;
573
Damien Millerb38eff82000-04-01 11:09:21 +1000574 server_init_dispatch();
575
Damien Miller95def091999-11-25 00:26:21 +1100576 /* Main loop of the server for the interactive session mode. */
577 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100578
579 /* Process buffered packets from the client. */
580 process_buffered_input_packets();
581
Damien Miller5428f641999-11-25 11:54:57 +1100582 /*
583 * If we have received eof, and there is no more pending
584 * input data, cause a real eof by closing fdin.
585 */
Damien Miller95def091999-11-25 00:26:21 +1100586 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000587 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100588 close(fdin);
589 else
590 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100591 fdin = -1;
592 }
Damien Miller5428f641999-11-25 11:54:57 +1100593 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100594 make_packets_from_stderr_data();
595
Damien Miller5428f641999-11-25 11:54:57 +1100596 /*
597 * Make packets from buffered stdout data to send to the
598 * client. If there is very little to send, this arranges to
599 * not send them now, but to wait a short while to see if we
600 * are getting more data. This is necessary, as some systems
601 * wake up readers from a pty after each separate character.
602 */
Damien Miller95def091999-11-25 00:26:21 +1100603 max_time_milliseconds = 0;
604 stdout_buffer_bytes = buffer_len(&stdout_buffer);
605 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
606 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
607 /* try again after a while */
608 max_time_milliseconds = 10;
609 } else {
610 /* Send it now. */
611 make_packets_from_stdout_data();
612 }
613 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
614
615 /* Send channel data to the client. */
616 if (packet_not_very_much_data_to_write())
617 channel_output_poll();
618
Damien Miller5428f641999-11-25 11:54:57 +1100619 /*
620 * Bail out of the loop if the program has closed its output
621 * descriptors, and we have no more data to send to the
622 * client, and there is no pending buffered data.
623 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100624 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
625 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100626 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000627 break;
Damien Miller95def091999-11-25 00:26:21 +1100628 if (!waiting_termination) {
629 const char *s = "Waiting for forwarded connections to terminate...\r\n";
630 char *cp;
631 waiting_termination = 1;
632 buffer_append(&stderr_buffer, s, strlen(s));
633
634 /* Display list of open channels. */
635 cp = channel_open_message();
636 buffer_append(&stderr_buffer, cp, strlen(cp));
637 xfree(cp);
638 }
639 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000640 max_fd = MAX(connection_in, connection_out);
641 max_fd = MAX(max_fd, fdin);
642 max_fd = MAX(max_fd, fdout);
643 max_fd = MAX(max_fd, fderr);
Damien Millerf6681a32001-12-21 14:53:11 +1100644 max_fd = MAX(max_fd, notify_pipe[0]);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000645
Damien Miller95def091999-11-25 00:26:21 +1100646 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100647 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000648 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100649
Damien Miller24ecf612005-11-05 15:16:52 +1100650 if (received_sigterm) {
651 logit("Exiting on signal %d", received_sigterm);
652 /* Clean up sessions, utmp, etc. */
653 cleanup_exit(255);
654 }
655
Damien Miller95def091999-11-25 00:26:21 +1100656 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100657 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100658
659 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100660 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100661
662 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100663 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100664 }
Damien Miller5e953212001-01-30 09:14:00 +1100665 if (readset)
666 xfree(readset);
667 if (writeset)
668 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100669
Damien Miller95def091999-11-25 00:26:21 +1100670 /* Cleanup and termination code. */
671
672 /* Wait until all output has been sent to the client. */
673 drain_output();
674
675 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100676 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100677
678 /* Free and clear the buffers. */
679 buffer_free(&stdin_buffer);
680 buffer_free(&stdout_buffer);
681 buffer_free(&stderr_buffer);
682
683 /* Close the file descriptors. */
684 if (fdout != -1)
685 close(fdout);
686 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000687 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100688 if (fderr != -1)
689 close(fderr);
690 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000691 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100692 if (fdin != -1)
693 close(fdin);
694 fdin = -1;
695
Ben Lindstrom601e4362001-06-21 03:19:23 +0000696 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100697
Damien Miller95def091999-11-25 00:26:21 +1100698 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000699 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100700
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000701 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
702 if (errno != EINTR)
703 packet_disconnect("wait: %.100s", strerror(errno));
704 if (wait_pid != pid)
Ben Lindstromce0f6342002-06-11 16:42:49 +0000705 error("Strange, wait returned pid %ld, expected %ld",
706 (long)wait_pid, (long)pid);
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000707
Damien Miller95def091999-11-25 00:26:21 +1100708 /* Check if it exited normally. */
709 if (WIFEXITED(wait_status)) {
710 /* Yes, normal exit. Get exit status and send it to the client. */
711 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
712 packet_start(SSH_SMSG_EXITSTATUS);
713 packet_put_int(WEXITSTATUS(wait_status));
714 packet_send();
715 packet_write_wait();
716
Damien Miller5428f641999-11-25 11:54:57 +1100717 /*
718 * Wait for exit confirmation. Note that there might be
719 * other packets coming before it; however, the program has
720 * already died so we just ignore them. The client is
721 * supposed to respond with the confirmation when it receives
722 * the exit status.
723 */
Damien Miller95def091999-11-25 00:26:21 +1100724 do {
Damien Millerdff50992002-01-22 23:16:32 +1100725 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100726 }
727 while (type != SSH_CMSG_EXIT_CONFIRMATION);
728
729 debug("Received exit confirmation.");
730 return;
731 }
732 /* Check if the program terminated due to a signal. */
733 if (WIFSIGNALED(wait_status))
734 packet_disconnect("Command terminated on signal %d.",
735 WTERMSIG(wait_status));
736
737 /* Some weird exit cause. Just exit. */
738 packet_disconnect("wait returned status %04x.", wait_status);
739 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000740}
Damien Millerb38eff82000-04-01 11:09:21 +1000741
Damien Miller3ec27592001-10-12 11:35:04 +1000742static void
743collect_children(void)
744{
745 pid_t pid;
746 sigset_t oset, nset;
747 int status;
748
749 /* block SIGCHLD while we check for dead children */
750 sigemptyset(&nset);
751 sigaddset(&nset, SIGCHLD);
752 sigprocmask(SIG_BLOCK, &nset, &oset);
753 if (child_terminated) {
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000754 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
755 (pid < 0 && errno == EINTR))
756 if (pid > 0)
757 session_close_by_pid(pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000758 child_terminated = 0;
759 }
760 sigprocmask(SIG_SETMASK, &oset, NULL);
761}
762
Damien Miller4af51302000-04-16 11:18:38 +1000763void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000764server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000765{
Damien Miller5e953212001-01-30 09:14:00 +1100766 fd_set *readset = NULL, *writeset = NULL;
Damien Miller3ec27592001-10-12 11:35:04 +1000767 int rekeying = 0, max_fd, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000768
769 debug("Entering interactive session for SSH2.");
770
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000771 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000772 child_terminated = 0;
773 connection_in = packet_get_connection_in();
774 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100775
Damien Miller24ecf612005-11-05 15:16:52 +1100776 if (!use_privsep) {
777 signal(SIGTERM, sigterm_handler);
778 signal(SIGINT, sigterm_handler);
779 signal(SIGQUIT, sigterm_handler);
780 }
781
Damien Millerf6681a32001-12-21 14:53:11 +1100782 notify_setup();
783
Damien Miller5e953212001-01-30 09:14:00 +1100784 max_fd = MAX(connection_in, connection_out);
Damien Millerf6681a32001-12-21 14:53:11 +1100785 max_fd = MAX(max_fd, notify_pipe[0]);
786
Damien Millerefb4afe2000-04-12 18:45:05 +1000787 server_init_dispatch();
788
789 for (;;) {
790 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000791
Ben Lindstroma3700052001-04-05 23:26:32 +0000792 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000793
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000794 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000795 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000796 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000797 &nalloc, 0);
Damien Miller52b77be2001-10-10 15:14:37 +1000798
Damien Miller24ecf612005-11-05 15:16:52 +1100799 if (received_sigterm) {
800 logit("Exiting on signal %d", received_sigterm);
801 /* Clean up sessions, utmp, etc. */
802 cleanup_exit(255);
803 }
804
Damien Miller3ec27592001-10-12 11:35:04 +1000805 collect_children();
Damien Millera5539d22003-04-09 20:50:06 +1000806 if (!rekeying) {
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000807 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +1000808 if (packet_need_rekeying()) {
809 debug("need rekeying");
810 xxx_kex->done = 0;
811 kex_send_kexinit(xxx_kex);
812 }
813 }
Damien Miller5e953212001-01-30 09:14:00 +1100814 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000815 if (connection_closed)
816 break;
Damien Miller5e953212001-01-30 09:14:00 +1100817 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000818 }
Damien Miller3ec27592001-10-12 11:35:04 +1000819 collect_children();
820
Damien Miller5e953212001-01-30 09:14:00 +1100821 if (readset)
822 xfree(readset);
823 if (writeset)
824 xfree(writeset);
825
Damien Miller52b77be2001-10-10 15:14:37 +1000826 /* free all channels, no more reads and writes */
827 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000828
Damien Miller3ec27592001-10-12 11:35:04 +1000829 /* free remaining sessions, e.g. remove wtmp entries */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000830 session_destroy_all(NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000831}
832
Ben Lindstrombba81212001-06-25 05:01:22 +0000833static void
Damien Millerb5820f42003-12-17 16:27:32 +1100834server_input_keep_alive(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000835{
Damien Millerb5820f42003-12-17 16:27:32 +1100836 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100837 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000838 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000839 * even if this was generated by something other than
840 * the bogus CHANNEL_REQUEST we send for keepalives.
841 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100842 client_alive_timeouts = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000843}
844
Ben Lindstrombba81212001-06-25 05:01:22 +0000845static void
Damien Miller630d6f42002-01-22 23:17:30 +1100846server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000847{
848 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000849 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000850
851 /* Stdin data from the client. Append it to the buffer. */
852 /* Ignore any data if the client has closed stdin. */
853 if (fdin == -1)
854 return;
855 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100856 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000857 buffer_append(&stdin_buffer, data, data_len);
858 memset(data, 0, data_len);
859 xfree(data);
860}
861
Ben Lindstrombba81212001-06-25 05:01:22 +0000862static void
Damien Miller630d6f42002-01-22 23:17:30 +1100863server_input_eof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000864{
865 /*
866 * Eof from the client. The stdin descriptor to the
867 * program will be closed when all buffered data has
868 * drained.
869 */
870 debug("EOF received for stdin.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100871 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000872 stdin_eof = 1;
873}
874
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static void
Damien Miller630d6f42002-01-22 23:17:30 +1100876server_input_window_size(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000877{
878 int row = packet_get_int();
879 int col = packet_get_int();
880 int xpixel = packet_get_int();
881 int ypixel = packet_get_int();
882
883 debug("Window change received.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100884 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000885 if (fdin != -1)
886 pty_change_window_size(fdin, row, col, xpixel, ypixel);
887}
888
Ben Lindstrombba81212001-06-25 05:01:22 +0000889static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +1100890server_request_direct_tcpip(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000891{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000892 Channel *c;
893 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000894 char *target, *originator;
895 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000896
Damien Miller4af51302000-04-16 11:18:38 +1000897 target = packet_get_string(NULL);
898 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000899 originator = packet_get_string(NULL);
900 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100901 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000902
Damien Miller0bc1bd82000-11-13 22:57:25 +1100903 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000904 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000905
Damien Millerefb4afe2000-04-12 18:45:05 +1000906 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000907 sock = channel_connect_to(target, target_port);
908 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000909 xfree(originator);
910 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100911 return NULL;
Damien Millerfb1310e2004-01-21 11:02:50 +1100912 c = channel_new("direct-tcpip", SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100913 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000914 CHAN_TCP_PACKET_DEFAULT, 0, "direct-tcpip", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000915 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100916}
917
Ben Lindstrombba81212001-06-25 05:01:22 +0000918static Channel *
Damien Millerd27b9472005-12-13 19:29:02 +1100919server_request_tun(void)
920{
921 Channel *c = NULL;
Damien Miller7b58e802005-12-13 19:33:19 +1100922 int mode, tun;
923 int sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100924
Damien Miller7b58e802005-12-13 19:33:19 +1100925 mode = packet_get_int();
926 switch (mode) {
927 case SSH_TUNMODE_POINTOPOINT:
928 case SSH_TUNMODE_ETHERNET:
929 break;
930 default:
931 packet_send_debug("Unsupported tunnel device mode.");
932 return NULL;
933 }
934 if ((options.permit_tun & mode) == 0) {
935 packet_send_debug("Server has rejected tunnel device "
936 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100937 return NULL;
938 }
939
940 tun = packet_get_int();
Darren Tucker0d0e8f02005-12-20 16:08:42 +1100941 if (forced_tun_device != -1) {
Damien Miller7b58e802005-12-13 19:33:19 +1100942 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100943 goto done;
944 tun = forced_tun_device;
945 }
Damien Miller7b58e802005-12-13 19:33:19 +1100946 sock = tun_open(tun, mode);
Damien Millerd27b9472005-12-13 19:29:02 +1100947 if (sock < 0)
948 goto done;
949 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
950 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
951 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100952#if defined(SSH_TUN_FILTER)
953 if (mode == SSH_TUNMODE_POINTOPOINT)
954 channel_register_filter(c->self, sys_tun_infilter,
955 sys_tun_outfilter);
956#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100957
958 done:
959 if (c == NULL)
960 packet_send_debug("Failed to open the tunnel device.");
961 return c;
962}
963
964static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +1100965server_request_session(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100966{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000967 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968
969 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +1100970 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971 /*
972 * A server session has no fd to read or write until a
973 * CHANNEL_REQUEST for a shell is made, so we set the type to
974 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
975 * CHANNEL_REQUEST messages is registered.
976 */
Damien Millerfb1310e2004-01-21 11:02:50 +1100977 c = channel_new("session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000978 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000979 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000980 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000981 debug("session open failed, free channel %d", c->self);
982 channel_free(c);
983 return NULL;
984 }
Damien Miller39eda6e2005-11-05 14:52:50 +1100985 channel_register_cleanup(c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000986 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +1000987}
988
Ben Lindstrombba81212001-06-25 05:01:22 +0000989static void
Damien Miller630d6f42002-01-22 23:17:30 +1100990server_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000991{
992 Channel *c = NULL;
993 char *ctype;
Damien Millerefb4afe2000-04-12 18:45:05 +1000994 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000995 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +1000996
997 ctype = packet_get_string(&len);
998 rchan = packet_get_int();
999 rwindow = packet_get_int();
1000 rmaxpack = packet_get_int();
1001
Damien Miller62cee002000-09-23 17:15:56 +11001002 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001003 ctype, rchan, rwindow, rmaxpack);
1004
1005 if (strcmp(ctype, "session") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001006 c = server_request_session();
Damien Millerefb4afe2000-04-12 18:45:05 +10001007 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001008 c = server_request_direct_tcpip();
Damien Millerd27b9472005-12-13 19:29:02 +11001009 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
1010 c = server_request_tun();
Damien Millerefb4afe2000-04-12 18:45:05 +10001011 }
1012 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001013 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001014 c->remote_id = rchan;
1015 c->remote_window = rwindow;
1016 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +00001017 if (c->type != SSH_CHANNEL_CONNECTING) {
1018 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1019 packet_put_int(c->remote_id);
1020 packet_put_int(c->self);
1021 packet_put_int(c->local_window);
1022 packet_put_int(c->local_maxpacket);
1023 packet_send();
1024 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001025 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001026 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001027 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1028 packet_put_int(rchan);
1029 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001030 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001031 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001032 packet_put_cstring("");
1033 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001034 packet_send();
1035 }
1036 xfree(ctype);
1037}
1038
Ben Lindstrombba81212001-06-25 05:01:22 +00001039static void
Damien Miller630d6f42002-01-22 23:17:30 +11001040server_input_global_request(int type, u_int32_t seq, void *ctxt)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001041{
1042 char *rtype;
1043 int want_reply;
1044 int success = 0;
1045
1046 rtype = packet_get_string(NULL);
1047 want_reply = packet_get_char();
1048 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001049
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00001050 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001051 if (strcmp(rtype, "tcpip-forward") == 0) {
1052 struct passwd *pw;
1053 char *listen_address;
1054 u_short listen_port;
1055
Darren Tucker3e33cec2003-10-02 16:12:36 +10001056 pw = the_authctxt->pw;
Damien Miller4bb1dd32003-11-18 22:01:25 +11001057 if (pw == NULL || !the_authctxt->valid)
Damien Miller3e3b5142003-11-17 21:13:40 +11001058 fatal("server_input_global_request: no/invalid user");
Damien Miller9fc7c692003-06-04 22:50:54 +10001059 listen_address = packet_get_string(NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001060 listen_port = (u_short)packet_get_int();
1061 debug("server_input_global_request: tcpip-forward listen %s port %d",
1062 listen_address, listen_port);
1063
1064 /* check permissions */
1065 if (!options.allow_tcp_forwarding ||
Ben Lindstrom99a4e142002-07-09 14:06:40 +00001066 no_port_forwarding_flag
1067#ifndef NO_IPPORT_RESERVED_CONCEPT
1068 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
1069#endif
Damien Millerb6f72f52005-07-17 17:26:43 +10001070 ) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001071 success = 0;
1072 packet_send_debug("Server has disabled port forwarding.");
1073 } else {
1074 /* Start listening on the port */
Damien Millerb16461c2002-01-22 23:29:22 +11001075 success = channel_setup_remote_fwd_listener(
1076 listen_address, listen_port, options.gateway_ports);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001077 }
1078 xfree(listen_address);
Darren Tuckere7066df2004-05-24 10:18:05 +10001079 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
1080 char *cancel_address;
1081 u_short cancel_port;
1082
1083 cancel_address = packet_get_string(NULL);
1084 cancel_port = (u_short)packet_get_int();
1085 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
1086 cancel_address, cancel_port);
1087
1088 success = channel_cancel_rport_listener(cancel_address,
1089 cancel_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001090 }
1091 if (want_reply) {
1092 packet_start(success ?
1093 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1094 packet_send();
1095 packet_write_wait();
1096 }
1097 xfree(rtype);
1098}
Damien Millerc7ef63d2002-02-05 12:21:42 +11001099static void
1100server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1101{
1102 Channel *c;
1103 int id, reply, success = 0;
1104 char *rtype;
1105
1106 id = packet_get_int();
1107 rtype = packet_get_string(NULL);
1108 reply = packet_get_char();
1109
1110 debug("server_input_channel_req: channel %d request %s reply %d",
1111 id, rtype, reply);
1112
1113 if ((c = channel_lookup(id)) == NULL)
1114 packet_disconnect("server_input_channel_req: "
1115 "unknown channel %d", id);
1116 if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN)
1117 success = session_input_channel_req(c, rtype);
1118 if (reply) {
1119 packet_start(success ?
1120 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1121 packet_put_int(c->remote_id);
1122 packet_send();
1123 }
1124 xfree(rtype);
1125}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001126
Ben Lindstrombba81212001-06-25 05:01:22 +00001127static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001128server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001129{
1130 debug("server_init_dispatch_20");
1131 dispatch_init(&dispatch_protocol_error);
1132 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1133 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1134 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1135 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1136 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1137 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1138 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +11001139 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +10001140 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001141 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001142 /* client_alive */
Damien Millerb5820f42003-12-17 16:27:32 +11001143 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
1144 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1145 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001146 /* rekeying */
1147 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001148}
Ben Lindstrombba81212001-06-25 05:01:22 +00001149static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001150server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001151{
1152 debug("server_init_dispatch_13");
1153 dispatch_init(NULL);
1154 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1155 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1156 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1157 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1158 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1159 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1160 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1161 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1162 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1163}
Ben Lindstrombba81212001-06-25 05:01:22 +00001164static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001165server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001166{
1167 server_init_dispatch_13();
1168 debug("server_init_dispatch_15");
1169 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1170 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1171}
Ben Lindstrombba81212001-06-25 05:01:22 +00001172static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001173server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001174{
Damien Millerefb4afe2000-04-12 18:45:05 +10001175 if (compat20)
1176 server_init_dispatch_20();
1177 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001178 server_init_dispatch_13();
1179 else
1180 server_init_dispatch_15();
1181}