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