]> andersk Git - openssh.git/blame - serverloop.c
- dtucker@cvs.openbsd.org 2003/12/09 13:52:55
[openssh.git] / serverloop.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Server main loop for handling the interactive session.
bcbf86ec 6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
e78a59f5 13 * SSH2 support by Markus Friedl.
a96070d4 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
e78a59f5 35 */
8efc0c15 36
37#include "includes.h"
95077f48 38RCSID("$OpenBSD: serverloop.c,v 1.113 2003/11/18 00:40:05 dtucker Exp $");
a22aff1f 39
8efc0c15 40#include "xmalloc.h"
8efc0c15 41#include "packet.h"
42#include "buffer.h"
42f11eb2 43#include "log.h"
8efc0c15 44#include "servconf.h"
00e842d8 45#include "canohost.h"
1729c161 46#include "sshpty.h"
a5efa1bb 47#include "channels.h"
7368a6c8 48#include "compat.h"
42f11eb2 49#include "ssh1.h"
e78a59f5 50#include "ssh2.h"
59c97189 51#include "auth.h"
e78a59f5 52#include "session.h"
7368a6c8 53#include "dispatch.h"
38c295d6 54#include "auth-options.h"
42f11eb2 55#include "serverloop.h"
56#include "misc.h"
7a37c112 57#include "kex.h"
8efc0c15 58
33de75a3 59extern ServerOptions options;
60
7a37c112 61/* XXX */
62extern Kex *xxx_kex;
2362db19 63extern Authctxt *the_authctxt;
7a37c112 64
8efc0c15 65static Buffer stdin_buffer; /* Buffer for stdin data. */
66static Buffer stdout_buffer; /* Buffer for stdout data. */
67static Buffer stderr_buffer; /* Buffer for stderr data. */
68static int fdin; /* Descriptor for stdin (for writing) */
69static int fdout; /* Descriptor for stdout (for reading);
70 May be same number as fdin. */
71static int fderr; /* Descriptor for stderr. May be -1. */
72static long stdin_bytes = 0; /* Number of bytes written to stdin. */
73static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
74static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
75static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
76static int stdin_eof = 0; /* EOF message received from client. */
77static int fdout_eof = 0; /* EOF encountered reading from fdout. */
78static int fderr_eof = 0; /* EOF encountered readung from fderr. */
e68225b2 79static int fdin_is_tty = 0; /* fdin points to a tty. */
8efc0c15 80static int connection_in; /* Connection to client (input). */
81static int connection_out; /* Connection to client (output). */
cc94bd38 82static int connection_closed = 0; /* Connection to client closed. */
83static u_int buffer_high; /* "Soft" max buffer size. */
72176c0e 84static int client_alive_timeouts = 0;
8efc0c15 85
aa3378df 86/*
87 * This SIGCHLD kludge is used to detect when the child exits. The server
88 * will exit after that, as soon as forwarded connections have terminated.
89 */
396c147e 90
7a934d1b 91static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
8efc0c15 92
396c147e 93/* prototypes */
94static void server_init_dispatch(void);
7368a6c8 95
a10be357 96/*
97 * we write to this pipe if a SIGCHLD is caught in order to avoid
98 * the race between select() and child_terminated
99 */
100static int notify_pipe[2];
101static void
102notify_setup(void)
103{
104 if (pipe(notify_pipe) < 0) {
105 error("pipe(notify_pipe) failed %s", strerror(errno));
106 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
107 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
108 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
109 close(notify_pipe[0]);
110 close(notify_pipe[1]);
111 } else {
112 set_nonblock(notify_pipe[0]);
113 set_nonblock(notify_pipe[1]);
114 return;
115 }
116 notify_pipe[0] = -1; /* read end */
117 notify_pipe[1] = -1; /* write end */
118}
119static void
120notify_parent(void)
121{
122 if (notify_pipe[1] != -1)
123 write(notify_pipe[1], "", 1);
124}
125static void
126notify_prepare(fd_set *readset)
127{
128 if (notify_pipe[0] != -1)
129 FD_SET(notify_pipe[0], readset);
130}
131static void
132notify_done(fd_set *readset)
133{
134 char c;
135
136 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
137 while (read(notify_pipe[0], &c, 1) != -1)
138 debug2("notify_done: reading");
139}
140
396c147e 141static void
5260325f 142sigchld_handler(int sig)
e78a59f5 143{
144 int save_errno = errno;
145 debug("Received SIGCHLD.");
146 child_terminated = 1;
ef51930f 147#ifndef _UNICOS
c9130033 148 mysignal(SIGCHLD, sigchld_handler);
ef51930f 149#endif
a10be357 150 notify_parent();
e78a59f5 151 errno = save_errno;
152}
8efc0c15 153
5260325f 154/*
155 * Make packets from buffered stderr data, and buffer it for sending
156 * to the client.
157 */
396c147e 158static void
5ca51e19 159make_packets_from_stderr_data(void)
8efc0c15 160{
a27002e5 161 u_int len;
5260325f 162
163 /* Send buffered stderr data to the client. */
164 while (buffer_len(&stderr_buffer) > 0 &&
a408af76 165 packet_not_very_much_data_to_write()) {
5260325f 166 len = buffer_len(&stderr_buffer);
167 if (packet_is_interactive()) {
168 if (len > 512)
169 len = 512;
170 } else {
171 /* Keep the packets at reasonable size. */
172 if (len > packet_get_maxsize())
173 len = packet_get_maxsize();
174 }
175 packet_start(SSH_SMSG_STDERR_DATA);
176 packet_put_string(buffer_ptr(&stderr_buffer), len);
177 packet_send();
178 buffer_consume(&stderr_buffer, len);
179 stderr_bytes += len;
8efc0c15 180 }
8efc0c15 181}
182
5260325f 183/*
184 * Make packets from buffered stdout data, and buffer it for sending to the
185 * client.
186 */
396c147e 187static void
5ca51e19 188make_packets_from_stdout_data(void)
8efc0c15 189{
a27002e5 190 u_int len;
5260325f 191
192 /* Send buffered stdout data to the client. */
193 while (buffer_len(&stdout_buffer) > 0 &&
a408af76 194 packet_not_very_much_data_to_write()) {
5260325f 195 len = buffer_len(&stdout_buffer);
196 if (packet_is_interactive()) {
197 if (len > 512)
198 len = 512;
199 } else {
200 /* Keep the packets at reasonable size. */
201 if (len > packet_get_maxsize())
2b87da3b 202 len = packet_get_maxsize();
5260325f 203 }
204 packet_start(SSH_SMSG_STDOUT_DATA);
205 packet_put_string(buffer_ptr(&stdout_buffer), len);
206 packet_send();
207 buffer_consume(&stdout_buffer, len);
208 stdout_bytes += len;
8efc0c15 209 }
8efc0c15 210}
211
72176c0e 212static void
213client_alive_check(void)
214{
99416ceb 215 static int had_channel = 0;
72176c0e 216 int id;
217
99416ceb 218 id = channel_find_open();
219 if (id == -1) {
220 if (!had_channel)
221 return;
222 packet_disconnect("No open channels after timeout!");
223 }
224 had_channel = 1;
225
72176c0e 226 /* timeout, check to see how many we have had */
227 if (++client_alive_timeouts > options.client_alive_count_max)
228 packet_disconnect("Timeout, your session not responding.");
229
72176c0e 230 /*
231 * send a bogus channel request with "wantreply",
232 * we should get back a failure
233 */
234 channel_request_start(id, "keepalive@openssh.com", 1);
235 packet_send();
236}
237
5260325f 238/*
239 * Sleep in select() until we can do something. This will initialize the
240 * select masks. Upon return, the masks will indicate which descriptors
241 * have data or can accept data. Optionally, a maximum time can be specified
242 * for the duration of the wait (0 = infinite).
243 */
396c147e 244static void
39929cdb 245wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
489aa2e9 246 int *nallocp, u_int max_time_milliseconds)
8efc0c15 247{
5260325f 248 struct timeval tv, *tvp;
249 int ret;
3ffc6336 250 int client_alive_scheduled = 0;
251
252 /*
184eed6a 253 * if using client_alive, set the max timeout accordingly,
3ffc6336 254 * and indicate that this particular timeout was for client
255 * alive by setting the client_alive_scheduled flag.
256 *
257 * this could be randomized somewhat to make traffic
184eed6a 258 * analysis more difficult, but we're not doing it yet.
3ffc6336 259 */
2c5b1791 260 if (compat20 &&
261 max_time_milliseconds == 0 && options.client_alive_interval) {
39aefe7b 262 client_alive_scheduled = 1;
3ffc6336 263 max_time_milliseconds = options.client_alive_interval * 1000;
2c5b1791 264 }
8efc0c15 265
39929cdb 266 /* Allocate and update select() masks for channel descriptors. */
489aa2e9 267 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
5260325f 268
e78a59f5 269 if (compat20) {
0c139bd1 270#if 0
1d1ffb87 271 /* wrong: bad condition XXX */
e78a59f5 272 if (channel_not_very_much_buffered_data())
0c139bd1 273#endif
274 FD_SET(connection_in, *readsetp);
e78a59f5 275 } else {
71276795 276 /*
277 * Read packets from the client unless we have too much
278 * buffered stdin or channel data.
279 */
280 if (buffer_len(&stdin_buffer) < buffer_high &&
e78a59f5 281 channel_not_very_much_buffered_data())
39929cdb 282 FD_SET(connection_in, *readsetp);
71276795 283 /*
284 * If there is not too much data already buffered going to
285 * the client, try to get some more data from the program.
286 */
287 if (packet_not_very_much_data_to_write()) {
288 if (!fdout_eof)
39929cdb 289 FD_SET(fdout, *readsetp);
71276795 290 if (!fderr_eof)
39929cdb 291 FD_SET(fderr, *readsetp);
71276795 292 }
293 /*
294 * If we have buffered data, try to write some of that data
295 * to the program.
296 */
297 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
39929cdb 298 FD_SET(fdin, *writesetp);
e78a59f5 299 }
a10be357 300 notify_prepare(*readsetp);
5260325f 301
aa3378df 302 /*
303 * If we have buffered packet data going to the client, mark that
304 * descriptor.
305 */
5260325f 306 if (packet_have_data_to_write())
39929cdb 307 FD_SET(connection_out, *writesetp);
5260325f 308
aa3378df 309 /*
310 * If child has terminated and there is enough buffer space to read
311 * from it, then read as much as is available and exit.
312 */
5260325f 313 if (child_terminated && packet_not_very_much_data_to_write())
3ffc6336 314 if (max_time_milliseconds == 0 || client_alive_scheduled)
5260325f 315 max_time_milliseconds = 100;
316
317 if (max_time_milliseconds == 0)
318 tvp = NULL;
319 else {
320 tv.tv_sec = max_time_milliseconds / 1000;
321 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
322 tvp = &tv;
323 }
8efc0c15 324
5260325f 325 /* Wait for something to happen, or the timeout to expire. */
39929cdb 326 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
8efc0c15 327
3ffc6336 328 if (ret == -1) {
b3ad8fe6 329 memset(*readsetp, 0, *nallocp);
330 memset(*writesetp, 0, *nallocp);
5260325f 331 if (errno != EINTR)
332 error("select: %.100s", strerror(errno));
418e724c 333 } else if (ret == 0 && client_alive_scheduled)
72176c0e 334 client_alive_check();
a10be357 335
336 notify_done(*readsetp);
8efc0c15 337}
338
5260325f 339/*
340 * Processes input from the client and the program. Input data is stored
341 * in buffers and processed later.
342 */
396c147e 343static void
5260325f 344process_input(fd_set * readset)
345{
346 int len;
347 char buf[16384];
348
349 /* Read and buffer any input data from the client. */
350 if (FD_ISSET(connection_in, readset)) {
351 len = read(connection_in, buf, sizeof(buf));
352 if (len == 0) {
00e842d8 353 verbose("Connection closed by %.100s",
354 get_remote_ipaddr());
cc94bd38 355 connection_closed = 1;
356 if (compat20)
357 return;
2362db19 358 cleanup_exit(255);
0e73cc53 359 } else if (len < 0) {
360 if (errno != EINTR && errno != EAGAIN) {
00e842d8 361 verbose("Read error from remote host "
362 "%.100s: %.100s",
363 get_remote_ipaddr(), strerror(errno));
2362db19 364 cleanup_exit(255);
0e73cc53 365 }
366 } else {
367 /* Buffer any received data. */
368 packet_process_incoming(buf, len);
5260325f 369 }
5260325f 370 }
e78a59f5 371 if (compat20)
372 return;
373
5260325f 374 /* Read and buffer any available stdout data from the program. */
375 if (!fdout_eof && FD_ISSET(fdout, readset)) {
376 len = read(fdout, buf, sizeof(buf));
0e73cc53 377 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
378 /* do nothing */
379 } else if (len <= 0) {
5260325f 380 fdout_eof = 1;
0e73cc53 381 } else {
5260325f 382 buffer_append(&stdout_buffer, buf, len);
383 fdout_bytes += len;
384 }
385 }
386 /* Read and buffer any available stderr data from the program. */
387 if (!fderr_eof && FD_ISSET(fderr, readset)) {
388 len = read(fderr, buf, sizeof(buf));
0e73cc53 389 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
390 /* do nothing */
391 } else if (len <= 0) {
5260325f 392 fderr_eof = 1;
0e73cc53 393 } else {
5260325f 394 buffer_append(&stderr_buffer, buf, len);
0e73cc53 395 }
5260325f 396 }
397}
8efc0c15 398
5260325f 399/*
400 * Sends data from internal buffers to client program stdin.
401 */
396c147e 402static void
5260325f 403process_output(fd_set * writeset)
8efc0c15 404{
4ef922e3 405 struct termios tio;
780a9951 406 u_char *data;
407 u_int dlen;
5260325f 408 int len;
409
410 /* Write buffered data to program stdin. */
e78a59f5 411 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
780a9951 412 data = buffer_ptr(&stdin_buffer);
413 dlen = buffer_len(&stdin_buffer);
414 len = write(fdin, data, dlen);
0e73cc53 415 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
416 /* do nothing */
417 } else if (len <= 0) {
7368a6c8 418 if (fdin != fdout)
5260325f 419 close(fdin);
420 else
421 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 422 fdin = -1;
423 } else {
4ef922e3 424 /* Successful write. */
780a9951 425 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
426 tcgetattr(fdin, &tio) == 0 &&
0ae4fe1d 427 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
62da27dd 428 /*
429 * Simulate echo to reduce the impact of
430 * traffic analysis
431 */
95ce5599 432 packet_send_ignore(len);
4ef922e3 433 packet_send();
434 }
435 /* Consume the data from the buffer. */
5260325f 436 buffer_consume(&stdin_buffer, len);
437 /* Update the count of bytes written to the program. */
438 stdin_bytes += len;
439 }
8efc0c15 440 }
5260325f 441 /* Send any buffered packet data to the client. */
442 if (FD_ISSET(connection_out, writeset))
443 packet_write_poll();
8efc0c15 444}
445
5260325f 446/*
447 * Wait until all buffered output has been sent to the client.
448 * This is used when the program terminates.
449 */
396c147e 450static void
5ca51e19 451drain_output(void)
8efc0c15 452{
5260325f 453 /* Send any buffered stdout data to the client. */
454 if (buffer_len(&stdout_buffer) > 0) {
455 packet_start(SSH_SMSG_STDOUT_DATA);
456 packet_put_string(buffer_ptr(&stdout_buffer),
457 buffer_len(&stdout_buffer));
458 packet_send();
459 /* Update the count of sent bytes. */
460 stdout_bytes += buffer_len(&stdout_buffer);
461 }
462 /* Send any buffered stderr data to the client. */
463 if (buffer_len(&stderr_buffer) > 0) {
464 packet_start(SSH_SMSG_STDERR_DATA);
465 packet_put_string(buffer_ptr(&stderr_buffer),
466 buffer_len(&stderr_buffer));
467 packet_send();
468 /* Update the count of sent bytes. */
469 stderr_bytes += buffer_len(&stderr_buffer);
470 }
471 /* Wait until all buffered data has been written to the client. */
472 packet_write_wait();
8efc0c15 473}
474
396c147e 475static void
5ca51e19 476process_buffered_input_packets(void)
7368a6c8 477{
7a37c112 478 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
7368a6c8 479}
480
5260325f 481/*
482 * Performs the interactive session. This handles data transmission between
483 * the client and the program. Note that the notion of stdin, stdout, and
484 * stderr in this function is sort of reversed: this function writes to
485 * stdin (of the child program), and reads from stdout and stderr (of the
486 * child program).
487 */
6ae2364d 488void
9da5c3c9 489server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
8efc0c15 490{
39929cdb 491 fd_set *readset = NULL, *writeset = NULL;
489aa2e9 492 int max_fd = 0, nalloc = 0;
9da5c3c9 493 int wait_status; /* Status returned by wait(). */
494 pid_t wait_pid; /* pid returned by wait(). */
5260325f 495 int waiting_termination = 0; /* Have displayed waiting close message. */
1e3b8b07 496 u_int max_time_milliseconds;
497 u_int previous_stdout_buffer_bytes;
498 u_int stdout_buffer_bytes;
5260325f 499 int type;
500
501 debug("Entering interactive session.");
502
503 /* Initialize the SIGCHLD kludge. */
5260325f 504 child_terminated = 0;
42ad0eec 505 mysignal(SIGCHLD, sigchld_handler);
5260325f 506
507 /* Initialize our global variables. */
508 fdin = fdin_arg;
509 fdout = fdout_arg;
510 fderr = fderr_arg;
0e73cc53 511
512 /* nonblocking IO */
513 set_nonblock(fdin);
514 set_nonblock(fdout);
ff873e98 515 /* we don't have stderr for interactive terminal sessions, see below */
516 if (fderr != -1)
517 set_nonblock(fderr);
0e73cc53 518
e68225b2 519 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
520 fdin_is_tty = 1;
521
5260325f 522 connection_in = packet_get_connection_in();
523 connection_out = packet_get_connection_out();
524
a10be357 525 notify_setup();
526
5260325f 527 previous_stdout_buffer_bytes = 0;
528
529 /* Set approximate I/O buffer size. */
530 if (packet_is_interactive())
531 buffer_high = 4096;
532 else
533 buffer_high = 64 * 1024;
534
489aa2e9 535#if 0
5260325f 536 /* Initialize max_fd to the maximum of the known file descriptors. */
489aa2e9 537 max_fd = MAX(connection_in, connection_out);
538 max_fd = MAX(max_fd, fdin);
539 max_fd = MAX(max_fd, fdout);
39929cdb 540 if (fderr != -1)
541 max_fd = MAX(max_fd, fderr);
489aa2e9 542#endif
5260325f 543
544 /* Initialize Initialize buffers. */
545 buffer_init(&stdin_buffer);
546 buffer_init(&stdout_buffer);
547 buffer_init(&stderr_buffer);
548
aa3378df 549 /*
550 * If we have no separate fderr (which is the case when we have a pty
551 * - there we cannot make difference between data sent to stdout and
552 * stderr), indicate that we have seen an EOF from stderr. This way
553 * we don\'t need to check the descriptor everywhere.
554 */
5260325f 555 if (fderr == -1)
556 fderr_eof = 1;
557
7368a6c8 558 server_init_dispatch();
559
5260325f 560 /* Main loop of the server for the interactive session mode. */
561 for (;;) {
5260325f 562
563 /* Process buffered packets from the client. */
564 process_buffered_input_packets();
565
aa3378df 566 /*
567 * If we have received eof, and there is no more pending
568 * input data, cause a real eof by closing fdin.
569 */
5260325f 570 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
7368a6c8 571 if (fdin != fdout)
5260325f 572 close(fdin);
573 else
574 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 575 fdin = -1;
576 }
aa3378df 577 /* Make packets from buffered stderr data to send to the client. */
5260325f 578 make_packets_from_stderr_data();
579
aa3378df 580 /*
581 * Make packets from buffered stdout data to send to the
582 * client. If there is very little to send, this arranges to
583 * not send them now, but to wait a short while to see if we
584 * are getting more data. This is necessary, as some systems
585 * wake up readers from a pty after each separate character.
586 */
5260325f 587 max_time_milliseconds = 0;
588 stdout_buffer_bytes = buffer_len(&stdout_buffer);
589 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
590 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
591 /* try again after a while */
592 max_time_milliseconds = 10;
593 } else {
594 /* Send it now. */
595 make_packets_from_stdout_data();
596 }
597 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
598
599 /* Send channel data to the client. */
600 if (packet_not_very_much_data_to_write())
601 channel_output_poll();
602
aa3378df 603 /*
604 * Bail out of the loop if the program has closed its output
605 * descriptors, and we have no more data to send to the
606 * client, and there is no pending buffered data.
607 */
7062c40f 608 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
609 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
5260325f 610 if (!channel_still_open())
7368a6c8 611 break;
5260325f 612 if (!waiting_termination) {
613 const char *s = "Waiting for forwarded connections to terminate...\r\n";
614 char *cp;
615 waiting_termination = 1;
616 buffer_append(&stderr_buffer, s, strlen(s));
617
618 /* Display list of open channels. */
619 cp = channel_open_message();
620 buffer_append(&stderr_buffer, cp, strlen(cp));
621 xfree(cp);
622 }
623 }
489aa2e9 624 max_fd = MAX(connection_in, connection_out);
625 max_fd = MAX(max_fd, fdin);
626 max_fd = MAX(max_fd, fdout);
627 max_fd = MAX(max_fd, fderr);
a10be357 628 max_fd = MAX(max_fd, notify_pipe[0]);
489aa2e9 629
5260325f 630 /* Sleep in select() until we can do something. */
39929cdb 631 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 632 &nalloc, max_time_milliseconds);
5260325f 633
634 /* Process any channel events. */
39929cdb 635 channel_after_select(readset, writeset);
5260325f 636
637 /* Process input from the client and from program stdout/stderr. */
39929cdb 638 process_input(readset);
5260325f 639
640 /* Process output to the client and to program stdin. */
39929cdb 641 process_output(writeset);
8efc0c15 642 }
39929cdb 643 if (readset)
644 xfree(readset);
645 if (writeset)
646 xfree(writeset);
8efc0c15 647
5260325f 648 /* Cleanup and termination code. */
8efc0c15 649
5260325f 650 /* Wait until all output has been sent to the client. */
651 drain_output();
8efc0c15 652
5260325f 653 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
184eed6a 654 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
8efc0c15 655
5260325f 656 /* Free and clear the buffers. */
657 buffer_free(&stdin_buffer);
658 buffer_free(&stdout_buffer);
659 buffer_free(&stderr_buffer);
8efc0c15 660
5260325f 661 /* Close the file descriptors. */
662 if (fdout != -1)
663 close(fdout);
664 fdout = -1;
665 fdout_eof = 1;
666 if (fderr != -1)
667 close(fderr);
668 fderr = -1;
669 fderr_eof = 1;
670 if (fdin != -1)
671 close(fdin);
672 fdin = -1;
673
d6746a0b 674 channel_free_all();
5260325f 675
5260325f 676 /* We no longer want our SIGCHLD handler to be called. */
42ad0eec 677 mysignal(SIGCHLD, SIG_DFL);
5260325f 678
8c38e88b 679 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
680 if (errno != EINTR)
681 packet_disconnect("wait: %.100s", strerror(errno));
682 if (wait_pid != pid)
c457707e 683 error("Strange, wait returned pid %ld, expected %ld",
684 (long)wait_pid, (long)pid);
c9130033 685
5260325f 686 /* Check if it exited normally. */
687 if (WIFEXITED(wait_status)) {
688 /* Yes, normal exit. Get exit status and send it to the client. */
689 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
690 packet_start(SSH_SMSG_EXITSTATUS);
691 packet_put_int(WEXITSTATUS(wait_status));
692 packet_send();
693 packet_write_wait();
694
aa3378df 695 /*
696 * Wait for exit confirmation. Note that there might be
697 * other packets coming before it; however, the program has
698 * already died so we just ignore them. The client is
699 * supposed to respond with the confirmation when it receives
700 * the exit status.
701 */
5260325f 702 do {
54a5250f 703 type = packet_read();
5260325f 704 }
705 while (type != SSH_CMSG_EXIT_CONFIRMATION);
706
707 debug("Received exit confirmation.");
708 return;
709 }
710 /* Check if the program terminated due to a signal. */
711 if (WIFSIGNALED(wait_status))
712 packet_disconnect("Command terminated on signal %d.",
713 WTERMSIG(wait_status));
714
715 /* Some weird exit cause. Just exit. */
716 packet_disconnect("wait returned status %04x.", wait_status);
717 /* NOTREACHED */
718}
7368a6c8 719
418e724c 720static void
721collect_children(void)
722{
723 pid_t pid;
724 sigset_t oset, nset;
725 int status;
726
727 /* block SIGCHLD while we check for dead children */
728 sigemptyset(&nset);
729 sigaddset(&nset, SIGCHLD);
730 sigprocmask(SIG_BLOCK, &nset, &oset);
731 if (child_terminated) {
8c38e88b 732 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
733 (pid < 0 && errno == EINTR))
734 if (pid > 0)
735 session_close_by_pid(pid, status);
418e724c 736 child_terminated = 0;
737 }
738 sigprocmask(SIG_SETMASK, &oset, NULL);
739}
740
6ae2364d 741void
57156994 742server_loop2(Authctxt *authctxt)
e78a59f5 743{
39929cdb 744 fd_set *readset = NULL, *writeset = NULL;
418e724c 745 int rekeying = 0, max_fd, nalloc = 0;
e78a59f5 746
747 debug("Entering interactive session for SSH2.");
748
c9130033 749 mysignal(SIGCHLD, sigchld_handler);
e78a59f5 750 child_terminated = 0;
751 connection_in = packet_get_connection_in();
752 connection_out = packet_get_connection_out();
39929cdb 753
a10be357 754 notify_setup();
755
39929cdb 756 max_fd = MAX(connection_in, connection_out);
a10be357 757 max_fd = MAX(max_fd, notify_pipe[0]);
758
e78a59f5 759 server_init_dispatch();
760
761 for (;;) {
762 process_buffered_input_packets();
bbb4cc1b 763
cd332296 764 rekeying = (xxx_kex != NULL && !xxx_kex->done);
bbb4cc1b 765
bbb4cc1b 766 if (!rekeying && packet_not_very_much_data_to_write())
e78a59f5 767 channel_output_poll();
bbb4cc1b 768 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 769 &nalloc, 0);
d5f24f94 770
418e724c 771 collect_children();
ffd7b36b 772 if (!rekeying) {
bbb4cc1b 773 channel_after_select(readset, writeset);
ffd7b36b 774 if (packet_need_rekeying()) {
775 debug("need rekeying");
776 xxx_kex->done = 0;
777 kex_send_kexinit(xxx_kex);
778 }
779 }
39929cdb 780 process_input(readset);
cc94bd38 781 if (connection_closed)
782 break;
39929cdb 783 process_output(writeset);
e78a59f5 784 }
418e724c 785 collect_children();
786
39929cdb 787 if (readset)
788 xfree(readset);
789 if (writeset)
790 xfree(writeset);
791
d5f24f94 792 /* free all channels, no more reads and writes */
793 channel_free_all();
5b5d170c 794
418e724c 795 /* free remaining sessions, e.g. remove wtmp entries */
1853d1ef 796 session_destroy_all(NULL);
e78a59f5 797}
798
396c147e 799static void
7819b5c3 800server_input_channel_failure(int type, u_int32_t seq, void *ctxt)
3ffc6336 801{
802 debug("Got CHANNEL_FAILURE for keepalive");
184eed6a 803 /*
39aefe7b 804 * reset timeout, since we got a sane answer from the client.
3ffc6336 805 * even if this was generated by something other than
806 * the bogus CHANNEL_REQUEST we send for keepalives.
807 */
184eed6a 808 client_alive_timeouts = 0;
3ffc6336 809}
810
811
396c147e 812static void
7819b5c3 813server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
7368a6c8 814{
815 char *data;
1e3b8b07 816 u_int data_len;
7368a6c8 817
818 /* Stdin data from the client. Append it to the buffer. */
819 /* Ignore any data if the client has closed stdin. */
820 if (fdin == -1)
821 return;
822 data = packet_get_string(&data_len);
95500969 823 packet_check_eom();
7368a6c8 824 buffer_append(&stdin_buffer, data, data_len);
825 memset(data, 0, data_len);
826 xfree(data);
827}
828
396c147e 829static void
7819b5c3 830server_input_eof(int type, u_int32_t seq, void *ctxt)
7368a6c8 831{
832 /*
833 * Eof from the client. The stdin descriptor to the
834 * program will be closed when all buffered data has
835 * drained.
836 */
837 debug("EOF received for stdin.");
95500969 838 packet_check_eom();
7368a6c8 839 stdin_eof = 1;
840}
841
396c147e 842static void
7819b5c3 843server_input_window_size(int type, u_int32_t seq, void *ctxt)
7368a6c8 844{
845 int row = packet_get_int();
846 int col = packet_get_int();
847 int xpixel = packet_get_int();
848 int ypixel = packet_get_int();
849
850 debug("Window change received.");
95500969 851 packet_check_eom();
7368a6c8 852 if (fdin != -1)
853 pty_change_window_size(fdin, row, col, xpixel, ypixel);
854}
855
396c147e 856static Channel *
fa08c86b 857server_request_direct_tcpip(char *ctype)
e78a59f5 858{
719fc62f 859 Channel *c;
860 int sock;
6ae2364d 861 char *target, *originator;
862 int target_port, originator_port;
e78a59f5 863
6ae2364d 864 target = packet_get_string(NULL);
865 target_port = packet_get_int();
e78a59f5 866 originator = packet_get_string(NULL);
867 originator_port = packet_get_int();
95500969 868 packet_check_eom();
71276795 869
fa08c86b 870 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
71276795 871 originator, originator_port, target, target_port);
38c295d6 872
e78a59f5 873 /* XXX check permission */
6ae2364d 874 sock = channel_connect_to(target, target_port);
875 xfree(target);
e78a59f5 876 xfree(originator);
877 if (sock < 0)
fa08c86b 878 return NULL;
719fc62f 879 c = channel_new(ctype, SSH_CHANNEL_CONNECTING,
bcbf86ec 880 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
0d942eff 881 CHAN_TCP_PACKET_DEFAULT, 0, "direct-tcpip", 1);
719fc62f 882 return c;
fa08c86b 883}
884
396c147e 885static Channel *
fa08c86b 886server_request_session(char *ctype)
887{
719fc62f 888 Channel *c;
fa08c86b 889
890 debug("input_session_request");
95500969 891 packet_check_eom();
fa08c86b 892 /*
893 * A server session has no fd to read or write until a
894 * CHANNEL_REQUEST for a shell is made, so we set the type to
895 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
896 * CHANNEL_REQUEST messages is registered.
897 */
719fc62f 898 c = channel_new(ctype, SSH_CHANNEL_LARVAL,
899 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
0d942eff 900 0, "server-session", 1);
2362db19 901 if (session_open(the_authctxt, c->self) != 1) {
719fc62f 902 debug("session open failed, free channel %d", c->self);
903 channel_free(c);
904 return NULL;
fa08c86b 905 }
719fc62f 906 channel_register_cleanup(c->self, session_close_by_channel);
907 return c;
e78a59f5 908}
909
396c147e 910static void
7819b5c3 911server_input_channel_open(int type, u_int32_t seq, void *ctxt)
e78a59f5 912{
913 Channel *c = NULL;
914 char *ctype;
e78a59f5 915 int rchan;
f91d9a89 916 u_int rmaxpack, rwindow, len;
e78a59f5 917
918 ctype = packet_get_string(&len);
919 rchan = packet_get_int();
920 rwindow = packet_get_int();
921 rmaxpack = packet_get_int();
922
188adeb2 923 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
e78a59f5 924 ctype, rchan, rwindow, rmaxpack);
925
926 if (strcmp(ctype, "session") == 0) {
fa08c86b 927 c = server_request_session(ctype);
e78a59f5 928 } else if (strcmp(ctype, "direct-tcpip") == 0) {
fa08c86b 929 c = server_request_direct_tcpip(ctype);
e78a59f5 930 }
931 if (c != NULL) {
fa08c86b 932 debug("server_input_channel_open: confirm %s", ctype);
e78a59f5 933 c->remote_id = rchan;
934 c->remote_window = rwindow;
935 c->remote_maxpacket = rmaxpack;
d18e0850 936 if (c->type != SSH_CHANNEL_CONNECTING) {
937 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
938 packet_put_int(c->remote_id);
939 packet_put_int(c->self);
940 packet_put_int(c->local_window);
941 packet_put_int(c->local_maxpacket);
942 packet_send();
943 }
e78a59f5 944 } else {
fa08c86b 945 debug("server_input_channel_open: failure %s", ctype);
e78a59f5 946 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
947 packet_put_int(rchan);
948 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
fbe90f7b 949 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
d18e0850 950 packet_put_cstring("open failed");
fbe90f7b 951 packet_put_cstring("");
952 }
e78a59f5 953 packet_send();
954 }
955 xfree(ctype);
956}
957
396c147e 958static void
7819b5c3 959server_input_global_request(int type, u_int32_t seq, void *ctxt)
fa08c86b 960{
961 char *rtype;
962 int want_reply;
963 int success = 0;
964
965 rtype = packet_get_string(NULL);
966 want_reply = packet_get_char();
967 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
2b87da3b 968
01794848 969 /* -R style forwarding */
fa08c86b 970 if (strcmp(rtype, "tcpip-forward") == 0) {
971 struct passwd *pw;
972 char *listen_address;
973 u_short listen_port;
974
2362db19 975 pw = the_authctxt->pw;
95077f48 976 if (pw == NULL || !the_authctxt->valid)
fdaef11e 977 fatal("server_input_global_request: no/invalid user");
b08a39ff 978 listen_address = packet_get_string(NULL);
fa08c86b 979 listen_port = (u_short)packet_get_int();
980 debug("server_input_global_request: tcpip-forward listen %s port %d",
981 listen_address, listen_port);
982
983 /* check permissions */
984 if (!options.allow_tcp_forwarding ||
e6f15ed1 985 no_port_forwarding_flag
986#ifndef NO_IPPORT_RESERVED_CONCEPT
987 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
988#endif
989 ) {
fa08c86b 990 success = 0;
991 packet_send_debug("Server has disabled port forwarding.");
992 } else {
993 /* Start listening on the port */
5641aefa 994 success = channel_setup_remote_fwd_listener(
995 listen_address, listen_port, options.gateway_ports);
fa08c86b 996 }
997 xfree(listen_address);
998 }
999 if (want_reply) {
1000 packet_start(success ?
1001 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1002 packet_send();
1003 packet_write_wait();
1004 }
1005 xfree(rtype);
1006}
7899c98f 1007static void
1008server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1009{
1010 Channel *c;
1011 int id, reply, success = 0;
1012 char *rtype;
1013
1014 id = packet_get_int();
1015 rtype = packet_get_string(NULL);
1016 reply = packet_get_char();
1017
1018 debug("server_input_channel_req: channel %d request %s reply %d",
1019 id, rtype, reply);
1020
1021 if ((c = channel_lookup(id)) == NULL)
1022 packet_disconnect("server_input_channel_req: "
1023 "unknown channel %d", id);
1024 if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN)
1025 success = session_input_channel_req(c, rtype);
1026 if (reply) {
1027 packet_start(success ?
1028 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1029 packet_put_int(c->remote_id);
1030 packet_send();
1031 }
1032 xfree(rtype);
1033}
fa08c86b 1034
396c147e 1035static void
5ca51e19 1036server_init_dispatch_20(void)
e78a59f5 1037{
1038 debug("server_init_dispatch_20");
1039 dispatch_init(&dispatch_protocol_error);
1040 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1041 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1042 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1043 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1044 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1045 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1046 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
7899c98f 1047 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
e78a59f5 1048 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
fa08c86b 1049 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
3ffc6336 1050 /* client_alive */
1051 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_channel_failure);
7a37c112 1052 /* rekeying */
1053 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
e78a59f5 1054}
396c147e 1055static void
5ca51e19 1056server_init_dispatch_13(void)
7368a6c8 1057{
1058 debug("server_init_dispatch_13");
1059 dispatch_init(NULL);
1060 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1061 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1062 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1063 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1064 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1065 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1066 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1067 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1068 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1069}
396c147e 1070static void
5ca51e19 1071server_init_dispatch_15(void)
7368a6c8 1072{
1073 server_init_dispatch_13();
1074 debug("server_init_dispatch_15");
1075 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1076 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1077}
396c147e 1078static void
5ca51e19 1079server_init_dispatch(void)
7368a6c8 1080{
e78a59f5 1081 if (compat20)
1082 server_init_dispatch_20();
1083 else if (compat13)
7368a6c8 1084 server_init_dispatch_13();
1085 else
1086 server_init_dispatch_15();
1087}
This page took 0.810368 seconds and 5 git commands to generate.