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