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