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