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