]> andersk Git - gssapi-openssh.git/blame - openssh/clientloop.c
merged OpenSSH 5.2p1 to trunk
[gssapi-openssh.git] / openssh / clientloop.c
CommitLineData
5262cbfb 1/* $OpenBSD: clientloop.c,v 1.209 2009/02/12 03:00:56 djm Exp $ */
3c0ef626 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * The main loop for the interactive session (client side).
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
15 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 *
38 * SSH2 support added by Markus Friedl.
39 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
40 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 */
61
62#include "includes.h"
3c0ef626 63
30460aeb 64#include <sys/types.h>
65#include <sys/ioctl.h>
66#include <sys/param.h>
67#ifdef HAVE_SYS_STAT_H
68# include <sys/stat.h>
69#endif
70#ifdef HAVE_SYS_TIME_H
71# include <sys/time.h>
72#endif
73#include <sys/socket.h>
74
75#include <ctype.h>
76#include <errno.h>
77#ifdef HAVE_PATHS_H
78#include <paths.h>
79#endif
80#include <signal.h>
81#include <stdarg.h>
82#include <stdio.h>
83#include <stdlib.h>
84#include <string.h>
85#include <termios.h>
86#include <pwd.h>
87#include <unistd.h>
88
5156b1a1 89#include "openbsd-compat/sys-queue.h"
30460aeb 90#include "xmalloc.h"
3c0ef626 91#include "ssh.h"
92#include "ssh1.h"
93#include "ssh2.h"
3c0ef626 94#include "packet.h"
95#include "buffer.h"
96#include "compat.h"
97#include "channels.h"
98#include "dispatch.h"
3c0ef626 99#include "key.h"
30460aeb 100#include "cipher.h"
3c0ef626 101#include "kex.h"
102#include "log.h"
103#include "readconf.h"
104#include "clientloop.h"
a7213e65 105#include "sshconnect.h"
3c0ef626 106#include "authfd.h"
107#include "atomicio.h"
a7213e65 108#include "sshpty.h"
3c0ef626 109#include "misc.h"
a7213e65 110#include "match.h"
111#include "msg.h"
3c0ef626 112
113/* import options */
114extern Options options;
115
116/* Flag indicating that stdin should be redirected from /dev/null. */
117extern int stdin_null_flag;
118
a7213e65 119/* Flag indicating that no shell has been requested */
120extern int no_shell_flag;
121
122/* Control socket */
5156b1a1 123extern int muxserver_sock;
a7213e65 124
3c0ef626 125/*
126 * Name of the host we are connecting to. This is the name given on the
127 * command line, or the HostName specified for the user-supplied name in a
128 * configuration file.
129 */
130extern char *host;
131
132/*
133 * Flag to indicate that we have received a window change signal which has
134 * not yet been processed. This will cause a message indicating the new
135 * window size to be sent to the server a little later. This is volatile
136 * because this is updated in a signal handler.
137 */
a7213e65 138static volatile sig_atomic_t received_window_change_signal = 0;
139static volatile sig_atomic_t received_signal = 0;
3c0ef626 140
a7213e65 141/* Flag indicating whether the user's terminal is in non-blocking mode. */
3c0ef626 142static int in_non_blocking_mode = 0;
143
144/* Common data for the client loop code. */
30460aeb 145static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
5156b1a1 146static int escape_char1; /* Escape character. (proto1 only) */
147static int escape_pending1; /* Last character was an escape (proto1 only) */
3c0ef626 148static int last_was_cr; /* Last character was a newline. */
5156b1a1 149static int exit_status; /* Used to store the command exit status. */
150static int stdin_eof; /* EOF has been encountered on stderr. */
3c0ef626 151static Buffer stdin_buffer; /* Buffer for stdin data. */
152static Buffer stdout_buffer; /* Buffer for stdout data. */
153static Buffer stderr_buffer; /* Buffer for stderr data. */
3c0ef626 154static u_int buffer_high;/* Soft max buffer size. */
155static int connection_in; /* Connection to server (input). */
156static int connection_out; /* Connection to server (output). */
157static int need_rekeying; /* Set to non-zero if rekeying is requested. */
158static int session_closed = 0; /* In SSH2: login session closed. */
159
160static void client_init_dispatch(void);
161int session_ident = -1;
162
5156b1a1 163/* Track escape per proto2 channel */
164struct escape_filter_ctx {
165 int escape_pending;
166 int escape_char;
a7213e65 167};
168
5156b1a1 169/* Context for channel confirmation replies */
170struct channel_reply_ctx {
171 const char *request_type;
172 int id, do_close;
173};
174
175/* Global request success/failure callbacks */
176struct global_confirm {
177 TAILQ_ENTRY(global_confirm) entry;
178 global_confirm_cb *cb;
179 void *ctx;
180 int ref_count;
181};
182TAILQ_HEAD(global_confirms, global_confirm);
183static struct global_confirms global_confirms =
184 TAILQ_HEAD_INITIALIZER(global_confirms);
185
3c0ef626 186/*XXX*/
187extern Kex *xxx_kex;
188
a7213e65 189void ssh_process_session2_setup(int, int, int, Buffer *);
190
3c0ef626 191/* Restores stdin to blocking mode. */
192
193static void
194leave_non_blocking(void)
195{
196 if (in_non_blocking_mode) {
a7213e65 197 unset_nonblock(fileno(stdin));
3c0ef626 198 in_non_blocking_mode = 0;
3c0ef626 199 }
200}
201
202/* Puts stdin terminal in non-blocking mode. */
203
204static void
205enter_non_blocking(void)
206{
207 in_non_blocking_mode = 1;
a7213e65 208 set_nonblock(fileno(stdin));
3c0ef626 209}
210
211/*
212 * Signal handler for the window change signal (SIGWINCH). This just sets a
213 * flag indicating that the window has changed.
214 */
30460aeb 215/*ARGSUSED */
3c0ef626 216static void
217window_change_handler(int sig)
218{
219 received_window_change_signal = 1;
220 signal(SIGWINCH, window_change_handler);
221}
222
223/*
224 * Signal handler for signals that cause the program to terminate. These
225 * signals must be trapped to restore terminal modes.
226 */
30460aeb 227/*ARGSUSED */
3c0ef626 228static void
229signal_handler(int sig)
230{
231 received_signal = sig;
232 quit_pending = 1;
233}
234
235/*
236 * Returns current time in seconds from Jan 1, 1970 with the maximum
237 * available resolution.
238 */
239
240static double
241get_current_time(void)
242{
243 struct timeval tv;
244 gettimeofday(&tv, NULL);
245 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
246}
247
a7213e65 248#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
249void
250client_x11_get_proto(const char *display, const char *xauth_path,
251 u_int trusted, char **_proto, char **_data)
252{
253 char cmd[1024];
254 char line[512];
255 char xdisplay[512];
256 static char proto[512], data[512];
257 FILE *f;
258 int got_data = 0, generated = 0, do_unlink = 0, i;
259 char *xauthdir, *xauthfile;
260 struct stat st;
261
262 xauthdir = xauthfile = NULL;
263 *_proto = proto;
264 *_data = data;
265 proto[0] = data[0] = '\0';
266
267 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
268 debug("No xauth program.");
269 } else {
270 if (display == NULL) {
271 debug("x11_get_proto: DISPLAY not set");
272 return;
273 }
274 /*
275 * Handle FamilyLocal case where $DISPLAY does
276 * not match an authorization entry. For this we
277 * just try "xauth list unix:displaynum.screennum".
278 * XXX: "localhost" match to determine FamilyLocal
279 * is not perfect.
280 */
281 if (strncmp(display, "localhost:", 10) == 0) {
282 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
283 display + 10);
284 display = xdisplay;
285 }
286 if (trusted == 0) {
287 xauthdir = xmalloc(MAXPATHLEN);
288 xauthfile = xmalloc(MAXPATHLEN);
289 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
290 if (mkdtemp(xauthdir) != NULL) {
291 do_unlink = 1;
292 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
293 xauthdir);
294 snprintf(cmd, sizeof(cmd),
295 "%s -f %s generate %s " SSH_X11_PROTO
296 " untrusted timeout 1200 2>" _PATH_DEVNULL,
297 xauth_path, xauthfile, display);
298 debug2("x11_get_proto: %s", cmd);
299 if (system(cmd) == 0)
300 generated = 1;
301 }
302 }
fa0f0f45 303
304 /*
305 * When in untrusted mode, we read the cookie only if it was
306 * successfully generated as an untrusted one in the step
307 * above.
308 */
309 if (trusted || generated) {
310 snprintf(cmd, sizeof(cmd),
311 "%s %s%s list %s 2>" _PATH_DEVNULL,
312 xauth_path,
313 generated ? "-f " : "" ,
314 generated ? xauthfile : "",
315 display);
316 debug2("x11_get_proto: %s", cmd);
317 f = popen(cmd, "r");
318 if (f && fgets(line, sizeof(line), f) &&
319 sscanf(line, "%*s %511s %511s", proto, data) == 2)
320 got_data = 1;
321 if (f)
322 pclose(f);
323 } else
324 error("Warning: untrusted X11 forwarding setup failed: "
325 "xauth key data not generated");
a7213e65 326 }
327
328 if (do_unlink) {
329 unlink(xauthfile);
330 rmdir(xauthdir);
331 }
332 if (xauthdir)
333 xfree(xauthdir);
334 if (xauthfile)
335 xfree(xauthfile);
336
337 /*
338 * If we didn't get authentication data, just make up some
339 * data. The forwarding code will check the validity of the
340 * response anyway, and substitute this data. The X11
341 * server, however, will ignore this fake data and use
342 * whatever authentication mechanisms it was using otherwise
343 * for the local connection.
344 */
345 if (!got_data) {
346 u_int32_t rnd = 0;
347
348 logit("Warning: No xauth data; "
349 "using fake authentication data for X11 forwarding.");
350 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
351 for (i = 0; i < 16; i++) {
352 if (i % 4 == 0)
353 rnd = arc4random();
354 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
355 rnd & 0xff);
356 rnd >>= 8;
357 }
358 }
359}
360
3c0ef626 361/*
362 * This is called when the interactive is entered. This checks if there is
363 * an EOF coming on stdin. We must check this explicitly, as select() does
364 * not appear to wake up when redirecting from /dev/null.
365 */
366
367static void
368client_check_initial_eof_on_stdin(void)
369{
370 int len;
371 char buf[1];
372
373 /*
374 * If standard input is to be "redirected from /dev/null", we simply
375 * mark that we have seen an EOF and send an EOF message to the
376 * server. Otherwise, we try to read a single character; it appears
377 * that for some files, such /dev/null, select() never wakes up for
378 * read for this descriptor, which means that we never get EOF. This
379 * way we will get the EOF if stdin comes from /dev/null or similar.
380 */
381 if (stdin_null_flag) {
382 /* Fake EOF on stdin. */
383 debug("Sending eof.");
384 stdin_eof = 1;
385 packet_start(SSH_CMSG_EOF);
386 packet_send();
387 } else {
388 enter_non_blocking();
389
390 /* Check for immediate EOF on stdin. */
391 len = read(fileno(stdin), buf, 1);
392 if (len == 0) {
5156b1a1 393 /*
394 * EOF. Record that we have seen it and send
395 * EOF to server.
396 */
3c0ef626 397 debug("Sending eof.");
398 stdin_eof = 1;
399 packet_start(SSH_CMSG_EOF);
400 packet_send();
401 } else if (len > 0) {
402 /*
403 * Got data. We must store the data in the buffer,
404 * and also process it as an escape character if
405 * appropriate.
406 */
5156b1a1 407 if ((u_char) buf[0] == escape_char1)
408 escape_pending1 = 1;
3c0ef626 409 else
410 buffer_append(&stdin_buffer, buf, 1);
411 }
412 leave_non_blocking();
413 }
414}
415
416
417/*
418 * Make packets from buffered stdin data, and buffer them for sending to the
419 * connection.
420 */
421
422static void
423client_make_packets_from_stdin_data(void)
424{
425 u_int len;
426
427 /* Send buffered stdin data to the server. */
428 while (buffer_len(&stdin_buffer) > 0 &&
a7213e65 429 packet_not_very_much_data_to_write()) {
3c0ef626 430 len = buffer_len(&stdin_buffer);
431 /* Keep the packets at reasonable size. */
432 if (len > packet_get_maxsize())
433 len = packet_get_maxsize();
434 packet_start(SSH_CMSG_STDIN_DATA);
435 packet_put_string(buffer_ptr(&stdin_buffer), len);
436 packet_send();
437 buffer_consume(&stdin_buffer, len);
3c0ef626 438 /* If we have a pending EOF, send it now. */
439 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
440 packet_start(SSH_CMSG_EOF);
441 packet_send();
442 }
443 }
444}
445
446/*
447 * Checks if the client window has changed, and sends a packet about it to
448 * the server if so. The actual change is detected elsewhere (by a software
449 * interrupt on Unix); this just checks the flag and sends a message if
450 * appropriate.
451 */
452
453static void
454client_check_window_change(void)
455{
456 struct winsize ws;
457
458 if (! received_window_change_signal)
459 return;
460 /** XXX race */
461 received_window_change_signal = 0;
462
3c0ef626 463 debug2("client_check_window_change: changed");
464
465 if (compat20) {
a7213e65 466 channel_send_window_changes();
3c0ef626 467 } else {
a7213e65 468 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
469 return;
3c0ef626 470 packet_start(SSH_CMSG_WINDOW_SIZE);
30460aeb 471 packet_put_int((u_int)ws.ws_row);
472 packet_put_int((u_int)ws.ws_col);
473 packet_put_int((u_int)ws.ws_xpixel);
474 packet_put_int((u_int)ws.ws_ypixel);
3c0ef626 475 packet_send();
476 }
477}
478
a7213e65 479static void
480client_global_request_reply(int type, u_int32_t seq, void *ctxt)
481{
5156b1a1 482 struct global_confirm *gc;
483
484 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
485 return;
486 if (gc->cb != NULL)
487 gc->cb(type, seq, gc->ctx);
488 if (--gc->ref_count <= 0) {
489 TAILQ_REMOVE(&global_confirms, gc, entry);
490 bzero(gc, sizeof(*gc));
491 xfree(gc);
492 }
493
e74dc197 494 keep_alive_timeouts = 0;
a7213e65 495}
496
497static void
498server_alive_check(void)
499{
e74dc197 500 if (++keep_alive_timeouts > options.server_alive_count_max) {
240debe0 501 logit("Timeout, server not responding.");
502 cleanup_exit(255);
503 }
a7213e65 504 packet_start(SSH2_MSG_GLOBAL_REQUEST);
505 packet_put_cstring("keepalive@openssh.com");
506 packet_put_char(1); /* boolean: want reply */
507 packet_send();
5156b1a1 508 /* Insert an empty placeholder to maintain ordering */
509 client_register_global_confirm(NULL, NULL);
a7213e65 510}
511
3c0ef626 512/*
513 * Waits until the client can do something (some data becomes available on
514 * one of the file descriptors).
515 */
3c0ef626 516static void
517client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
a7213e65 518 int *maxfdp, u_int *nallocp, int rekeying)
3c0ef626 519{
a7213e65 520 struct timeval tv, *tvp;
521 int ret;
522
3c0ef626 523 /* Add any selections by the channel mechanism. */
524 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
525
526 if (!compat20) {
527 /* Read from the connection, unless our buffers are full. */
528 if (buffer_len(&stdout_buffer) < buffer_high &&
529 buffer_len(&stderr_buffer) < buffer_high &&
530 channel_not_very_much_buffered_data())
531 FD_SET(connection_in, *readsetp);
532 /*
533 * Read from stdin, unless we have seen EOF or have very much
534 * buffered data to send to the server.
535 */
536 if (!stdin_eof && packet_not_very_much_data_to_write())
537 FD_SET(fileno(stdin), *readsetp);
538
539 /* Select stdout/stderr if have data in buffer. */
540 if (buffer_len(&stdout_buffer) > 0)
541 FD_SET(fileno(stdout), *writesetp);
542 if (buffer_len(&stderr_buffer) > 0)
543 FD_SET(fileno(stderr), *writesetp);
544 } else {
545 /* channel_prepare_select could have closed the last channel */
546 if (session_closed && !channel_still_open() &&
547 !packet_have_data_to_write()) {
548 /* clear mask since we did not call select() */
549 memset(*readsetp, 0, *nallocp);
550 memset(*writesetp, 0, *nallocp);
551 return;
552 } else {
553 FD_SET(connection_in, *readsetp);
554 }
555 }
556
557 /* Select server connection if have data to write to the server. */
558 if (packet_have_data_to_write())
559 FD_SET(connection_out, *writesetp);
560
5156b1a1 561 if (muxserver_sock != -1)
562 FD_SET(muxserver_sock, *readsetp);
a7213e65 563
3c0ef626 564 /*
565 * Wait for something to happen. This will suspend the process until
566 * some selected descriptor can be read, written, or has some other
a7213e65 567 * event pending.
3c0ef626 568 */
569
a7213e65 570 if (options.server_alive_interval == 0 || !compat20)
571 tvp = NULL;
572 else {
573 tv.tv_sec = options.server_alive_interval;
574 tv.tv_usec = 0;
575 tvp = &tv;
576 }
577 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
578 if (ret < 0) {
3c0ef626 579 char buf[100];
580
581 /*
582 * We have to clear the select masks, because we return.
583 * We have to return, because the mainloop checks for the flags
584 * set by the signal handlers.
585 */
586 memset(*readsetp, 0, *nallocp);
587 memset(*writesetp, 0, *nallocp);
588
589 if (errno == EINTR)
590 return;
591 /* Note: we might still have data in the buffers. */
592 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
593 buffer_append(&stderr_buffer, buf, strlen(buf));
594 quit_pending = 1;
a7213e65 595 } else if (ret == 0)
596 server_alive_check();
3c0ef626 597}
598
599static void
600client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
601{
3c0ef626 602 /* Flush stdout and stderr buffers. */
603 if (buffer_len(bout) > 0)
5156b1a1 604 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
605 buffer_len(bout));
3c0ef626 606 if (buffer_len(berr) > 0)
5156b1a1 607 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
608 buffer_len(berr));
3c0ef626 609
610 leave_raw_mode();
611
612 /*
613 * Free (and clear) the buffer to reduce the amount of data that gets
614 * written to swap.
615 */
616 buffer_free(bin);
617 buffer_free(bout);
618 buffer_free(berr);
619
3c0ef626 620 /* Send the suspend signal to the program itself. */
621 kill(getpid(), SIGTSTP);
622
a7213e65 623 /* Reset window sizes in case they have changed */
624 received_window_change_signal = 1;
3c0ef626 625
626 /* OK, we have been continued by the user. Reinitialize buffers. */
627 buffer_init(bin);
628 buffer_init(bout);
629 buffer_init(berr);
630
631 enter_raw_mode();
632}
633
634static void
30460aeb 635client_process_net_input(fd_set *readset)
3c0ef626 636{
637 int len;
638 char buf[8192];
639
640 /*
641 * Read input from the server, and add any such data to the buffer of
642 * the packet subsystem.
643 */
644 if (FD_ISSET(connection_in, readset)) {
645 /* Read as much as possible. */
646 len = read(connection_in, buf, sizeof(buf));
647 if (len == 0) {
5156b1a1 648 /*
649 * Received EOF. The remote host has closed the
650 * connection.
651 */
652 snprintf(buf, sizeof buf,
653 "Connection to %.300s closed by remote host.\r\n",
654 host);
3c0ef626 655 buffer_append(&stderr_buffer, buf, strlen(buf));
656 quit_pending = 1;
657 return;
658 }
659 /*
660 * There is a kernel bug on Solaris that causes select to
661 * sometimes wake up even though there is no data available.
662 */
5156b1a1 663 if (len < 0 &&
664 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
3c0ef626 665 len = 0;
666
667 if (len < 0) {
5156b1a1 668 /*
669 * An error has encountered. Perhaps there is a
670 * network problem.
671 */
672 snprintf(buf, sizeof buf,
673 "Read from remote host %.300s: %.100s\r\n",
674 host, strerror(errno));
3c0ef626 675 buffer_append(&stderr_buffer, buf, strlen(buf));
676 quit_pending = 1;
677 return;
678 }
679 packet_process_incoming(buf, len);
680 }
681}
682
a7213e65 683static void
5156b1a1 684client_status_confirm(int type, Channel *c, void *ctx)
a7213e65 685{
5156b1a1 686 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
687 char errmsg[256];
688 int tochan;
689
690 /* XXX supress on mux _client_ quietmode */
691 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
692 c->ctl_fd != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
693
694 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
695 debug2("%s request accepted on channel %d",
696 cr->request_type, c->self);
697 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
698 if (tochan) {
699 snprintf(errmsg, sizeof(errmsg),
700 "%s request failed\r\n", cr->request_type);
701 } else {
702 snprintf(errmsg, sizeof(errmsg),
703 "%s request failed on channel %d",
704 cr->request_type, c->self);
705 }
706 /* If error occurred on primary session channel, then exit */
707 if (cr->do_close && c->self == session_ident)
708 fatal("%s", errmsg);
709 /* If error occurred on mux client, append to their stderr */
710 if (tochan)
711 buffer_append(&c->extended, errmsg, strlen(errmsg));
712 else
713 error("%s", errmsg);
714 if (cr->do_close) {
715 chan_read_failed(c);
716 chan_write_failed(c);
717 }
a7213e65 718 }
5156b1a1 719 xfree(cr);
a7213e65 720}
721
722static void
5156b1a1 723client_abandon_status_confirm(Channel *c, void *ctx)
a7213e65 724{
5156b1a1 725 xfree(ctx);
a7213e65 726}
727
728static void
5156b1a1 729client_expect_confirm(int id, const char *request, int do_close)
a7213e65 730{
5156b1a1 731 struct channel_reply_ctx *cr = xmalloc(sizeof(*cr));
a7213e65 732
5156b1a1 733 cr->request_type = request;
734 cr->do_close = do_close;
a7213e65 735
5156b1a1 736 channel_register_status_confirm(id, client_status_confirm,
737 client_abandon_status_confirm, cr);
738}
a7213e65 739
5156b1a1 740void
741client_register_global_confirm(global_confirm_cb *cb, void *ctx)
742{
743 struct global_confirm *gc, *last_gc;
744
745 /* Coalesce identical callbacks */
746 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
747 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
748 if (++last_gc->ref_count >= INT_MAX)
749 fatal("%s: last_gc->ref_count = %d",
750 __func__, last_gc->ref_count);
a7213e65 751 return;
752 }
a7213e65 753
5156b1a1 754 gc = xmalloc(sizeof(*gc));
755 gc->cb = cb;
756 gc->ctx = ctx;
757 gc->ref_count = 1;
758 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
a7213e65 759}
760
761static void
762process_cmdline(void)
763{
764 void (*handler)(int);
765 char *s, *cmd, *cancel_host;
766 int delete = 0;
5262cbfb 767 int local = 0, remote = 0, dynamic = 0;
768 int cancel_port;
a7213e65 769 Forward fwd;
770
e74dc197 771 bzero(&fwd, sizeof(fwd));
772 fwd.listen_host = fwd.connect_host = NULL;
773
a7213e65 774 leave_raw_mode();
775 handler = signal(SIGINT, SIG_IGN);
776 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
777 if (s == NULL)
778 goto out;
fa0f0f45 779 while (isspace(*s))
a7213e65 780 s++;
781 if (*s == '-')
782 s++; /* Skip cmdline '-', if any */
783 if (*s == '\0')
784 goto out;
785
786 if (*s == 'h' || *s == 'H' || *s == '?') {
787 logit("Commands:");
30460aeb 788 logit(" -L[bind_address:]port:host:hostport "
789 "Request local forward");
790 logit(" -R[bind_address:]port:host:hostport "
791 "Request remote forward");
5262cbfb 792 logit(" -D[bind_address:]port "
793 "Request dynamic forward");
30460aeb 794 logit(" -KR[bind_address:]port "
795 "Cancel remote forward");
a7213e65 796 if (!options.permit_local_command)
797 goto out;
30460aeb 798 logit(" !args "
799 "Execute local command");
a7213e65 800 goto out;
801 }
802
803 if (*s == '!' && options.permit_local_command) {
804 s++;
805 ssh_local_cmd(s);
806 goto out;
807 }
808
809 if (*s == 'K') {
810 delete = 1;
811 s++;
812 }
5262cbfb 813 if (*s == 'L')
814 local = 1;
815 else if (*s == 'R')
816 remote = 1;
817 else if (*s == 'D')
818 dynamic = 1;
819 else {
a7213e65 820 logit("Invalid command.");
821 goto out;
822 }
5262cbfb 823
824 if ((local || dynamic) && delete) {
a7213e65 825 logit("Not supported.");
826 goto out;
827 }
5262cbfb 828 if (remote && delete && !compat20) {
a7213e65 829 logit("Not supported for SSH protocol version 1.");
830 goto out;
831 }
832
fa0f0f45 833 while (isspace(*++s))
834 ;
a7213e65 835
836 if (delete) {
837 cancel_port = 0;
838 cancel_host = hpdelim(&s); /* may be NULL */
839 if (s != NULL) {
840 cancel_port = a2port(s);
841 cancel_host = cleanhostname(cancel_host);
842 } else {
843 cancel_port = a2port(cancel_host);
844 cancel_host = NULL;
845 }
5262cbfb 846 if (cancel_port <= 0) {
a7213e65 847 logit("Bad forwarding close port");
848 goto out;
849 }
850 channel_request_rforward_cancel(cancel_host, cancel_port);
851 } else {
5262cbfb 852 if (!parse_forward(&fwd, s, dynamic, remote)) {
a7213e65 853 logit("Bad forwarding specification.");
854 goto out;
855 }
5262cbfb 856 if (local || dynamic) {
a7213e65 857 if (channel_setup_local_fwd_listener(fwd.listen_host,
858 fwd.listen_port, fwd.connect_host,
d3057ca4 859 fwd.connect_port, options.gateway_ports) < 0) {
a7213e65 860 logit("Port forwarding failed.");
861 goto out;
862 }
863 } else {
30460aeb 864 if (channel_request_remote_forwarding(fwd.listen_host,
a7213e65 865 fwd.listen_port, fwd.connect_host,
30460aeb 866 fwd.connect_port) < 0) {
867 logit("Port forwarding failed.");
868 goto out;
869 }
a7213e65 870 }
871
872 logit("Forwarding port.");
873 }
874
875out:
876 signal(SIGINT, handler);
877 enter_raw_mode();
878 if (cmd)
879 xfree(cmd);
e74dc197 880 if (fwd.listen_host != NULL)
881 xfree(fwd.listen_host);
882 if (fwd.connect_host != NULL)
883 xfree(fwd.connect_host);
a7213e65 884}
885
5156b1a1 886/*
887 * Process the characters one by one, call with c==NULL for proto1 case.
888 */
3c0ef626 889static int
5156b1a1 890process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
891 char *buf, int len)
3c0ef626 892{
893 char string[1024];
894 pid_t pid;
895 int bytes = 0;
896 u_int i;
897 u_char ch;
898 char *s;
5156b1a1 899 int *escape_pendingp, escape_char;
900 struct escape_filter_ctx *efc;
3c0ef626 901
5156b1a1 902 if (c == NULL) {
903 escape_pendingp = &escape_pending1;
904 escape_char = escape_char1;
905 } else {
906 if (c->filter_ctx == NULL)
907 return 0;
908 efc = (struct escape_filter_ctx *)c->filter_ctx;
909 escape_pendingp = &efc->escape_pending;
910 escape_char = efc->escape_char;
911 }
912
a7213e65 913 if (len <= 0)
914 return (0);
915
916 for (i = 0; i < (u_int)len; i++) {
3c0ef626 917 /* Get one character at a time. */
918 ch = buf[i];
919
5156b1a1 920 if (*escape_pendingp) {
3c0ef626 921 /* We have previously seen an escape character. */
922 /* Clear the flag now. */
5156b1a1 923 *escape_pendingp = 0;
3c0ef626 924
925 /* Process the escaped character. */
926 switch (ch) {
927 case '.':
928 /* Terminate the connection. */
5156b1a1 929 snprintf(string, sizeof string, "%c.\r\n",
930 escape_char);
3c0ef626 931 buffer_append(berr, string, strlen(string));
932
5156b1a1 933 if (c && c->ctl_fd != -1) {
934 chan_read_failed(c);
935 chan_write_failed(c);
936 return 0;
937 } else
938 quit_pending = 1;
3c0ef626 939 return -1;
940
941 case 'Z' - 64:
5156b1a1 942 /* XXX support this for mux clients */
943 if (c && c->ctl_fd != -1) {
944 noescape:
945 snprintf(string, sizeof string,
946 "%c%c escape not available to "
947 "multiplexed sessions\r\n",
948 escape_char, ch);
949 buffer_append(berr, string,
950 strlen(string));
951 continue;
952 }
953 /* Suspend the program. Inform the user */
954 snprintf(string, sizeof string,
955 "%c^Z [suspend ssh]\r\n", escape_char);
3c0ef626 956 buffer_append(berr, string, strlen(string));
957
958 /* Restore terminal modes and suspend. */
959 client_suspend_self(bin, bout, berr);
960
961 /* We have been continued. */
962 continue;
963
a7213e65 964 case 'B':
965 if (compat20) {
966 snprintf(string, sizeof string,
967 "%cB\r\n", escape_char);
968 buffer_append(berr, string,
969 strlen(string));
970 channel_request_start(session_ident,
971 "break", 0);
972 packet_put_int(1000);
973 packet_send();
974 }
975 continue;
976
3c0ef626 977 case 'R':
978 if (compat20) {
979 if (datafellows & SSH_BUG_NOREKEY)
5156b1a1 980 logit("Server does not "
981 "support re-keying");
3c0ef626 982 else
983 need_rekeying = 1;
984 }
985 continue;
986
987 case '&':
5156b1a1 988 if (c && c->ctl_fd != -1)
989 goto noescape;
3c0ef626 990 /*
5156b1a1 991 * Detach the program (continue to serve
992 * connections, but put in background and no
993 * more new connections).
3c0ef626 994 */
995 /* Restore tty modes. */
996 leave_raw_mode();
997
998 /* Stop listening for new connections. */
999 channel_stop_listening();
1000
1001 snprintf(string, sizeof string,
1002 "%c& [backgrounded]\n", escape_char);
1003 buffer_append(berr, string, strlen(string));
1004
1005 /* Fork into background. */
1006 pid = fork();
1007 if (pid < 0) {
1008 error("fork: %.100s", strerror(errno));
1009 continue;
1010 }
1011 if (pid != 0) { /* This is the parent. */
1012 /* The parent just exits. */
1013 exit(0);
1014 }
1015 /* The child continues serving connections. */
1016 if (compat20) {
1017 buffer_append(bin, "\004", 1);
1018 /* fake EOF on stdin */
1019 return -1;
1020 } else if (!stdin_eof) {
1021 /*
5156b1a1 1022 * Sending SSH_CMSG_EOF alone does not
1023 * always appear to be enough. So we
1024 * try to send an EOF character first.
3c0ef626 1025 */
1026 packet_start(SSH_CMSG_STDIN_DATA);
1027 packet_put_string("\004", 1);
1028 packet_send();
1029 /* Close stdin. */
1030 stdin_eof = 1;
1031 if (buffer_len(bin) == 0) {
1032 packet_start(SSH_CMSG_EOF);
1033 packet_send();
1034 }
1035 }
1036 continue;
1037
1038 case '?':
5156b1a1 1039 if (c && c->ctl_fd != -1) {
1040 snprintf(string, sizeof string,
3c0ef626 1041"%c?\r\n\
1042Supported escape sequences:\r\n\
5156b1a1 1043 %c. - terminate session\r\n\
1044 %cB - send a BREAK to the remote system\r\n\
5156b1a1 1045 %cR - Request rekey (SSH protocol 2 only)\r\n\
1046 %c# - list forwarded connections\r\n\
1047 %c? - this message\r\n\
1048 %c%c - send the escape character by typing it twice\r\n\
3c0ef626 1049(Note that escapes are only recognized immediately after newline.)\r\n",
5156b1a1 1050 escape_char, escape_char,
1051 escape_char, escape_char,
1052 escape_char, escape_char,
5262cbfb 1053 escape_char, escape_char);
5156b1a1 1054 } else {
1055 snprintf(string, sizeof string,
1056"%c?\r\n\
1057Supported escape sequences:\r\n\
1058 %c. - terminate connection (and any multiplexed sessions)\r\n\
1059 %cB - send a BREAK to the remote system\r\n\
1060 %cC - open a command line\r\n\
1061 %cR - Request rekey (SSH protocol 2 only)\r\n\
1062 %c^Z - suspend ssh\r\n\
1063 %c# - list forwarded connections\r\n\
1064 %c& - background ssh (when waiting for connections to terminate)\r\n\
1065 %c? - this message\r\n\
1066 %c%c - send the escape character by typing it twice\r\n\
1067(Note that escapes are only recognized immediately after newline.)\r\n",
1068 escape_char, escape_char,
1069 escape_char, escape_char,
1070 escape_char, escape_char,
1071 escape_char, escape_char,
1072 escape_char, escape_char,
1073 escape_char);
1074 }
3c0ef626 1075 buffer_append(berr, string, strlen(string));
1076 continue;
1077
1078 case '#':
5156b1a1 1079 snprintf(string, sizeof string, "%c#\r\n",
1080 escape_char);
3c0ef626 1081 buffer_append(berr, string, strlen(string));
1082 s = channel_open_message();
1083 buffer_append(berr, s, strlen(s));
1084 xfree(s);
1085 continue;
1086
a7213e65 1087 case 'C':
5262cbfb 1088 if (c && c->ctl_fd != -1)
1089 goto noescape;
a7213e65 1090 process_cmdline();
1091 continue;
1092
3c0ef626 1093 default:
1094 if (ch != escape_char) {
1095 buffer_put_char(bin, escape_char);
1096 bytes++;
1097 }
1098 /* Escaped characters fall through here */
1099 break;
1100 }
1101 } else {
1102 /*
5156b1a1 1103 * The previous character was not an escape char.
1104 * Check if this is an escape.
3c0ef626 1105 */
1106 if (last_was_cr && ch == escape_char) {
5156b1a1 1107 /*
1108 * It is. Set the flag and continue to
1109 * next character.
1110 */
1111 *escape_pendingp = 1;
3c0ef626 1112 continue;
1113 }
1114 }
1115
1116 /*
1117 * Normal character. Record whether it was a newline,
1118 * and append it to the buffer.
1119 */
1120 last_was_cr = (ch == '\r' || ch == '\n');
1121 buffer_put_char(bin, ch);
1122 bytes++;
1123 }
1124 return bytes;
1125}
1126
1127static void
30460aeb 1128client_process_input(fd_set *readset)
3c0ef626 1129{
1130 int len;
1131 char buf[8192];
1132
1133 /* Read input from stdin. */
1134 if (FD_ISSET(fileno(stdin), readset)) {
1135 /* Read as much as possible. */
1136 len = read(fileno(stdin), buf, sizeof(buf));
5156b1a1 1137 if (len < 0 &&
1138 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
3c0ef626 1139 return; /* we'll try again later */
1140 if (len <= 0) {
1141 /*
1142 * Received EOF or error. They are treated
1143 * similarly, except that an error message is printed
1144 * if it was an error condition.
1145 */
1146 if (len < 0) {
5156b1a1 1147 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1148 strerror(errno));
3c0ef626 1149 buffer_append(&stderr_buffer, buf, strlen(buf));
1150 }
1151 /* Mark that we have seen EOF. */
1152 stdin_eof = 1;
1153 /*
1154 * Send an EOF message to the server unless there is
1155 * data in the buffer. If there is data in the
1156 * buffer, no message will be sent now. Code
1157 * elsewhere will send the EOF when the buffer
1158 * becomes empty if stdin_eof is set.
1159 */
1160 if (buffer_len(&stdin_buffer) == 0) {
1161 packet_start(SSH_CMSG_EOF);
1162 packet_send();
1163 }
5156b1a1 1164 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
3c0ef626 1165 /*
1166 * Normal successful read, and no escape character.
1167 * Just append the data to buffer.
1168 */
1169 buffer_append(&stdin_buffer, buf, len);
1170 } else {
1171 /*
5156b1a1 1172 * Normal, successful read. But we have an escape
1173 * character and have to process the characters one
1174 * by one.
3c0ef626 1175 */
5156b1a1 1176 if (process_escapes(NULL, &stdin_buffer,
1177 &stdout_buffer, &stderr_buffer, buf, len) == -1)
3c0ef626 1178 return;
1179 }
1180 }
1181}
1182
1183static void
30460aeb 1184client_process_output(fd_set *writeset)
3c0ef626 1185{
1186 int len;
1187 char buf[100];
1188
1189 /* Write buffered output to stdout. */
1190 if (FD_ISSET(fileno(stdout), writeset)) {
1191 /* Write as much data as possible. */
1192 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
1193 buffer_len(&stdout_buffer));
1194 if (len <= 0) {
5156b1a1 1195 if (errno == EINTR || errno == EAGAIN ||
1196 errno == EWOULDBLOCK)
3c0ef626 1197 len = 0;
1198 else {
1199 /*
1200 * An error or EOF was encountered. Put an
1201 * error message to stderr buffer.
1202 */
5156b1a1 1203 snprintf(buf, sizeof buf,
1204 "write stdout: %.50s\r\n", strerror(errno));
3c0ef626 1205 buffer_append(&stderr_buffer, buf, strlen(buf));
1206 quit_pending = 1;
1207 return;
1208 }
1209 }
1210 /* Consume printed data from the buffer. */
1211 buffer_consume(&stdout_buffer, len);
3c0ef626 1212 }
1213 /* Write buffered output to stderr. */
1214 if (FD_ISSET(fileno(stderr), writeset)) {
1215 /* Write as much data as possible. */
1216 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
1217 buffer_len(&stderr_buffer));
1218 if (len <= 0) {
5156b1a1 1219 if (errno == EINTR || errno == EAGAIN ||
1220 errno == EWOULDBLOCK)
3c0ef626 1221 len = 0;
1222 else {
5156b1a1 1223 /*
1224 * EOF or error, but can't even print
1225 * error message.
1226 */
3c0ef626 1227 quit_pending = 1;
1228 return;
1229 }
1230 }
1231 /* Consume printed characters from the buffer. */
1232 buffer_consume(&stderr_buffer, len);
3c0ef626 1233 }
1234}
1235
1236/*
1237 * Get packets from the connection input buffer, and process them as long as
1238 * there are packets available.
1239 *
1240 * Any unknown packets received during the actual
1241 * session cause the session to terminate. This is
1242 * intended to make debugging easier since no
1243 * confirmations are sent. Any compatible protocol
1244 * extensions must be negotiated during the
1245 * preparatory phase.
1246 */
1247
1248static void
1249client_process_buffered_input_packets(void)
1250{
5156b1a1 1251 dispatch_run(DISPATCH_NONBLOCK, &quit_pending,
1252 compat20 ? xxx_kex : NULL);
3c0ef626 1253}
1254
1255/* scan buf[] for '~' before sending data to the peer */
1256
5156b1a1 1257/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1258void *
1259client_new_escape_filter_ctx(int escape_char)
1260{
1261 struct escape_filter_ctx *ret;
1262
1263 ret = xmalloc(sizeof(*ret));
1264 ret->escape_pending = 0;
1265 ret->escape_char = escape_char;
1266 return (void *)ret;
1267}
1268
1269/* Free the escape filter context on channel free */
1270void
1271client_filter_cleanup(int cid, void *ctx)
3c0ef626 1272{
5156b1a1 1273 xfree(ctx);
1274}
1275
1276int
1277client_simple_escape_filter(Channel *c, char *buf, int len)
1278{
1279 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1280 return 0;
1281
1282 return process_escapes(c, &c->input, &c->output, &c->extended,
1283 buf, len);
3c0ef626 1284}
1285
1286static void
1287client_channel_closed(int id, void *arg)
1288{
3c0ef626 1289 channel_cancel_cleanup(id);
1290 session_closed = 1;
a7213e65 1291 leave_raw_mode();
3c0ef626 1292}
1293
1294/*
1295 * Implements the interactive session with the server. This is called after
1296 * the user has been authenticated, and a command has been started on the
1297 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1298 * used as an escape character for terminating or suspending the session.
1299 */
1300
1301int
1302client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1303{
1304 fd_set *readset = NULL, *writeset = NULL;
1305 double start_time, total_time;
a7213e65 1306 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
5156b1a1 1307 u_int64_t ibytes, obytes;
a7213e65 1308 u_int nalloc = 0;
3c0ef626 1309 char buf[100];
1310
1311 debug("Entering interactive session.");
1312
1313 start_time = get_current_time();
1314
1315 /* Initialize variables. */
5156b1a1 1316 escape_pending1 = 0;
3c0ef626 1317 last_was_cr = 1;
1318 exit_status = -1;
1319 stdin_eof = 0;
1320 buffer_high = 64 * 1024;
1321 connection_in = packet_get_connection_in();
1322 connection_out = packet_get_connection_out();
1323 max_fd = MAX(connection_in, connection_out);
5156b1a1 1324 if (muxserver_sock != -1)
1325 max_fd = MAX(max_fd, muxserver_sock);
3c0ef626 1326
1327 if (!compat20) {
1328 /* enable nonblocking unless tty */
1329 if (!isatty(fileno(stdin)))
1330 set_nonblock(fileno(stdin));
1331 if (!isatty(fileno(stdout)))
1332 set_nonblock(fileno(stdout));
1333 if (!isatty(fileno(stderr)))
1334 set_nonblock(fileno(stderr));
1335 max_fd = MAX(max_fd, fileno(stdin));
1336 max_fd = MAX(max_fd, fileno(stdout));
1337 max_fd = MAX(max_fd, fileno(stderr));
1338 }
3c0ef626 1339 quit_pending = 0;
5156b1a1 1340 escape_char1 = escape_char_arg;
3c0ef626 1341
1342 /* Initialize buffers. */
1343 buffer_init(&stdin_buffer);
1344 buffer_init(&stdout_buffer);
1345 buffer_init(&stderr_buffer);
1346
1347 client_init_dispatch();
1348
a7213e65 1349 /*
1350 * Set signal handlers, (e.g. to restore non-blocking mode)
1351 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1352 */
1353 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1354 signal(SIGHUP, signal_handler);
1355 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1356 signal(SIGINT, signal_handler);
1357 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1358 signal(SIGQUIT, signal_handler);
1359 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1360 signal(SIGTERM, signal_handler);
1361 signal(SIGWINCH, window_change_handler);
3c0ef626 1362
1363 if (have_pty)
1364 enter_raw_mode();
1365
1366 if (compat20) {
1367 session_ident = ssh2_chan_id;
5156b1a1 1368 if (escape_char_arg != SSH_ESCAPECHAR_NONE)
3c0ef626 1369 channel_register_filter(session_ident,
5156b1a1 1370 client_simple_escape_filter, NULL,
1371 client_filter_cleanup,
1372 client_new_escape_filter_ctx(escape_char_arg));
3c0ef626 1373 if (session_ident != -1)
1374 channel_register_cleanup(session_ident,
a7213e65 1375 client_channel_closed, 0);
3c0ef626 1376 } else {
1377 /* Check if we should immediately send eof on stdin. */
1378 client_check_initial_eof_on_stdin();
1379 }
1380
1381 /* Main loop of the client for the interactive session mode. */
1382 while (!quit_pending) {
1383
1384 /* Process buffered packets sent by the server. */
1385 client_process_buffered_input_packets();
1386
1387 if (compat20 && session_closed && !channel_still_open())
1388 break;
1389
1390 rekeying = (xxx_kex != NULL && !xxx_kex->done);
1391
1392 if (rekeying) {
1393 debug("rekeying in progress");
1394 } else {
1395 /*
1396 * Make packets of buffered stdin data, and buffer
1397 * them for sending to the server.
1398 */
1399 if (!compat20)
1400 client_make_packets_from_stdin_data();
1401
1402 /*
1403 * Make packets from buffered channel data, and
1404 * enqueue them for sending to the server.
1405 */
1406 if (packet_not_very_much_data_to_write())
1407 channel_output_poll();
1408
1409 /*
1410 * Check if the window size has changed, and buffer a
1411 * message about it to the server if so.
1412 */
1413 client_check_window_change();
1414
1415 if (quit_pending)
1416 break;
1417 }
1418 /*
1419 * Wait until we have something to do (something becomes
1420 * available on one of the descriptors).
1421 */
1422 max_fd2 = max_fd;
1423 client_wait_until_can_do_something(&readset, &writeset,
1424 &max_fd2, &nalloc, rekeying);
1425
1426 if (quit_pending)
1427 break;
1428
1429 /* Do channel operations unless rekeying in progress. */
1430 if (!rekeying) {
1431 channel_after_select(readset, writeset);
a7213e65 1432 if (need_rekeying || packet_need_rekeying()) {
1433 debug("need rekeying");
3c0ef626 1434 xxx_kex->done = 0;
1435 kex_send_kexinit(xxx_kex);
1436 need_rekeying = 0;
1437 }
1438 }
1439
1440 /* Buffer input from the connection. */
1441 client_process_net_input(readset);
1442
a7213e65 1443 /* Accept control connections. */
5156b1a1 1444 if (muxserver_sock != -1 &&FD_ISSET(muxserver_sock, readset)) {
1445 if (muxserver_accept_control())
1446 quit_pending = 1;
1447 }
a7213e65 1448
3c0ef626 1449 if (quit_pending)
1450 break;
1451
1452 if (!compat20) {
1453 /* Buffer data from stdin */
1454 client_process_input(readset);
1455 /*
1456 * Process output to stdout and stderr. Output to
1457 * the connection is processed elsewhere (above).
1458 */
1459 client_process_output(writeset);
1460 }
1461
5156b1a1 1462 /*
1463 * Send as much buffered packet data as possible to the
1464 * sender.
1465 */
3c0ef626 1466 if (FD_ISSET(connection_out, writeset))
1467 packet_write_poll();
1468 }
1469 if (readset)
1470 xfree(readset);
1471 if (writeset)
1472 xfree(writeset);
1473
1474 /* Terminate the session. */
1475
1476 /* Stop watching for window change. */
a7213e65 1477 signal(SIGWINCH, SIG_DFL);
3c0ef626 1478
1479 channel_free_all();
1480
1481 if (have_pty)
1482 leave_raw_mode();
1483
1484 /* restore blocking io */
1485 if (!isatty(fileno(stdin)))
1486 unset_nonblock(fileno(stdin));
1487 if (!isatty(fileno(stdout)))
1488 unset_nonblock(fileno(stdout));
1489 if (!isatty(fileno(stderr)))
1490 unset_nonblock(fileno(stderr));
1491
a7213e65 1492 /*
1493 * If there was no shell or command requested, there will be no remote
1494 * exit status to be returned. In that case, clear error code if the
1495 * connection was deliberately terminated at this end.
1496 */
1497 if (no_shell_flag && received_signal == SIGTERM) {
1498 received_signal = 0;
1499 exit_status = 0;
3c0ef626 1500 }
1501
a7213e65 1502 if (received_signal)
1503 fatal("Killed by signal %d.", (int) received_signal);
1504
3c0ef626 1505 /*
1506 * In interactive mode (with pseudo tty) display a message indicating
1507 * that the connection has been closed.
1508 */
1509 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
5156b1a1 1510 snprintf(buf, sizeof buf,
1511 "Connection to %.64s closed.\r\n", host);
3c0ef626 1512 buffer_append(&stderr_buffer, buf, strlen(buf));
1513 }
1514
1515 /* Output any buffered data for stdout. */
1516 while (buffer_len(&stdout_buffer) > 0) {
1517 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
1518 buffer_len(&stdout_buffer));
1519 if (len <= 0) {
1520 error("Write failed flushing stdout buffer.");
1521 break;
1522 }
1523 buffer_consume(&stdout_buffer, len);
3c0ef626 1524 }
1525
1526 /* Output any buffered data for stderr. */
1527 while (buffer_len(&stderr_buffer) > 0) {
1528 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
1529 buffer_len(&stderr_buffer));
1530 if (len <= 0) {
1531 error("Write failed flushing stderr buffer.");
1532 break;
1533 }
1534 buffer_consume(&stderr_buffer, len);
3c0ef626 1535 }
1536
1537 /* Clear and free any buffers. */
1538 memset(buf, 0, sizeof(buf));
1539 buffer_free(&stdin_buffer);
1540 buffer_free(&stdout_buffer);
1541 buffer_free(&stderr_buffer);
1542
1543 /* Report bytes transferred, and transfer rates. */
1544 total_time = get_current_time() - start_time;
5156b1a1 1545 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
1546 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
1547 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
1548 obytes, ibytes, total_time);
3c0ef626 1549 if (total_time > 0)
5156b1a1 1550 verbose("Bytes per second: sent %.1f, received %.1f",
1551 obytes / total_time, ibytes / total_time);
3c0ef626 1552 /* Return the exit status of the program. */
1553 debug("Exit status %d", exit_status);
1554 return exit_status;
1555}
1556
1557/*********/
1558
1559static void
a7213e65 1560client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
3c0ef626 1561{
1562 u_int data_len;
1563 char *data = packet_get_string(&data_len);
a7213e65 1564 packet_check_eom();
3c0ef626 1565 buffer_append(&stdout_buffer, data, data_len);
1566 memset(data, 0, data_len);
1567 xfree(data);
1568}
1569static void
a7213e65 1570client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
3c0ef626 1571{
1572 u_int data_len;
1573 char *data = packet_get_string(&data_len);
a7213e65 1574 packet_check_eom();
3c0ef626 1575 buffer_append(&stderr_buffer, data, data_len);
1576 memset(data, 0, data_len);
1577 xfree(data);
1578}
1579static void
a7213e65 1580client_input_exit_status(int type, u_int32_t seq, void *ctxt)
3c0ef626 1581{
3c0ef626 1582 exit_status = packet_get_int();
a7213e65 1583 packet_check_eom();
3c0ef626 1584 /* Acknowledge the exit. */
1585 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1586 packet_send();
1587 /*
1588 * Must wait for packet to be sent since we are
1589 * exiting the loop.
1590 */
1591 packet_write_wait();
1592 /* Flag that we want to exit. */
1593 quit_pending = 1;
1594}
a7213e65 1595static void
1596client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1597{
1598 Channel *c = NULL;
1599 int remote_id, sock;
1600
1601 /* Read the remote channel number from the message. */
1602 remote_id = packet_get_int();
1603 packet_check_eom();
1604
1605 /*
1606 * Get a connection to the local authentication agent (this may again
1607 * get forwarded).
1608 */
1609 sock = ssh_get_authentication_socket();
1610
1611 /*
1612 * If we could not connect the agent, send an error message back to
1613 * the server. This should never happen unless the agent dies,
1614 * because authentication forwarding is only enabled if we have an
1615 * agent.
1616 */
1617 if (sock >= 0) {
1618 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1619 -1, 0, 0, 0, "authentication agent connection", 1);
1620 c->remote_id = remote_id;
1621 c->force_drain = 1;
1622 }
1623 if (c == NULL) {
1624 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1625 packet_put_int(remote_id);
1626 } else {
1627 /* Send a confirmation to the remote host. */
1628 debug("Forwarding authentication connection.");
1629 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1630 packet_put_int(remote_id);
1631 packet_put_int(c->self);
1632 }
1633 packet_send();
1634}
3c0ef626 1635
1636static Channel *
1637client_request_forwarded_tcpip(const char *request_type, int rchan)
1638{
a7213e65 1639 Channel *c = NULL;
3c0ef626 1640 char *listen_address, *originator_address;
5262cbfb 1641 u_short listen_port, originator_port;
3c0ef626 1642
1643 /* Get rest of the packet */
1644 listen_address = packet_get_string(NULL);
1645 listen_port = packet_get_int();
1646 originator_address = packet_get_string(NULL);
1647 originator_port = packet_get_int();
a7213e65 1648 packet_check_eom();
3c0ef626 1649
5156b1a1 1650 debug("client_request_forwarded_tcpip: listen %s port %d, "
1651 "originator %s port %d", listen_address, listen_port,
1652 originator_address, originator_port);
1653
1654 c = channel_connect_by_listen_address(listen_port,
1655 "forwarded-tcpip", originator_address);
3c0ef626 1656
3c0ef626 1657 xfree(originator_address);
1658 xfree(listen_address);
1659 return c;
1660}
1661
a7213e65 1662static Channel *
3c0ef626 1663client_request_x11(const char *request_type, int rchan)
1664{
1665 Channel *c = NULL;
1666 char *originator;
5262cbfb 1667 u_short originator_port;
3c0ef626 1668 int sock;
1669
1670 if (!options.forward_x11) {
1671 error("Warning: ssh server tried X11 forwarding.");
5156b1a1 1672 error("Warning: this is probably a break-in attempt by a "
1673 "malicious server.");
3c0ef626 1674 return NULL;
1675 }
1676 originator = packet_get_string(NULL);
1677 if (datafellows & SSH_BUG_X11FWD) {
1678 debug2("buggy server: x11 request w/o originator_port");
1679 originator_port = 0;
1680 } else {
1681 originator_port = packet_get_int();
1682 }
a7213e65 1683 packet_check_eom();
3c0ef626 1684 /* XXX check permission */
1685 debug("client_request_x11: request from %s %d", originator,
1686 originator_port);
1687 xfree(originator);
1688 sock = x11_connect_display();
1689 if (sock < 0)
1690 return NULL;
6df46d40 1691 /* again is this really necessary for X11? */
a7213e65 1692 if (options.hpn_disabled)
6df46d40 1693 c = channel_new("x11",
1694 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1695 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
a7213e65 1696 else
1697 c = channel_new("x11",
1698 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1699 options.hpn_buffer_size, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
3c0ef626 1700 c->force_drain = 1;
1701 return c;
1702}
1703
a7213e65 1704static Channel *
3c0ef626 1705client_request_agent(const char *request_type, int rchan)
1706{
1707 Channel *c = NULL;
1708 int sock;
1709
1710 if (!options.forward_agent) {
1711 error("Warning: ssh server tried agent forwarding.");
5156b1a1 1712 error("Warning: this is probably a break-in attempt by a "
1713 "malicious server.");
3c0ef626 1714 return NULL;
1715 }
0b90ac93 1716 sock = ssh_get_authentication_socket();
3c0ef626 1717 if (sock < 0)
1718 return NULL;
a7213e65 1719 if (options.hpn_disabled)
6df46d40 1720 c = channel_new("authentication agent connection",
1721 SSH_CHANNEL_OPEN, sock, sock, -1,
d3057ca4 1722 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
a7213e65 1723 "authentication agent connection", 1);
d3057ca4 1724 else
1725 c = channel_new("authentication agent connection",
1726 SSH_CHANNEL_OPEN, sock, sock, -1,
1727 options.hpn_buffer_size, options.hpn_buffer_size, 0,
1728 "authentication agent connection", 1);
3c0ef626 1729 c->force_drain = 1;
1730 return c;
1731}
1732
fa0f0f45 1733int
1734client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1735{
1736 Channel *c;
1737 int fd;
1738
1739 if (tun_mode == SSH_TUNMODE_NO)
1740 return 0;
1741
1742 if (!compat20) {
5262cbfb 1743 error("Tunnel forwarding is not supported for protocol 1");
fa0f0f45 1744 return -1;
1745 }
1746
1747 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1748
1749 /* Open local tunnel device */
1750 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1751 error("Tunnel device open failed.");
1752 return -1;
1753 }
1754
4834571d 1755 if(options.hpn_disabled)
6df46d40 1756 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
4834571d 1757 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1758 0, "tun", 1);
1759 else
6df46d40 1760 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
4834571d 1761 options.hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT,
1762 0, "tun", 1);
fa0f0f45 1763 c->datagram = 1;
1764
d3057ca4 1765
1766
fa0f0f45 1767#if defined(SSH_TUN_FILTER)
1768 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1769 channel_register_filter(c->self, sys_tun_infilter,
5156b1a1 1770 sys_tun_outfilter, NULL, NULL);
fa0f0f45 1771#endif
1772
1773 packet_start(SSH2_MSG_CHANNEL_OPEN);
1774 packet_put_cstring("tun@openssh.com");
1775 packet_put_int(c->self);
1776 packet_put_int(c->local_window_max);
1777 packet_put_int(c->local_maxpacket);
1778 packet_put_int(tun_mode);
1779 packet_put_int(remote_tun);
1780 packet_send();
1781
1782 return 0;
1783}
1784
3c0ef626 1785/* XXXX move to generic input handler */
1786static void
a7213e65 1787client_input_channel_open(int type, u_int32_t seq, void *ctxt)
3c0ef626 1788{
1789 Channel *c = NULL;
1790 char *ctype;
3c0ef626 1791 int rchan;
a7213e65 1792 u_int rmaxpack, rwindow, len;
3c0ef626 1793
1794 ctype = packet_get_string(&len);
1795 rchan = packet_get_int();
1796 rwindow = packet_get_int();
1797 rmaxpack = packet_get_int();
1798
1799 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
1800 ctype, rchan, rwindow, rmaxpack);
1801
1802 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1803 c = client_request_forwarded_tcpip(ctype, rchan);
1804 } else if (strcmp(ctype, "x11") == 0) {
1805 c = client_request_x11(ctype, rchan);
1806 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1807 c = client_request_agent(ctype, rchan);
1808 }
1809/* XXX duplicate : */
1810 if (c != NULL) {
1811 debug("confirm %s", ctype);
1812 c->remote_id = rchan;
1813 c->remote_window = rwindow;
1814 c->remote_maxpacket = rmaxpack;
1815 if (c->type != SSH_CHANNEL_CONNECTING) {
1816 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1817 packet_put_int(c->remote_id);
1818 packet_put_int(c->self);
1819 packet_put_int(c->local_window);
1820 packet_put_int(c->local_maxpacket);
1821 packet_send();
1822 }
1823 } else {
1824 debug("failure %s", ctype);
1825 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1826 packet_put_int(rchan);
1827 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1828 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1829 packet_put_cstring("open failed");
1830 packet_put_cstring("");
1831 }
1832 packet_send();
1833 }
1834 xfree(ctype);
1835}
1836static void
a7213e65 1837client_input_channel_req(int type, u_int32_t seq, void *ctxt)
3c0ef626 1838{
1839 Channel *c = NULL;
a7213e65 1840 int exitval, id, reply, success = 0;
3c0ef626 1841 char *rtype;
1842
1843 id = packet_get_int();
1844 rtype = packet_get_string(NULL);
1845 reply = packet_get_char();
1846
1847 debug("client_input_channel_req: channel %d rtype %s reply %d",
1848 id, rtype, reply);
1849
a7213e65 1850 if (id == -1) {
1851 error("client_input_channel_req: request for channel -1");
1852 } else if ((c = channel_lookup(id)) == NULL) {
5156b1a1 1853 error("client_input_channel_req: channel %d: "
1854 "unknown channel", id);
1855 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
1856 packet_check_eom();
1857 chan_rcvd_eow(c);
3c0ef626 1858 } else if (strcmp(rtype, "exit-status") == 0) {
a7213e65 1859 exitval = packet_get_int();
1860 if (id == session_ident) {
1861 success = 1;
1862 exit_status = exitval;
1863 } else if (c->ctl_fd == -1) {
1864 error("client_input_channel_req: unexpected channel %d",
1865 session_ident);
1866 } else {
1867 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1868 success = 1;
1869 }
1870 packet_check_eom();
3c0ef626 1871 }
1872 if (reply) {
1873 packet_start(success ?
1874 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
5262cbfb 1875 packet_put_int(c->remote_id);
3c0ef626 1876 packet_send();
1877 }
1878 xfree(rtype);
1879}
a7213e65 1880static void
1881client_input_global_request(int type, u_int32_t seq, void *ctxt)
1882{
1883 char *rtype;
1884 int want_reply;
1885 int success = 0;
1886
1887 rtype = packet_get_string(NULL);
1888 want_reply = packet_get_char();
1889 debug("client_input_global_request: rtype %s want_reply %d",
1890 rtype, want_reply);
1891 if (want_reply) {
1892 packet_start(success ?
1893 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1894 packet_send();
1895 packet_write_wait();
1896 }
1897 xfree(rtype);
1898}
1899
1900void
1901client_session2_setup(int id, int want_tty, int want_subsystem,
5156b1a1 1902 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
a7213e65 1903{
1904 int len;
1905 Channel *c = NULL;
1906
1907 debug2("%s: id %d", __func__, id);
1908
1909 if ((c = channel_lookup(id)) == NULL)
1910 fatal("client_session2_setup: channel %d: unknown channel", id);
1911
1912 if (want_tty) {
1913 struct winsize ws;
a7213e65 1914
1915 /* Store window size in the packet. */
1916 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1917 memset(&ws, 0, sizeof(ws));
1918
5156b1a1 1919 channel_request_start(id, "pty-req", 1);
1920 client_expect_confirm(id, "PTY allocation", 0);
a7213e65 1921 packet_put_cstring(term != NULL ? term : "");
30460aeb 1922 packet_put_int((u_int)ws.ws_col);
1923 packet_put_int((u_int)ws.ws_row);
1924 packet_put_int((u_int)ws.ws_xpixel);
1925 packet_put_int((u_int)ws.ws_ypixel);
5156b1a1 1926 if (tiop == NULL)
1927 tiop = get_saved_tio();
1928 tty_make_modes(-1, tiop);
a7213e65 1929 packet_send();
1930 /* XXX wait for reply */
1931 c->client_tty = 1;
1932 }
1933
1934 /* Transfer any environment variables from client to server */
1935 if (options.num_send_env != 0 && env != NULL) {
1936 int i, j, matched;
1937 char *name, *val;
1938
1939 debug("Sending environment.");
1940 for (i = 0; env[i] != NULL; i++) {
1941 /* Split */
1942 name = xstrdup(env[i]);
1943 if ((val = strchr(name, '=')) == NULL) {
1944 xfree(name);
1945 continue;
1946 }
1947 *val++ = '\0';
1948
1949 matched = 0;
1950 for (j = 0; j < options.num_send_env; j++) {
1951 if (match_pattern(name, options.send_env[j])) {
1952 matched = 1;
1953 break;
1954 }
1955 }
1956 if (!matched) {
1957 debug3("Ignored env %s", name);
1958 xfree(name);
1959 continue;
1960 }
1961
1962 debug("Sending env %s = %s", name, val);
1963 channel_request_start(id, "env", 0);
1964 packet_put_cstring(name);
1965 packet_put_cstring(val);
1966 packet_send();
1967 xfree(name);
1968 }
1969 }
1970
1971 len = buffer_len(cmd);
1972 if (len > 0) {
1973 if (len > 900)
1974 len = 900;
1975 if (want_subsystem) {
5156b1a1 1976 debug("Sending subsystem: %.*s",
1977 len, (u_char*)buffer_ptr(cmd));
1978 channel_request_start(id, "subsystem", 1);
1979 client_expect_confirm(id, "subsystem", 1);
a7213e65 1980 } else {
5156b1a1 1981 debug("Sending command: %.*s",
1982 len, (u_char*)buffer_ptr(cmd));
1983 channel_request_start(id, "exec", 1);
1984 client_expect_confirm(id, "exec", 1);
a7213e65 1985 }
1986 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1987 packet_send();
1988 } else {
5156b1a1 1989 channel_request_start(id, "shell", 1);
1990 client_expect_confirm(id, "shell", 1);
a7213e65 1991 packet_send();
1992 }
1993}
3c0ef626 1994
1995static void
1996client_init_dispatch_20(void)
1997{
1998 dispatch_init(&dispatch_protocol_error);
a7213e65 1999
3c0ef626 2000 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2001 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2002 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2003 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
2004 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
2005 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2006 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2007 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
2008 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
5156b1a1 2009 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2010 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
a7213e65 2011 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
3c0ef626 2012
2013 /* rekeying */
2014 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
a7213e65 2015
2016 /* global request reply messages */
2017 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2018 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
3c0ef626 2019}
5156b1a1 2020
3c0ef626 2021static void
2022client_init_dispatch_13(void)
2023{
2024 dispatch_init(NULL);
2025 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2026 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2027 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
2028 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2029 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2030 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
2031 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2032 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2033 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
2034
2035 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
a7213e65 2036 &client_input_agent_open : &deny_input_open);
3c0ef626 2037 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2038 &x11_input_open : &deny_input_open);
2039}
5156b1a1 2040
3c0ef626 2041static void
2042client_init_dispatch_15(void)
2043{
2044 client_init_dispatch_13();
2045 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2046 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2047}
5156b1a1 2048
3c0ef626 2049static void
2050client_init_dispatch(void)
2051{
2052 if (compat20)
2053 client_init_dispatch_20();
2054 else if (compat13)
2055 client_init_dispatch_13();
2056 else
2057 client_init_dispatch_15();
2058}
a7213e65 2059
2060/* client specific fatal cleanup */
2061void
2062cleanup_exit(int i)
2063{
2064 leave_raw_mode();
2065 leave_non_blocking();
5156b1a1 2066 if (options.control_path != NULL && muxserver_sock != -1)
a7213e65 2067 unlink(options.control_path);
2068 _exit(i);
2069}
This page took 0.434739 seconds and 5 git commands to generate.