blob: 69304b5fadaee20ae80d075d6ba82d0dd2270b78 [file] [log] [blame]
Damien Miller985a4482006-10-24 03:02:41 +10001/* $OpenBSD: serverloop.c,v 1.145 2006/10/11 12:38:03 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Server main loop for handling the interactive session.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
Damien Millerefb4afe2000-04-12 18:45:05 +100014 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000015 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110016 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110039
40#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100041#include <sys/param.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110042#include <sys/wait.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100043#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100044#ifdef HAVE_SYS_TIME_H
45# include <sys/time.h>
46#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100047
48#include <netinet/in.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110049
Darren Tucker39972492006-07-12 22:22:46 +100050#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100051#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100052#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110053#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100054#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110055#include <termios.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100056#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100057#include <stdarg.h>
Damien Miller69b69aa2000-10-28 14:19:58 +110058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#include "packet.h"
61#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100064#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000065#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000066#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100067#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100069#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100070#include "key.h"
71#include "cipher.h"
72#include "kex.h"
73#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000074#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100075#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100076#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100077#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "serverloop.h"
79#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Miller50a41ed2000-10-16 12:14:42 +110081extern ServerOptions options;
82
Ben Lindstrom8ac91062001-04-04 17:57:54 +000083/* XXX */
84extern Kex *xxx_kex;
Darren Tucker3e33cec2003-10-02 16:12:36 +100085extern Authctxt *the_authctxt;
Damien Miller24ecf612005-11-05 15:16:52 +110086extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000087
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088static Buffer stdin_buffer; /* Buffer for stdin data. */
89static Buffer stdout_buffer; /* Buffer for stdout data. */
90static Buffer stderr_buffer; /* Buffer for stderr data. */
91static int fdin; /* Descriptor for stdin (for writing) */
92static int fdout; /* Descriptor for stdout (for reading);
93 May be same number as fdin. */
94static int fderr; /* Descriptor for stderr. May be -1. */
95static long stdin_bytes = 0; /* Number of bytes written to stdin. */
96static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
97static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
98static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
99static int stdin_eof = 0; /* EOF message received from client. */
100static int fdout_eof = 0; /* EOF encountered reading from fdout. */
101static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +1100102static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103static int connection_in; /* Connection to client (input). */
104static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000105static int connection_closed = 0; /* Connection to client closed. */
106static u_int buffer_high; /* "Soft" max buffer size. */
Damien Miller8c3902a2001-10-10 15:01:40 +1000107static int client_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * This SIGCHLD kludge is used to detect when the child exits. The server
111 * will exit after that, as soon as forwarded connections have terminated.
112 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000113
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000114static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115
Damien Miller24ecf612005-11-05 15:16:52 +1100116/* Cleanup on signals (!use_privsep case only) */
117static volatile sig_atomic_t received_sigterm = 0;
118
Ben Lindstrombba81212001-06-25 05:01:22 +0000119/* prototypes */
120static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000121
Damien Millerf6681a32001-12-21 14:53:11 +1100122/*
123 * we write to this pipe if a SIGCHLD is caught in order to avoid
124 * the race between select() and child_terminated
125 */
126static int notify_pipe[2];
127static void
128notify_setup(void)
129{
130 if (pipe(notify_pipe) < 0) {
131 error("pipe(notify_pipe) failed %s", strerror(errno));
132 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
133 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
134 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
135 close(notify_pipe[0]);
136 close(notify_pipe[1]);
137 } else {
138 set_nonblock(notify_pipe[0]);
139 set_nonblock(notify_pipe[1]);
140 return;
141 }
142 notify_pipe[0] = -1; /* read end */
143 notify_pipe[1] = -1; /* write end */
144}
145static void
146notify_parent(void)
147{
148 if (notify_pipe[1] != -1)
149 write(notify_pipe[1], "", 1);
150}
151static void
152notify_prepare(fd_set *readset)
153{
154 if (notify_pipe[0] != -1)
155 FD_SET(notify_pipe[0], readset);
156}
157static void
158notify_done(fd_set *readset)
159{
160 char c;
161
162 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
163 while (read(notify_pipe[0], &c, 1) != -1)
164 debug2("notify_done: reading");
165}
166
Damien Millerf0b15df2006-03-26 13:59:20 +1100167/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000168static void
Damien Miller95def091999-11-25 00:26:21 +1100169sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170{
Damien Miller95def091999-11-25 00:26:21 +1100171 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000172 child_terminated = 1;
Tim Rice81ed5182002-09-25 17:38:46 -0700173#ifndef _UNICOS
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000174 mysignal(SIGCHLD, sigchld_handler);
Tim Rice81ed5182002-09-25 17:38:46 -0700175#endif
Damien Millerf6681a32001-12-21 14:53:11 +1100176 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000177 errno = save_errno;
178}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Damien Millerf0b15df2006-03-26 13:59:20 +1100180/*ARGSUSED*/
Damien Miller24ecf612005-11-05 15:16:52 +1100181static void
182sigterm_handler(int sig)
183{
184 received_sigterm = sig;
185}
186
Damien Miller95def091999-11-25 00:26:21 +1100187/*
Damien Miller95def091999-11-25 00:26:21 +1100188 * Make packets from buffered stderr data, and buffer it for sending
189 * to the client.
190 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000192make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Darren Tucker502d3842003-06-28 12:38:01 +1000194 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195
Damien Miller95def091999-11-25 00:26:21 +1100196 /* Send buffered stderr data to the client. */
197 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100198 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100199 len = buffer_len(&stderr_buffer);
200 if (packet_is_interactive()) {
201 if (len > 512)
202 len = 512;
203 } else {
204 /* Keep the packets at reasonable size. */
205 if (len > packet_get_maxsize())
206 len = packet_get_maxsize();
207 }
208 packet_start(SSH_SMSG_STDERR_DATA);
209 packet_put_string(buffer_ptr(&stderr_buffer), len);
210 packet_send();
211 buffer_consume(&stderr_buffer, len);
212 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214}
215
Damien Miller95def091999-11-25 00:26:21 +1100216/*
217 * Make packets from buffered stdout data, and buffer it for sending to the
218 * client.
219 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000220static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000221make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222{
Darren Tucker502d3842003-06-28 12:38:01 +1000223 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224
Damien Miller95def091999-11-25 00:26:21 +1100225 /* Send buffered stdout data to the client. */
226 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100227 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100228 len = buffer_len(&stdout_buffer);
229 if (packet_is_interactive()) {
230 if (len > 512)
231 len = 512;
232 } else {
233 /* Keep the packets at reasonable size. */
234 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000235 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100236 }
237 packet_start(SSH_SMSG_STDOUT_DATA);
238 packet_put_string(buffer_ptr(&stdout_buffer), len);
239 packet_send();
240 buffer_consume(&stdout_buffer, len);
241 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243}
244
Damien Miller8c3902a2001-10-10 15:01:40 +1000245static void
246client_alive_check(void)
247{
Damien Millerb5820f42003-12-17 16:27:32 +1100248 int channel_id;
Damien Miller056cf732002-01-22 23:21:39 +1100249
Damien Miller8c3902a2001-10-10 15:01:40 +1000250 /* timeout, check to see how many we have had */
Damien Miller985a4482006-10-24 03:02:41 +1000251 if (++client_alive_timeouts > options.client_alive_count_max) {
252 logit("Timeout, client not responding.");
253 cleanup_exit(255);
254 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000255
Damien Miller8c3902a2001-10-10 15:01:40 +1000256 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100257 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000258 * we should get back a failure
259 */
Damien Millerb5820f42003-12-17 16:27:32 +1100260 if ((channel_id = channel_find_open()) == -1) {
261 packet_start(SSH2_MSG_GLOBAL_REQUEST);
262 packet_put_cstring("keepalive@openssh.com");
263 packet_put_char(1); /* boolean: want reply */
264 } else {
265 channel_request_start(channel_id, "keepalive@openssh.com", 1);
266 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000267 packet_send();
268}
269
Damien Miller95def091999-11-25 00:26:21 +1100270/*
271 * Sleep in select() until we can do something. This will initialize the
272 * select masks. Upon return, the masks will indicate which descriptors
273 * have data or can accept data. Optionally, a maximum time can be specified
274 * for the duration of the wait (0 = infinite).
275 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000276static void
Damien Miller5e953212001-01-30 09:14:00 +1100277wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000278 u_int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279{
Damien Miller95def091999-11-25 00:26:21 +1100280 struct timeval tv, *tvp;
281 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000282 int client_alive_scheduled = 0;
283
284 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100285 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000286 * and indicate that this particular timeout was for client
287 * alive by setting the client_alive_scheduled flag.
288 *
289 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100290 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000291 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000292 if (compat20 &&
293 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000294 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000295 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000296 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
Damien Miller5e953212001-01-30 09:14:00 +1100298 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000299 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300
Damien Millerefb4afe2000-04-12 18:45:05 +1000301 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000302#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000303 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000304 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000305#endif
306 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000307 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000308 /*
309 * Read packets from the client unless we have too much
310 * buffered stdin or channel data.
311 */
312 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000313 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100314 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000315 /*
316 * If there is not too much data already buffered going to
317 * the client, try to get some more data from the program.
318 */
319 if (packet_not_very_much_data_to_write()) {
320 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100321 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000322 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100323 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000324 }
325 /*
326 * If we have buffered data, try to write some of that data
327 * to the program.
328 */
329 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100330 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000331 }
Damien Millerf6681a32001-12-21 14:53:11 +1100332 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100333
Damien Miller5428f641999-11-25 11:54:57 +1100334 /*
335 * If we have buffered packet data going to the client, mark that
336 * descriptor.
337 */
Damien Miller95def091999-11-25 00:26:21 +1100338 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100339 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100340
Damien Miller5428f641999-11-25 11:54:57 +1100341 /*
342 * If child has terminated and there is enough buffer space to read
343 * from it, then read as much as is available and exit.
344 */
Damien Miller95def091999-11-25 00:26:21 +1100345 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000346 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100347 max_time_milliseconds = 100;
348
349 if (max_time_milliseconds == 0)
350 tvp = NULL;
351 else {
352 tv.tv_sec = max_time_milliseconds / 1000;
353 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
354 tvp = &tv;
355 }
356
357 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100358 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100359
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000360 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100361 memset(*readsetp, 0, *nallocp);
362 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100363 if (errno != EINTR)
364 error("select: %.100s", strerror(errno));
Damien Miller3ec27592001-10-12 11:35:04 +1000365 } else if (ret == 0 && client_alive_scheduled)
Damien Miller8c3902a2001-10-10 15:01:40 +1000366 client_alive_check();
Damien Millerf6681a32001-12-21 14:53:11 +1100367
368 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369}
370
Damien Miller95def091999-11-25 00:26:21 +1100371/*
372 * Processes input from the client and the program. Input data is stored
373 * in buffers and processed later.
374 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000375static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100376process_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377{
Damien Miller95def091999-11-25 00:26:21 +1100378 int len;
379 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380
Damien Miller95def091999-11-25 00:26:21 +1100381 /* Read and buffer any input data from the client. */
382 if (FD_ISSET(connection_in, readset)) {
383 len = read(connection_in, buf, sizeof(buf));
384 if (len == 0) {
Damien Miller16aed052002-09-22 01:26:27 +1000385 verbose("Connection closed by %.100s",
386 get_remote_ipaddr());
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000387 connection_closed = 1;
388 if (compat20)
389 return;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000390 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000391 } else if (len < 0) {
392 if (errno != EINTR && errno != EAGAIN) {
Damien Miller16aed052002-09-22 01:26:27 +1000393 verbose("Read error from remote host "
394 "%.100s: %.100s",
395 get_remote_ipaddr(), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000396 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000397 }
398 } else {
399 /* Buffer any received data. */
400 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100401 }
Damien Miller95def091999-11-25 00:26:21 +1100402 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000403 if (compat20)
404 return;
405
Damien Miller95def091999-11-25 00:26:21 +1100406 /* Read and buffer any available stdout data from the program. */
407 if (!fdout_eof && FD_ISSET(fdout, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000408 errno = 0;
Damien Miller95def091999-11-25 00:26:21 +1100409 len = read(fdout, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000410 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
411 /* do nothing */
Darren Tucker03890e42006-06-24 16:58:45 +1000412#ifndef PTY_ZEROREAD
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000413 } else if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000414#else
Darren Tucker144e8d62006-06-25 08:25:25 +1000415 } else if ((!isatty(fdout) && len <= 0) ||
416 (isatty(fdout) && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000417#endif
Damien Miller95def091999-11-25 00:26:21 +1100418 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000419 } else {
Damien Miller95def091999-11-25 00:26:21 +1100420 buffer_append(&stdout_buffer, buf, len);
421 fdout_bytes += len;
422 }
423 }
424 /* Read and buffer any available stderr data from the program. */
425 if (!fderr_eof && FD_ISSET(fderr, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000426 errno = 0;
Damien Miller95def091999-11-25 00:26:21 +1100427 len = read(fderr, buf, sizeof(buf));
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000428 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
429 /* do nothing */
Darren Tucker03890e42006-06-24 16:58:45 +1000430#ifndef PTY_ZEROREAD
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000431 } else if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000432#else
Darren Tucker144e8d62006-06-25 08:25:25 +1000433 } else if ((!isatty(fderr) && len <= 0) ||
434 (isatty(fderr) && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000435#endif
Damien Miller95def091999-11-25 00:26:21 +1100436 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000437 } else {
Damien Miller95def091999-11-25 00:26:21 +1100438 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000439 }
Damien Miller95def091999-11-25 00:26:21 +1100440 }
441}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442
Damien Miller95def091999-11-25 00:26:21 +1100443/*
444 * Sends data from internal buffers to client program stdin.
445 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000446static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100447process_output(fd_set *writeset)
Damien Miller95def091999-11-25 00:26:21 +1100448{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000449 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000450 u_char *data;
451 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100452 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453
Damien Miller95def091999-11-25 00:26:21 +1100454 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000455 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000456 data = buffer_ptr(&stdin_buffer);
457 dlen = buffer_len(&stdin_buffer);
458 len = write(fdin, data, dlen);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000459 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
460 /* do nothing */
461 } else if (len <= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000462 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100463 close(fdin);
464 else
465 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100466 fdin = -1;
467 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000468 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000469 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
470 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100471 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000472 /*
473 * Simulate echo to reduce the impact of
474 * traffic analysis
475 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000476 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000477 packet_send();
478 }
479 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100480 buffer_consume(&stdin_buffer, len);
481 /* Update the count of bytes written to the program. */
482 stdin_bytes += len;
483 }
484 }
485 /* Send any buffered packet data to the client. */
486 if (FD_ISSET(connection_out, writeset))
487 packet_write_poll();
488}
489
490/*
491 * Wait until all buffered output has been sent to the client.
492 * This is used when the program terminates.
493 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000494static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000495drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100496{
497 /* Send any buffered stdout data to the client. */
498 if (buffer_len(&stdout_buffer) > 0) {
499 packet_start(SSH_SMSG_STDOUT_DATA);
500 packet_put_string(buffer_ptr(&stdout_buffer),
501 buffer_len(&stdout_buffer));
502 packet_send();
503 /* Update the count of sent bytes. */
504 stdout_bytes += buffer_len(&stdout_buffer);
505 }
506 /* Send any buffered stderr data to the client. */
507 if (buffer_len(&stderr_buffer) > 0) {
508 packet_start(SSH_SMSG_STDERR_DATA);
509 packet_put_string(buffer_ptr(&stderr_buffer),
510 buffer_len(&stderr_buffer));
511 packet_send();
512 /* Update the count of sent bytes. */
513 stderr_bytes += buffer_len(&stderr_buffer);
514 }
515 /* Wait until all buffered data has been written to the client. */
516 packet_write_wait();
517}
518
Ben Lindstrombba81212001-06-25 05:01:22 +0000519static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000520process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000521{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000522 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000523}
524
Damien Miller95def091999-11-25 00:26:21 +1100525/*
526 * Performs the interactive session. This handles data transmission between
527 * the client and the program. Note that the notion of stdin, stdout, and
528 * stderr in this function is sort of reversed: this function writes to
529 * stdin (of the child program), and reads from stdout and stderr (of the
530 * child program).
531 */
Damien Miller4af51302000-04-16 11:18:38 +1000532void
Damien Miller166fca82000-04-20 07:42:21 +1000533server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100534{
Damien Miller5e953212001-01-30 09:14:00 +1100535 fd_set *readset = NULL, *writeset = NULL;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000536 int max_fd = 0;
537 u_int nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000538 int wait_status; /* Status returned by wait(). */
539 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100540 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000541 u_int max_time_milliseconds;
542 u_int previous_stdout_buffer_bytes;
543 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100544 int type;
545
546 debug("Entering interactive session.");
547
548 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100549 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000550 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100551
Damien Miller24ecf612005-11-05 15:16:52 +1100552 if (!use_privsep) {
553 signal(SIGTERM, sigterm_handler);
554 signal(SIGINT, sigterm_handler);
555 signal(SIGQUIT, sigterm_handler);
556 }
557
Damien Miller95def091999-11-25 00:26:21 +1100558 /* Initialize our global variables. */
559 fdin = fdin_arg;
560 fdout = fdout_arg;
561 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000562
563 /* nonblocking IO */
564 set_nonblock(fdin);
565 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000566 /* we don't have stderr for interactive terminal sessions, see below */
567 if (fderr != -1)
568 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000569
Damien Miller225736c2001-02-19 21:51:08 +1100570 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
571 fdin_is_tty = 1;
572
Damien Miller95def091999-11-25 00:26:21 +1100573 connection_in = packet_get_connection_in();
574 connection_out = packet_get_connection_out();
575
Damien Millerf6681a32001-12-21 14:53:11 +1100576 notify_setup();
577
Damien Miller95def091999-11-25 00:26:21 +1100578 previous_stdout_buffer_bytes = 0;
579
580 /* Set approximate I/O buffer size. */
581 if (packet_is_interactive())
582 buffer_high = 4096;
583 else
584 buffer_high = 64 * 1024;
585
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000586#if 0
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000588 max_fd = MAX(connection_in, connection_out);
589 max_fd = MAX(max_fd, fdin);
590 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100591 if (fderr != -1)
592 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000593#endif
Damien Miller95def091999-11-25 00:26:21 +1100594
595 /* Initialize Initialize buffers. */
596 buffer_init(&stdin_buffer);
597 buffer_init(&stdout_buffer);
598 buffer_init(&stderr_buffer);
599
Damien Miller5428f641999-11-25 11:54:57 +1100600 /*
601 * If we have no separate fderr (which is the case when we have a pty
602 * - there we cannot make difference between data sent to stdout and
603 * stderr), indicate that we have seen an EOF from stderr. This way
Damien Miller788f2122005-11-05 15:14:59 +1100604 * we don't need to check the descriptor everywhere.
Damien Miller5428f641999-11-25 11:54:57 +1100605 */
Damien Miller95def091999-11-25 00:26:21 +1100606 if (fderr == -1)
607 fderr_eof = 1;
608
Damien Millerb38eff82000-04-01 11:09:21 +1000609 server_init_dispatch();
610
Damien Miller95def091999-11-25 00:26:21 +1100611 /* Main loop of the server for the interactive session mode. */
612 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100613
614 /* Process buffered packets from the client. */
615 process_buffered_input_packets();
616
Damien Miller5428f641999-11-25 11:54:57 +1100617 /*
618 * If we have received eof, and there is no more pending
619 * input data, cause a real eof by closing fdin.
620 */
Damien Miller95def091999-11-25 00:26:21 +1100621 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000622 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100623 close(fdin);
624 else
625 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100626 fdin = -1;
627 }
Damien Miller5428f641999-11-25 11:54:57 +1100628 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100629 make_packets_from_stderr_data();
630
Damien Miller5428f641999-11-25 11:54:57 +1100631 /*
632 * Make packets from buffered stdout data to send to the
633 * client. If there is very little to send, this arranges to
634 * not send them now, but to wait a short while to see if we
635 * are getting more data. This is necessary, as some systems
636 * wake up readers from a pty after each separate character.
637 */
Damien Miller95def091999-11-25 00:26:21 +1100638 max_time_milliseconds = 0;
639 stdout_buffer_bytes = buffer_len(&stdout_buffer);
640 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
641 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
642 /* try again after a while */
643 max_time_milliseconds = 10;
644 } else {
645 /* Send it now. */
646 make_packets_from_stdout_data();
647 }
648 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
649
650 /* Send channel data to the client. */
651 if (packet_not_very_much_data_to_write())
652 channel_output_poll();
653
Damien Miller5428f641999-11-25 11:54:57 +1100654 /*
655 * Bail out of the loop if the program has closed its output
656 * descriptors, and we have no more data to send to the
657 * client, and there is no pending buffered data.
658 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100659 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
660 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100661 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000662 break;
Damien Miller95def091999-11-25 00:26:21 +1100663 if (!waiting_termination) {
664 const char *s = "Waiting for forwarded connections to terminate...\r\n";
665 char *cp;
666 waiting_termination = 1;
667 buffer_append(&stderr_buffer, s, strlen(s));
668
669 /* Display list of open channels. */
670 cp = channel_open_message();
671 buffer_append(&stderr_buffer, cp, strlen(cp));
672 xfree(cp);
673 }
674 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000675 max_fd = MAX(connection_in, connection_out);
676 max_fd = MAX(max_fd, fdin);
677 max_fd = MAX(max_fd, fdout);
678 max_fd = MAX(max_fd, fderr);
Damien Millerf6681a32001-12-21 14:53:11 +1100679 max_fd = MAX(max_fd, notify_pipe[0]);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000680
Damien Miller95def091999-11-25 00:26:21 +1100681 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100682 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000683 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100684
Damien Miller24ecf612005-11-05 15:16:52 +1100685 if (received_sigterm) {
686 logit("Exiting on signal %d", received_sigterm);
687 /* Clean up sessions, utmp, etc. */
688 cleanup_exit(255);
689 }
690
Damien Miller95def091999-11-25 00:26:21 +1100691 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100692 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100693
694 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100695 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100696
697 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100698 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100699 }
Damien Miller5e953212001-01-30 09:14:00 +1100700 if (readset)
701 xfree(readset);
702 if (writeset)
703 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100704
Damien Miller95def091999-11-25 00:26:21 +1100705 /* Cleanup and termination code. */
706
707 /* Wait until all output has been sent to the client. */
708 drain_output();
709
710 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100711 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100712
713 /* Free and clear the buffers. */
714 buffer_free(&stdin_buffer);
715 buffer_free(&stdout_buffer);
716 buffer_free(&stderr_buffer);
717
718 /* Close the file descriptors. */
719 if (fdout != -1)
720 close(fdout);
721 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000722 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100723 if (fderr != -1)
724 close(fderr);
725 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100727 if (fdin != -1)
728 close(fdin);
729 fdin = -1;
730
Ben Lindstrom601e4362001-06-21 03:19:23 +0000731 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100732
Damien Miller95def091999-11-25 00:26:21 +1100733 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000734 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100735
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000736 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
737 if (errno != EINTR)
738 packet_disconnect("wait: %.100s", strerror(errno));
739 if (wait_pid != pid)
Ben Lindstromce0f6342002-06-11 16:42:49 +0000740 error("Strange, wait returned pid %ld, expected %ld",
741 (long)wait_pid, (long)pid);
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000742
Damien Miller95def091999-11-25 00:26:21 +1100743 /* Check if it exited normally. */
744 if (WIFEXITED(wait_status)) {
745 /* Yes, normal exit. Get exit status and send it to the client. */
746 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
747 packet_start(SSH_SMSG_EXITSTATUS);
748 packet_put_int(WEXITSTATUS(wait_status));
749 packet_send();
750 packet_write_wait();
751
Damien Miller5428f641999-11-25 11:54:57 +1100752 /*
753 * Wait for exit confirmation. Note that there might be
754 * other packets coming before it; however, the program has
755 * already died so we just ignore them. The client is
756 * supposed to respond with the confirmation when it receives
757 * the exit status.
758 */
Damien Miller95def091999-11-25 00:26:21 +1100759 do {
Damien Millerdff50992002-01-22 23:16:32 +1100760 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100761 }
762 while (type != SSH_CMSG_EXIT_CONFIRMATION);
763
764 debug("Received exit confirmation.");
765 return;
766 }
767 /* Check if the program terminated due to a signal. */
768 if (WIFSIGNALED(wait_status))
769 packet_disconnect("Command terminated on signal %d.",
770 WTERMSIG(wait_status));
771
772 /* Some weird exit cause. Just exit. */
773 packet_disconnect("wait returned status %04x.", wait_status);
774 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775}
Damien Millerb38eff82000-04-01 11:09:21 +1000776
Damien Miller3ec27592001-10-12 11:35:04 +1000777static void
778collect_children(void)
779{
780 pid_t pid;
781 sigset_t oset, nset;
782 int status;
783
784 /* block SIGCHLD while we check for dead children */
785 sigemptyset(&nset);
786 sigaddset(&nset, SIGCHLD);
787 sigprocmask(SIG_BLOCK, &nset, &oset);
788 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100789 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000790 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
791 (pid < 0 && errno == EINTR))
792 if (pid > 0)
793 session_close_by_pid(pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000794 child_terminated = 0;
795 }
796 sigprocmask(SIG_SETMASK, &oset, NULL);
797}
798
Damien Miller4af51302000-04-16 11:18:38 +1000799void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000800server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000801{
Damien Miller5e953212001-01-30 09:14:00 +1100802 fd_set *readset = NULL, *writeset = NULL;
Damien Miller3ec27592001-10-12 11:35:04 +1000803 int rekeying = 0, max_fd, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000804
805 debug("Entering interactive session for SSH2.");
806
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000807 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000808 child_terminated = 0;
809 connection_in = packet_get_connection_in();
810 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100811
Damien Miller24ecf612005-11-05 15:16:52 +1100812 if (!use_privsep) {
813 signal(SIGTERM, sigterm_handler);
814 signal(SIGINT, sigterm_handler);
815 signal(SIGQUIT, sigterm_handler);
816 }
817
Damien Millerf6681a32001-12-21 14:53:11 +1100818 notify_setup();
819
Damien Miller5e953212001-01-30 09:14:00 +1100820 max_fd = MAX(connection_in, connection_out);
Damien Millerf6681a32001-12-21 14:53:11 +1100821 max_fd = MAX(max_fd, notify_pipe[0]);
822
Damien Millerefb4afe2000-04-12 18:45:05 +1000823 server_init_dispatch();
824
825 for (;;) {
826 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000827
Ben Lindstroma3700052001-04-05 23:26:32 +0000828 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000829
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000830 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000831 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000832 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000833 &nalloc, 0);
Damien Miller52b77be2001-10-10 15:14:37 +1000834
Damien Miller24ecf612005-11-05 15:16:52 +1100835 if (received_sigterm) {
836 logit("Exiting on signal %d", received_sigterm);
837 /* Clean up sessions, utmp, etc. */
838 cleanup_exit(255);
839 }
840
Damien Miller3ec27592001-10-12 11:35:04 +1000841 collect_children();
Damien Millera5539d22003-04-09 20:50:06 +1000842 if (!rekeying) {
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000843 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +1000844 if (packet_need_rekeying()) {
845 debug("need rekeying");
846 xxx_kex->done = 0;
847 kex_send_kexinit(xxx_kex);
848 }
849 }
Damien Miller5e953212001-01-30 09:14:00 +1100850 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000851 if (connection_closed)
852 break;
Damien Miller5e953212001-01-30 09:14:00 +1100853 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000854 }
Damien Miller3ec27592001-10-12 11:35:04 +1000855 collect_children();
856
Damien Miller5e953212001-01-30 09:14:00 +1100857 if (readset)
858 xfree(readset);
859 if (writeset)
860 xfree(writeset);
861
Damien Miller52b77be2001-10-10 15:14:37 +1000862 /* free all channels, no more reads and writes */
863 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000864
Damien Miller3ec27592001-10-12 11:35:04 +1000865 /* free remaining sessions, e.g. remove wtmp entries */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000866 session_destroy_all(NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000867}
868
Ben Lindstrombba81212001-06-25 05:01:22 +0000869static void
Damien Millerb5820f42003-12-17 16:27:32 +1100870server_input_keep_alive(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000871{
Damien Millerb5820f42003-12-17 16:27:32 +1100872 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100873 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000874 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000875 * even if this was generated by something other than
876 * the bogus CHANNEL_REQUEST we send for keepalives.
877 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100878 client_alive_timeouts = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000879}
880
Ben Lindstrombba81212001-06-25 05:01:22 +0000881static void
Damien Miller630d6f42002-01-22 23:17:30 +1100882server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000883{
884 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000885 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000886
887 /* Stdin data from the client. Append it to the buffer. */
888 /* Ignore any data if the client has closed stdin. */
889 if (fdin == -1)
890 return;
891 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100892 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000893 buffer_append(&stdin_buffer, data, data_len);
894 memset(data, 0, data_len);
895 xfree(data);
896}
897
Ben Lindstrombba81212001-06-25 05:01:22 +0000898static void
Damien Miller630d6f42002-01-22 23:17:30 +1100899server_input_eof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000900{
901 /*
902 * Eof from the client. The stdin descriptor to the
903 * program will be closed when all buffered data has
904 * drained.
905 */
906 debug("EOF received for stdin.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100907 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000908 stdin_eof = 1;
909}
910
Ben Lindstrombba81212001-06-25 05:01:22 +0000911static void
Damien Miller630d6f42002-01-22 23:17:30 +1100912server_input_window_size(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000913{
Damien Miller71a73672006-03-26 14:04:36 +1100914 u_int row = packet_get_int();
915 u_int col = packet_get_int();
916 u_int xpixel = packet_get_int();
917 u_int ypixel = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +1000918
919 debug("Window change received.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100920 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000921 if (fdin != -1)
922 pty_change_window_size(fdin, row, col, xpixel, ypixel);
923}
924
Ben Lindstrombba81212001-06-25 05:01:22 +0000925static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +1100926server_request_direct_tcpip(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000927{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000928 Channel *c;
929 int sock;
Damien Miller4af51302000-04-16 11:18:38 +1000930 char *target, *originator;
931 int target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000932
Damien Miller4af51302000-04-16 11:18:38 +1000933 target = packet_get_string(NULL);
934 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000935 originator = packet_get_string(NULL);
936 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100937 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000938
Damien Miller0bc1bd82000-11-13 22:57:25 +1100939 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000940 originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000941
Damien Millerefb4afe2000-04-12 18:45:05 +1000942 /* XXX check permission */
Damien Miller4af51302000-04-16 11:18:38 +1000943 sock = channel_connect_to(target, target_port);
944 xfree(target);
Damien Millerefb4afe2000-04-12 18:45:05 +1000945 xfree(originator);
946 if (sock < 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100947 return NULL;
Damien Millerfb1310e2004-01-21 11:02:50 +1100948 c = channel_new("direct-tcpip", SSH_CHANNEL_CONNECTING,
Damien Millere4340be2000-09-16 13:29:08 +1100949 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000950 CHAN_TCP_PACKET_DEFAULT, 0, "direct-tcpip", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000951 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100952}
953
Ben Lindstrombba81212001-06-25 05:01:22 +0000954static Channel *
Damien Millerd27b9472005-12-13 19:29:02 +1100955server_request_tun(void)
956{
957 Channel *c = NULL;
Damien Miller7b58e802005-12-13 19:33:19 +1100958 int mode, tun;
959 int sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100960
Damien Miller7b58e802005-12-13 19:33:19 +1100961 mode = packet_get_int();
962 switch (mode) {
963 case SSH_TUNMODE_POINTOPOINT:
964 case SSH_TUNMODE_ETHERNET:
965 break;
966 default:
967 packet_send_debug("Unsupported tunnel device mode.");
968 return NULL;
969 }
970 if ((options.permit_tun & mode) == 0) {
971 packet_send_debug("Server has rejected tunnel device "
972 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100973 return NULL;
974 }
975
976 tun = packet_get_int();
Darren Tucker0d0e8f02005-12-20 16:08:42 +1100977 if (forced_tun_device != -1) {
Damien Millerf0b15df2006-03-26 13:59:20 +1100978 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100979 goto done;
980 tun = forced_tun_device;
981 }
Damien Miller7b58e802005-12-13 19:33:19 +1100982 sock = tun_open(tun, mode);
Damien Millerd27b9472005-12-13 19:29:02 +1100983 if (sock < 0)
984 goto done;
985 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
986 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
987 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +1100988#if defined(SSH_TUN_FILTER)
989 if (mode == SSH_TUNMODE_POINTOPOINT)
990 channel_register_filter(c->self, sys_tun_infilter,
991 sys_tun_outfilter);
992#endif
Damien Millerd27b9472005-12-13 19:29:02 +1100993
994 done:
995 if (c == NULL)
996 packet_send_debug("Failed to open the tunnel device.");
997 return c;
998}
999
1000static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +11001001server_request_session(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001003 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001004
1005 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +11001006 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001007 /*
1008 * A server session has no fd to read or write until a
1009 * CHANNEL_REQUEST for a shell is made, so we set the type to
1010 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
1011 * CHANNEL_REQUEST messages is registered.
1012 */
Damien Millerfb1310e2004-01-21 11:02:50 +11001013 c = channel_new("session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001014 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001015 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001016 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001017 debug("session open failed, free channel %d", c->self);
1018 channel_free(c);
1019 return NULL;
1020 }
Damien Miller39eda6e2005-11-05 14:52:50 +11001021 channel_register_cleanup(c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001022 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +10001023}
1024
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static void
Damien Miller630d6f42002-01-22 23:17:30 +11001026server_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10001027{
1028 Channel *c = NULL;
1029 char *ctype;
Damien Millerefb4afe2000-04-12 18:45:05 +10001030 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001031 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001032
1033 ctype = packet_get_string(&len);
1034 rchan = packet_get_int();
1035 rwindow = packet_get_int();
1036 rmaxpack = packet_get_int();
1037
Damien Miller62cee002000-09-23 17:15:56 +11001038 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001039 ctype, rchan, rwindow, rmaxpack);
1040
1041 if (strcmp(ctype, "session") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001042 c = server_request_session();
Damien Millerefb4afe2000-04-12 18:45:05 +10001043 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001044 c = server_request_direct_tcpip();
Damien Millerd27b9472005-12-13 19:29:02 +11001045 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
1046 c = server_request_tun();
Damien Millerefb4afe2000-04-12 18:45:05 +10001047 }
1048 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001049 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001050 c->remote_id = rchan;
1051 c->remote_window = rwindow;
1052 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +00001053 if (c->type != SSH_CHANNEL_CONNECTING) {
1054 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1055 packet_put_int(c->remote_id);
1056 packet_put_int(c->self);
1057 packet_put_int(c->local_window);
1058 packet_put_int(c->local_maxpacket);
1059 packet_send();
1060 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001061 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001062 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001063 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1064 packet_put_int(rchan);
1065 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001066 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001067 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001068 packet_put_cstring("");
1069 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001070 packet_send();
1071 }
1072 xfree(ctype);
1073}
1074
Ben Lindstrombba81212001-06-25 05:01:22 +00001075static void
Damien Miller630d6f42002-01-22 23:17:30 +11001076server_input_global_request(int type, u_int32_t seq, void *ctxt)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001077{
1078 char *rtype;
1079 int want_reply;
1080 int success = 0;
1081
1082 rtype = packet_get_string(NULL);
1083 want_reply = packet_get_char();
1084 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001085
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00001086 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001087 if (strcmp(rtype, "tcpip-forward") == 0) {
1088 struct passwd *pw;
1089 char *listen_address;
1090 u_short listen_port;
1091
Darren Tucker3e33cec2003-10-02 16:12:36 +10001092 pw = the_authctxt->pw;
Damien Miller4bb1dd32003-11-18 22:01:25 +11001093 if (pw == NULL || !the_authctxt->valid)
Damien Miller3e3b5142003-11-17 21:13:40 +11001094 fatal("server_input_global_request: no/invalid user");
Damien Miller9fc7c692003-06-04 22:50:54 +10001095 listen_address = packet_get_string(NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001096 listen_port = (u_short)packet_get_int();
1097 debug("server_input_global_request: tcpip-forward listen %s port %d",
1098 listen_address, listen_port);
1099
1100 /* check permissions */
1101 if (!options.allow_tcp_forwarding ||
Ben Lindstrom99a4e142002-07-09 14:06:40 +00001102 no_port_forwarding_flag
1103#ifndef NO_IPPORT_RESERVED_CONCEPT
1104 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
1105#endif
Damien Millerb6f72f52005-07-17 17:26:43 +10001106 ) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001107 success = 0;
1108 packet_send_debug("Server has disabled port forwarding.");
1109 } else {
1110 /* Start listening on the port */
Damien Millerb16461c2002-01-22 23:29:22 +11001111 success = channel_setup_remote_fwd_listener(
1112 listen_address, listen_port, options.gateway_ports);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001113 }
1114 xfree(listen_address);
Darren Tuckere7066df2004-05-24 10:18:05 +10001115 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
1116 char *cancel_address;
1117 u_short cancel_port;
1118
1119 cancel_address = packet_get_string(NULL);
1120 cancel_port = (u_short)packet_get_int();
1121 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
1122 cancel_address, cancel_port);
1123
1124 success = channel_cancel_rport_listener(cancel_address,
1125 cancel_port);
Damien Miller6f98a1f2006-03-26 13:51:08 +11001126 xfree(cancel_address);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001127 }
1128 if (want_reply) {
1129 packet_start(success ?
1130 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1131 packet_send();
1132 packet_write_wait();
1133 }
1134 xfree(rtype);
1135}
Damien Miller4f7becb2006-03-26 14:10:14 +11001136
Damien Millerc7ef63d2002-02-05 12:21:42 +11001137static void
1138server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1139{
1140 Channel *c;
1141 int id, reply, success = 0;
1142 char *rtype;
1143
1144 id = packet_get_int();
1145 rtype = packet_get_string(NULL);
1146 reply = packet_get_char();
1147
1148 debug("server_input_channel_req: channel %d request %s reply %d",
1149 id, rtype, reply);
1150
1151 if ((c = channel_lookup(id)) == NULL)
1152 packet_disconnect("server_input_channel_req: "
1153 "unknown channel %d", id);
1154 if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN)
1155 success = session_input_channel_req(c, rtype);
1156 if (reply) {
1157 packet_start(success ?
1158 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1159 packet_put_int(c->remote_id);
1160 packet_send();
1161 }
1162 xfree(rtype);
1163}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001164
Ben Lindstrombba81212001-06-25 05:01:22 +00001165static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001166server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001167{
1168 debug("server_init_dispatch_20");
1169 dispatch_init(&dispatch_protocol_error);
1170 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1171 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1172 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1173 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1174 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1175 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1176 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +11001177 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +10001178 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001179 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001180 /* client_alive */
Damien Millerb5820f42003-12-17 16:27:32 +11001181 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
1182 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1183 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001184 /* rekeying */
1185 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001186}
Ben Lindstrombba81212001-06-25 05:01:22 +00001187static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001188server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001189{
1190 debug("server_init_dispatch_13");
1191 dispatch_init(NULL);
1192 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1193 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1194 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1195 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1196 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1197 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1198 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1199 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1200 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1201}
Ben Lindstrombba81212001-06-25 05:01:22 +00001202static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001203server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001204{
1205 server_init_dispatch_13();
1206 debug("server_init_dispatch_15");
1207 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1208 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1209}
Ben Lindstrombba81212001-06-25 05:01:22 +00001210static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001211server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001212{
Damien Millerefb4afe2000-04-12 18:45:05 +10001213 if (compat20)
1214 server_init_dispatch_20();
1215 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001216 server_init_dispatch_13();
1217 else
1218 server_init_dispatch_15();
1219}