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