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