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