]> andersk Git - openssh.git/blame - serverloop.c
oops, this commit is really:
[openssh.git] / serverloop.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Server main loop for handling the interactive session.
bcbf86ec 6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
e78a59f5 13 * SSH2 support by Markus Friedl.
a96070d4 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
e78a59f5 35 */
8efc0c15 36
37#include "includes.h"
ada68823 38RCSID("$OpenBSD: serverloop.c,v 1.127 2006/02/20 17:02:44 stevesk Exp $");
aa2eae64 39
40#include <sys/types.h>
41#include <sys/wait.h>
1d3e026f 42
ada68823 43#include <signal.h>
1d3e026f 44#include <termios.h>
a22aff1f 45
8efc0c15 46#include "xmalloc.h"
8efc0c15 47#include "packet.h"
48#include "buffer.h"
42f11eb2 49#include "log.h"
8efc0c15 50#include "servconf.h"
00e842d8 51#include "canohost.h"
1729c161 52#include "sshpty.h"
a5efa1bb 53#include "channels.h"
7368a6c8 54#include "compat.h"
42f11eb2 55#include "ssh1.h"
e78a59f5 56#include "ssh2.h"
59c97189 57#include "auth.h"
e78a59f5 58#include "session.h"
7368a6c8 59#include "dispatch.h"
38c295d6 60#include "auth-options.h"
42f11eb2 61#include "serverloop.h"
62#include "misc.h"
7a37c112 63#include "kex.h"
8efc0c15 64
33de75a3 65extern ServerOptions options;
66
7a37c112 67/* XXX */
68extern Kex *xxx_kex;
2362db19 69extern Authctxt *the_authctxt;
0bbbf2a4 70extern int use_privsep;
7a37c112 71
8efc0c15 72static Buffer stdin_buffer; /* Buffer for stdin data. */
73static Buffer stdout_buffer; /* Buffer for stdout data. */
74static Buffer stderr_buffer; /* Buffer for stderr data. */
75static int fdin; /* Descriptor for stdin (for writing) */
76static int fdout; /* Descriptor for stdout (for reading);
77 May be same number as fdin. */
78static int fderr; /* Descriptor for stderr. May be -1. */
79static long stdin_bytes = 0; /* Number of bytes written to stdin. */
80static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */
81static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */
82static long fdout_bytes = 0; /* Number of stdout bytes read from program. */
83static int stdin_eof = 0; /* EOF message received from client. */
84static int fdout_eof = 0; /* EOF encountered reading from fdout. */
85static int fderr_eof = 0; /* EOF encountered readung from fderr. */
e68225b2 86static int fdin_is_tty = 0; /* fdin points to a tty. */
8efc0c15 87static int connection_in; /* Connection to client (input). */
88static int connection_out; /* Connection to client (output). */
cc94bd38 89static int connection_closed = 0; /* Connection to client closed. */
90static u_int buffer_high; /* "Soft" max buffer size. */
72176c0e 91static int client_alive_timeouts = 0;
8efc0c15 92
aa3378df 93/*
94 * This SIGCHLD kludge is used to detect when the child exits. The server
95 * will exit after that, as soon as forwarded connections have terminated.
96 */
396c147e 97
7a934d1b 98static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
8efc0c15 99
0bbbf2a4 100/* Cleanup on signals (!use_privsep case only) */
101static volatile sig_atomic_t received_sigterm = 0;
102
396c147e 103/* prototypes */
104static void server_init_dispatch(void);
7368a6c8 105
a10be357 106/*
107 * we write to this pipe if a SIGCHLD is caught in order to avoid
108 * the race between select() and child_terminated
109 */
110static int notify_pipe[2];
111static void
112notify_setup(void)
113{
114 if (pipe(notify_pipe) < 0) {
115 error("pipe(notify_pipe) failed %s", strerror(errno));
116 } else if ((fcntl(notify_pipe[0], F_SETFD, 1) == -1) ||
117 (fcntl(notify_pipe[1], F_SETFD, 1) == -1)) {
118 error("fcntl(notify_pipe, F_SETFD) failed %s", strerror(errno));
119 close(notify_pipe[0]);
120 close(notify_pipe[1]);
121 } else {
122 set_nonblock(notify_pipe[0]);
123 set_nonblock(notify_pipe[1]);
124 return;
125 }
126 notify_pipe[0] = -1; /* read end */
127 notify_pipe[1] = -1; /* write end */
128}
129static void
130notify_parent(void)
131{
132 if (notify_pipe[1] != -1)
133 write(notify_pipe[1], "", 1);
134}
135static void
136notify_prepare(fd_set *readset)
137{
138 if (notify_pipe[0] != -1)
139 FD_SET(notify_pipe[0], readset);
140}
141static void
142notify_done(fd_set *readset)
143{
144 char c;
145
146 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
147 while (read(notify_pipe[0], &c, 1) != -1)
148 debug2("notify_done: reading");
149}
150
396c147e 151static void
5260325f 152sigchld_handler(int sig)
e78a59f5 153{
154 int save_errno = errno;
155 debug("Received SIGCHLD.");
156 child_terminated = 1;
ef51930f 157#ifndef _UNICOS
c9130033 158 mysignal(SIGCHLD, sigchld_handler);
ef51930f 159#endif
a10be357 160 notify_parent();
e78a59f5 161 errno = save_errno;
162}
8efc0c15 163
0bbbf2a4 164static void
165sigterm_handler(int sig)
166{
167 received_sigterm = sig;
168}
169
5260325f 170/*
171 * Make packets from buffered stderr data, and buffer it for sending
172 * to the client.
173 */
396c147e 174static void
5ca51e19 175make_packets_from_stderr_data(void)
8efc0c15 176{
a27002e5 177 u_int len;
5260325f 178
179 /* Send buffered stderr data to the client. */
180 while (buffer_len(&stderr_buffer) > 0 &&
a408af76 181 packet_not_very_much_data_to_write()) {
5260325f 182 len = buffer_len(&stderr_buffer);
183 if (packet_is_interactive()) {
184 if (len > 512)
185 len = 512;
186 } else {
187 /* Keep the packets at reasonable size. */
188 if (len > packet_get_maxsize())
189 len = packet_get_maxsize();
190 }
191 packet_start(SSH_SMSG_STDERR_DATA);
192 packet_put_string(buffer_ptr(&stderr_buffer), len);
193 packet_send();
194 buffer_consume(&stderr_buffer, len);
195 stderr_bytes += len;
8efc0c15 196 }
8efc0c15 197}
198
5260325f 199/*
200 * Make packets from buffered stdout data, and buffer it for sending to the
201 * client.
202 */
396c147e 203static void
5ca51e19 204make_packets_from_stdout_data(void)
8efc0c15 205{
a27002e5 206 u_int len;
5260325f 207
208 /* Send buffered stdout data to the client. */
209 while (buffer_len(&stdout_buffer) > 0 &&
a408af76 210 packet_not_very_much_data_to_write()) {
5260325f 211 len = buffer_len(&stdout_buffer);
212 if (packet_is_interactive()) {
213 if (len > 512)
214 len = 512;
215 } else {
216 /* Keep the packets at reasonable size. */
217 if (len > packet_get_maxsize())
2b87da3b 218 len = packet_get_maxsize();
5260325f 219 }
220 packet_start(SSH_SMSG_STDOUT_DATA);
221 packet_put_string(buffer_ptr(&stdout_buffer), len);
222 packet_send();
223 buffer_consume(&stdout_buffer, len);
224 stdout_bytes += len;
8efc0c15 225 }
8efc0c15 226}
227
72176c0e 228static void
229client_alive_check(void)
230{
95ae2076 231 int channel_id;
99416ceb 232
72176c0e 233 /* timeout, check to see how many we have had */
234 if (++client_alive_timeouts > options.client_alive_count_max)
235 packet_disconnect("Timeout, your session not responding.");
236
72176c0e 237 /*
95ae2076 238 * send a bogus global/channel request with "wantreply",
72176c0e 239 * we should get back a failure
240 */
95ae2076 241 if ((channel_id = channel_find_open()) == -1) {
242 packet_start(SSH2_MSG_GLOBAL_REQUEST);
243 packet_put_cstring("keepalive@openssh.com");
244 packet_put_char(1); /* boolean: want reply */
245 } else {
246 channel_request_start(channel_id, "keepalive@openssh.com", 1);
247 }
72176c0e 248 packet_send();
249}
250
5260325f 251/*
252 * Sleep in select() until we can do something. This will initialize the
253 * select masks. Upon return, the masks will indicate which descriptors
254 * have data or can accept data. Optionally, a maximum time can be specified
255 * for the duration of the wait (0 = infinite).
256 */
396c147e 257static void
39929cdb 258wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
9a995072 259 u_int *nallocp, u_int max_time_milliseconds)
8efc0c15 260{
5260325f 261 struct timeval tv, *tvp;
262 int ret;
3ffc6336 263 int client_alive_scheduled = 0;
264
265 /*
184eed6a 266 * if using client_alive, set the max timeout accordingly,
3ffc6336 267 * and indicate that this particular timeout was for client
268 * alive by setting the client_alive_scheduled flag.
269 *
270 * this could be randomized somewhat to make traffic
184eed6a 271 * analysis more difficult, but we're not doing it yet.
3ffc6336 272 */
2c5b1791 273 if (compat20 &&
274 max_time_milliseconds == 0 && options.client_alive_interval) {
39aefe7b 275 client_alive_scheduled = 1;
3ffc6336 276 max_time_milliseconds = options.client_alive_interval * 1000;
2c5b1791 277 }
8efc0c15 278
39929cdb 279 /* Allocate and update select() masks for channel descriptors. */
489aa2e9 280 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0);
5260325f 281
e78a59f5 282 if (compat20) {
0c139bd1 283#if 0
1d1ffb87 284 /* wrong: bad condition XXX */
e78a59f5 285 if (channel_not_very_much_buffered_data())
0c139bd1 286#endif
287 FD_SET(connection_in, *readsetp);
e78a59f5 288 } else {
71276795 289 /*
290 * Read packets from the client unless we have too much
291 * buffered stdin or channel data.
292 */
293 if (buffer_len(&stdin_buffer) < buffer_high &&
e78a59f5 294 channel_not_very_much_buffered_data())
39929cdb 295 FD_SET(connection_in, *readsetp);
71276795 296 /*
297 * If there is not too much data already buffered going to
298 * the client, try to get some more data from the program.
299 */
300 if (packet_not_very_much_data_to_write()) {
301 if (!fdout_eof)
39929cdb 302 FD_SET(fdout, *readsetp);
71276795 303 if (!fderr_eof)
39929cdb 304 FD_SET(fderr, *readsetp);
71276795 305 }
306 /*
307 * If we have buffered data, try to write some of that data
308 * to the program.
309 */
310 if (fdin != -1 && buffer_len(&stdin_buffer) > 0)
39929cdb 311 FD_SET(fdin, *writesetp);
e78a59f5 312 }
a10be357 313 notify_prepare(*readsetp);
5260325f 314
aa3378df 315 /*
316 * If we have buffered packet data going to the client, mark that
317 * descriptor.
318 */
5260325f 319 if (packet_have_data_to_write())
39929cdb 320 FD_SET(connection_out, *writesetp);
5260325f 321
aa3378df 322 /*
323 * If child has terminated and there is enough buffer space to read
324 * from it, then read as much as is available and exit.
325 */
5260325f 326 if (child_terminated && packet_not_very_much_data_to_write())
3ffc6336 327 if (max_time_milliseconds == 0 || client_alive_scheduled)
5260325f 328 max_time_milliseconds = 100;
329
330 if (max_time_milliseconds == 0)
331 tvp = NULL;
332 else {
333 tv.tv_sec = max_time_milliseconds / 1000;
334 tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
335 tvp = &tv;
336 }
8efc0c15 337
5260325f 338 /* Wait for something to happen, or the timeout to expire. */
39929cdb 339 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
8efc0c15 340
3ffc6336 341 if (ret == -1) {
b3ad8fe6 342 memset(*readsetp, 0, *nallocp);
343 memset(*writesetp, 0, *nallocp);
5260325f 344 if (errno != EINTR)
345 error("select: %.100s", strerror(errno));
418e724c 346 } else if (ret == 0 && client_alive_scheduled)
72176c0e 347 client_alive_check();
a10be357 348
349 notify_done(*readsetp);
8efc0c15 350}
351
5260325f 352/*
353 * Processes input from the client and the program. Input data is stored
354 * in buffers and processed later.
355 */
396c147e 356static void
5260325f 357process_input(fd_set * readset)
358{
359 int len;
360 char buf[16384];
361
362 /* Read and buffer any input data from the client. */
363 if (FD_ISSET(connection_in, readset)) {
364 len = read(connection_in, buf, sizeof(buf));
365 if (len == 0) {
00e842d8 366 verbose("Connection closed by %.100s",
367 get_remote_ipaddr());
cc94bd38 368 connection_closed = 1;
369 if (compat20)
370 return;
2362db19 371 cleanup_exit(255);
0e73cc53 372 } else if (len < 0) {
373 if (errno != EINTR && errno != EAGAIN) {
00e842d8 374 verbose("Read error from remote host "
375 "%.100s: %.100s",
376 get_remote_ipaddr(), strerror(errno));
2362db19 377 cleanup_exit(255);
0e73cc53 378 }
379 } else {
380 /* Buffer any received data. */
381 packet_process_incoming(buf, len);
5260325f 382 }
5260325f 383 }
e78a59f5 384 if (compat20)
385 return;
386
5260325f 387 /* Read and buffer any available stdout data from the program. */
388 if (!fdout_eof && FD_ISSET(fdout, readset)) {
389 len = read(fdout, buf, sizeof(buf));
0e73cc53 390 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
391 /* do nothing */
392 } else if (len <= 0) {
5260325f 393 fdout_eof = 1;
0e73cc53 394 } else {
5260325f 395 buffer_append(&stdout_buffer, buf, len);
396 fdout_bytes += len;
397 }
398 }
399 /* Read and buffer any available stderr data from the program. */
400 if (!fderr_eof && FD_ISSET(fderr, readset)) {
401 len = read(fderr, buf, sizeof(buf));
0e73cc53 402 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
403 /* do nothing */
404 } else if (len <= 0) {
5260325f 405 fderr_eof = 1;
0e73cc53 406 } else {
5260325f 407 buffer_append(&stderr_buffer, buf, len);
0e73cc53 408 }
5260325f 409 }
410}
8efc0c15 411
5260325f 412/*
413 * Sends data from internal buffers to client program stdin.
414 */
396c147e 415static void
5260325f 416process_output(fd_set * writeset)
8efc0c15 417{
4ef922e3 418 struct termios tio;
780a9951 419 u_char *data;
420 u_int dlen;
5260325f 421 int len;
422
423 /* Write buffered data to program stdin. */
e78a59f5 424 if (!compat20 && fdin != -1 && FD_ISSET(fdin, writeset)) {
780a9951 425 data = buffer_ptr(&stdin_buffer);
426 dlen = buffer_len(&stdin_buffer);
427 len = write(fdin, data, dlen);
0e73cc53 428 if (len < 0 && (errno == EINTR || errno == EAGAIN)) {
429 /* do nothing */
430 } else if (len <= 0) {
7368a6c8 431 if (fdin != fdout)
5260325f 432 close(fdin);
433 else
434 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 435 fdin = -1;
436 } else {
4ef922e3 437 /* Successful write. */
780a9951 438 if (fdin_is_tty && dlen >= 1 && data[0] != '\r' &&
439 tcgetattr(fdin, &tio) == 0 &&
0ae4fe1d 440 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
62da27dd 441 /*
442 * Simulate echo to reduce the impact of
443 * traffic analysis
444 */
95ce5599 445 packet_send_ignore(len);
4ef922e3 446 packet_send();
447 }
448 /* Consume the data from the buffer. */
5260325f 449 buffer_consume(&stdin_buffer, len);
450 /* Update the count of bytes written to the program. */
451 stdin_bytes += len;
452 }
8efc0c15 453 }
5260325f 454 /* Send any buffered packet data to the client. */
455 if (FD_ISSET(connection_out, writeset))
456 packet_write_poll();
8efc0c15 457}
458
5260325f 459/*
460 * Wait until all buffered output has been sent to the client.
461 * This is used when the program terminates.
462 */
396c147e 463static void
5ca51e19 464drain_output(void)
8efc0c15 465{
5260325f 466 /* Send any buffered stdout data to the client. */
467 if (buffer_len(&stdout_buffer) > 0) {
468 packet_start(SSH_SMSG_STDOUT_DATA);
469 packet_put_string(buffer_ptr(&stdout_buffer),
470 buffer_len(&stdout_buffer));
471 packet_send();
472 /* Update the count of sent bytes. */
473 stdout_bytes += buffer_len(&stdout_buffer);
474 }
475 /* Send any buffered stderr data to the client. */
476 if (buffer_len(&stderr_buffer) > 0) {
477 packet_start(SSH_SMSG_STDERR_DATA);
478 packet_put_string(buffer_ptr(&stderr_buffer),
479 buffer_len(&stderr_buffer));
480 packet_send();
481 /* Update the count of sent bytes. */
482 stderr_bytes += buffer_len(&stderr_buffer);
483 }
484 /* Wait until all buffered data has been written to the client. */
485 packet_write_wait();
8efc0c15 486}
487
396c147e 488static void
5ca51e19 489process_buffered_input_packets(void)
7368a6c8 490{
7a37c112 491 dispatch_run(DISPATCH_NONBLOCK, NULL, compat20 ? xxx_kex : NULL);
7368a6c8 492}
493
5260325f 494/*
495 * Performs the interactive session. This handles data transmission between
496 * the client and the program. Note that the notion of stdin, stdout, and
497 * stderr in this function is sort of reversed: this function writes to
498 * stdin (of the child program), and reads from stdout and stderr (of the
499 * child program).
500 */
6ae2364d 501void
9da5c3c9 502server_loop(pid_t pid, int fdin_arg, int fdout_arg, int fderr_arg)
8efc0c15 503{
39929cdb 504 fd_set *readset = NULL, *writeset = NULL;
9a995072 505 int max_fd = 0;
506 u_int nalloc = 0;
9da5c3c9 507 int wait_status; /* Status returned by wait(). */
508 pid_t wait_pid; /* pid returned by wait(). */
5260325f 509 int waiting_termination = 0; /* Have displayed waiting close message. */
1e3b8b07 510 u_int max_time_milliseconds;
511 u_int previous_stdout_buffer_bytes;
512 u_int stdout_buffer_bytes;
5260325f 513 int type;
514
515 debug("Entering interactive session.");
516
517 /* Initialize the SIGCHLD kludge. */
5260325f 518 child_terminated = 0;
42ad0eec 519 mysignal(SIGCHLD, sigchld_handler);
5260325f 520
0bbbf2a4 521 if (!use_privsep) {
522 signal(SIGTERM, sigterm_handler);
523 signal(SIGINT, sigterm_handler);
524 signal(SIGQUIT, sigterm_handler);
525 }
526
5260325f 527 /* Initialize our global variables. */
528 fdin = fdin_arg;
529 fdout = fdout_arg;
530 fderr = fderr_arg;
0e73cc53 531
532 /* nonblocking IO */
533 set_nonblock(fdin);
534 set_nonblock(fdout);
ff873e98 535 /* we don't have stderr for interactive terminal sessions, see below */
536 if (fderr != -1)
537 set_nonblock(fderr);
0e73cc53 538
e68225b2 539 if (!(datafellows & SSH_BUG_IGNOREMSG) && isatty(fdin))
540 fdin_is_tty = 1;
541
5260325f 542 connection_in = packet_get_connection_in();
543 connection_out = packet_get_connection_out();
544
a10be357 545 notify_setup();
546
5260325f 547 previous_stdout_buffer_bytes = 0;
548
549 /* Set approximate I/O buffer size. */
550 if (packet_is_interactive())
551 buffer_high = 4096;
552 else
553 buffer_high = 64 * 1024;
554
489aa2e9 555#if 0
5260325f 556 /* Initialize max_fd to the maximum of the known file descriptors. */
489aa2e9 557 max_fd = MAX(connection_in, connection_out);
558 max_fd = MAX(max_fd, fdin);
559 max_fd = MAX(max_fd, fdout);
39929cdb 560 if (fderr != -1)
561 max_fd = MAX(max_fd, fderr);
489aa2e9 562#endif
5260325f 563
564 /* Initialize Initialize buffers. */
565 buffer_init(&stdin_buffer);
566 buffer_init(&stdout_buffer);
567 buffer_init(&stderr_buffer);
568
aa3378df 569 /*
570 * If we have no separate fderr (which is the case when we have a pty
571 * - there we cannot make difference between data sent to stdout and
572 * stderr), indicate that we have seen an EOF from stderr. This way
7b9b0103 573 * we don't need to check the descriptor everywhere.
aa3378df 574 */
5260325f 575 if (fderr == -1)
576 fderr_eof = 1;
577
7368a6c8 578 server_init_dispatch();
579
5260325f 580 /* Main loop of the server for the interactive session mode. */
581 for (;;) {
5260325f 582
583 /* Process buffered packets from the client. */
584 process_buffered_input_packets();
585
aa3378df 586 /*
587 * If we have received eof, and there is no more pending
588 * input data, cause a real eof by closing fdin.
589 */
5260325f 590 if (stdin_eof && fdin != -1 && buffer_len(&stdin_buffer) == 0) {
7368a6c8 591 if (fdin != fdout)
5260325f 592 close(fdin);
593 else
594 shutdown(fdin, SHUT_WR); /* We will no longer send. */
5260325f 595 fdin = -1;
596 }
aa3378df 597 /* Make packets from buffered stderr data to send to the client. */
5260325f 598 make_packets_from_stderr_data();
599
aa3378df 600 /*
601 * Make packets from buffered stdout data to send to the
602 * client. If there is very little to send, this arranges to
603 * not send them now, but to wait a short while to see if we
604 * are getting more data. This is necessary, as some systems
605 * wake up readers from a pty after each separate character.
606 */
5260325f 607 max_time_milliseconds = 0;
608 stdout_buffer_bytes = buffer_len(&stdout_buffer);
609 if (stdout_buffer_bytes != 0 && stdout_buffer_bytes < 256 &&
610 stdout_buffer_bytes != previous_stdout_buffer_bytes) {
611 /* try again after a while */
612 max_time_milliseconds = 10;
613 } else {
614 /* Send it now. */
615 make_packets_from_stdout_data();
616 }
617 previous_stdout_buffer_bytes = buffer_len(&stdout_buffer);
618
619 /* Send channel data to the client. */
620 if (packet_not_very_much_data_to_write())
621 channel_output_poll();
622
aa3378df 623 /*
624 * Bail out of the loop if the program has closed its output
625 * descriptors, and we have no more data to send to the
626 * client, and there is no pending buffered data.
627 */
7062c40f 628 if (fdout_eof && fderr_eof && !packet_have_data_to_write() &&
629 buffer_len(&stdout_buffer) == 0 && buffer_len(&stderr_buffer) == 0) {
5260325f 630 if (!channel_still_open())
7368a6c8 631 break;
5260325f 632 if (!waiting_termination) {
633 const char *s = "Waiting for forwarded connections to terminate...\r\n";
634 char *cp;
635 waiting_termination = 1;
636 buffer_append(&stderr_buffer, s, strlen(s));
637
638 /* Display list of open channels. */
639 cp = channel_open_message();
640 buffer_append(&stderr_buffer, cp, strlen(cp));
641 xfree(cp);
642 }
643 }
489aa2e9 644 max_fd = MAX(connection_in, connection_out);
645 max_fd = MAX(max_fd, fdin);
646 max_fd = MAX(max_fd, fdout);
647 max_fd = MAX(max_fd, fderr);
a10be357 648 max_fd = MAX(max_fd, notify_pipe[0]);
489aa2e9 649
5260325f 650 /* Sleep in select() until we can do something. */
39929cdb 651 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 652 &nalloc, max_time_milliseconds);
5260325f 653
0bbbf2a4 654 if (received_sigterm) {
655 logit("Exiting on signal %d", received_sigterm);
656 /* Clean up sessions, utmp, etc. */
657 cleanup_exit(255);
658 }
659
5260325f 660 /* Process any channel events. */
39929cdb 661 channel_after_select(readset, writeset);
5260325f 662
663 /* Process input from the client and from program stdout/stderr. */
39929cdb 664 process_input(readset);
5260325f 665
666 /* Process output to the client and to program stdin. */
39929cdb 667 process_output(writeset);
8efc0c15 668 }
39929cdb 669 if (readset)
670 xfree(readset);
671 if (writeset)
672 xfree(writeset);
8efc0c15 673
5260325f 674 /* Cleanup and termination code. */
8efc0c15 675
5260325f 676 /* Wait until all output has been sent to the client. */
677 drain_output();
8efc0c15 678
5260325f 679 debug("End of interactive session; stdin %ld, stdout (read %ld, sent %ld), stderr %ld bytes.",
184eed6a 680 stdin_bytes, fdout_bytes, stdout_bytes, stderr_bytes);
8efc0c15 681
5260325f 682 /* Free and clear the buffers. */
683 buffer_free(&stdin_buffer);
684 buffer_free(&stdout_buffer);
685 buffer_free(&stderr_buffer);
8efc0c15 686
5260325f 687 /* Close the file descriptors. */
688 if (fdout != -1)
689 close(fdout);
690 fdout = -1;
691 fdout_eof = 1;
692 if (fderr != -1)
693 close(fderr);
694 fderr = -1;
695 fderr_eof = 1;
696 if (fdin != -1)
697 close(fdin);
698 fdin = -1;
699
d6746a0b 700 channel_free_all();
5260325f 701
5260325f 702 /* We no longer want our SIGCHLD handler to be called. */
42ad0eec 703 mysignal(SIGCHLD, SIG_DFL);
5260325f 704
8c38e88b 705 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
706 if (errno != EINTR)
707 packet_disconnect("wait: %.100s", strerror(errno));
708 if (wait_pid != pid)
c457707e 709 error("Strange, wait returned pid %ld, expected %ld",
710 (long)wait_pid, (long)pid);
c9130033 711
5260325f 712 /* Check if it exited normally. */
713 if (WIFEXITED(wait_status)) {
714 /* Yes, normal exit. Get exit status and send it to the client. */
715 debug("Command exited with status %d.", WEXITSTATUS(wait_status));
716 packet_start(SSH_SMSG_EXITSTATUS);
717 packet_put_int(WEXITSTATUS(wait_status));
718 packet_send();
719 packet_write_wait();
720
aa3378df 721 /*
722 * Wait for exit confirmation. Note that there might be
723 * other packets coming before it; however, the program has
724 * already died so we just ignore them. The client is
725 * supposed to respond with the confirmation when it receives
726 * the exit status.
727 */
5260325f 728 do {
54a5250f 729 type = packet_read();
5260325f 730 }
731 while (type != SSH_CMSG_EXIT_CONFIRMATION);
732
733 debug("Received exit confirmation.");
734 return;
735 }
736 /* Check if the program terminated due to a signal. */
737 if (WIFSIGNALED(wait_status))
738 packet_disconnect("Command terminated on signal %d.",
739 WTERMSIG(wait_status));
740
741 /* Some weird exit cause. Just exit. */
742 packet_disconnect("wait returned status %04x.", wait_status);
743 /* NOTREACHED */
744}
7368a6c8 745
418e724c 746static void
747collect_children(void)
748{
749 pid_t pid;
750 sigset_t oset, nset;
751 int status;
752
753 /* block SIGCHLD while we check for dead children */
754 sigemptyset(&nset);
755 sigaddset(&nset, SIGCHLD);
756 sigprocmask(SIG_BLOCK, &nset, &oset);
757 if (child_terminated) {
8c38e88b 758 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
759 (pid < 0 && errno == EINTR))
760 if (pid > 0)
761 session_close_by_pid(pid, status);
418e724c 762 child_terminated = 0;
763 }
764 sigprocmask(SIG_SETMASK, &oset, NULL);
765}
766
6ae2364d 767void
57156994 768server_loop2(Authctxt *authctxt)
e78a59f5 769{
39929cdb 770 fd_set *readset = NULL, *writeset = NULL;
418e724c 771 int rekeying = 0, max_fd, nalloc = 0;
e78a59f5 772
773 debug("Entering interactive session for SSH2.");
774
c9130033 775 mysignal(SIGCHLD, sigchld_handler);
e78a59f5 776 child_terminated = 0;
777 connection_in = packet_get_connection_in();
778 connection_out = packet_get_connection_out();
39929cdb 779
0bbbf2a4 780 if (!use_privsep) {
781 signal(SIGTERM, sigterm_handler);
782 signal(SIGINT, sigterm_handler);
783 signal(SIGQUIT, sigterm_handler);
784 }
785
a10be357 786 notify_setup();
787
39929cdb 788 max_fd = MAX(connection_in, connection_out);
a10be357 789 max_fd = MAX(max_fd, notify_pipe[0]);
790
e78a59f5 791 server_init_dispatch();
792
793 for (;;) {
794 process_buffered_input_packets();
bbb4cc1b 795
cd332296 796 rekeying = (xxx_kex != NULL && !xxx_kex->done);
bbb4cc1b 797
bbb4cc1b 798 if (!rekeying && packet_not_very_much_data_to_write())
e78a59f5 799 channel_output_poll();
bbb4cc1b 800 wait_until_can_do_something(&readset, &writeset, &max_fd,
489aa2e9 801 &nalloc, 0);
d5f24f94 802
0bbbf2a4 803 if (received_sigterm) {
804 logit("Exiting on signal %d", received_sigterm);
805 /* Clean up sessions, utmp, etc. */
806 cleanup_exit(255);
807 }
808
418e724c 809 collect_children();
ffd7b36b 810 if (!rekeying) {
bbb4cc1b 811 channel_after_select(readset, writeset);
ffd7b36b 812 if (packet_need_rekeying()) {
813 debug("need rekeying");
814 xxx_kex->done = 0;
815 kex_send_kexinit(xxx_kex);
816 }
817 }
39929cdb 818 process_input(readset);
cc94bd38 819 if (connection_closed)
820 break;
39929cdb 821 process_output(writeset);
e78a59f5 822 }
418e724c 823 collect_children();
824
39929cdb 825 if (readset)
826 xfree(readset);
827 if (writeset)
828 xfree(writeset);
829
d5f24f94 830 /* free all channels, no more reads and writes */
831 channel_free_all();
5b5d170c 832
418e724c 833 /* free remaining sessions, e.g. remove wtmp entries */
1853d1ef 834 session_destroy_all(NULL);
e78a59f5 835}
836
396c147e 837static void
95ae2076 838server_input_keep_alive(int type, u_int32_t seq, void *ctxt)
3ffc6336 839{
95ae2076 840 debug("Got %d/%u for keepalive", type, seq);
184eed6a 841 /*
39aefe7b 842 * reset timeout, since we got a sane answer from the client.
3ffc6336 843 * even if this was generated by something other than
844 * the bogus CHANNEL_REQUEST we send for keepalives.
845 */
184eed6a 846 client_alive_timeouts = 0;
3ffc6336 847}
848
396c147e 849static void
7819b5c3 850server_input_stdin_data(int type, u_int32_t seq, void *ctxt)
7368a6c8 851{
852 char *data;
1e3b8b07 853 u_int data_len;
7368a6c8 854
855 /* Stdin data from the client. Append it to the buffer. */
856 /* Ignore any data if the client has closed stdin. */
857 if (fdin == -1)
858 return;
859 data = packet_get_string(&data_len);
95500969 860 packet_check_eom();
7368a6c8 861 buffer_append(&stdin_buffer, data, data_len);
862 memset(data, 0, data_len);
863 xfree(data);
864}
865
396c147e 866static void
7819b5c3 867server_input_eof(int type, u_int32_t seq, void *ctxt)
7368a6c8 868{
869 /*
870 * Eof from the client. The stdin descriptor to the
871 * program will be closed when all buffered data has
872 * drained.
873 */
874 debug("EOF received for stdin.");
95500969 875 packet_check_eom();
7368a6c8 876 stdin_eof = 1;
877}
878
396c147e 879static void
7819b5c3 880server_input_window_size(int type, u_int32_t seq, void *ctxt)
7368a6c8 881{
882 int row = packet_get_int();
883 int col = packet_get_int();
884 int xpixel = packet_get_int();
885 int ypixel = packet_get_int();
886
887 debug("Window change received.");
95500969 888 packet_check_eom();
7368a6c8 889 if (fdin != -1)
890 pty_change_window_size(fdin, row, col, xpixel, ypixel);
891}
892
396c147e 893static Channel *
43f7a4b8 894server_request_direct_tcpip(void)
e78a59f5 895{
719fc62f 896 Channel *c;
897 int sock;
6ae2364d 898 char *target, *originator;
899 int target_port, originator_port;
e78a59f5 900
6ae2364d 901 target = packet_get_string(NULL);
902 target_port = packet_get_int();
e78a59f5 903 originator = packet_get_string(NULL);
904 originator_port = packet_get_int();
95500969 905 packet_check_eom();
71276795 906
fa08c86b 907 debug("server_request_direct_tcpip: originator %s port %d, target %s port %d",
4e2e5cfd 908 originator, originator_port, target, target_port);
38c295d6 909
e78a59f5 910 /* XXX check permission */
6ae2364d 911 sock = channel_connect_to(target, target_port);
912 xfree(target);
e78a59f5 913 xfree(originator);
914 if (sock < 0)
fa08c86b 915 return NULL;
43f7a4b8 916 c = channel_new("direct-tcpip", SSH_CHANNEL_CONNECTING,
bcbf86ec 917 sock, sock, -1, CHAN_TCP_WINDOW_DEFAULT,
0d942eff 918 CHAN_TCP_PACKET_DEFAULT, 0, "direct-tcpip", 1);
719fc62f 919 return c;
fa08c86b 920}
921
d20f3c9e 922static Channel *
923server_request_tun(void)
924{
925 Channel *c = NULL;
a4f24bf8 926 int mode, tun;
927 int sock;
d20f3c9e 928
a4f24bf8 929 mode = packet_get_int();
930 switch (mode) {
931 case SSH_TUNMODE_POINTOPOINT:
932 case SSH_TUNMODE_ETHERNET:
933 break;
934 default:
935 packet_send_debug("Unsupported tunnel device mode.");
936 return NULL;
937 }
938 if ((options.permit_tun & mode) == 0) {
939 packet_send_debug("Server has rejected tunnel device "
940 "forwarding");
d20f3c9e 941 return NULL;
942 }
943
944 tun = packet_get_int();
a2b1748a 945 if (forced_tun_device != -1) {
a4f24bf8 946 if (tun != SSH_TUNID_ANY && forced_tun_device != tun)
d20f3c9e 947 goto done;
948 tun = forced_tun_device;
949 }
a4f24bf8 950 sock = tun_open(tun, mode);
d20f3c9e 951 if (sock < 0)
952 goto done;
953 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1,
954 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
955 c->datagram = 1;
e914f53a 956#if defined(SSH_TUN_FILTER)
957 if (mode == SSH_TUNMODE_POINTOPOINT)
958 channel_register_filter(c->self, sys_tun_infilter,
959 sys_tun_outfilter);
960#endif
d20f3c9e 961
962 done:
963 if (c == NULL)
964 packet_send_debug("Failed to open the tunnel device.");
965 return c;
966}
967
396c147e 968static Channel *
43f7a4b8 969server_request_session(void)
fa08c86b 970{
719fc62f 971 Channel *c;
fa08c86b 972
973 debug("input_session_request");
95500969 974 packet_check_eom();
fa08c86b 975 /*
976 * A server session has no fd to read or write until a
977 * CHANNEL_REQUEST for a shell is made, so we set the type to
978 * SSH_CHANNEL_LARVAL. Additionally, a callback for handling all
979 * CHANNEL_REQUEST messages is registered.
980 */
43f7a4b8 981 c = channel_new("session", SSH_CHANNEL_LARVAL,
719fc62f 982 -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT,
0d942eff 983 0, "server-session", 1);
2362db19 984 if (session_open(the_authctxt, c->self) != 1) {
719fc62f 985 debug("session open failed, free channel %d", c->self);
986 channel_free(c);
987 return NULL;
fa08c86b 988 }
8cd0437d 989 channel_register_cleanup(c->self, session_close_by_channel, 0);
719fc62f 990 return c;
e78a59f5 991}
992
396c147e 993static void
7819b5c3 994server_input_channel_open(int type, u_int32_t seq, void *ctxt)
e78a59f5 995{
996 Channel *c = NULL;
997 char *ctype;
e78a59f5 998 int rchan;
f91d9a89 999 u_int rmaxpack, rwindow, len;
e78a59f5 1000
1001 ctype = packet_get_string(&len);
1002 rchan = packet_get_int();
1003 rwindow = packet_get_int();
1004 rmaxpack = packet_get_int();
1005
188adeb2 1006 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
e78a59f5 1007 ctype, rchan, rwindow, rmaxpack);
1008
1009 if (strcmp(ctype, "session") == 0) {
43f7a4b8 1010 c = server_request_session();
e78a59f5 1011 } else if (strcmp(ctype, "direct-tcpip") == 0) {
43f7a4b8 1012 c = server_request_direct_tcpip();
d20f3c9e 1013 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
1014 c = server_request_tun();
e78a59f5 1015 }
1016 if (c != NULL) {
fa08c86b 1017 debug("server_input_channel_open: confirm %s", ctype);
e78a59f5 1018 c->remote_id = rchan;
1019 c->remote_window = rwindow;
1020 c->remote_maxpacket = rmaxpack;
d18e0850 1021 if (c->type != SSH_CHANNEL_CONNECTING) {
1022 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1023 packet_put_int(c->remote_id);
1024 packet_put_int(c->self);
1025 packet_put_int(c->local_window);
1026 packet_put_int(c->local_maxpacket);
1027 packet_send();
1028 }
e78a59f5 1029 } else {
fa08c86b 1030 debug("server_input_channel_open: failure %s", ctype);
e78a59f5 1031 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1032 packet_put_int(rchan);
1033 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
fbe90f7b 1034 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
d18e0850 1035 packet_put_cstring("open failed");
fbe90f7b 1036 packet_put_cstring("");
1037 }
e78a59f5 1038 packet_send();
1039 }
1040 xfree(ctype);
1041}
1042
396c147e 1043static void
7819b5c3 1044server_input_global_request(int type, u_int32_t seq, void *ctxt)
fa08c86b 1045{
1046 char *rtype;
1047 int want_reply;
1048 int success = 0;
1049
1050 rtype = packet_get_string(NULL);
1051 want_reply = packet_get_char();
1052 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply);
2b87da3b 1053
01794848 1054 /* -R style forwarding */
fa08c86b 1055 if (strcmp(rtype, "tcpip-forward") == 0) {
1056 struct passwd *pw;
1057 char *listen_address;
1058 u_short listen_port;
1059
2362db19 1060 pw = the_authctxt->pw;
95077f48 1061 if (pw == NULL || !the_authctxt->valid)
fdaef11e 1062 fatal("server_input_global_request: no/invalid user");
b08a39ff 1063 listen_address = packet_get_string(NULL);
fa08c86b 1064 listen_port = (u_short)packet_get_int();
1065 debug("server_input_global_request: tcpip-forward listen %s port %d",
1066 listen_address, listen_port);
1067
1068 /* check permissions */
1069 if (!options.allow_tcp_forwarding ||
e6f15ed1 1070 no_port_forwarding_flag
1071#ifndef NO_IPPORT_RESERVED_CONCEPT
1072 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0)
1073#endif
98c044d0 1074 ) {
fa08c86b 1075 success = 0;
1076 packet_send_debug("Server has disabled port forwarding.");
1077 } else {
1078 /* Start listening on the port */
5641aefa 1079 success = channel_setup_remote_fwd_listener(
1080 listen_address, listen_port, options.gateway_ports);
fa08c86b 1081 }
1082 xfree(listen_address);
d740ec16 1083 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) {
1084 char *cancel_address;
1085 u_short cancel_port;
1086
1087 cancel_address = packet_get_string(NULL);
1088 cancel_port = (u_short)packet_get_int();
1089 debug("%s: cancel-tcpip-forward addr %s port %d", __func__,
1090 cancel_address, cancel_port);
1091
1092 success = channel_cancel_rport_listener(cancel_address,
1093 cancel_port);
fa08c86b 1094 }
1095 if (want_reply) {
1096 packet_start(success ?
1097 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1098 packet_send();
1099 packet_write_wait();
1100 }
1101 xfree(rtype);
1102}
7899c98f 1103static void
1104server_input_channel_req(int type, u_int32_t seq, void *ctxt)
1105{
1106 Channel *c;
1107 int id, reply, success = 0;
1108 char *rtype;
1109
1110 id = packet_get_int();
1111 rtype = packet_get_string(NULL);
1112 reply = packet_get_char();
1113
1114 debug("server_input_channel_req: channel %d request %s reply %d",
1115 id, rtype, reply);
1116
1117 if ((c = channel_lookup(id)) == NULL)
1118 packet_disconnect("server_input_channel_req: "
1119 "unknown channel %d", id);
1120 if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN)
1121 success = session_input_channel_req(c, rtype);
1122 if (reply) {
1123 packet_start(success ?
1124 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1125 packet_put_int(c->remote_id);
1126 packet_send();
1127 }
1128 xfree(rtype);
1129}
fa08c86b 1130
396c147e 1131static void
5ca51e19 1132server_init_dispatch_20(void)
e78a59f5 1133{
1134 debug("server_init_dispatch_20");
1135 dispatch_init(&dispatch_protocol_error);
1136 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1137 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1138 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1139 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
1140 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &server_input_channel_open);
1141 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1142 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
7899c98f 1143 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &server_input_channel_req);
e78a59f5 1144 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
fa08c86b 1145 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &server_input_global_request);
3ffc6336 1146 /* client_alive */
95ae2076 1147 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &server_input_keep_alive);
1148 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &server_input_keep_alive);
1149 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &server_input_keep_alive);
7a37c112 1150 /* rekeying */
1151 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
e78a59f5 1152}
396c147e 1153static void
5ca51e19 1154server_init_dispatch_13(void)
7368a6c8 1155{
1156 debug("server_init_dispatch_13");
1157 dispatch_init(NULL);
1158 dispatch_set(SSH_CMSG_EOF, &server_input_eof);
1159 dispatch_set(SSH_CMSG_STDIN_DATA, &server_input_stdin_data);
1160 dispatch_set(SSH_CMSG_WINDOW_SIZE, &server_input_window_size);
1161 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1162 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1163 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
1164 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1165 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1166 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
1167}
396c147e 1168static void
5ca51e19 1169server_init_dispatch_15(void)
7368a6c8 1170{
1171 server_init_dispatch_13();
1172 debug("server_init_dispatch_15");
1173 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1174 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_oclose);
1175}
396c147e 1176static void
5ca51e19 1177server_init_dispatch(void)
7368a6c8 1178{
e78a59f5 1179 if (compat20)
1180 server_init_dispatch_20();
1181 else if (compat13)
7368a6c8 1182 server_init_dispatch_13();
1183 else
1184 server_init_dispatch_15();
1185}
This page took 0.529726 seconds and 5 git commands to generate.