blob: 8be01c5c37c4250aab5c855f28f3ac7d51c00b51 [file] [log] [blame]
Darren Tuckerc5564e12009-06-21 18:53:53 +10001/* $OpenBSD: serverloop.c,v 1.159 2009/05/28 16:50:16 andreas 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 Millerb84886b2008-05-19 15:05:07 +100059#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061#include "packet.h"
62#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "servconf.h"
Damien Miller16aed052002-09-22 01:26:27 +100065#include "canohost.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000066#include "sshpty.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000067#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "ssh1.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100070#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "key.h"
72#include "cipher.h"
73#include "kex.h"
74#include "hostfile.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000075#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100076#include "session.h"
Damien Millerb38eff82000-04-01 11:09:21 +100077#include "dispatch.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100078#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000079#include "serverloop.h"
80#include "misc.h"
Darren Tuckerc5564e12009-06-21 18:53:53 +100081#include "roaming.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller50a41ed2000-10-16 12:14:42 +110083extern ServerOptions options;
84
Ben Lindstrom8ac91062001-04-04 17:57:54 +000085/* XXX */
86extern Kex *xxx_kex;
Darren Tucker3e33cec2003-10-02 16:12:36 +100087extern Authctxt *the_authctxt;
Damien Miller24ecf612005-11-05 15:16:52 +110088extern int use_privsep;
Ben Lindstrom8ac91062001-04-04 17:57:54 +000089
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090static Buffer stdin_buffer; /* Buffer for stdin data. */
91static Buffer stdout_buffer; /* Buffer for stdout data. */
92static Buffer stderr_buffer; /* Buffer for stderr data. */
93static int fdin; /* Descriptor for stdin (for writing) */
94static int fdout; /* Descriptor for stdout (for reading);
95 May be same number as fdin. */
96static int fderr; /* Descriptor for stderr. May be -1. */
97static long stdin_bytes = 0; /* Number of bytes written to stdin. */
98static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
99static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
100static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
101static int stdin_eof = 0; /* EOF message received from client. */
102static int fdout_eof = 0; /* EOF encountered reading from fdout. */
103static int fderr_eof = 0; /* EOF encountered readung from fderr. */
Damien Miller225736c2001-02-19 21:51:08 +1100104static int fdin_is_tty = 0; /* fdin points to a tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105static int connection_in; /* Connection to client (input). */
106static int connection_out; /* Connection to client (output). */
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000107static int connection_closed = 0; /* Connection to client closed. */
108static u_int buffer_high; /* "Soft" max buffer size. */
Darren Tucker8901fa92008-06-11 09:34:01 +1000109static int no_more_sessions = 0; /* Disallow further sessions. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller5428f641999-11-25 11:54:57 +1100111/*
112 * This SIGCHLD kludge is used to detect when the child exits. The server
113 * will exit after that, as soon as forwarded connections have terminated.
114 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000115
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000116static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller24ecf612005-11-05 15:16:52 +1100118/* Cleanup on signals (!use_privsep case only) */
119static volatile sig_atomic_t received_sigterm = 0;
120
Ben Lindstrombba81212001-06-25 05:01:22 +0000121/* prototypes */
122static void server_init_dispatch(void);
Damien Millerb38eff82000-04-01 11:09:21 +1000123
Damien Millerf6681a32001-12-21 14:53:11 +1100124/*
125 * we write to this pipe if a SIGCHLD is caught in order to avoid
126 * the race between select() and child_terminated
127 */
128static int notify_pipe[2];
129static void
130notify_setup(void)
131{
132 if (pipe(notify_pipe) < 0) {
133 error("pipe(notify_pipe) failed %s", strerror(errno));
134 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
135 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
136 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
137 close(notify_pipe[0]);
138 close(notify_pipe[1]);
139 } else {
140 set_nonblock(notify_pipe[0]);
141 set_nonblock(notify_pipe[1]);
142 return;
143 }
144 notify_pipe[0] = -1; /* read end */
145 notify_pipe[1] = -1; /* write end */
146}
147static void
148notify_parent(void)
149{
150 if (notify_pipe[1] != -1)
151 write(notify_pipe[1], "", 1);
152}
153static void
154notify_prepare(fd_set *readset)
155{
156 if (notify_pipe[0] != -1)
157 FD_SET(notify_pipe[0], readset);
158}
159static void
160notify_done(fd_set *readset)
161{
162 char c;
163
164 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
165 while (read(notify_pipe[0], &c, 1) != -1)
166 debug2("notify_done: reading");
167}
168
Damien Millerf0b15df2006-03-26 13:59:20 +1100169/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void
Damien Miller95def091999-11-25 00:26:21 +1100171sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172{
Damien Miller95def091999-11-25 00:26:21 +1100173 int save_errno = errno;
Damien Millerefb4afe2000-04-12 18:45:05 +1000174 child_terminated = 1;
Tim Rice81ed5182002-09-25 17:38:46 -0700175#ifndef _UNICOS
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000176 mysignal(SIGCHLD, sigchld_handler);
Tim Rice81ed5182002-09-25 17:38:46 -0700177#endif
Damien Millerf6681a32001-12-21 14:53:11 +1100178 notify_parent();
Damien Millerefb4afe2000-04-12 18:45:05 +1000179 errno = save_errno;
180}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Damien Millerf0b15df2006-03-26 13:59:20 +1100182/*ARGSUSED*/
Damien Miller24ecf612005-11-05 15:16:52 +1100183static void
184sigterm_handler(int sig)
185{
186 received_sigterm = sig;
187}
188
Damien Miller95def091999-11-25 00:26:21 +1100189/*
Damien Miller95def091999-11-25 00:26:21 +1100190 * Make packets from buffered stderr data, and buffer it for sending
191 * to the client.
192 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000193static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000194make_packets_from_stderr_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195{
Darren Tucker502d3842003-06-28 12:38:01 +1000196 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197
Damien Miller95def091999-11-25 00:26:21 +1100198 /* Send buffered stderr data to the client. */
199 while (buffer_len(&stderr_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100200 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100201 len = buffer_len(&stderr_buffer);
202 if (packet_is_interactive()) {
203 if (len > 512)
204 len = 512;
205 } else {
206 /* Keep the packets at reasonable size. */
207 if (len > packet_get_maxsize())
208 len = packet_get_maxsize();
209 }
210 packet_start(SSH_SMSG_STDERR_DATA);
211 packet_put_string(buffer_ptr(&stderr_buffer), len);
212 packet_send();
213 buffer_consume(&stderr_buffer, len);
214 stderr_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216}
217
Damien Miller95def091999-11-25 00:26:21 +1100218/*
219 * Make packets from buffered stdout data, and buffer it for sending to the
220 * client.
221 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000223make_packets_from_stdout_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224{
Darren Tucker502d3842003-06-28 12:38:01 +1000225 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Send buffered stdout data to the client. */
228 while (buffer_len(&stdout_buffer) > 0 &&
Damien Miller037a0dc1999-12-07 15:38:31 +1100229 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100230 len = buffer_len(&stdout_buffer);
231 if (packet_is_interactive()) {
232 if (len > 512)
233 len = 512;
234 } else {
235 /* Keep the packets at reasonable size. */
236 if (len > packet_get_maxsize())
Kevin Stevesef4eea92001-02-05 12:42:17 +0000237 len = packet_get_maxsize();
Damien Miller95def091999-11-25 00:26:21 +1100238 }
239 packet_start(SSH_SMSG_STDOUT_DATA);
240 packet_put_string(buffer_ptr(&stdout_buffer), len);
241 packet_send();
242 buffer_consume(&stdout_buffer, len);
243 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245}
246
Damien Miller8c3902a2001-10-10 15:01:40 +1000247static void
248client_alive_check(void)
249{
Damien Millerb5820f42003-12-17 16:27:32 +1100250 int channel_id;
Damien Miller056cf732002-01-22 23:21:39 +1100251
Damien Miller8c3902a2001-10-10 15:01:40 +1000252 /* timeout, check to see how many we have had */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000253 if (packet_inc_alive_timeouts() > options.client_alive_count_max) {
Damien Miller985a4482006-10-24 03:02:41 +1000254 logit("Timeout, client not responding.");
255 cleanup_exit(255);
256 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000257
Damien Miller8c3902a2001-10-10 15:01:40 +1000258 /*
Damien Millerb5820f42003-12-17 16:27:32 +1100259 * send a bogus global/channel request with "wantreply",
Damien Miller8c3902a2001-10-10 15:01:40 +1000260 * we should get back a failure
261 */
Damien Millerb5820f42003-12-17 16:27:32 +1100262 if ((channel_id = channel_find_open()) == -1) {
263 packet_start(SSH2_MSG_GLOBAL_REQUEST);
264 packet_put_cstring("keepalive@openssh.com");
265 packet_put_char(1); /* boolean: want reply */
266 } else {
267 channel_request_start(channel_id, "keepalive@openssh.com", 1);
268 }
Damien Miller8c3902a2001-10-10 15:01:40 +1000269 packet_send();
270}
271
Damien Miller95def091999-11-25 00:26:21 +1100272/*
273 * Sleep in select() until we can do something. This will initialize the
274 * select masks. Upon return, the masks will indicate which descriptors
275 * have data or can accept data. Optionally, a maximum time can be specified
276 * for the duration of the wait (0 = infinite).
277 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000278static void
Damien Miller5e953212001-01-30 09:14:00 +1100279wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000280 u_int *nallocp, u_int max_time_milliseconds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281{
Damien Miller95def091999-11-25 00:26:21 +1100282 struct timeval tv, *tvp;
283 int ret;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000284 int client_alive_scheduled = 0;
Damien Millere42bd242007-01-29 10:16:28 +1100285 int program_alive_scheduled = 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000286
287 /*
Damien Miller9f0f5c62001-12-21 14:45:46 +1100288 * if using client_alive, set the max timeout accordingly,
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000289 * and indicate that this particular timeout was for client
290 * alive by setting the client_alive_scheduled flag.
291 *
292 * this could be randomized somewhat to make traffic
Damien Miller9f0f5c62001-12-21 14:45:46 +1100293 * analysis more difficult, but we're not doing it yet.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000294 */
Ben Lindstrom36857f62001-07-18 15:48:57 +0000295 if (compat20 &&
296 max_time_milliseconds == 0 && options.client_alive_interval) {
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000297 client_alive_scheduled = 1;
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000298 max_time_milliseconds = options.client_alive_interval * 1000;
Ben Lindstrom36857f62001-07-18 15:48:57 +0000299 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300
Damien Miller5e953212001-01-30 09:14:00 +1100301 /* Allocate and update select() masks for channel descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000302 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303
Damien Millerefb4afe2000-04-12 18:45:05 +1000304 if (compat20) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000305#if 0
Damien Millere247cc42000-05-07 12:03:14 +1000306 /* wrong: bad condition XXX */
Damien Millerefb4afe2000-04-12 18:45:05 +1000307 if (channel_not_very_much_buffered_data())
Damien Milleraf5f2e62001-10-10 15:01:16 +1000308#endif
309 FD_SET(connection_in, *readsetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000310 } else {
Damien Millerb1715dc2000-05-30 13:44:51 +1000311 /*
312 * Read packets from the client unless we have too much
313 * buffered stdin or channel data.
314 */
315 if (buffer_len(&stdin_buffer) < buffer_high &&
Damien Millerefb4afe2000-04-12 18:45:05 +1000316 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100317 FD_SET(connection_in, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000318 /*
319 * If there is not too much data already buffered going to
320 * the client, try to get some more data from the program.
321 */
322 if (packet_not_very_much_data_to_write()) {
Damien Millere42bd242007-01-29 10:16:28 +1100323 program_alive_scheduled = child_terminated;
Damien Millerb1715dc2000-05-30 13:44:51 +1000324 if (!fdout_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100325 FD_SET(fdout, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000326 if (!fderr_eof)
Damien Miller5e953212001-01-30 09:14:00 +1100327 FD_SET(fderr, *readsetp);
Damien Millerb1715dc2000-05-30 13:44:51 +1000328 }
329 /*
330 * If we have buffered data, try to write some of that data
331 * to the program.
332 */
333 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100334 FD_SET(fdin, *writesetp);
Damien Millerefb4afe2000-04-12 18:45:05 +1000335 }
Damien Millerf6681a32001-12-21 14:53:11 +1100336 notify_prepare(*readsetp);
Damien Miller95def091999-11-25 00:26:21 +1100337
Damien Miller5428f641999-11-25 11:54:57 +1100338 /*
339 * If we have buffered packet data going to the client, mark that
340 * descriptor.
341 */
Damien Miller95def091999-11-25 00:26:21 +1100342 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100343 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100344
Damien Miller5428f641999-11-25 11:54:57 +1100345 /*
346 * If child has terminated and there is enough buffer space to read
347 * from it, then read as much as is available and exit.
348 */
Damien Miller95def091999-11-25 00:26:21 +1100349 if (child_terminated && packet_not_very_much_data_to_write())
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000350 if (max_time_milliseconds == 0 || client_alive_scheduled)
Damien Miller95def091999-11-25 00:26:21 +1100351 max_time_milliseconds = 100;
352
353 if (max_time_milliseconds == 0)
354 tvp = NULL;
355 else {
356 tv.tv_sec = max_time_milliseconds / 1000;
357 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
358 tvp = &tv;
359 }
360
361 /* Wait for something to happen, or the timeout to expire. */
Damien Miller5e953212001-01-30 09:14:00 +1100362 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
Damien Miller95def091999-11-25 00:26:21 +1100363
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000364 if (ret == -1) {
Damien Miller79faeff2001-11-12 11:06:32 +1100365 memset(*readsetp, 0, *nallocp);
366 memset(*writesetp, 0, *nallocp);
Damien Miller95def091999-11-25 00:26:21 +1100367 if (errno != EINTR)
368 error("select: %.100s", strerror(errno));
Damien Millere42bd242007-01-29 10:16:28 +1100369 } else {
370 if (ret == 0 && client_alive_scheduled)
371 client_alive_check();
372 if (!compat20 && program_alive_scheduled && fdin_is_tty) {
373 if (!fdout_eof)
374 FD_SET(fdout, *readsetp);
375 if (!fderr_eof)
376 FD_SET(fderr, *readsetp);
377 }
378 }
Damien Millerf6681a32001-12-21 14:53:11 +1100379
380 notify_done(*readsetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000381}
382
Damien Miller95def091999-11-25 00:26:21 +1100383/*
384 * Processes input from the client and the program. Input data is stored
385 * in buffers and processed later.
386 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000387static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100388process_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389{
Damien Miller95def091999-11-25 00:26:21 +1100390 int len;
391 char buf[16384];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Damien Miller95def091999-11-25 00:26:21 +1100393 /* Read and buffer any input data from the client. */
394 if (FD_ISSET(connection_in, readset)) {
Darren Tuckerc5564e12009-06-21 18:53:53 +1000395 int cont = 0;
396 len = roaming_read(connection_in, buf, sizeof(buf), &cont);
Damien Miller95def091999-11-25 00:26:21 +1100397 if (len == 0) {
Darren Tuckerc5564e12009-06-21 18:53:53 +1000398 if (cont)
399 return;
Damien Miller16aed052002-09-22 01:26:27 +1000400 verbose("Connection closed by %.100s",
401 get_remote_ipaddr());
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000402 connection_closed = 1;
403 if (compat20)
404 return;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000405 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000406 } else if (len < 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +1000407 if (errno != EINTR && errno != EAGAIN &&
408 errno != EWOULDBLOCK) {
Damien Miller16aed052002-09-22 01:26:27 +1000409 verbose("Read error from remote host "
410 "%.100s: %.100s",
411 get_remote_ipaddr(), strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000412 cleanup_exit(255);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000413 }
414 } else {
415 /* Buffer any received data. */
416 packet_process_incoming(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100417 }
Damien Miller95def091999-11-25 00:26:21 +1100418 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000419 if (compat20)
420 return;
421
Damien Miller95def091999-11-25 00:26:21 +1100422 /* Read and buffer any available stdout data from the program. */
423 if (!fdout_eof && FD_ISSET(fdout, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000424 errno = 0;
Damien Miller95def091999-11-25 00:26:21 +1100425 len = read(fdout, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +1000426 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
427 errno == EWOULDBLOCK) && !child_terminated))) {
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000428 /* do nothing */
Darren Tucker03890e42006-06-24 16:58:45 +1000429#ifndef PTY_ZEROREAD
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000430 } else if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000431#else
Darren Tucker144e8d62006-06-25 08:25:25 +1000432 } else if ((!isatty(fdout) && len <= 0) ||
433 (isatty(fdout) && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000434#endif
Damien Miller95def091999-11-25 00:26:21 +1100435 fdout_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000436 } else {
Damien Miller95def091999-11-25 00:26:21 +1100437 buffer_append(&stdout_buffer, buf, len);
438 fdout_bytes += len;
439 }
440 }
441 /* Read and buffer any available stderr data from the program. */
442 if (!fderr_eof && FD_ISSET(fderr, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000443 errno = 0;
Damien Miller95def091999-11-25 00:26:21 +1100444 len = read(fderr, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +1000445 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
446 errno == EWOULDBLOCK) && !child_terminated))) {
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000447 /* do nothing */
Darren Tucker03890e42006-06-24 16:58:45 +1000448#ifndef PTY_ZEROREAD
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000449 } else if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000450#else
Darren Tucker144e8d62006-06-25 08:25:25 +1000451 } else if ((!isatty(fderr) && len <= 0) ||
452 (isatty(fderr) && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +1000453#endif
Damien Miller95def091999-11-25 00:26:21 +1100454 fderr_eof = 1;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000455 } else {
Damien Miller95def091999-11-25 00:26:21 +1100456 buffer_append(&stderr_buffer, buf, len);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000457 }
Damien Miller95def091999-11-25 00:26:21 +1100458 }
459}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460
Damien Miller95def091999-11-25 00:26:21 +1100461/*
462 * Sends data from internal buffers to client program stdin.
463 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000464static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100465process_output(fd_set *writeset)
Damien Miller95def091999-11-25 00:26:21 +1100466{
Ben Lindstromaa630de2001-02-10 23:44:47 +0000467 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000468 u_char *data;
469 u_int dlen;
Damien Miller95def091999-11-25 00:26:21 +1100470 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471
Damien Miller95def091999-11-25 00:26:21 +1100472 /* Write buffered data to program stdin. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000473 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000474 data = buffer_ptr(&stdin_buffer);
475 dlen = buffer_len(&stdin_buffer);
476 len = write(fdin, data, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +1000477 if (len < 0 &&
478 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)) {
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000479 /* do nothing */
480 } else if (len <= 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000481 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100482 close(fdin);
483 else
484 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100485 fdin = -1;
486 } else {
Ben Lindstromaa630de2001-02-10 23:44:47 +0000487 /* Successful write. */
Ben Lindstrom6d218f42001-09-18 05:53:12 +0000488 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
489 tcgetattr(fdin, &tio) == 0 &&
Damien Miller79438cc2001-02-16 12:34:57 +1100490 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
Kevin Stevesb7f036f2001-02-15 17:27:15 +0000491 /*
492 * Simulate echo to reduce the impact of
493 * traffic analysis
494 */
Ben Lindstrome229b252001-03-05 06:28:06 +0000495 packet_send_ignore(len);
Ben Lindstromaa630de2001-02-10 23:44:47 +0000496 packet_send();
497 }
498 /* Consume the data from the buffer. */
Damien Miller95def091999-11-25 00:26:21 +1100499 buffer_consume(&stdin_buffer, len);
500 /* Update the count of bytes written to the program. */
501 stdin_bytes += len;
502 }
503 }
504 /* Send any buffered packet data to the client. */
505 if (FD_ISSET(connection_out, writeset))
506 packet_write_poll();
507}
508
509/*
510 * Wait until all buffered output has been sent to the client.
511 * This is used when the program terminates.
512 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000513static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000514drain_output(void)
Damien Miller95def091999-11-25 00:26:21 +1100515{
516 /* Send any buffered stdout data to the client. */
517 if (buffer_len(&stdout_buffer) > 0) {
518 packet_start(SSH_SMSG_STDOUT_DATA);
519 packet_put_string(buffer_ptr(&stdout_buffer),
520 buffer_len(&stdout_buffer));
521 packet_send();
522 /* Update the count of sent bytes. */
523 stdout_bytes += buffer_len(&stdout_buffer);
524 }
525 /* Send any buffered stderr data to the client. */
526 if (buffer_len(&stderr_buffer) > 0) {
527 packet_start(SSH_SMSG_STDERR_DATA);
528 packet_put_string(buffer_ptr(&stderr_buffer),
529 buffer_len(&stderr_buffer));
530 packet_send();
531 /* Update the count of sent bytes. */
532 stderr_bytes += buffer_len(&stderr_buffer);
533 }
534 /* Wait until all buffered data has been written to the client. */
535 packet_write_wait();
536}
537
Ben Lindstrombba81212001-06-25 05:01:22 +0000538static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000539process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000540{
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000541 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000542}
543
Damien Miller95def091999-11-25 00:26:21 +1100544/*
545 * Performs the interactive session. This handles data transmission between
546 * the client and the program. Note that the notion of stdin, stdout, and
547 * stderr in this function is sort of reversed: this function writes to
548 * stdin (of the child program), and reads from stdout and stderr (of the
549 * child program).
550 */
Damien Miller4af51302000-04-16 11:18:38 +1000551void
Damien Miller166fca82000-04-20 07:42:21 +1000552server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
Damien Miller95def091999-11-25 00:26:21 +1100553{
Damien Miller5e953212001-01-30 09:14:00 +1100554 fd_set *readset = NULL, *writeset = NULL;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000555 int max_fd = 0;
556 u_int nalloc = 0;
Damien Miller166fca82000-04-20 07:42:21 +1000557 int wait_status; /* Status returned by wait(). */
558 pid_t wait_pid; /* pid returned by wait(). */
Damien Miller95def091999-11-25 00:26:21 +1100559 int waiting_termination = 0; /* Have displayed waiting close message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000560 u_int max_time_milliseconds;
561 u_int previous_stdout_buffer_bytes;
562 u_int stdout_buffer_bytes;
Damien Miller95def091999-11-25 00:26:21 +1100563 int type;
564
565 debug("Entering interactive session.");
566
567 /* Initialize the SIGCHLD kludge. */
Damien Miller95def091999-11-25 00:26:21 +1100568 child_terminated = 0;
Kevin Stevese26a1552001-07-26 17:51:49 +0000569 mysignal(SIGCHLD, sigchld_handler);
Damien Miller95def091999-11-25 00:26:21 +1100570
Damien Miller24ecf612005-11-05 15:16:52 +1100571 if (!use_privsep) {
572 signal(SIGTERM, sigterm_handler);
573 signal(SIGINT, sigterm_handler);
574 signal(SIGQUIT, sigterm_handler);
575 }
576
Damien Miller95def091999-11-25 00:26:21 +1100577 /* Initialize our global variables. */
578 fdin = fdin_arg;
579 fdout = fdout_arg;
580 fderr = fderr_arg;
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000581
582 /* nonblocking IO */
583 set_nonblock(fdin);
584 set_nonblock(fdout);
Damien Miller7d6656c2000-05-20 15:22:36 +1000585 /* we don't have stderr for interactive terminal sessions, see below */
586 if (fderr != -1)
587 set_nonblock(fderr);
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000588
Damien Miller225736c2001-02-19 21:51:08 +1100589 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
590 fdin_is_tty = 1;
591
Damien Miller95def091999-11-25 00:26:21 +1100592 connection_in = packet_get_connection_in();
593 connection_out = packet_get_connection_out();
594
Damien Millerf6681a32001-12-21 14:53:11 +1100595 notify_setup();
596
Damien Miller95def091999-11-25 00:26:21 +1100597 previous_stdout_buffer_bytes = 0;
598
599 /* Set approximate I/O buffer size. */
600 if (packet_is_interactive())
601 buffer_high = 4096;
602 else
603 buffer_high = 64 * 1024;
604
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000605#if 0
Damien Miller95def091999-11-25 00:26:21 +1100606 /* Initialize max_fd to the maximum of the known file descriptors. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000607 max_fd = MAX(connection_in, connection_out);
608 max_fd = MAX(max_fd, fdin);
609 max_fd = MAX(max_fd, fdout);
Damien Miller5e953212001-01-30 09:14:00 +1100610 if (fderr != -1)
611 max_fd = MAX(max_fd, fderr);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000612#endif
Damien Miller95def091999-11-25 00:26:21 +1100613
614 /* Initialize Initialize buffers. */
615 buffer_init(&stdin_buffer);
616 buffer_init(&stdout_buffer);
617 buffer_init(&stderr_buffer);
618
Damien Miller5428f641999-11-25 11:54:57 +1100619 /*
620 * If we have no separate fderr (which is the case when we have a pty
621 * - there we cannot make difference between data sent to stdout and
622 * stderr), indicate that we have seen an EOF from stderr. This way
Damien Miller788f2122005-11-05 15:14:59 +1100623 * we don't need to check the descriptor everywhere.
Damien Miller5428f641999-11-25 11:54:57 +1100624 */
Damien Miller95def091999-11-25 00:26:21 +1100625 if (fderr == -1)
626 fderr_eof = 1;
627
Damien Millerb38eff82000-04-01 11:09:21 +1000628 server_init_dispatch();
629
Damien Miller95def091999-11-25 00:26:21 +1100630 /* Main loop of the server for the interactive session mode. */
631 for (;;) {
Damien Miller95def091999-11-25 00:26:21 +1100632
633 /* Process buffered packets from the client. */
634 process_buffered_input_packets();
635
Damien Miller5428f641999-11-25 11:54:57 +1100636 /*
637 * If we have received eof, and there is no more pending
638 * input data, cause a real eof by closing fdin.
639 */
Damien Miller95def091999-11-25 00:26:21 +1100640 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000641 if (fdin != fdout)
Damien Miller95def091999-11-25 00:26:21 +1100642 close(fdin);
643 else
644 shutdown(fdin, SHUT_WR); /* We will no longer send. */
Damien Miller95def091999-11-25 00:26:21 +1100645 fdin = -1;
646 }
Damien Miller5428f641999-11-25 11:54:57 +1100647 /* Make packets from buffered stderr data to send to the client. */
Damien Miller95def091999-11-25 00:26:21 +1100648 make_packets_from_stderr_data();
649
Damien Miller5428f641999-11-25 11:54:57 +1100650 /*
651 * Make packets from buffered stdout data to send to the
652 * client. If there is very little to send, this arranges to
653 * not send them now, but to wait a short while to see if we
654 * are getting more data. This is necessary, as some systems
655 * wake up readers from a pty after each separate character.
656 */
Damien Miller95def091999-11-25 00:26:21 +1100657 max_time_milliseconds = 0;
658 stdout_buffer_bytes = buffer_len(&stdout_buffer);
659 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
660 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
661 /* try again after a while */
662 max_time_milliseconds = 10;
663 } else {
664 /* Send it now. */
665 make_packets_from_stdout_data();
666 }
667 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
668
669 /* Send channel data to the client. */
670 if (packet_not_very_much_data_to_write())
671 channel_output_poll();
672
Damien Miller5428f641999-11-25 11:54:57 +1100673 /*
674 * Bail out of the loop if the program has closed its output
675 * descriptors, and we have no more data to send to the
676 * client, and there is no pending buffered data.
677 */
Damien Miller43dc8da2000-11-29 15:55:17 +1100678 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
679 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100680 if (!channel_still_open())
Damien Millerb38eff82000-04-01 11:09:21 +1000681 break;
Damien Miller95def091999-11-25 00:26:21 +1100682 if (!waiting_termination) {
683 const char *s = "Waiting for forwarded connections to terminate...\r\n";
684 char *cp;
685 waiting_termination = 1;
686 buffer_append(&stderr_buffer, s, strlen(s));
687
688 /* Display list of open channels. */
689 cp = channel_open_message();
690 buffer_append(&stderr_buffer, cp, strlen(cp));
691 xfree(cp);
692 }
693 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000694 max_fd = MAX(connection_in, connection_out);
695 max_fd = MAX(max_fd, fdin);
696 max_fd = MAX(max_fd, fdout);
697 max_fd = MAX(max_fd, fderr);
Damien Millerf6681a32001-12-21 14:53:11 +1100698 max_fd = MAX(max_fd, notify_pipe[0]);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000699
Damien Miller95def091999-11-25 00:26:21 +1100700 /* Sleep in select() until we can do something. */
Damien Miller5e953212001-01-30 09:14:00 +1100701 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000702 &nalloc, max_time_milliseconds);
Damien Miller95def091999-11-25 00:26:21 +1100703
Damien Miller24ecf612005-11-05 15:16:52 +1100704 if (received_sigterm) {
705 logit("Exiting on signal %d", received_sigterm);
706 /* Clean up sessions, utmp, etc. */
707 cleanup_exit(255);
708 }
709
Damien Miller95def091999-11-25 00:26:21 +1100710 /* Process any channel events. */
Damien Miller5e953212001-01-30 09:14:00 +1100711 channel_after_select(readset, writeset);
Damien Miller95def091999-11-25 00:26:21 +1100712
713 /* Process input from the client and from program stdout/stderr. */
Damien Miller5e953212001-01-30 09:14:00 +1100714 process_input(readset);
Damien Miller95def091999-11-25 00:26:21 +1100715
716 /* Process output to the client and to program stdin. */
Damien Miller5e953212001-01-30 09:14:00 +1100717 process_output(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100718 }
Damien Miller5e953212001-01-30 09:14:00 +1100719 if (readset)
720 xfree(readset);
721 if (writeset)
722 xfree(writeset);
Damien Miller95def091999-11-25 00:26:21 +1100723
Damien Miller95def091999-11-25 00:26:21 +1100724 /* Cleanup and termination code. */
725
726 /* Wait until all output has been sent to the client. */
727 drain_output();
728
729 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100730 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
Damien Miller95def091999-11-25 00:26:21 +1100731
732 /* Free and clear the buffers. */
733 buffer_free(&stdin_buffer);
734 buffer_free(&stdout_buffer);
735 buffer_free(&stderr_buffer);
736
737 /* Close the file descriptors. */
738 if (fdout != -1)
739 close(fdout);
740 fdout = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741 fdout_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100742 if (fderr != -1)
743 close(fderr);
744 fderr = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000745 fderr_eof = 1;
Damien Miller95def091999-11-25 00:26:21 +1100746 if (fdin != -1)
747 close(fdin);
748 fdin = -1;
749
Ben Lindstrom601e4362001-06-21 03:19:23 +0000750 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +1100751
Damien Miller95def091999-11-25 00:26:21 +1100752 /* We no longer want our SIGCHLD handler to be called. */
Kevin Stevese26a1552001-07-26 17:51:49 +0000753 mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100754
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000755 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
756 if (errno != EINTR)
757 packet_disconnect("wait: %.100s", strerror(errno));
758 if (wait_pid != pid)
Ben Lindstromce0f6342002-06-11 16:42:49 +0000759 error("Strange, wait returned pid %ld, expected %ld",
760 (long)wait_pid, (long)pid);
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000761
Damien Miller95def091999-11-25 00:26:21 +1100762 /* Check if it exited normally. */
763 if (WIFEXITED(wait_status)) {
764 /* Yes, normal exit. Get exit status and send it to the client. */
765 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
766 packet_start(SSH_SMSG_EXITSTATUS);
767 packet_put_int(WEXITSTATUS(wait_status));
768 packet_send();
769 packet_write_wait();
770
Damien Miller5428f641999-11-25 11:54:57 +1100771 /*
772 * Wait for exit confirmation. Note that there might be
773 * other packets coming before it; however, the program has
774 * already died so we just ignore them. The client is
775 * supposed to respond with the confirmation when it receives
776 * the exit status.
777 */
Damien Miller95def091999-11-25 00:26:21 +1100778 do {
Damien Millerdff50992002-01-22 23:16:32 +1100779 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100780 }
781 while (type != SSH_CMSG_EXIT_CONFIRMATION);
782
783 debug("Received exit confirmation.");
784 return;
785 }
786 /* Check if the program terminated due to a signal. */
787 if (WIFSIGNALED(wait_status))
788 packet_disconnect("Command terminated on signal %d.",
789 WTERMSIG(wait_status));
790
791 /* Some weird exit cause. Just exit. */
792 packet_disconnect("wait returned status %04x.", wait_status);
793 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000794}
Damien Millerb38eff82000-04-01 11:09:21 +1000795
Damien Miller3ec27592001-10-12 11:35:04 +1000796static void
797collect_children(void)
798{
799 pid_t pid;
800 sigset_t oset, nset;
801 int status;
802
803 /* block SIGCHLD while we check for dead children */
804 sigemptyset(&nset);
805 sigaddset(&nset, SIGCHLD);
806 sigprocmask(SIG_BLOCK, &nset, &oset);
807 if (child_terminated) {
Damien Millerec04f362006-03-15 12:01:34 +1100808 debug("Received SIGCHLD.");
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000809 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
810 (pid < 0 && errno == EINTR))
811 if (pid > 0)
812 session_close_by_pid(pid, status);
Damien Miller3ec27592001-10-12 11:35:04 +1000813 child_terminated = 0;
814 }
815 sigprocmask(SIG_SETMASK, &oset, NULL);
816}
817
Damien Miller4af51302000-04-16 11:18:38 +1000818void
Ben Lindstrombddd5512001-07-04 04:53:53 +0000819server_loop2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +1000820{
Damien Miller5e953212001-01-30 09:14:00 +1100821 fd_set *readset = NULL, *writeset = NULL;
Damien Miller3ec27592001-10-12 11:35:04 +1000822 int rekeying = 0, max_fd, nalloc = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +1000823
824 debug("Entering interactive session for SSH2.");
825
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000826 mysignal(SIGCHLD, sigchld_handler);
Damien Millerefb4afe2000-04-12 18:45:05 +1000827 child_terminated = 0;
828 connection_in = packet_get_connection_in();
829 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100830
Damien Miller24ecf612005-11-05 15:16:52 +1100831 if (!use_privsep) {
832 signal(SIGTERM, sigterm_handler);
833 signal(SIGINT, sigterm_handler);
834 signal(SIGQUIT, sigterm_handler);
835 }
836
Damien Millerf6681a32001-12-21 14:53:11 +1100837 notify_setup();
838
Damien Miller5e953212001-01-30 09:14:00 +1100839 max_fd = MAX(connection_in, connection_out);
Damien Millerf6681a32001-12-21 14:53:11 +1100840 max_fd = MAX(max_fd, notify_pipe[0]);
841
Damien Millerefb4afe2000-04-12 18:45:05 +1000842 server_init_dispatch();
843
844 for (;;) {
845 process_buffered_input_packets();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000846
Ben Lindstroma3700052001-04-05 23:26:32 +0000847 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000848
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000849 if (!rekeying && packet_not_very_much_data_to_write())
Damien Millerefb4afe2000-04-12 18:45:05 +1000850 channel_output_poll();
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000851 wait_until_can_do_something(&readset, &writeset, &max_fd,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000852 &nalloc, 0);
Damien Miller52b77be2001-10-10 15:14:37 +1000853
Damien Miller24ecf612005-11-05 15:16:52 +1100854 if (received_sigterm) {
855 logit("Exiting on signal %d", received_sigterm);
856 /* Clean up sessions, utmp, etc. */
857 cleanup_exit(255);
858 }
859
Damien Miller3ec27592001-10-12 11:35:04 +1000860 collect_children();
Damien Millera5539d22003-04-09 20:50:06 +1000861 if (!rekeying) {
Ben Lindstrom8e312f32001-04-04 23:50:21 +0000862 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +1000863 if (packet_need_rekeying()) {
864 debug("need rekeying");
865 xxx_kex->done = 0;
866 kex_send_kexinit(xxx_kex);
867 }
868 }
Damien Miller5e953212001-01-30 09:14:00 +1100869 process_input(readset);
Ben Lindstrome34ab4c2001-04-07 01:12:11 +0000870 if (connection_closed)
871 break;
Damien Miller5e953212001-01-30 09:14:00 +1100872 process_output(writeset);
Damien Millerefb4afe2000-04-12 18:45:05 +1000873 }
Damien Miller3ec27592001-10-12 11:35:04 +1000874 collect_children();
875
Damien Miller5e953212001-01-30 09:14:00 +1100876 if (readset)
877 xfree(readset);
878 if (writeset)
879 xfree(writeset);
880
Damien Miller52b77be2001-10-10 15:14:37 +1000881 /* free all channels, no more reads and writes */
882 channel_free_all();
Ben Lindstrom4983d5e2001-07-04 05:17:40 +0000883
Damien Miller3ec27592001-10-12 11:35:04 +1000884 /* free remaining sessions, e.g. remove wtmp entries */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000885 session_destroy_all(NULL);
Damien Millerefb4afe2000-04-12 18:45:05 +1000886}
887
Ben Lindstrombba81212001-06-25 05:01:22 +0000888static void
Damien Millerb5820f42003-12-17 16:27:32 +1100889server_input_keep_alive(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000890{
Damien Millerb5820f42003-12-17 16:27:32 +1100891 debug("Got %d/%u for keepalive", type, seq);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100892 /*
Ben Lindstrom2f0304c2001-04-29 19:49:14 +0000893 * reset timeout, since we got a sane answer from the client.
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000894 * even if this was generated by something other than
895 * the bogus CHANNEL_REQUEST we send for keepalives.
896 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000897 packet_set_alive_timeouts(0);
Ben Lindstrom5744dc42001-04-13 23:28:01 +0000898}
899
Ben Lindstrombba81212001-06-25 05:01:22 +0000900static void
Damien Miller630d6f42002-01-22 23:17:30 +1100901server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000902{
903 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000904 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000905
906 /* Stdin data from the client. Append it to the buffer. */
907 /* Ignore any data if the client has closed stdin. */
908 if (fdin == -1)
909 return;
910 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +1100911 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000912 buffer_append(&stdin_buffer, data, data_len);
913 memset(data, 0, data_len);
914 xfree(data);
915}
916
Ben Lindstrombba81212001-06-25 05:01:22 +0000917static void
Damien Miller630d6f42002-01-22 23:17:30 +1100918server_input_eof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000919{
920 /*
921 * Eof from the client. The stdin descriptor to the
922 * program will be closed when all buffered data has
923 * drained.
924 */
925 debug("EOF received for stdin.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100926 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000927 stdin_eof = 1;
928}
929
Ben Lindstrombba81212001-06-25 05:01:22 +0000930static void
Damien Miller630d6f42002-01-22 23:17:30 +1100931server_input_window_size(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000932{
Damien Miller71a73672006-03-26 14:04:36 +1100933 u_int row = packet_get_int();
934 u_int col = packet_get_int();
935 u_int xpixel = packet_get_int();
936 u_int ypixel = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +1000937
938 debug("Window change received.");
Damien Miller48b03fc2002-01-22 23:11:40 +1100939 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000940 if (fdin != -1)
941 pty_change_window_size(fdin, row, col, xpixel, ypixel);
942}
943
Ben Lindstrombba81212001-06-25 05:01:22 +0000944static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +1100945server_request_direct_tcpip(void)
Damien Millerefb4afe2000-04-12 18:45:05 +1000946{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000947 Channel *c;
Damien Miller4af51302000-04-16 11:18:38 +1000948 char *target, *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100949 u_short target_port, originator_port;
Damien Millerefb4afe2000-04-12 18:45:05 +1000950
Damien Miller4af51302000-04-16 11:18:38 +1000951 target = packet_get_string(NULL);
952 target_port = packet_get_int();
Damien Millerefb4afe2000-04-12 18:45:05 +1000953 originator = packet_get_string(NULL);
954 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100955 packet_check_eom();
Damien Millerb1715dc2000-05-30 13:44:51 +1000956
Damien Millerbd740252008-05-19 15:37:09 +1000957 debug("server_request_direct_tcpip: originator %s port %d, target %s "
958 "port %d", originator, originator_port, target, target_port);
Damien Millerf6d9e222000-06-18 14:50:44 +1000959
Damien Millerefb4afe2000-04-12 18:45:05 +1000960 /* XXX check permission */
Damien Millerbd740252008-05-19 15:37:09 +1000961 c = channel_connect_to(target, target_port,
962 "direct-tcpip", "direct-tcpip");
963
Damien Millerefb4afe2000-04-12 18:45:05 +1000964 xfree(originator);
Damien Millerbd740252008-05-19 15:37:09 +1000965 xfree(target);
966
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000967 return c;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968}
969
Ben Lindstrombba81212001-06-25 05:01:22 +0000970static Channel *
Damien Millerd27b9472005-12-13 19:29:02 +1100971server_request_tun(void)
972{
973 Channel *c = NULL;
Damien Miller7b58e802005-12-13 19:33:19 +1100974 int mode, tun;
975 int sock;
Damien Millerd27b9472005-12-13 19:29:02 +1100976
Damien Miller7b58e802005-12-13 19:33:19 +1100977 mode = packet_get_int();
978 switch (mode) {
979 case SSH_TUNMODE_POINTOPOINT:
980 case SSH_TUNMODE_ETHERNET:
981 break;
982 default:
983 packet_send_debug("Unsupported tunnel device mode.");
984 return NULL;
985 }
986 if ((options.permit_tun & mode) == 0) {
987 packet_send_debug("Server has rejected tunnel device "
988 "forwarding");
Damien Millerd27b9472005-12-13 19:29:02 +1100989 return NULL;
990 }
991
992 tun = packet_get_int();
Darren Tucker0d0e8f02005-12-20 16:08:42 +1100993 if (forced_tun_device != -1) {
Damien Millerf0b15df2006-03-26 13:59:20 +1100994 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
Damien Millerd27b9472005-12-13 19:29:02 +1100995 goto done;
996 tun = forced_tun_device;
997 }
Damien Miller7b58e802005-12-13 19:33:19 +1100998 sock = tun_open(tun, mode);
Damien Millerd27b9472005-12-13 19:29:02 +1100999 if (sock < 0)
1000 goto done;
1001 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
1002 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
1003 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +11001004#if defined(SSH_TUN_FILTER)
1005 if (mode == SSH_TUNMODE_POINTOPOINT)
1006 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10001007 sys_tun_outfilter, NULL, NULL);
Damien Miller598bbc22005-12-31 16:33:36 +11001008#endif
Damien Millerd27b9472005-12-13 19:29:02 +11001009
1010 done:
1011 if (c == NULL)
1012 packet_send_debug("Failed to open the tunnel device.");
1013 return c;
1014}
1015
1016static Channel *
Damien Millerfb1310e2004-01-21 11:02:50 +11001017server_request_session(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001018{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001019 Channel *c;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001020
1021 debug("input_session_request");
Damien Miller48b03fc2002-01-22 23:11:40 +11001022 packet_check_eom();
Darren Tucker8901fa92008-06-11 09:34:01 +10001023
1024 if (no_more_sessions) {
1025 packet_disconnect("Possible attack: attempt to open a session "
1026 "after additional sessions disabled");
1027 }
1028
Damien Miller0bc1bd82000-11-13 22:57:25 +11001029 /*
1030 * A server session has no fd to read or write until a
1031 * CHANNEL_REQUEST for a shell is made, so we set the type to
1032 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
1033 * CHANNEL_REQUEST messages is registered.
1034 */
Damien Millerfb1310e2004-01-21 11:02:50 +11001035 c = channel_new("session", SSH_CHANNEL_LARVAL,
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001036 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001037 0, "server-session", 1);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001038 if (session_open(the_authctxt, c->self) != 1) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001039 debug("session open failed, free channel %d", c->self);
1040 channel_free(c);
1041 return NULL;
1042 }
Damien Miller39eda6e2005-11-05 14:52:50 +11001043 channel_register_cleanup(c->self, session_close_by_channel, 0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001044 return c;
Damien Millerefb4afe2000-04-12 18:45:05 +10001045}
1046
Ben Lindstrombba81212001-06-25 05:01:22 +00001047static void
Damien Miller630d6f42002-01-22 23:17:30 +11001048server_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10001049{
1050 Channel *c = NULL;
1051 char *ctype;
Damien Millerefb4afe2000-04-12 18:45:05 +10001052 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001053 u_int rmaxpack, rwindow, len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001054
1055 ctype = packet_get_string(&len);
1056 rchan = packet_get_int();
1057 rwindow = packet_get_int();
1058 rmaxpack = packet_get_int();
1059
Damien Miller62cee002000-09-23 17:15:56 +11001060 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001061 ctype, rchan, rwindow, rmaxpack);
1062
1063 if (strcmp(ctype, "session") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001064 c = server_request_session();
Damien Millerefb4afe2000-04-12 18:45:05 +10001065 } else if (strcmp(ctype, "direct-tcpip") == 0) {
Damien Millerfb1310e2004-01-21 11:02:50 +11001066 c = server_request_direct_tcpip();
Damien Millerd27b9472005-12-13 19:29:02 +11001067 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
1068 c = server_request_tun();
Damien Millerefb4afe2000-04-12 18:45:05 +10001069 }
1070 if (c != NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001071 debug("server_input_channel_open: confirm %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001072 c->remote_id = rchan;
1073 c->remote_window = rwindow;
1074 c->remote_maxpacket = rmaxpack;
Ben Lindstrom69128662001-05-08 20:07:39 +00001075 if (c->type != SSH_CHANNEL_CONNECTING) {
1076 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1077 packet_put_int(c->remote_id);
1078 packet_put_int(c->self);
1079 packet_put_int(c->local_window);
1080 packet_put_int(c->local_maxpacket);
1081 packet_send();
1082 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001083 } else {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001084 debug("server_input_channel_open: failure %s", ctype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001085 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1086 packet_put_int(rchan);
1087 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001088 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001089 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001090 packet_put_cstring("");
1091 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001092 packet_send();
1093 }
1094 xfree(ctype);
1095}
1096
Ben Lindstrombba81212001-06-25 05:01:22 +00001097static void
Damien Miller630d6f42002-01-22 23:17:30 +11001098server_input_global_request(int type, u_int32_t seq, void *ctxt)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001099{
1100 char *rtype;
1101 int want_reply;
Damien Miller4bf648f2009-02-14 16:28:21 +11001102 int success = 0, allocated_listen_port = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001103
1104 rtype = packet_get_string(NULL);
1105 want_reply = packet_get_char();
1106 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001107
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00001108 /* -R style forwarding */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001109 if (strcmp(rtype, "tcpip-forward") == 0) {
1110 struct passwd *pw;
1111 char *listen_address;
1112 u_short listen_port;
1113
Darren Tucker3e33cec2003-10-02 16:12:36 +10001114 pw = the_authctxt->pw;
Damien Miller4bb1dd32003-11-18 22:01:25 +11001115 if (pw == NULL || !the_authctxt->valid)
Damien Miller3e3b5142003-11-17 21:13:40 +11001116 fatal("server_input_global_request: no/invalid user");
Damien Miller9fc7c692003-06-04 22:50:54 +10001117 listen_address = packet_get_string(NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001118 listen_port = (u_short)packet_get_int();
1119 debug("server_input_global_request: tcpip-forward listen %s port %d",
1120 listen_address, listen_port);
1121
1122 /* check permissions */
1123 if (!options.allow_tcp_forwarding ||
Damien Miller330d5852009-02-14 16:33:09 +11001124 no_port_forwarding_flag ||
1125 (!want_reply && listen_port == 0)
Ben Lindstrom99a4e142002-07-09 14:06:40 +00001126#ifndef NO_IPPORT_RESERVED_CONCEPT
Damien Millere5d5a172009-09-09 11:07:28 +10001127 || (listen_port != 0 && listen_port < IPPORT_RESERVED &&
1128 pw->pw_uid != 0)
Ben Lindstrom99a4e142002-07-09 14:06:40 +00001129#endif
Damien Millerb6f72f52005-07-17 17:26:43 +10001130 ) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001131 success = 0;
1132 packet_send_debug("Server has disabled port forwarding.");
1133 } else {
1134 /* Start listening on the port */
Damien Millerb16461c2002-01-22 23:29:22 +11001135 success = channel_setup_remote_fwd_listener(
Damien Miller330d5852009-02-14 16:33:09 +11001136 listen_address, listen_port,
1137 &allocated_listen_port, options.gateway_ports);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001138 }
1139 xfree(listen_address);
Darren Tuckere7066df2004-05-24 10:18:05 +10001140 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
1141 char *cancel_address;
1142 u_short cancel_port;
1143
1144 cancel_address = packet_get_string(NULL);
1145 cancel_port = (u_short)packet_get_int();
1146 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
1147 cancel_address, cancel_port);
1148
1149 success = channel_cancel_rport_listener(cancel_address,
1150 cancel_port);
Damien Miller6f98a1f2006-03-26 13:51:08 +11001151 xfree(cancel_address);
Darren Tucker8901fa92008-06-11 09:34:01 +10001152 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
1153 no_more_sessions = 1;
1154 success = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001155 }
1156 if (want_reply) {
1157 packet_start(success ?
1158 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
Damien Miller4bf648f2009-02-14 16:28:21 +11001159 if (success && allocated_listen_port > 0)
1160 packet_put_int(allocated_listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001161 packet_send();
1162 packet_write_wait();
1163 }
1164 xfree(rtype);
1165}
Damien Miller4f7becb2006-03-26 14:10:14 +11001166
Damien Millerc7ef63d2002-02-05 12:21:42 +11001167static void
1168server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1169{
1170 Channel *c;
1171 int id, reply, success = 0;
1172 char *rtype;
1173
1174 id = packet_get_int();
1175 rtype = packet_get_string(NULL);
1176 reply = packet_get_char();
1177
1178 debug("server_input_channel_req: channel %d request %s reply %d",
1179 id, rtype, reply);
1180
1181 if ((c = channel_lookup(id)) == NULL)
1182 packet_disconnect("server_input_channel_req: "
1183 "unknown channel %d", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10001184 if (!strcmp(rtype, "eow@openssh.com")) {
1185 packet_check_eom();
1186 chan_rcvd_eow(c);
Darren Tucker8810dd42008-07-02 22:32:14 +10001187 } else if ((c->type == SSH_CHANNEL_LARVAL ||
1188 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
Damien Millerc7ef63d2002-02-05 12:21:42 +11001189 success = session_input_channel_req(c, rtype);
1190 if (reply) {
1191 packet_start(success ?
1192 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1193 packet_put_int(c->remote_id);
1194 packet_send();
1195 }
1196 xfree(rtype);
1197}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001198
Ben Lindstrombba81212001-06-25 05:01:22 +00001199static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001200server_init_dispatch_20(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001201{
1202 debug("server_init_dispatch_20");
1203 dispatch_init(&dispatch_protocol_error);
1204 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1205 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1206 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1207 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1208 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1209 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1210 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Damien Millerc7ef63d2002-02-05 12:21:42 +11001211 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
Damien Millerefb4afe2000-04-12 18:45:05 +10001212 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001213 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001214 /* client_alive */
Damien Miller5a33ec62008-12-08 09:55:02 +11001215 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
1216 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
Damien Millerb5820f42003-12-17 16:27:32 +11001217 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1218 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001219 /* rekeying */
1220 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001221}
Ben Lindstrombba81212001-06-25 05:01:22 +00001222static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001223server_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001224{
1225 debug("server_init_dispatch_13");
1226 dispatch_init(NULL);
1227 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1228 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1229 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1230 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1231 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1232 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1233 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1234 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1235 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1236}
Ben Lindstrombba81212001-06-25 05:01:22 +00001237static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001238server_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001239{
1240 server_init_dispatch_13();
1241 debug("server_init_dispatch_15");
1242 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1243 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1244}
Ben Lindstrombba81212001-06-25 05:01:22 +00001245static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001246server_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001247{
Damien Millerefb4afe2000-04-12 18:45:05 +10001248 if (compat20)
1249 server_init_dispatch_20();
1250 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001251 server_init_dispatch_13();
1252 else
1253 server_init_dispatch_15();
1254}