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