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