]> andersk Git - openssh.git/blame - serverloop.c
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / serverloop.c
CommitLineData
d0137ef8 1/* $OpenBSD: serverloop.c,v 1.159 2009/05/28 16:50:16 andreas Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * Server main loop for handling the interactive session.
bcbf86ec 7 *
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 *
e78a59f5 14 * SSH2 support by Markus Friedl.
a96070d4 15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 16 *
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.
e78a59f5 36 */
8efc0c15 37
38#include "includes.h"
aa2eae64 39
40#include <sys/types.h>
536c14e8 41#include <sys/param.h>
aa2eae64 42#include <sys/wait.h>
9794d008 43#include <sys/socket.h>
e264ac72 44#ifdef HAVE_SYS_TIME_H
45# include <sys/time.h>
46#endif
9794d008 47
48#include <netinet/in.h>
1d3e026f 49
028094f4 50#include <errno.h>
d3221cca 51#include <fcntl.h>
b1842393 52#include <pwd.h>
ada68823 53#include <signal.h>
00146caa 54#include <string.h>
1d3e026f 55#include <termios.h>
67514848 56#include <unistd.h>
31652869 57#include <stdarg.h>
a22aff1f 58
3593bdc0 59#include "openbsd-compat/sys-queue.h"
8efc0c15 60#include "xmalloc.h"
8efc0c15 61#include "packet.h"
62#include "buffer.h"
42f11eb2 63#include "log.h"
8efc0c15 64#include "servconf.h"
00e842d8 65#include "canohost.h"
1729c161 66#include "sshpty.h"
a5efa1bb 67#include "channels.h"
7368a6c8 68#include "compat.h"
42f11eb2 69#include "ssh1.h"
e78a59f5 70#include "ssh2.h"
31652869 71#include "key.h"
72#include "cipher.h"
73#include "kex.h"
74#include "hostfile.h"
59c97189 75#include "auth.h"
e78a59f5 76#include "session.h"
7368a6c8 77#include "dispatch.h"
38c295d6 78#include "auth-options.h"
42f11eb2 79#include "serverloop.h"
80#include "misc.h"
d0137ef8 81#include "roaming.h"
8efc0c15 82
33de75a3 83extern ServerOptions options;
84
7a37c112 85/* XXX */
86extern Kex *xxx_kex;
2362db19 87extern Authctxt *the_authctxt;
0bbbf2a4 88extern int use_privsep;
7a37c112 89
8efc0c15 90static 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. */
e68225b2 104static int fdin_is_tty = 0; /* fdin points to a tty. */
8efc0c15 105static int connection_in; /* Connection to client (input). */
106static int connection_out; /* Connection to client (output). */
cc94bd38 107static int connection_closed = 0; /* Connection to client closed. */
108static u_int buffer_high; /* "Soft" max buffer size. */
3f0444ca 109static int no_more_sessions = 0; /* Disallow further sessions. */
8efc0c15 110
aa3378df 111/*
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 */
396c147e 115
7a934d1b 116static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
8efc0c15 117
0bbbf2a4 118/* Cleanup on signals (!use_privsep case only) */
119static volatile sig_atomic_t received_sigterm = 0;
120
396c147e 121/* prototypes */
122static void server_init_dispatch(void);
7368a6c8 123
a10be357 124/*
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
3efa8ea9 169/*ARGSUSED*/
396c147e 170static void
5260325f 171sigchld_handler(int sig)
e78a59f5 172{
173 int save_errno = errno;
e78a59f5 174 child_terminated = 1;
ef51930f 175#ifndef _UNICOS
c9130033 176 mysignal(SIGCHLD, sigchld_handler);
ef51930f 177#endif
a10be357 178 notify_parent();
e78a59f5 179 errno = save_errno;
180}
8efc0c15 181
3efa8ea9 182/*ARGSUSED*/
0bbbf2a4 183static void
184sigterm_handler(int sig)
185{
186 received_sigterm = sig;
187}
188
5260325f 189/*
190 * Make packets from buffered stderr data, and buffer it for sending
191 * to the client.
192 */
396c147e 193static void
5ca51e19 194make_packets_from_stderr_data(void)
8efc0c15 195{
a27002e5 196 u_int len;
5260325f 197
198 /* Send buffered stderr data to the client. */
199 while (buffer_len(&stderr_buffer) > 0 &&
a408af76 200 packet_not_very_much_data_to_write()) {
5260325f 201 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;
8efc0c15 215 }
8efc0c15 216}
217
5260325f 218/*
219 * Make packets from buffered stdout data, and buffer it for sending to the
220 * client.
221 */
396c147e 222static void
5ca51e19 223make_packets_from_stdout_data(void)
8efc0c15 224{
a27002e5 225 u_int len;
5260325f 226
227 /* Send buffered stdout data to the client. */
228 while (buffer_len(&stdout_buffer) > 0 &&
a408af76 229 packet_not_very_much_data_to_write()) {
5260325f 230 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())
2b87da3b 237 len = packet_get_maxsize();
5260325f 238 }
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;
8efc0c15 244 }
8efc0c15 245}
246
72176c0e 247static void
248client_alive_check(void)
249{
95ae2076 250 int channel_id;
99416ceb 251
72176c0e 252 /* timeout, check to see how many we have had */
dc1f1948 253 if (packet_inc_alive_timeouts() > options.client_alive_count_max) {
bd3b2cb2 254 logit("Timeout, client not responding.");
255 cleanup_exit(255);
256 }
72176c0e 257
72176c0e 258 /*
95ae2076 259 * send a bogus global/channel request with "wantreply",
72176c0e 260 * we should get back a failure
261 */
95ae2076 262 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 }
72176c0e 269 packet_send();
270}
271
5260325f 272/*
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 */
396c147e 278static void
39929cdb 279wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
9a995072 280 u_int *nallocp, u_int max_time_milliseconds)
8efc0c15 281{
5260325f 282 struct timeval tv, *tvp;
283 int ret;
3ffc6336 284 int client_alive_scheduled = 0;
34640ce6 285 int program_alive_scheduled = 0;
3ffc6336 286
287 /*
184eed6a 288 * if using client_alive, set the max timeout accordingly,
3ffc6336 289 * 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
184eed6a 293 * analysis more difficult, but we're not doing it yet.
3ffc6336 294 */
2c5b1791 295 if (compat20 &&
296 max_time_milliseconds == 0 && options.client_alive_interval) {
39aefe7b 297 client_alive_scheduled = 1;
3ffc6336 298 max_time_milliseconds = options.client_alive_interval * 1000;
2c5b1791 299 }
8efc0c15 300
39929cdb 301 /* Allocate and update select() masks for channel descriptors. */
489aa2e9 302 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
5260325f 303
e78a59f5 304 if (compat20) {
0c139bd1 305#if 0
1d1ffb87 306 /* wrong: bad condition XXX */
e78a59f5 307 if (channel_not_very_much_buffered_data())
0c139bd1 308#endif
309 FD_SET(connection_in, *readsetp);
e78a59f5 310 } else {
71276795 311 /*
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 &&
e78a59f5 316 channel_not_very_much_buffered_data())
39929cdb 317 FD_SET(connection_in, *readsetp);
71276795 318 /*
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()) {
34640ce6 323 program_alive_scheduled = child_terminated;
71276795 324 if (!fdout_eof)
39929cdb 325 FD_SET(fdout, *readsetp);
71276795 326 if (!fderr_eof)
39929cdb 327 FD_SET(fderr, *readsetp);
71276795 328 }
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)
39929cdb 334 FD_SET(fdin, *writesetp);
e78a59f5 335 }
a10be357 336 notify_prepare(*readsetp);
5260325f 337
aa3378df 338 /*
339 * If we have buffered packet data going to the client, mark that
340 * descriptor.
341 */
5260325f 342 if (packet_have_data_to_write())
39929cdb 343 FD_SET(connection_out, *writesetp);
5260325f 344
aa3378df 345 /*
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 */
5260325f 349 if (child_terminated && packet_not_very_much_data_to_write())
3ffc6336 350 if (max_time_milliseconds == 0 || client_alive_scheduled)
5260325f 351 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 }
8efc0c15 360
5260325f 361 /* Wait for something to happen, or the timeout to expire. */
39929cdb 362 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
8efc0c15 363
3ffc6336 364 if (ret == -1) {
b3ad8fe6 365 memset(*readsetp, 0, *nallocp);
366 memset(*writesetp, 0, *nallocp);
5260325f 367 if (errno != EINTR)
368 error("select: %.100s", strerror(errno));
34640ce6 369 } 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 }
a10be357 379
380 notify_done(*readsetp);
8efc0c15 381}
382
5260325f 383/*
384 * Processes input from the client and the program. Input data is stored
385 * in buffers and processed later.
386 */
396c147e 387static void
b476adfa 388process_input(fd_set *readset)
5260325f 389{
390 int len;
391 char buf[16384];
392
393 /* Read and buffer any input data from the client. */
394 if (FD_ISSET(connection_in, readset)) {
d0137ef8 395 int cont = 0;
396 len = roaming_read(connection_in, buf, sizeof(buf), &cont);
5260325f 397 if (len == 0) {
d0137ef8 398 if (cont)
399 return;
00e842d8 400 verbose("Connection closed by %.100s",
401 get_remote_ipaddr());
cc94bd38 402 connection_closed = 1;
403 if (compat20)
404 return;
2362db19 405 cleanup_exit(255);
0e73cc53 406 } else if (len < 0) {
5a0c8771 407 if (errno != EINTR && errno != EAGAIN &&
408 errno != EWOULDBLOCK) {
00e842d8 409 verbose("Read error from remote host "
410 "%.100s: %.100s",
411 get_remote_ipaddr(), strerror(errno));
2362db19 412 cleanup_exit(255);
0e73cc53 413 }
414 } else {
415 /* Buffer any received data. */
416 packet_process_incoming(buf, len);
5260325f 417 }
5260325f 418 }
e78a59f5 419 if (compat20)
420 return;
421
5260325f 422 /* Read and buffer any available stdout data from the program. */
423 if (!fdout_eof && FD_ISSET(fdout, readset)) {
ea8c44d9 424 errno = 0;
5260325f 425 len = read(fdout, buf, sizeof(buf));
5a0c8771 426 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
427 errno == EWOULDBLOCK) && !child_terminated))) {
0e73cc53 428 /* do nothing */
24a87055 429#ifndef PTY_ZEROREAD
0e73cc53 430 } else if (len <= 0) {
ea8c44d9 431#else
9c04d67d 432 } else if ((!isatty(fdout) && len <= 0) ||
433 (isatty(fdout) && (len < 0 || (len == 0 && errno != 0)))) {
ea8c44d9 434#endif
5260325f 435 fdout_eof = 1;
0e73cc53 436 } else {
5260325f 437 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)) {
ea8c44d9 443 errno = 0;
5260325f 444 len = read(fderr, buf, sizeof(buf));
5a0c8771 445 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
446 errno == EWOULDBLOCK) && !child_terminated))) {
0e73cc53 447 /* do nothing */
24a87055 448#ifndef PTY_ZEROREAD
0e73cc53 449 } else if (len <= 0) {
ea8c44d9 450#else
9c04d67d 451 } else if ((!isatty(fderr) && len <= 0) ||
452 (isatty(fderr) && (len < 0 || (len == 0 && errno != 0)))) {
ea8c44d9 453#endif
5260325f 454 fderr_eof = 1;
0e73cc53 455 } else {
5260325f 456 buffer_append(&stderr_buffer, buf, len);
0e73cc53 457 }
5260325f 458 }
459}
8efc0c15 460
5260325f 461/*
462 * Sends data from internal buffers to client program stdin.
463 */
396c147e 464static void
b476adfa 465process_output(fd_set *writeset)
8efc0c15 466{
4ef922e3 467 struct termios tio;
780a9951 468 u_char *data;
469 u_int dlen;
5260325f 470 int len;
471
472 /* Write buffered data to program stdin. */
e78a59f5 473 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
780a9951 474 data = buffer_ptr(&stdin_buffer);
475 dlen = buffer_len(&stdin_buffer);
476 len = write(fdin, data, dlen);
5a0c8771 477 if (len < 0 &&
478 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)) {
0e73cc53 479 /* do nothing */
480 } else if (len <= 0) {
7368a6c8 481 if (fdin != fdout)
5260325f 482 close(fdin);
483 else
484 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 485 fdin = -1;
486 } else {
4ef922e3 487 /* Successful write. */
780a9951 488 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
489 tcgetattr(fdin, &tio) == 0 &&
0ae4fe1d 490 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
62da27dd 491 /*
492 * Simulate echo to reduce the impact of
493 * traffic analysis
494 */
95ce5599 495 packet_send_ignore(len);
4ef922e3 496 packet_send();
497 }
498 /* Consume the data from the buffer. */
5260325f 499 buffer_consume(&stdin_buffer, len);
500 /* Update the count of bytes written to the program. */
501 stdin_bytes += len;
502 }
8efc0c15 503 }
5260325f 504 /* Send any buffered packet data to the client. */
505 if (FD_ISSET(connection_out, writeset))
506 packet_write_poll();
8efc0c15 507}
508
5260325f 509/*
510 * Wait until all buffered output has been sent to the client.
511 * This is used when the program terminates.
512 */
396c147e 513static void
5ca51e19 514drain_output(void)
8efc0c15 515{
5260325f 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();
8efc0c15 536}
537
396c147e 538static void
5ca51e19 539process_buffered_input_packets(void)
7368a6c8 540{
7a37c112 541 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
7368a6c8 542}
543
5260325f 544/*
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 */
6ae2364d 551void
9da5c3c9 552server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
8efc0c15 553{
39929cdb 554 fd_set *readset = NULL, *writeset = NULL;
9a995072 555 int max_fd = 0;
556 u_int nalloc = 0;
9da5c3c9 557 int wait_status; /* Status returned by wait(). */
558 pid_t wait_pid; /* pid returned by wait(). */
5260325f 559 int waiting_termination = 0; /* Have displayed waiting close message. */
1e3b8b07 560 u_int max_time_milliseconds;
561 u_int previous_stdout_buffer_bytes;
562 u_int stdout_buffer_bytes;
5260325f 563 int type;
564
565 debug("Entering interactive session.");
566
567 /* Initialize the SIGCHLD kludge. */
5260325f 568 child_terminated = 0;
42ad0eec 569 mysignal(SIGCHLD, sigchld_handler);
5260325f 570
0bbbf2a4 571 if (!use_privsep) {
572 signal(SIGTERM, sigterm_handler);
573 signal(SIGINT, sigterm_handler);
574 signal(SIGQUIT, sigterm_handler);
575 }
576
5260325f 577 /* Initialize our global variables. */
578 fdin = fdin_arg;
579 fdout = fdout_arg;
580 fderr = fderr_arg;
0e73cc53 581
582 /* nonblocking IO */
583 set_nonblock(fdin);
584 set_nonblock(fdout);
ff873e98 585 /* we don't have stderr for interactive terminal sessions, see below */
586 if (fderr != -1)
587 set_nonblock(fderr);
0e73cc53 588
e68225b2 589 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
590 fdin_is_tty = 1;
591
5260325f 592 connection_in = packet_get_connection_in();
593 connection_out = packet_get_connection_out();
594
a10be357 595 notify_setup();
596
5260325f 597 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
489aa2e9 605#if 0
5260325f 606 /* Initialize max_fd to the maximum of the known file descriptors. */
489aa2e9 607 max_fd = MAX(connection_in, connection_out);
608 max_fd = MAX(max_fd, fdin);
609 max_fd = MAX(max_fd, fdout);
39929cdb 610 if (fderr != -1)
611 max_fd = MAX(max_fd, fderr);
489aa2e9 612#endif
5260325f 613
614 /* Initialize Initialize buffers. */
615 buffer_init(&stdin_buffer);
616 buffer_init(&stdout_buffer);
617 buffer_init(&stderr_buffer);
618
aa3378df 619 /*
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
7b9b0103 623 * we don't need to check the descriptor everywhere.
aa3378df 624 */
5260325f 625 if (fderr == -1)
626 fderr_eof = 1;
627
7368a6c8 628 server_init_dispatch();
629
5260325f 630 /* Main loop of the server for the interactive session mode. */
631 for (;;) {
5260325f 632
633 /* Process buffered packets from the client. */
634 process_buffered_input_packets();
635
aa3378df 636 /*
637 * If we have received eof, and there is no more pending
638 * input data, cause a real eof by closing fdin.
639 */
5260325f 640 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
7368a6c8 641 if (fdin != fdout)
5260325f 642 close(fdin);
643 else
644 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 645 fdin = -1;
646 }
aa3378df 647 /* Make packets from buffered stderr data to send to the client. */
5260325f 648 make_packets_from_stderr_data();
649
aa3378df 650 /*
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 */
5260325f 657 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
aa3378df 673 /*
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 */
7062c40f 678 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
679 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
5260325f 680 if (!channel_still_open())
7368a6c8 681 break;
5260325f 682 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 }
489aa2e9 694 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);
a10be357 698 max_fd = MAX(max_fd, notify_pipe[0]);
489aa2e9 699
5260325f 700 /* Sleep in select() until we can do something. */
39929cdb 701 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 702 &nalloc, max_time_milliseconds);
5260325f 703
0bbbf2a4 704 if (received_sigterm) {
705 logit("Exiting on signal %d", received_sigterm);
706 /* Clean up sessions, utmp, etc. */
707 cleanup_exit(255);
708 }
709
5260325f 710 /* Process any channel events. */
39929cdb 711 channel_after_select(readset, writeset);
5260325f 712
713 /* Process input from the client and from program stdout/stderr. */
39929cdb 714 process_input(readset);
5260325f 715
716 /* Process output to the client and to program stdin. */
39929cdb 717 process_output(writeset);
8efc0c15 718 }
39929cdb 719 if (readset)
720 xfree(readset);
721 if (writeset)
722 xfree(writeset);
8efc0c15 723
5260325f 724 /* Cleanup and termination code. */
8efc0c15 725
5260325f 726 /* Wait until all output has been sent to the client. */
727 drain_output();
8efc0c15 728
5260325f 729 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
184eed6a 730 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
8efc0c15 731
5260325f 732 /* Free and clear the buffers. */
733 buffer_free(&stdin_buffer);
734 buffer_free(&stdout_buffer);
735 buffer_free(&stderr_buffer);
8efc0c15 736
5260325f 737 /* Close the file descriptors. */
738 if (fdout != -1)
739 close(fdout);
740 fdout = -1;
741 fdout_eof = 1;
742 if (fderr != -1)
743 close(fderr);
744 fderr = -1;
745 fderr_eof = 1;
746 if (fdin != -1)
747 close(fdin);
748 fdin = -1;
749
d6746a0b 750 channel_free_all();
5260325f 751
5260325f 752 /* We no longer want our SIGCHLD handler to be called. */
42ad0eec 753 mysignal(SIGCHLD, SIG_DFL);
5260325f 754
8c38e88b 755 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)
c457707e 759 error("Strange, wait returned pid %ld, expected %ld",
760 (long)wait_pid, (long)pid);
c9130033 761
5260325f 762 /* 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
aa3378df 771 /*
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 */
5260325f 778 do {
54a5250f 779 type = packet_read();
5260325f 780 }
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 */
794}
7368a6c8 795
418e724c 796static 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) {
140000b4 808 debug("Received SIGCHLD.");
8c38e88b 809 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
810 (pid < 0 && errno == EINTR))
811 if (pid > 0)
812 session_close_by_pid(pid, status);
418e724c 813 child_terminated = 0;
814 }
815 sigprocmask(SIG_SETMASK, &oset, NULL);
816}
817
6ae2364d 818void
57156994 819server_loop2(Authctxt *authctxt)
e78a59f5 820{
39929cdb 821 fd_set *readset = NULL, *writeset = NULL;
418e724c 822 int rekeying = 0, max_fd, nalloc = 0;
e78a59f5 823
824 debug("Entering interactive session for SSH2.");
825
c9130033 826 mysignal(SIGCHLD, sigchld_handler);
e78a59f5 827 child_terminated = 0;
828 connection_in = packet_get_connection_in();
829 connection_out = packet_get_connection_out();
39929cdb 830
0bbbf2a4 831 if (!use_privsep) {
832 signal(SIGTERM, sigterm_handler);
833 signal(SIGINT, sigterm_handler);
834 signal(SIGQUIT, sigterm_handler);
835 }
836
a10be357 837 notify_setup();
838
39929cdb 839 max_fd = MAX(connection_in, connection_out);
a10be357 840 max_fd = MAX(max_fd, notify_pipe[0]);
841
e78a59f5 842 server_init_dispatch();
843
844 for (;;) {
845 process_buffered_input_packets();
bbb4cc1b 846
cd332296 847 rekeying = (xxx_kex != NULL && !xxx_kex->done);
bbb4cc1b 848
bbb4cc1b 849 if (!rekeying && packet_not_very_much_data_to_write())
e78a59f5 850 channel_output_poll();
bbb4cc1b 851 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 852 &nalloc, 0);
d5f24f94 853
0bbbf2a4 854 if (received_sigterm) {
855 logit("Exiting on signal %d", received_sigterm);
856 /* Clean up sessions, utmp, etc. */
857 cleanup_exit(255);
858 }
859
418e724c 860 collect_children();
ffd7b36b 861 if (!rekeying) {
bbb4cc1b 862 channel_after_select(readset, writeset);
ffd7b36b 863 if (packet_need_rekeying()) {
864 debug("need rekeying");
865 xxx_kex->done = 0;
866 kex_send_kexinit(xxx_kex);
867 }
868 }
39929cdb 869 process_input(readset);
cc94bd38 870 if (connection_closed)
871 break;
39929cdb 872 process_output(writeset);
e78a59f5 873 }
418e724c 874 collect_children();
875
39929cdb 876 if (readset)
877 xfree(readset);
878 if (writeset)
879 xfree(writeset);
880
d5f24f94 881 /* free all channels, no more reads and writes */
882 channel_free_all();
5b5d170c 883
418e724c 884 /* free remaining sessions, e.g. remove wtmp entries */
1853d1ef 885 session_destroy_all(NULL);
e78a59f5 886}
887
396c147e 888static void
95ae2076 889server_input_keep_alive(int type, u_int32_t seq, void *ctxt)
3ffc6336 890{
95ae2076 891 debug("Got %d/%u for keepalive", type, seq);
184eed6a 892 /*
39aefe7b 893 * reset timeout, since we got a sane answer from the client.
3ffc6336 894 * even if this was generated by something other than
895 * the bogus CHANNEL_REQUEST we send for keepalives.
896 */
dc1f1948 897 packet_set_alive_timeouts(0);
3ffc6336 898}
899
396c147e 900static void
7819b5c3 901server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
7368a6c8 902{
903 char *data;
1e3b8b07 904 u_int data_len;
7368a6c8 905
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);
95500969 911 packet_check_eom();
7368a6c8 912 buffer_append(&stdin_buffer, data, data_len);
913 memset(data, 0, data_len);
914 xfree(data);
915}
916
396c147e 917static void
7819b5c3 918server_input_eof(int type, u_int32_t seq, void *ctxt)
7368a6c8 919{
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.");
95500969 926 packet_check_eom();
7368a6c8 927 stdin_eof = 1;
928}
929
396c147e 930static void
7819b5c3 931server_input_window_size(int type, u_int32_t seq, void *ctxt)
7368a6c8 932{
148de80c 933 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();
7368a6c8 937
938 debug("Window change received.");
95500969 939 packet_check_eom();
7368a6c8 940 if (fdin != -1)
941 pty_change_window_size(fdin, row, col, xpixel, ypixel);
942}
943
396c147e 944static Channel *
43f7a4b8 945server_request_direct_tcpip(void)
e78a59f5 946{
719fc62f 947 Channel *c;
6ae2364d 948 char *target, *originator;
5134115d 949 u_short target_port, originator_port;
e78a59f5 950
6ae2364d 951 target = packet_get_string(NULL);
952 target_port = packet_get_int();
e78a59f5 953 originator = packet_get_string(NULL);
954 originator_port = packet_get_int();
95500969 955 packet_check_eom();
71276795 956
e07e21ad 957 debug("server_request_direct_tcpip: originator %s port %d, target %s "
958 "port %d", originator, originator_port, target, target_port);
38c295d6 959
e78a59f5 960 /* XXX check permission */
e07e21ad 961 c = channel_connect_to(target, target_port,
962 "direct-tcpip", "direct-tcpip");
963
e78a59f5 964 xfree(originator);
e07e21ad 965 xfree(target);
966
719fc62f 967 return c;
fa08c86b 968}
969
d20f3c9e 970static Channel *
971server_request_tun(void)
972{
973 Channel *c = NULL;
a4f24bf8 974 int mode, tun;
975 int sock;
d20f3c9e 976
a4f24bf8 977 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");
d20f3c9e 989 return NULL;
990 }
991
992 tun = packet_get_int();
a2b1748a 993 if (forced_tun_device != -1) {
3efa8ea9 994 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
d20f3c9e 995 goto done;
996 tun = forced_tun_device;
997 }
a4f24bf8 998 sock = tun_open(tun, mode);
d20f3c9e 999 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;
e914f53a 1004#if defined(SSH_TUN_FILTER)
1005 if (mode == SSH_TUNMODE_POINTOPOINT)
1006 channel_register_filter(c->self, sys_tun_infilter,
136d0181 1007 sys_tun_outfilter, NULL, NULL);
e914f53a 1008#endif
d20f3c9e 1009
1010 done:
1011 if (c == NULL)
1012 packet_send_debug("Failed to open the tunnel device.");
1013 return c;
1014}
1015
396c147e 1016static Channel *
43f7a4b8 1017server_request_session(void)
fa08c86b 1018{
719fc62f 1019 Channel *c;
fa08c86b 1020
1021 debug("input_session_request");
95500969 1022 packet_check_eom();
3f0444ca 1023
1024 if (no_more_sessions) {
1025 packet_disconnect("Possible attack: attempt to open a session "
1026 "after additional sessions disabled");
1027 }
1028
fa08c86b 1029 /*
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 */
43f7a4b8 1035 c = channel_new("session", SSH_CHANNEL_LARVAL,
719fc62f 1036 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
0d942eff 1037 0, "server-session", 1);
2362db19 1038 if (session_open(the_authctxt, c->self) != 1) {
719fc62f 1039 debug("session open failed, free channel %d", c->self);
1040 channel_free(c);
1041 return NULL;
fa08c86b 1042 }
8cd0437d 1043 channel_register_cleanup(c->self, session_close_by_channel, 0);
719fc62f 1044 return c;
e78a59f5 1045}
1046
396c147e 1047static void
7819b5c3 1048server_input_channel_open(int type, u_int32_t seq, void *ctxt)
e78a59f5 1049{
1050 Channel *c = NULL;
1051 char *ctype;
e78a59f5 1052 int rchan;
f91d9a89 1053 u_int rmaxpack, rwindow, len;
e78a59f5 1054
1055 ctype = packet_get_string(&len);
1056 rchan = packet_get_int();
1057 rwindow = packet_get_int();
1058 rmaxpack = packet_get_int();
1059
188adeb2 1060 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
e78a59f5 1061 ctype, rchan, rwindow, rmaxpack);
1062
1063 if (strcmp(ctype, "session") == 0) {
43f7a4b8 1064 c = server_request_session();
e78a59f5 1065 } else if (strcmp(ctype, "direct-tcpip") == 0) {
43f7a4b8 1066 c = server_request_direct_tcpip();
d20f3c9e 1067 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
1068 c = server_request_tun();
e78a59f5 1069 }
1070 if (c != NULL) {
fa08c86b 1071 debug("server_input_channel_open: confirm %s", ctype);
e78a59f5 1072 c->remote_id = rchan;
1073 c->remote_window = rwindow;
1074 c->remote_maxpacket = rmaxpack;
d18e0850 1075 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 }
e78a59f5 1083 } else {
fa08c86b 1084 debug("server_input_channel_open: failure %s", ctype);
e78a59f5 1085 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1086 packet_put_int(rchan);
1087 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
fbe90f7b 1088 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
d18e0850 1089 packet_put_cstring("open failed");
fbe90f7b 1090 packet_put_cstring("");
1091 }
e78a59f5 1092 packet_send();
1093 }
1094 xfree(ctype);
1095}
1096
396c147e 1097static void
7819b5c3 1098server_input_global_request(int type, u_int32_t seq, void *ctxt)
fa08c86b 1099{
1100 char *rtype;
1101 int want_reply;
17525a70 1102 int success = 0, allocated_listen_port = 0;
fa08c86b 1103
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);
2b87da3b 1107
01794848 1108 /* -R style forwarding */
fa08c86b 1109 if (strcmp(rtype, "tcpip-forward") == 0) {
1110 struct passwd *pw;
1111 char *listen_address;
1112 u_short listen_port;
1113
2362db19 1114 pw = the_authctxt->pw;
95077f48 1115 if (pw == NULL || !the_authctxt->valid)
fdaef11e 1116 fatal("server_input_global_request: no/invalid user");
b08a39ff 1117 listen_address = packet_get_string(NULL);
fa08c86b 1118 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 ||
1d68c50a 1124 no_port_forwarding_flag ||
1125 (!want_reply && listen_port == 0)
e6f15ed1 1126#ifndef NO_IPPORT_RESERVED_CONCEPT
bc33f6d6 1127 || (listen_port != 0 && listen_port < IPPORT_RESERVED &&
1128 pw->pw_uid != 0)
e6f15ed1 1129#endif
98c044d0 1130 ) {
fa08c86b 1131 success = 0;
1132 packet_send_debug("Server has disabled port forwarding.");
1133 } else {
1134 /* Start listening on the port */
5641aefa 1135 success = channel_setup_remote_fwd_listener(
1d68c50a 1136 listen_address, listen_port,
1137 &allocated_listen_port, options.gateway_ports);
fa08c86b 1138 }
1139 xfree(listen_address);
d740ec16 1140 } 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);
4113a1d7 1151 xfree(cancel_address);
3f0444ca 1152 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) {
1153 no_more_sessions = 1;
1154 success = 1;
fa08c86b 1155 }
1156 if (want_reply) {
1157 packet_start(success ?
1158 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
17525a70 1159 if (success && allocated_listen_port > 0)
1160 packet_put_int(allocated_listen_port);
fa08c86b 1161 packet_send();
1162 packet_write_wait();
1163 }
1164 xfree(rtype);
1165}
a7137f6b 1166
7899c98f 1167static 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);
50c96367 1184 if (!strcmp(rtype, "eow@openssh.com")) {
1185 packet_check_eom();
1186 chan_rcvd_eow(c);
fb5582f7 1187 } else if ((c->type == SSH_CHANNEL_LARVAL ||
1188 c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0)
7899c98f 1189 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}
fa08c86b 1198
396c147e 1199static void
5ca51e19 1200server_init_dispatch_20(void)
e78a59f5 1201{
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);
7899c98f 1211 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
e78a59f5 1212 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
fa08c86b 1213 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
3ffc6336 1214 /* client_alive */
7ec2b275 1215 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &server_input_keep_alive);
1216 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
95ae2076 1217 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1218 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
7a37c112 1219 /* rekeying */
1220 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
e78a59f5 1221}
396c147e 1222static void
5ca51e19 1223server_init_dispatch_13(void)
7368a6c8 1224{
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}
396c147e 1237static void
5ca51e19 1238server_init_dispatch_15(void)
7368a6c8 1239{
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}
396c147e 1245static void
5ca51e19 1246server_init_dispatch(void)
7368a6c8 1247{
e78a59f5 1248 if (compat20)
1249 server_init_dispatch_20();
1250 else if (compat13)
7368a6c8 1251 server_init_dispatch_13();
1252 else
1253 server_init_dispatch_15();
1254}
This page took 0.554495 seconds and 5 git commands to generate.