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