]> andersk Git - openssh.git/blame - clientloop.c
- markus@cvs.openbsd.org 2001/04/14 16:27:57
[openssh.git] / clientloop.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
bcbf86ec 5 * The main loop for the interactive session (client side).
6ae2364d 6 *
bcbf86ec 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".
6ae2364d 12 *
6ae2364d 13 *
bcbf86ec 14 * Copyright (c) 1999 Theo de Raadt. 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 *
6ae2364d 36 *
8ce64345 37 * SSH2 support added by Markus Friedl.
bcbf86ec 38 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 59 */
8efc0c15 60
61#include "includes.h"
d0a4c20b 62RCSID("$OpenBSD: clientloop.c,v 1.61 2001/04/08 11:27:33 markus Exp $");
8efc0c15 63
8efc0c15 64#include "ssh.h"
42f11eb2 65#include "ssh1.h"
66#include "ssh2.h"
67#include "xmalloc.h"
8efc0c15 68#include "packet.h"
69#include "buffer.h"
7368a6c8 70#include "compat.h"
71#include "channels.h"
72#include "dispatch.h"
2e73a022 73#include "buffer.h"
74#include "bufaux.h"
fa08c86b 75#include "key.h"
e092ce67 76#include "kex.h"
42f11eb2 77#include "log.h"
78#include "readconf.h"
b5c334cc 79#include "clientloop.h"
42f11eb2 80#include "authfd.h"
81#include "atomicio.h"
a22aff1f 82
83/* import options */
84extern Options options;
85
8efc0c15 86/* Flag indicating that stdin should be redirected from /dev/null. */
87extern int stdin_null_flag;
88
aa3378df 89/*
90 * Name of the host we are connecting to. This is the name given on the
91 * command line, or the HostName specified for the user-supplied name in a
92 * configuration file.
93 */
8efc0c15 94extern char *host;
95
aa3378df 96/*
97 * Flag to indicate that we have received a window change signal which has
98 * not yet been processed. This will cause a message indicating the new
99 * window size to be sent to the server a little later. This is volatile
100 * because this is updated in a signal handler.
101 */
8efc0c15 102static volatile int received_window_change_signal = 0;
103
104/* Terminal modes, as saved by enter_raw_mode. */
105static struct termios saved_tio;
106
aa3378df 107/*
108 * Flag indicating whether we are in raw mode. This is used by
109 * enter_raw_mode and leave_raw_mode.
110 */
8efc0c15 111static int in_raw_mode = 0;
112
113/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
114static int in_non_blocking_mode = 0;
115
116/* Common data for the client loop code. */
2e73a022 117static int quit_pending; /* Set to non-zero to quit the client loop. */
118static int escape_char; /* Escape character. */
5260325f 119static int escape_pending; /* Last character was the escape character */
120static int last_was_cr; /* Last character was a newline. */
121static int exit_status; /* Used to store the exit status of the command. */
122static int stdin_eof; /* EOF has been encountered on standard error. */
123static Buffer stdin_buffer; /* Buffer for stdin data. */
124static Buffer stdout_buffer; /* Buffer for stdout data. */
125static Buffer stderr_buffer; /* Buffer for stderr data. */
1e3b8b07 126static u_long stdin_bytes, stdout_bytes, stderr_bytes;
127static u_int buffer_high;/* Soft max buffer size. */
5260325f 128static int connection_in; /* Connection to server (input). */
129static int connection_out; /* Connection to server (output). */
c422989b 130static int need_rekeying; /* Set to non-zero if rekeying is requested. */
eb0dd41f 131static int session_closed = 0; /* In SSH2: login session closed. */
8efc0c15 132
8ce64345 133void client_init_dispatch(void);
134int session_ident = -1;
135
e092ce67 136/*XXX*/
137extern Kex *xxx_kex;
138
aa3378df 139/* Returns the user\'s terminal to normal mode if it had been put in raw mode. */
8efc0c15 140
6ae2364d 141void
5ca51e19 142leave_raw_mode(void)
8efc0c15 143{
5260325f 144 if (!in_raw_mode)
145 return;
146 in_raw_mode = 0;
147 if (tcsetattr(fileno(stdin), TCSADRAIN, &saved_tio) < 0)
148 perror("tcsetattr");
8efc0c15 149
5260325f 150 fatal_remove_cleanup((void (*) (void *)) leave_raw_mode, NULL);
8efc0c15 151}
152
153/* Puts the user\'s terminal in raw mode. */
154
6ae2364d 155void
5ca51e19 156enter_raw_mode(void)
8efc0c15 157{
5260325f 158 struct termios tio;
159
160 if (tcgetattr(fileno(stdin), &tio) < 0)
161 perror("tcgetattr");
162 saved_tio = tio;
163 tio.c_iflag |= IGNPAR;
164 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
165 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
8efc0c15 166#ifdef IEXTEN
5260325f 167 tio.c_lflag &= ~IEXTEN;
168#endif /* IEXTEN */
169 tio.c_oflag &= ~OPOST;
170 tio.c_cc[VMIN] = 1;
171 tio.c_cc[VTIME] = 0;
172 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) < 0)
173 perror("tcsetattr");
174 in_raw_mode = 1;
175
176 fatal_add_cleanup((void (*) (void *)) leave_raw_mode, NULL);
177}
8efc0c15 178
179/* Restores stdin to blocking mode. */
180
6ae2364d 181void
5ca51e19 182leave_non_blocking(void)
8efc0c15 183{
5260325f 184 if (in_non_blocking_mode) {
185 (void) fcntl(fileno(stdin), F_SETFL, 0);
186 in_non_blocking_mode = 0;
187 fatal_remove_cleanup((void (*) (void *)) leave_non_blocking, NULL);
188 }
8efc0c15 189}
190
5260325f 191/* Puts stdin terminal in non-blocking mode. */
192
6ae2364d 193void
5ca51e19 194enter_non_blocking(void)
8efc0c15 195{
5260325f 196 in_non_blocking_mode = 1;
197 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
198 fatal_add_cleanup((void (*) (void *)) leave_non_blocking, NULL);
8efc0c15 199}
200
aa3378df 201/*
202 * Signal handler for the window change signal (SIGWINCH). This just sets a
203 * flag indicating that the window has changed.
204 */
8efc0c15 205
6ae2364d 206void
5260325f 207window_change_handler(int sig)
8efc0c15 208{
5260325f 209 received_window_change_signal = 1;
210 signal(SIGWINCH, window_change_handler);
8efc0c15 211}
212
aa3378df 213/*
214 * Signal handler for signals that cause the program to terminate. These
215 * signals must be trapped to restore terminal modes.
216 */
8efc0c15 217
6ae2364d 218void
5260325f 219signal_handler(int sig)
8efc0c15 220{
5260325f 221 if (in_raw_mode)
222 leave_raw_mode();
223 if (in_non_blocking_mode)
224 leave_non_blocking();
225 channel_stop_listening();
226 packet_close();
227 fatal("Killed by signal %d.", sig);
8efc0c15 228}
229
aa3378df 230/*
231 * Returns current time in seconds from Jan 1, 1970 with the maximum
232 * available resolution.
233 */
8efc0c15 234
6ae2364d 235double
5ca51e19 236get_current_time(void)
8efc0c15 237{
5260325f 238 struct timeval tv;
239 gettimeofday(&tv, NULL);
240 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
8efc0c15 241}
242
aa3378df 243/*
244 * This is called when the interactive is entered. This checks if there is
245 * an EOF coming on stdin. We must check this explicitly, as select() does
246 * not appear to wake up when redirecting from /dev/null.
247 */
8efc0c15 248
6ae2364d 249void
5ca51e19 250client_check_initial_eof_on_stdin(void)
8efc0c15 251{
5260325f 252 int len;
253 char buf[1];
254
aa3378df 255 /*
256 * If standard input is to be "redirected from /dev/null", we simply
257 * mark that we have seen an EOF and send an EOF message to the
258 * server. Otherwise, we try to read a single character; it appears
259 * that for some files, such /dev/null, select() never wakes up for
260 * read for this descriptor, which means that we never get EOF. This
261 * way we will get the EOF if stdin comes from /dev/null or similar.
262 */
5260325f 263 if (stdin_null_flag) {
264 /* Fake EOF on stdin. */
265 debug("Sending eof.");
266 stdin_eof = 1;
267 packet_start(SSH_CMSG_EOF);
268 packet_send();
269 } else {
5260325f 270 enter_non_blocking();
271
272 /* Check for immediate EOF on stdin. */
273 len = read(fileno(stdin), buf, 1);
274 if (len == 0) {
aa3378df 275 /* EOF. Record that we have seen it and send EOF to server. */
5260325f 276 debug("Sending eof.");
277 stdin_eof = 1;
278 packet_start(SSH_CMSG_EOF);
279 packet_send();
280 } else if (len > 0) {
aa3378df 281 /*
282 * Got data. We must store the data in the buffer,
283 * and also process it as an escape character if
284 * appropriate.
285 */
1e3b8b07 286 if ((u_char) buf[0] == escape_char)
5260325f 287 escape_pending = 1;
7e8911cd 288 else
5260325f 289 buffer_append(&stdin_buffer, buf, 1);
5260325f 290 }
5260325f 291 leave_non_blocking();
8efc0c15 292 }
8efc0c15 293}
294
8efc0c15 295
aa3378df 296/*
297 * Make packets from buffered stdin data, and buffer them for sending to the
298 * connection.
299 */
8efc0c15 300
6ae2364d 301void
5ca51e19 302client_make_packets_from_stdin_data(void)
8efc0c15 303{
1e3b8b07 304 u_int len;
5260325f 305
306 /* Send buffered stdin data to the server. */
307 while (buffer_len(&stdin_buffer) > 0 &&
308 packet_not_very_much_data_to_write()) {
309 len = buffer_len(&stdin_buffer);
310 /* Keep the packets at reasonable size. */
311 if (len > packet_get_maxsize())
312 len = packet_get_maxsize();
313 packet_start(SSH_CMSG_STDIN_DATA);
314 packet_put_string(buffer_ptr(&stdin_buffer), len);
315 packet_send();
316 buffer_consume(&stdin_buffer, len);
7e8911cd 317 stdin_bytes += len;
5260325f 318 /* If we have a pending EOF, send it now. */
319 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
320 packet_start(SSH_CMSG_EOF);
321 packet_send();
322 }
8efc0c15 323 }
8efc0c15 324}
325
aa3378df 326/*
327 * Checks if the client window has changed, and sends a packet about it to
328 * the server if so. The actual change is detected elsewhere (by a software
329 * interrupt on Unix); this just checks the flag and sends a message if
330 * appropriate.
331 */
8efc0c15 332
6ae2364d 333void
5ca51e19 334client_check_window_change(void)
8efc0c15 335{
8ce64345 336 struct winsize ws;
337
338 if (! received_window_change_signal)
339 return;
340 /** XXX race */
341 received_window_change_signal = 0;
342
343 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
344 return;
345
de273eef 346 debug2("client_check_window_change: changed");
8ce64345 347
348 if (compat20) {
349 channel_request_start(session_ident, "window-change", 0);
350 packet_put_int(ws.ws_col);
351 packet_put_int(ws.ws_row);
352 packet_put_int(ws.ws_xpixel);
353 packet_put_int(ws.ws_ypixel);
354 packet_send();
355 } else {
356 packet_start(SSH_CMSG_WINDOW_SIZE);
357 packet_put_int(ws.ws_row);
358 packet_put_int(ws.ws_col);
359 packet_put_int(ws.ws_xpixel);
360 packet_put_int(ws.ws_ypixel);
361 packet_send();
8efc0c15 362 }
8efc0c15 363}
364
aa3378df 365/*
366 * Waits until the client can do something (some data becomes available on
367 * one of the file descriptors).
368 */
8efc0c15 369
6ae2364d 370void
39929cdb 371client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
c422989b 372 int *maxfdp, int rekeying)
8efc0c15 373{
39929cdb 374 /* Add any selections by the channel mechanism. */
c422989b 375 channel_prepare_select(readsetp, writesetp, maxfdp, rekeying);
5260325f 376
8ce64345 377 if (!compat20) {
378 /* Read from the connection, unless our buffers are full. */
379 if (buffer_len(&stdout_buffer) < buffer_high &&
380 buffer_len(&stderr_buffer) < buffer_high &&
381 channel_not_very_much_buffered_data())
39929cdb 382 FD_SET(connection_in, *readsetp);
8ce64345 383 /*
384 * Read from stdin, unless we have seen EOF or have very much
385 * buffered data to send to the server.
386 */
387 if (!stdin_eof && packet_not_very_much_data_to_write())
39929cdb 388 FD_SET(fileno(stdin), *readsetp);
8ce64345 389
390 /* Select stdout/stderr if have data in buffer. */
391 if (buffer_len(&stdout_buffer) > 0)
39929cdb 392 FD_SET(fileno(stdout), *writesetp);
8ce64345 393 if (buffer_len(&stderr_buffer) > 0)
39929cdb 394 FD_SET(fileno(stderr), *writesetp);
8ce64345 395 } else {
39929cdb 396 FD_SET(connection_in, *readsetp);
8ce64345 397 }
5260325f 398
5260325f 399 /* Select server connection if have data to write to the server. */
400 if (packet_have_data_to_write())
39929cdb 401 FD_SET(connection_out, *writesetp);
5260325f 402
aa3378df 403 /*
404 * Wait for something to happen. This will suspend the process until
405 * some selected descriptor can be read, written, or has some other
406 * event pending. Note: if you want to implement SSH_MSG_IGNORE
407 * messages to fool traffic analysis, this might be the place to do
408 * it: just have a random timeout for the select, and send a random
409 * SSH_MSG_IGNORE packet when the timeout expires.
410 */
5260325f 411
39929cdb 412 if (select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL) < 0) {
5260325f 413 char buf[100];
fd193ca4 414
415 /*
416 * We have to clear the select masks, because we return.
417 * We have to return, because the mainloop checks for the flags
418 * set by the signal handlers.
419 */
420 memset(*readsetp, 0, *maxfdp);
421 memset(*writesetp, 0, *maxfdp);
422
5260325f 423 if (errno == EINTR)
424 return;
425 /* Note: we might still have data in the buffers. */
426 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
427 buffer_append(&stderr_buffer, buf, strlen(buf));
5260325f 428 quit_pending = 1;
429 }
8efc0c15 430}
431
6ae2364d 432void
2e73a022 433client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
8efc0c15 434{
5260325f 435 struct winsize oldws, newws;
436
437 /* Flush stdout and stderr buffers. */
2e73a022 438 if (buffer_len(bout) > 0)
439 atomicio(write, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
440 if (buffer_len(berr) > 0)
441 atomicio(write, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
5260325f 442
5260325f 443 leave_raw_mode();
444
aa3378df 445 /*
446 * Free (and clear) the buffer to reduce the amount of data that gets
447 * written to swap.
448 */
2e73a022 449 buffer_free(bin);
450 buffer_free(bout);
451 buffer_free(berr);
5260325f 452
453 /* Save old window size. */
454 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
455
456 /* Send the suspend signal to the program itself. */
457 kill(getpid(), SIGTSTP);
458
459 /* Check if the window size has changed. */
460 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
461 (oldws.ws_row != newws.ws_row ||
462 oldws.ws_col != newws.ws_col ||
463 oldws.ws_xpixel != newws.ws_xpixel ||
464 oldws.ws_ypixel != newws.ws_ypixel))
465 received_window_change_signal = 1;
466
467 /* OK, we have been continued by the user. Reinitialize buffers. */
2e73a022 468 buffer_init(bin);
469 buffer_init(bout);
470 buffer_init(berr);
5260325f 471
5260325f 472 enter_raw_mode();
8efc0c15 473}
474
6ae2364d 475void
8ce64345 476client_process_net_input(fd_set * readset)
8efc0c15 477{
8ce64345 478 int len;
479 char buf[8192];
5260325f 480
aa3378df 481 /*
482 * Read input from the server, and add any such data to the buffer of
483 * the packet subsystem.
484 */
5260325f 485 if (FD_ISSET(connection_in, readset)) {
486 /* Read as much as possible. */
487 len = read(connection_in, buf, sizeof(buf));
488 if (len == 0) {
489 /* Received EOF. The remote host has closed the connection. */
490 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
491 host);
8efc0c15 492 buffer_append(&stderr_buffer, buf, strlen(buf));
8efc0c15 493 quit_pending = 1;
494 return;
5260325f 495 }
aa3378df 496 /*
497 * There is a kernel bug on Solaris that causes select to
498 * sometimes wake up even though there is no data available.
499 */
09cb311c 500 if (len < 0 && (errno == EAGAIN || errno == EINTR))
5260325f 501 len = 0;
502
503 if (len < 0) {
504 /* An error has encountered. Perhaps there is a network problem. */
505 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
506 host, strerror(errno));
507 buffer_append(&stderr_buffer, buf, strlen(buf));
5260325f 508 quit_pending = 1;
509 return;
510 }
511 packet_process_incoming(buf, len);
512 }
8ce64345 513}
514
2e73a022 515/* process the characters one by one */
516int
517process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
518{
519 char string[1024];
520 pid_t pid;
521 int bytes = 0;
1e3b8b07 522 u_int i;
523 u_char ch;
2e73a022 524 char *s;
525
526 for (i = 0; i < len; i++) {
527 /* Get one character at a time. */
528 ch = buf[i];
529
530 if (escape_pending) {
531 /* We have previously seen an escape character. */
532 /* Clear the flag now. */
533 escape_pending = 0;
534
535 /* Process the escaped character. */
536 switch (ch) {
537 case '.':
538 /* Terminate the connection. */
539 snprintf(string, sizeof string, "%c.\r\n", escape_char);
540 buffer_append(berr, string, strlen(string));
2e73a022 541
542 quit_pending = 1;
543 return -1;
544
545 case 'Z' - 64:
546 /* Suspend the program. */
547 /* Print a message to that effect to the user. */
548 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
549 buffer_append(berr, string, strlen(string));
2e73a022 550
551 /* Restore terminal modes and suspend. */
552 client_suspend_self(bin, bout, berr);
553
554 /* We have been continued. */
555 continue;
556
e092ce67 557 case 'R':
54506d2e 558 if (compat20) {
559 if (datafellows & SSH_BUG_NOREKEY)
560 log("Server does not support re-keying");
561 else
562 need_rekeying = 1;
563 }
e092ce67 564 continue;
565
2e73a022 566 case '&':
567 /* XXX does not work yet with proto 2 */
568 if (compat20)
569 continue;
570 /*
571 * Detach the program (continue to serve connections,
572 * but put in background and no more new connections).
573 */
574 if (!stdin_eof) {
575 /*
576 * Sending SSH_CMSG_EOF alone does not always appear
577 * to be enough. So we try to send an EOF character
578 * first.
579 */
580 packet_start(SSH_CMSG_STDIN_DATA);
581 packet_put_string("\004", 1);
582 packet_send();
583 /* Close stdin. */
584 stdin_eof = 1;
585 if (buffer_len(bin) == 0) {
586 packet_start(SSH_CMSG_EOF);
587 packet_send();
588 }
589 }
590 /* Restore tty modes. */
591 leave_raw_mode();
592
593 /* Stop listening for new connections. */
594 channel_stop_listening();
595
596 printf("%c& [backgrounded]\n", escape_char);
597
598 /* Fork into background. */
599 pid = fork();
600 if (pid < 0) {
601 error("fork: %.100s", strerror(errno));
602 continue;
603 }
604 if (pid != 0) { /* This is the parent. */
605 /* The parent just exits. */
606 exit(0);
607 }
608 /* The child continues serving connections. */
609 continue; /*XXX ? */
610
611 case '?':
612 snprintf(string, sizeof string,
613"%c?\r\n\
614Supported escape sequences:\r\n\
615~. - terminate connection\r\n\
616~^Z - suspend ssh\r\n\
617~# - list forwarded connections\r\n\
618~& - background ssh (when waiting for connections to terminate)\r\n\
619~? - this message\r\n\
620~~ - send the escape character by typing it twice\r\n\
621(Note that escapes are only recognized immediately after newline.)\r\n",
622 escape_char);
623 buffer_append(berr, string, strlen(string));
624 continue;
625
626 case '#':
627 snprintf(string, sizeof string, "%c#\r\n", escape_char);
628 buffer_append(berr, string, strlen(string));
629 s = channel_open_message();
630 buffer_append(berr, s, strlen(s));
631 xfree(s);
632 continue;
633
634 default:
635 if (ch != escape_char) {
636 buffer_put_char(bin, escape_char);
637 bytes++;
638 }
639 /* Escaped characters fall through here */
640 break;
641 }
642 } else {
643 /*
644 * The previous character was not an escape char. Check if this
645 * is an escape.
646 */
647 if (last_was_cr && ch == escape_char) {
648 /* It is. Set the flag and continue to next character. */
649 escape_pending = 1;
650 continue;
651 }
652 }
653
654 /*
655 * Normal character. Record whether it was a newline,
656 * and append it to the buffer.
657 */
658 last_was_cr = (ch == '\r' || ch == '\n');
659 buffer_put_char(bin, ch);
660 bytes++;
661 }
662 return bytes;
663}
664
6ae2364d 665void
8ce64345 666client_process_input(fd_set * readset)
667{
9da5c3c9 668 int len;
2e73a022 669 char buf[8192];
8ce64345 670
5260325f 671 /* Read input from stdin. */
672 if (FD_ISSET(fileno(stdin), readset)) {
673 /* Read as much as possible. */
674 len = read(fileno(stdin), buf, sizeof(buf));
675 if (len <= 0) {
aa3378df 676 /*
677 * Received EOF or error. They are treated
678 * similarly, except that an error message is printed
679 * if it was an error condition.
680 */
5260325f 681 if (len < 0) {
682 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
683 buffer_append(&stderr_buffer, buf, strlen(buf));
5260325f 684 }
685 /* Mark that we have seen EOF. */
686 stdin_eof = 1;
aa3378df 687 /*
688 * Send an EOF message to the server unless there is
689 * data in the buffer. If there is data in the
690 * buffer, no message will be sent now. Code
691 * elsewhere will send the EOF when the buffer
692 * becomes empty if stdin_eof is set.
693 */
5260325f 694 if (buffer_len(&stdin_buffer) == 0) {
8efc0c15 695 packet_start(SSH_CMSG_EOF);
696 packet_send();
5260325f 697 }
698 } else if (escape_char == -1) {
aa3378df 699 /*
700 * Normal successful read, and no escape character.
701 * Just append the data to buffer.
702 */
5260325f 703 buffer_append(&stdin_buffer, buf, len);
5260325f 704 } else {
aa3378df 705 /*
706 * Normal, successful read. But we have an escape character
707 * and have to process the characters one by one.
708 */
7e8911cd 709 if (process_escapes(&stdin_buffer, &stdout_buffer,
710 &stderr_buffer, buf, len) == -1)
2e73a022 711 return;
5260325f 712 }
713 }
8efc0c15 714}
715
6ae2364d 716void
5260325f 717client_process_output(fd_set * writeset)
8efc0c15 718{
5260325f 719 int len;
720 char buf[100];
721
722 /* Write buffered output to stdout. */
723 if (FD_ISSET(fileno(stdout), writeset)) {
724 /* Write as much data as possible. */
725 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
a408af76 726 buffer_len(&stdout_buffer));
5260325f 727 if (len <= 0) {
728 if (errno == EAGAIN)
729 len = 0;
730 else {
aa3378df 731 /*
732 * An error or EOF was encountered. Put an
733 * error message to stderr buffer.
734 */
5260325f 735 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
736 buffer_append(&stderr_buffer, buf, strlen(buf));
5260325f 737 quit_pending = 1;
738 return;
739 }
740 }
741 /* Consume printed data from the buffer. */
742 buffer_consume(&stdout_buffer, len);
cd332296 743 stdout_bytes += len;
5260325f 744 }
745 /* Write buffered output to stderr. */
746 if (FD_ISSET(fileno(stderr), writeset)) {
747 /* Write as much data as possible. */
748 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
a408af76 749 buffer_len(&stderr_buffer));
5260325f 750 if (len <= 0) {
751 if (errno == EAGAIN)
752 len = 0;
753 else {
aa3378df 754 /* EOF or error, but can't even print error message. */
5260325f 755 quit_pending = 1;
756 return;
757 }
758 }
759 /* Consume printed characters from the buffer. */
760 buffer_consume(&stderr_buffer, len);
cd332296 761 stderr_bytes += len;
8efc0c15 762 }
8efc0c15 763}
764
7368a6c8 765/*
766 * Get packets from the connection input buffer, and process them as long as
767 * there are packets available.
768 *
769 * Any unknown packets received during the actual
770 * session cause the session to terminate. This is
771 * intended to make debugging easier since no
772 * confirmations are sent. Any compatible protocol
773 * extensions must be negotiated during the
774 * preparatory phase.
775 */
776
6ae2364d 777void
5ca51e19 778client_process_buffered_input_packets(void)
7368a6c8 779{
e092ce67 780 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
7368a6c8 781}
782
2e73a022 783/* scan buf[] for '~' before sending data to the peer */
784
785int
786simple_escape_filter(Channel *c, char *buf, int len)
787{
788 /* XXX we assume c->extended is writeable */
789 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
790}
791
eb0dd41f 792void
793client_channel_closed(int id, void *arg)
794{
795 if (id != session_ident)
796 error("client_channel_closed: id %d != session_ident %d",
797 id, session_ident);
798 session_closed = 1;
d0a4c20b 799 if (in_raw_mode)
800 leave_raw_mode();
eb0dd41f 801}
802
aa3378df 803/*
804 * Implements the interactive session with the server. This is called after
805 * the user has been authenticated, and a command has been started on the
806 * remote host. If escape_char != -1, it is the character used as an escape
807 * character for terminating or suspending the session.
808 */
8efc0c15 809
6ae2364d 810int
2e73a022 811client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
8efc0c15 812{
39929cdb 813 fd_set *readset = NULL, *writeset = NULL;
5260325f 814 double start_time, total_time;
c422989b 815 int max_fd = 0, len, rekeying = 0;
5260325f 816 char buf[100];
817
818 debug("Entering interactive session.");
819
820 start_time = get_current_time();
821
822 /* Initialize variables. */
823 escape_pending = 0;
824 last_was_cr = 1;
825 exit_status = -1;
826 stdin_eof = 0;
827 buffer_high = 64 * 1024;
828 connection_in = packet_get_connection_in();
829 connection_out = packet_get_connection_out();
39929cdb 830 max_fd = MAX(connection_in, connection_out);
831
832 if (!compat20) {
833 max_fd = MAX(max_fd, fileno(stdin));
834 max_fd = MAX(max_fd, fileno(stdout));
835 max_fd = MAX(max_fd, fileno(stderr));
836 }
5260325f 837 stdin_bytes = 0;
838 stdout_bytes = 0;
839 stderr_bytes = 0;
840 quit_pending = 0;
841 escape_char = escape_char_arg;
842
843 /* Initialize buffers. */
844 buffer_init(&stdin_buffer);
845 buffer_init(&stdout_buffer);
846 buffer_init(&stderr_buffer);
847
7368a6c8 848 client_init_dispatch();
849
5260325f 850 /* Set signal handlers to restore non-blocking mode. */
851 signal(SIGINT, signal_handler);
852 signal(SIGQUIT, signal_handler);
853 signal(SIGTERM, signal_handler);
854 signal(SIGPIPE, SIG_IGN);
855 if (have_pty)
856 signal(SIGWINCH, window_change_handler);
857
5260325f 858 if (have_pty)
859 enter_raw_mode();
860
1fc8ccdf 861 if (compat20) {
862 session_ident = ssh2_chan_id;
863 if (escape_char != -1)
864 channel_register_filter(session_ident,
865 simple_escape_filter);
eb0dd41f 866 if (session_ident != -1)
867 channel_register_cleanup(session_ident,
868 client_channel_closed);
1fc8ccdf 869 } else {
870 /* Check if we should immediately send eof on stdin. */
8ce64345 871 client_check_initial_eof_on_stdin();
1fc8ccdf 872 }
2e73a022 873
5260325f 874 /* Main loop of the client for the interactive session mode. */
875 while (!quit_pending) {
5260325f 876
aa3378df 877 /* Process buffered packets sent by the server. */
5260325f 878 client_process_buffered_input_packets();
879
eb0dd41f 880 if (compat20 && session_closed && !channel_still_open())
8ce64345 881 break;
eb0dd41f 882
883 rekeying = (xxx_kex != NULL && !xxx_kex->done);
8ce64345 884
c422989b 885 if (rekeying) {
886 debug("rekeying in progress");
887 } else {
888 /*
889 * Make packets of buffered stdin data, and buffer
890 * them for sending to the server.
891 */
892 if (!compat20)
893 client_make_packets_from_stdin_data();
5260325f 894
c422989b 895 /*
896 * Make packets from buffered channel data, and
897 * enqueue them for sending to the server.
898 */
899 if (packet_not_very_much_data_to_write())
900 channel_output_poll();
5260325f 901
c422989b 902 /*
903 * Check if the window size has changed, and buffer a
904 * message about it to the server if so.
905 */
906 client_check_window_change();
5260325f 907
c422989b 908 if (quit_pending)
909 break;
910 }
aa3378df 911 /*
912 * Wait until we have something to do (something becomes
913 * available on one of the descriptors).
914 */
c422989b 915 client_wait_until_can_do_something(&readset, &writeset,
916 &max_fd, rekeying);
5260325f 917
918 if (quit_pending)
919 break;
920
c422989b 921 /* Do channel operations unless rekeying in progress. */
922 if (!rekeying) {
923 channel_after_select(readset, writeset);
924
925 if (need_rekeying) {
926 debug("user requests rekeying");
927 xxx_kex->done = 0;
928 kex_send_kexinit(xxx_kex);
929 need_rekeying = 0;
930 }
931 }
5260325f 932
8ce64345 933 /* Buffer input from the connection. */
39929cdb 934 client_process_net_input(readset);
5260325f 935
8ce64345 936 if (quit_pending)
937 break;
938
939 if (!compat20) {
940 /* Buffer data from stdin */
39929cdb 941 client_process_input(readset);
8ce64345 942 /*
943 * Process output to stdout and stderr. Output to
944 * the connection is processed elsewhere (above).
945 */
39929cdb 946 client_process_output(writeset);
8ce64345 947 }
5260325f 948
aa3378df 949 /* Send as much buffered packet data as possible to the sender. */
39929cdb 950 if (FD_ISSET(connection_out, writeset))
5260325f 951 packet_write_poll();
952 }
39929cdb 953 if (readset)
954 xfree(readset);
955 if (writeset)
956 xfree(writeset);
5260325f 957
958 /* Terminate the session. */
959
960 /* Stop watching for window change. */
961 if (have_pty)
962 signal(SIGWINCH, SIG_DFL);
963
964 /* Stop listening for connections. */
965 channel_stop_listening();
966
aa3378df 967 /*
968 * In interactive mode (with pseudo tty) display a message indicating
969 * that the connection has been closed.
970 */
5260325f 971 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
972 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
973 buffer_append(&stderr_buffer, buf, strlen(buf));
8efc0c15 974 }
5260325f 975 /* Output any buffered data for stdout. */
976 while (buffer_len(&stdout_buffer) > 0) {
977 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
a408af76 978 buffer_len(&stdout_buffer));
5260325f 979 if (len <= 0) {
980 error("Write failed flushing stdout buffer.");
981 break;
982 }
983 buffer_consume(&stdout_buffer, len);
cd332296 984 stdout_bytes += len;
8efc0c15 985 }
5260325f 986
987 /* Output any buffered data for stderr. */
988 while (buffer_len(&stderr_buffer) > 0) {
989 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
a408af76 990 buffer_len(&stderr_buffer));
5260325f 991 if (len <= 0) {
992 error("Write failed flushing stderr buffer.");
993 break;
994 }
995 buffer_consume(&stderr_buffer, len);
cd332296 996 stderr_bytes += len;
5260325f 997 }
998
5260325f 999 if (have_pty)
1000 leave_raw_mode();
1001
1002 /* Clear and free any buffers. */
1003 memset(buf, 0, sizeof(buf));
1004 buffer_free(&stdin_buffer);
1005 buffer_free(&stdout_buffer);
1006 buffer_free(&stderr_buffer);
1007
1008 /* Report bytes transferred, and transfer rates. */
1009 total_time = get_current_time() - start_time;
1010 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
1011 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
1012 if (total_time > 0)
1013 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
1014 stdin_bytes / total_time, stdout_bytes / total_time,
1015 stderr_bytes / total_time);
1016
1017 /* Return the exit status of the program. */
1018 debug("Exit status %d", exit_status);
1019 return exit_status;
8efc0c15 1020}
7368a6c8 1021
1022/*********/
1023
1024void
188adeb2 1025client_input_stdout_data(int type, int plen, void *ctxt)
7368a6c8 1026{
1e3b8b07 1027 u_int data_len;
7368a6c8 1028 char *data = packet_get_string(&data_len);
1029 packet_integrity_check(plen, 4 + data_len, type);
1030 buffer_append(&stdout_buffer, data, data_len);
7368a6c8 1031 memset(data, 0, data_len);
1032 xfree(data);
1033}
1034void
188adeb2 1035client_input_stderr_data(int type, int plen, void *ctxt)
7368a6c8 1036{
1e3b8b07 1037 u_int data_len;
7368a6c8 1038 char *data = packet_get_string(&data_len);
1039 packet_integrity_check(plen, 4 + data_len, type);
1040 buffer_append(&stderr_buffer, data, data_len);
7368a6c8 1041 memset(data, 0, data_len);
1042 xfree(data);
1043}
1044void
188adeb2 1045client_input_exit_status(int type, int plen, void *ctxt)
7368a6c8 1046{
1047 packet_integrity_check(plen, 4, type);
1048 exit_status = packet_get_int();
1049 /* Acknowledge the exit. */
1050 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1051 packet_send();
1052 /*
1053 * Must wait for packet to be sent since we are
1054 * exiting the loop.
1055 */
1056 packet_write_wait();
1057 /* Flag that we want to exit. */
1058 quit_pending = 1;
1059}
1060
fa08c86b 1061Channel *
1062client_request_forwarded_tcpip(const char *request_type, int rchan)
1063{
1064 Channel* c = NULL;
1065 char *listen_address, *originator_address;
1066 int listen_port, originator_port;
1067 int sock, newch;
1068
1069 /* Get rest of the packet */
1070 listen_address = packet_get_string(NULL);
1071 listen_port = packet_get_int();
1072 originator_address = packet_get_string(NULL);
1073 originator_port = packet_get_int();
1074 packet_done();
1075
1076 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1077 listen_address, listen_port, originator_address, originator_port);
1078
1079 sock = channel_connect_by_listen_adress(listen_port);
1080 if (sock >= 0) {
1081 newch = channel_new("forwarded-tcpip",
97fb6912 1082 SSH_CHANNEL_CONNECTING, sock, sock, -1,
fa08c86b 1083 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1084 xstrdup(originator_address), 1);
1085 c = channel_lookup(newch);
1086 }
1087 xfree(originator_address);
1088 xfree(listen_address);
1089 return c;
1090}
1091
1092Channel*
1093client_request_x11(const char *request_type, int rchan)
1094{
1095 Channel *c = NULL;
1096 char *originator;
1097 int originator_port;
1098 int sock, newch;
1099
1100 if (!options.forward_x11) {
1101 error("Warning: ssh server tried X11 forwarding.");
1102 error("Warning: this is probably a break in attempt by a malicious server.");
1103 return NULL;
1104 }
1105 originator = packet_get_string(NULL);
1106 if (datafellows & SSH_BUG_X11FWD) {
1107 debug2("buggy server: x11 request w/o originator_port");
1108 originator_port = 0;
1109 } else {
1110 originator_port = packet_get_int();
1111 }
1112 packet_done();
1113 /* XXX check permission */
865ac82e 1114 debug("client_request_x11: request from %s %d", originator,
1115 originator_port);
fa08c86b 1116 sock = x11_connect_display();
1117 if (sock >= 0) {
1118 newch = channel_new("x11",
1119 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1120 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0,
1121 xstrdup("x11"), 1);
1122 c = channel_lookup(newch);
1123 }
1124 xfree(originator);
1125 return c;
1126}
1127
1128Channel*
1129client_request_agent(const char *request_type, int rchan)
1130{
1131 Channel *c = NULL;
1132 int sock, newch;
1133
1134 if (!options.forward_agent) {
1135 error("Warning: ssh server tried agent forwarding.");
1136 error("Warning: this is probably a break in attempt by a malicious server.");
1137 return NULL;
1138 }
1139 sock = ssh_get_authentication_socket();
1140 if (sock >= 0) {
1141 newch = channel_new("authentication agent connection",
1142 SSH_CHANNEL_OPEN, sock, sock, -1,
1143 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1144 xstrdup("authentication agent connection"), 1);
1145 c = channel_lookup(newch);
1146 }
1147 return c;
1148}
1149
0b242b12 1150/* XXXX move to generic input handler */
1151void
188adeb2 1152client_input_channel_open(int type, int plen, void *ctxt)
0b242b12 1153{
1154 Channel *c = NULL;
1155 char *ctype;
1e3b8b07 1156 u_int len;
0b242b12 1157 int rchan;
1158 int rmaxpack;
1159 int rwindow;
1160
1161 ctype = packet_get_string(&len);
1162 rchan = packet_get_int();
1163 rwindow = packet_get_int();
1164 rmaxpack = packet_get_int();
1165
1d1ffb87 1166 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
0b242b12 1167 ctype, rchan, rwindow, rmaxpack);
1168
fa08c86b 1169 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1170 c = client_request_forwarded_tcpip(ctype, rchan);
1171 } else if (strcmp(ctype, "x11") == 0) {
1172 c = client_request_x11(ctype, rchan);
1173 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1174 c = client_request_agent(ctype, rchan);
0b242b12 1175 }
1176/* XXX duplicate : */
1177 if (c != NULL) {
1178 debug("confirm %s", ctype);
1179 c->remote_id = rchan;
1180 c->remote_window = rwindow;
1181 c->remote_maxpacket = rmaxpack;
1182
1183 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1184 packet_put_int(c->remote_id);
1185 packet_put_int(c->self);
1186 packet_put_int(c->local_window);
1187 packet_put_int(c->local_maxpacket);
1188 packet_send();
1189 } else {
1190 debug("failure %s", ctype);
1191 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1192 packet_put_int(rchan);
1193 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1194 packet_put_cstring("bla bla");
1195 packet_put_cstring("");
1196 packet_send();
1197 }
1198 xfree(ctype);
1199}
1fc8ccdf 1200void
1201client_input_channel_req(int type, int plen, void *ctxt)
1202{
1203 Channel *c = NULL;
1204 int id, reply, success = 0;
1205 char *rtype;
1206
1207 id = packet_get_int();
1208 rtype = packet_get_string(NULL);
1209 reply = packet_get_char();
1210
1211 debug("client_input_channel_req: channel %d rtype %s reply %d",
1212 id, rtype, reply);
1213
1214 if (session_ident == -1) {
1215 error("client_input_channel_req: no channel %d", session_ident);
1216 } else if (id != session_ident) {
1217 error("client_input_channel_req: channel %d: wrong channel: %d",
1218 session_ident, id);
1219 }
1220 c = channel_lookup(id);
1221 if (c == NULL) {
1222 error("client_input_channel_req: channel %d: unknown channel", id);
1223 } else if (strcmp(rtype, "exit-status") == 0) {
1224 success = 1;
1225 exit_status = packet_get_int();
1226 packet_done();
1227 }
1228 if (reply) {
1229 packet_start(success ?
1230 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1231 packet_put_int(c->remote_id);
1232 packet_send();
1233 }
1234 xfree(rtype);
1235}
0b242b12 1236
6ae2364d 1237void
5ca51e19 1238client_init_dispatch_20(void)
8ce64345 1239{
7a37c112 1240 dispatch_init(&dispatch_protocol_error);
8ce64345 1241 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1242 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1243 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1244 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
0b242b12 1245 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
8ce64345 1246 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1247 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1fc8ccdf 1248 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
8ce64345 1249 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
7a37c112 1250
1251 /* rekeying */
1252 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
8ce64345 1253}
6ae2364d 1254void
5ca51e19 1255client_init_dispatch_13(void)
7368a6c8 1256{
1257 dispatch_init(NULL);
1258 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1259 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1260 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
7368a6c8 1261 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1262 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1263 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
7368a6c8 1264 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1265 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1266 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
a22aff1f 1267
1268 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
1269 &auth_input_open_request : &deny_input_open);
1270 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1271 &x11_input_open : &deny_input_open);
7368a6c8 1272}
6ae2364d 1273void
5ca51e19 1274client_init_dispatch_15(void)
7368a6c8 1275{
1276 client_init_dispatch_13();
1277 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1278 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1279}
6ae2364d 1280void
5ca51e19 1281client_init_dispatch(void)
7368a6c8 1282{
8ce64345 1283 if (compat20)
1284 client_init_dispatch_20();
1285 else if (compat13)
7368a6c8 1286 client_init_dispatch_13();
1287 else
1288 client_init_dispatch_15();
1289}
This page took 3.348666 seconds and 5 git commands to generate.