blob: 893ba30ffb4d6bca7e5e431df07532f99bd71b4a [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * 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".
12 *
13 *
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 *
36 *
Damien Miller1383bd82000-04-06 12:32:37 +100037 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000038 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110039 *
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.
Damien Miller95def091999-11-25 00:26:21 +110059 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61#include "includes.h"
Damien Miller03e20032006-03-15 11:16:59 +110062RCSID("$OpenBSD: clientloop.c,v 1.151 2006/02/08 12:15:27 stevesk Exp $");
Damien Miller99bd21e2006-03-15 11:11:28 +110063
Damien Miller03e20032006-03-15 11:16:59 +110064#include <paths.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110065#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
70#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071#include "packet.h"
72#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100073#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000074#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100075#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100076#include "buffer.h"
77#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110078#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000079#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "log.h"
81#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000082#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +110083#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "authfd.h"
85#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100086#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000087#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +100088#include "monitor_fdpass.h"
89#include "match.h"
90#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110091
92/* import options */
93extern Options options;
94
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095/* Flag indicating that stdin should be redirected from /dev/null. */
96extern int stdin_null_flag;
97
Damien Millerd6965512003-12-17 16:31:53 +110098/* Flag indicating that no shell has been requested */
99extern int no_shell_flag;
100
Damien Miller0e220db2004-06-15 10:34:08 +1000101/* Control socket */
102extern int control_fd;
103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Name of the host we are connecting to. This is the name given on the
106 * command line, or the HostName specified for the user-supplied name in a
107 * configuration file.
108 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109extern char *host;
110
Damien Miller5428f641999-11-25 11:54:57 +1100111/*
112 * Flag to indicate that we have received a window change signal which has
113 * not yet been processed. This will cause a message indicating the new
114 * window size to be sent to the server a little later. This is volatile
115 * because this is updated in a signal handler.
116 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000117static volatile sig_atomic_t received_window_change_signal = 0;
118static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
Damien Miller788f2122005-11-05 15:14:59 +1100120/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121static int in_non_blocking_mode = 0;
122
123/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000124static int quit_pending; /* Set to non-zero to quit the client loop. */
125static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100126static int escape_pending; /* Last character was the escape character */
127static int last_was_cr; /* Last character was a newline. */
128static int exit_status; /* Used to store the exit status of the command. */
129static int stdin_eof; /* EOF has been encountered on standard error. */
130static Buffer stdin_buffer; /* Buffer for stdin data. */
131static Buffer stdout_buffer; /* Buffer for stdout data. */
132static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000133static u_long stdin_bytes, stdout_bytes, stderr_bytes;
134static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100135static int connection_in; /* Connection to server (input). */
136static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000137static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000138static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100139static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Ben Lindstrombba81212001-06-25 05:01:22 +0000141static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000142int session_ident = -1;
143
Damien Miller0e220db2004-06-15 10:34:08 +1000144struct confirm_ctx {
145 int want_tty;
146 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000147 int want_x_fwd;
148 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000149 Buffer cmd;
150 char *term;
151 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000152 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000153};
154
Ben Lindstromf28f6342001-04-04 02:03:04 +0000155/*XXX*/
156extern Kex *xxx_kex;
157
Damien Miller0e220db2004-06-15 10:34:08 +1000158void ssh_process_session2_setup(int, int, int, Buffer *);
159
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160/* Restores stdin to blocking mode. */
161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000163leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000166 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100167 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100168 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169}
170
Damien Miller95def091999-11-25 00:26:21 +1100171/* Puts stdin terminal in non-blocking mode. */
172
Ben Lindstrombba81212001-06-25 05:01:22 +0000173static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000174enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175{
Damien Miller95def091999-11-25 00:26:21 +1100176 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000177 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Miller5428f641999-11-25 11:54:57 +1100180/*
181 * Signal handler for the window change signal (SIGWINCH). This just sets a
182 * flag indicating that the window has changed.
183 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Ben Lindstrombba81212001-06-25 05:01:22 +0000185static void
Damien Miller95def091999-11-25 00:26:21 +1100186window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187{
Damien Miller95def091999-11-25 00:26:21 +1100188 received_window_change_signal = 1;
189 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190}
191
Damien Miller5428f641999-11-25 11:54:57 +1100192/*
193 * Signal handler for signals that cause the program to terminate. These
194 * signals must be trapped to restore terminal modes.
195 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Ben Lindstrombba81212001-06-25 05:01:22 +0000197static void
Damien Miller95def091999-11-25 00:26:21 +1100198signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000200 received_signal = sig;
201 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202}
203
Damien Miller5428f641999-11-25 11:54:57 +1100204/*
205 * Returns current time in seconds from Jan 1, 1970 with the maximum
206 * available resolution.
207 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Ben Lindstrombba81212001-06-25 05:01:22 +0000209static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000210get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211{
Damien Miller95def091999-11-25 00:26:21 +1100212 struct timeval tv;
213 gettimeofday(&tv, NULL);
214 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
Damien Miller17e7ed02005-06-17 12:54:33 +1000217#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
218void
219client_x11_get_proto(const char *display, const char *xauth_path,
220 u_int trusted, char **_proto, char **_data)
221{
222 char cmd[1024];
223 char line[512];
224 char xdisplay[512];
225 static char proto[512], data[512];
226 FILE *f;
227 int got_data = 0, generated = 0, do_unlink = 0, i;
228 char *xauthdir, *xauthfile;
229 struct stat st;
230
231 xauthdir = xauthfile = NULL;
232 *_proto = proto;
233 *_data = data;
234 proto[0] = data[0] = '\0';
235
236 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
237 debug("No xauth program.");
238 } else {
239 if (display == NULL) {
240 debug("x11_get_proto: DISPLAY not set");
241 return;
242 }
243 /*
244 * Handle FamilyLocal case where $DISPLAY does
245 * not match an authorization entry. For this we
246 * just try "xauth list unix:displaynum.screennum".
247 * XXX: "localhost" match to determine FamilyLocal
248 * is not perfect.
249 */
250 if (strncmp(display, "localhost:", 10) == 0) {
251 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
252 display + 10);
253 display = xdisplay;
254 }
255 if (trusted == 0) {
256 xauthdir = xmalloc(MAXPATHLEN);
257 xauthfile = xmalloc(MAXPATHLEN);
258 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
259 if (mkdtemp(xauthdir) != NULL) {
260 do_unlink = 1;
261 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
262 xauthdir);
263 snprintf(cmd, sizeof(cmd),
264 "%s -f %s generate %s " SSH_X11_PROTO
265 " untrusted timeout 1200 2>" _PATH_DEVNULL,
266 xauth_path, xauthfile, display);
267 debug2("x11_get_proto: %s", cmd);
268 if (system(cmd) == 0)
269 generated = 1;
270 }
271 }
272 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000273 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000274 xauth_path,
275 generated ? "-f " : "" ,
276 generated ? xauthfile : "",
277 display);
278 debug2("x11_get_proto: %s", cmd);
279 f = popen(cmd, "r");
280 if (f && fgets(line, sizeof(line), f) &&
281 sscanf(line, "%*s %511s %511s", proto, data) == 2)
282 got_data = 1;
283 if (f)
284 pclose(f);
285 }
286
287 if (do_unlink) {
288 unlink(xauthfile);
289 rmdir(xauthdir);
290 }
291 if (xauthdir)
292 xfree(xauthdir);
293 if (xauthfile)
294 xfree(xauthfile);
295
296 /*
297 * If we didn't get authentication data, just make up some
298 * data. The forwarding code will check the validity of the
299 * response anyway, and substitute this data. The X11
300 * server, however, will ignore this fake data and use
301 * whatever authentication mechanisms it was using otherwise
302 * for the local connection.
303 */
304 if (!got_data) {
305 u_int32_t rnd = 0;
306
307 logit("Warning: No xauth data; "
308 "using fake authentication data for X11 forwarding.");
309 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
310 for (i = 0; i < 16; i++) {
311 if (i % 4 == 0)
312 rnd = arc4random();
313 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
314 rnd & 0xff);
315 rnd >>= 8;
316 }
317 }
318}
319
Damien Miller5428f641999-11-25 11:54:57 +1100320/*
321 * This is called when the interactive is entered. This checks if there is
322 * an EOF coming on stdin. We must check this explicitly, as select() does
323 * not appear to wake up when redirecting from /dev/null.
324 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325
Ben Lindstrombba81212001-06-25 05:01:22 +0000326static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000327client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328{
Damien Miller95def091999-11-25 00:26:21 +1100329 int len;
330 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Damien Miller5428f641999-11-25 11:54:57 +1100332 /*
333 * If standard input is to be "redirected from /dev/null", we simply
334 * mark that we have seen an EOF and send an EOF message to the
335 * server. Otherwise, we try to read a single character; it appears
336 * that for some files, such /dev/null, select() never wakes up for
337 * read for this descriptor, which means that we never get EOF. This
338 * way we will get the EOF if stdin comes from /dev/null or similar.
339 */
Damien Miller95def091999-11-25 00:26:21 +1100340 if (stdin_null_flag) {
341 /* Fake EOF on stdin. */
342 debug("Sending eof.");
343 stdin_eof = 1;
344 packet_start(SSH_CMSG_EOF);
345 packet_send();
346 } else {
Damien Miller95def091999-11-25 00:26:21 +1100347 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348
Damien Miller95def091999-11-25 00:26:21 +1100349 /* Check for immediate EOF on stdin. */
350 len = read(fileno(stdin), buf, 1);
351 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100352 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100353 debug("Sending eof.");
354 stdin_eof = 1;
355 packet_start(SSH_CMSG_EOF);
356 packet_send();
357 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100358 /*
359 * Got data. We must store the data in the buffer,
360 * and also process it as an escape character if
361 * appropriate.
362 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000363 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100364 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000365 else
Damien Miller95def091999-11-25 00:26:21 +1100366 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100367 }
Damien Miller95def091999-11-25 00:26:21 +1100368 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370}
371
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Damien Miller5428f641999-11-25 11:54:57 +1100373/*
374 * Make packets from buffered stdin data, and buffer them for sending to the
375 * connection.
376 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377
Ben Lindstrombba81212001-06-25 05:01:22 +0000378static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000379client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000381 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Damien Miller95def091999-11-25 00:26:21 +1100383 /* Send buffered stdin data to the server. */
384 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100385 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100386 len = buffer_len(&stdin_buffer);
387 /* Keep the packets at reasonable size. */
388 if (len > packet_get_maxsize())
389 len = packet_get_maxsize();
390 packet_start(SSH_CMSG_STDIN_DATA);
391 packet_put_string(buffer_ptr(&stdin_buffer), len);
392 packet_send();
393 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000394 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100395 /* If we have a pending EOF, send it now. */
396 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
397 packet_start(SSH_CMSG_EOF);
398 packet_send();
399 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401}
402
Damien Miller5428f641999-11-25 11:54:57 +1100403/*
404 * Checks if the client window has changed, and sends a packet about it to
405 * the server if so. The actual change is detected elsewhere (by a software
406 * interrupt on Unix); this just checks the flag and sends a message if
407 * appropriate.
408 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409
Ben Lindstrombba81212001-06-25 05:01:22 +0000410static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000411client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000412{
Damien Miller1383bd82000-04-06 12:32:37 +1000413 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414
Damien Miller1383bd82000-04-06 12:32:37 +1000415 if (! received_window_change_signal)
416 return;
417 /** XXX race */
418 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Millerd3444942000-09-30 14:20:03 +1100420 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000421
422 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000423 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000424 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000425 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
426 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000427 packet_start(SSH_CMSG_WINDOW_SIZE);
428 packet_put_int(ws.ws_row);
429 packet_put_int(ws.ws_col);
430 packet_put_int(ws.ws_xpixel);
431 packet_put_int(ws.ws_ypixel);
432 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434}
435
Damien Miller509b0102003-12-17 16:33:10 +1100436static void
437client_global_request_reply(int type, u_int32_t seq, void *ctxt)
438{
439 server_alive_timeouts = 0;
440 client_global_request_reply_fwd(type, seq, ctxt);
441}
442
443static void
444server_alive_check(void)
445{
446 if (++server_alive_timeouts > options.server_alive_count_max)
447 packet_disconnect("Timeout, server not responding.");
448 packet_start(SSH2_MSG_GLOBAL_REQUEST);
449 packet_put_cstring("keepalive@openssh.com");
450 packet_put_char(1); /* boolean: want reply */
451 packet_send();
452}
453
Damien Miller5428f641999-11-25 11:54:57 +1100454/*
455 * Waits until the client can do something (some data becomes available on
456 * one of the file descriptors).
457 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000458static void
Damien Miller5e953212001-01-30 09:14:00 +1100459client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000460 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461{
Damien Miller509b0102003-12-17 16:33:10 +1100462 struct timeval tv, *tvp;
463 int ret;
464
Damien Miller5e953212001-01-30 09:14:00 +1100465 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000466 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467
Damien Miller1383bd82000-04-06 12:32:37 +1000468 if (!compat20) {
469 /* Read from the connection, unless our buffers are full. */
470 if (buffer_len(&stdout_buffer) < buffer_high &&
471 buffer_len(&stderr_buffer) < buffer_high &&
472 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100473 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000474 /*
475 * Read from stdin, unless we have seen EOF or have very much
476 * buffered data to send to the server.
477 */
478 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100479 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000480
481 /* Select stdout/stderr if have data in buffer. */
482 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100483 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000484 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100485 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000486 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000487 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000488 if (session_closed && !channel_still_open() &&
489 !packet_have_data_to_write()) {
490 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100491 memset(*readsetp, 0, *nallocp);
492 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000493 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000494 } else {
495 FD_SET(connection_in, *readsetp);
496 }
Damien Miller1383bd82000-04-06 12:32:37 +1000497 }
498
Damien Miller95def091999-11-25 00:26:21 +1100499 /* Select server connection if have data to write to the server. */
500 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100501 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100502
Damien Miller0e220db2004-06-15 10:34:08 +1000503 if (control_fd != -1)
504 FD_SET(control_fd, *readsetp);
505
Damien Miller5428f641999-11-25 11:54:57 +1100506 /*
507 * Wait for something to happen. This will suspend the process until
508 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100509 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100510 */
Damien Miller95def091999-11-25 00:26:21 +1100511
Damien Miller509b0102003-12-17 16:33:10 +1100512 if (options.server_alive_interval == 0 || !compat20)
513 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000514 else {
Damien Miller509b0102003-12-17 16:33:10 +1100515 tv.tv_sec = options.server_alive_interval;
516 tv.tv_usec = 0;
517 tvp = &tv;
518 }
519 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
520 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100521 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000522
523 /*
524 * We have to clear the select masks, because we return.
525 * We have to return, because the mainloop checks for the flags
526 * set by the signal handlers.
527 */
Damien Miller79faeff2001-11-12 11:06:32 +1100528 memset(*readsetp, 0, *nallocp);
529 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000530
Damien Miller95def091999-11-25 00:26:21 +1100531 if (errno == EINTR)
532 return;
533 /* Note: we might still have data in the buffers. */
534 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
535 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100536 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100537 } else if (ret == 0)
538 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539}
540
Ben Lindstrombba81212001-06-25 05:01:22 +0000541static void
Damien Millerad833b32000-08-23 10:46:23 +1000542client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543{
Damien Miller95def091999-11-25 00:26:21 +1100544 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000545 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000546 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000547 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000548 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549
Damien Miller95def091999-11-25 00:26:21 +1100550 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Miller5428f641999-11-25 11:54:57 +1100552 /*
553 * Free (and clear) the buffer to reduce the amount of data that gets
554 * written to swap.
555 */
Damien Millerad833b32000-08-23 10:46:23 +1000556 buffer_free(bin);
557 buffer_free(bout);
558 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Send the suspend signal to the program itself. */
561 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Darren Tucker5d78de62004-11-05 20:35:44 +1100563 /* Reset window sizes in case they have changed */
564 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller95def091999-11-25 00:26:21 +1100566 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000567 buffer_init(bin);
568 buffer_init(bout);
569 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller95def091999-11-25 00:26:21 +1100571 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572}
573
Ben Lindstrombba81212001-06-25 05:01:22 +0000574static void
Damien Miller1383bd82000-04-06 12:32:37 +1000575client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576{
Damien Miller1383bd82000-04-06 12:32:37 +1000577 int len;
578 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller5428f641999-11-25 11:54:57 +1100580 /*
581 * Read input from the server, and add any such data to the buffer of
582 * the packet subsystem.
583 */
Damien Miller95def091999-11-25 00:26:21 +1100584 if (FD_ISSET(connection_in, readset)) {
585 /* Read as much as possible. */
586 len = read(connection_in, buf, sizeof(buf));
587 if (len == 0) {
588 /* Received EOF. The remote host has closed the connection. */
589 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
590 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592 quit_pending = 1;
593 return;
Damien Miller95def091999-11-25 00:26:21 +1100594 }
Damien Miller5428f641999-11-25 11:54:57 +1100595 /*
596 * There is a kernel bug on Solaris that causes select to
597 * sometimes wake up even though there is no data available.
598 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000599 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100600 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 if (len < 0) {
603 /* An error has encountered. Perhaps there is a network problem. */
604 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
605 host, strerror(errno));
606 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100607 quit_pending = 1;
608 return;
609 }
610 packet_process_incoming(buf, len);
611 }
Damien Miller1383bd82000-04-06 12:32:37 +1000612}
613
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000614static void
Damien Miller0e220db2004-06-15 10:34:08 +1000615client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
616{
617 int id;
618 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000619
Damien Miller0e220db2004-06-15 10:34:08 +1000620 id = packet_get_int();
621 packet_check_eom();
622
623 if ((c = channel_lookup(id)) == NULL) {
624 error("%s: no channel for id %d", __func__, id);
625 return;
626 }
627
628 if (type == SSH2_MSG_CHANNEL_SUCCESS)
629 debug2("Request suceeded on channel %d", id);
630 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
631 error("Request failed on channel %d", id);
632 channel_free(c);
633 }
634}
635
636static void
637client_extra_session2_setup(int id, void *arg)
638{
639 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000640 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000641 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000642 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000643
Damien Miller0e220db2004-06-15 10:34:08 +1000644 if (cctx == NULL)
645 fatal("%s: cctx == NULL", __func__);
646 if ((c = channel_lookup(id)) == NULL)
647 fatal("%s: no channel for id %d", __func__, id);
648
Damien Miller46d38de2005-07-17 17:02:09 +1000649 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000650 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
651 char *proto, *data;
652 /* Get reasonable local authentication information. */
653 client_x11_get_proto(display, options.xauth_location,
654 options.forward_x11_trusted, &proto, &data);
655 /* Request forwarding with authentication spoofing. */
656 debug("Requesting X11 forwarding with authentication spoofing.");
657 x11_request_forwarding_with_spoofing(id, display, proto, data);
658 /* XXX wait for reply */
659 }
660
661 if (cctx->want_agent_fwd && options.forward_agent) {
662 debug("Requesting authentication agent forwarding.");
663 channel_request_start(id, "auth-agent-req@openssh.com", 0);
664 packet_send();
665 }
666
Darren Tuckerfc959702004-07-17 16:12:08 +1000667 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000668 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000669 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000670
Damien Miller0e220db2004-06-15 10:34:08 +1000671 c->confirm_ctx = NULL;
672 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000673 xfree(cctx->term);
674 if (cctx->env != NULL) {
675 for (i = 0; cctx->env[i] != NULL; i++)
676 xfree(cctx->env[i]);
677 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000678 }
Damien Miller3756dce2004-06-18 01:17:29 +1000679 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000680}
681
682static void
683client_process_control(fd_set * readset)
684{
685 Buffer m;
686 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000687 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000688 socklen_t addrlen;
689 struct sockaddr_storage addr;
690 struct confirm_ctx *cctx;
691 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000692 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000693 uid_t euid;
694 gid_t egid;
695
696 /*
697 * Accept connection on control socket
698 */
699 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
700 return;
701
702 memset(&addr, 0, sizeof(addr));
703 addrlen = sizeof(addr);
704 if ((client_fd = accept(control_fd,
705 (struct sockaddr*)&addr, &addrlen)) == -1) {
706 error("%s accept: %s", __func__, strerror(errno));
707 return;
708 }
709
710 if (getpeereid(client_fd, &euid, &egid) < 0) {
711 error("%s getpeereid failed: %s", __func__, strerror(errno));
712 close(client_fd);
713 return;
714 }
715 if ((euid != 0) && (getuid() != euid)) {
716 error("control mode uid mismatch: peer euid %u != uid %u",
717 (u_int) euid, (u_int) getuid());
718 close(client_fd);
719 return;
720 }
Damien Miller23f07702004-06-18 01:19:03 +1000721
Damien Miller0e220db2004-06-15 10:34:08 +1000722 unset_nonblock(client_fd);
723
Darren Tucker7ebfc102004-11-07 20:06:19 +1100724 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000725 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100726 if (ssh_msg_recv(client_fd, &m) == -1) {
727 error("%s: client msg_recv failed", __func__);
728 close(client_fd);
729 buffer_free(&m);
730 return;
731 }
Damien Miller13390022005-07-06 09:44:19 +1000732 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100733 error("%s: wrong client version %d", __func__, ver);
734 buffer_free(&m);
735 close(client_fd);
736 return;
737 }
Damien Miller0e220db2004-06-15 10:34:08 +1000738
Darren Tucker7ebfc102004-11-07 20:06:19 +1100739 allowed = 1;
740 command = buffer_get_int(&m);
741 flags = buffer_get_int(&m);
742
743 buffer_clear(&m);
744
745 switch (command) {
746 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000747 if (options.control_master == SSHCTL_MASTER_ASK ||
748 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100749 allowed = ask_permission("Allow shared connection "
750 "to %s? ", host);
751 /* continue below */
752 break;
753 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000754 if (options.control_master == SSHCTL_MASTER_ASK ||
755 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100756 allowed = ask_permission("Terminate shared connection "
757 "to %s? ", host);
758 if (allowed)
759 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100760 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100761 case SSHMUX_COMMAND_ALIVE_CHECK:
762 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
763 buffer_clear(&m);
764 buffer_put_int(&m, allowed);
765 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000766 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100767 error("%s: client msg_send failed", __func__);
768 close(client_fd);
769 buffer_free(&m);
770 return;
771 }
772 buffer_free(&m);
773 close(client_fd);
774 return;
775 default:
776 error("Unsupported command %d", command);
777 buffer_free(&m);
778 close(client_fd);
779 return;
780 }
781
782 /* Reply for SSHMUX_COMMAND_OPEN */
783 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000784 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000785 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000786 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000787 error("%s: client msg_send failed", __func__);
788 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000789 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000790 return;
791 }
Damien Miller0e220db2004-06-15 10:34:08 +1000792
Damien Miller23f07702004-06-18 01:19:03 +1000793 if (!allowed) {
794 error("Refused control connection");
795 close(client_fd);
796 buffer_free(&m);
797 return;
798 }
799
Darren Tucker7ebfc102004-11-07 20:06:19 +1100800 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000801 if (ssh_msg_recv(client_fd, &m) == -1) {
802 error("%s: client msg_recv failed", __func__);
803 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000804 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000805 return;
806 }
Damien Miller13390022005-07-06 09:44:19 +1000807 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000808 error("%s: wrong client version %d", __func__, ver);
809 buffer_free(&m);
810 close(client_fd);
811 return;
812 }
813
814 cctx = xmalloc(sizeof(*cctx));
815 memset(cctx, 0, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100816 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
817 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000818 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
819 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000820 cctx->term = buffer_get_string(&m, &len);
821
822 cmd = buffer_get_string(&m, &len);
823 buffer_init(&cctx->cmd);
824 buffer_append(&cctx->cmd, cmd, strlen(cmd));
825
Damien Miller3756dce2004-06-18 01:17:29 +1000826 env_len = buffer_get_int(&m);
827 env_len = MIN(env_len, 4096);
828 debug3("%s: receiving %d env vars", __func__, env_len);
829 if (env_len != 0) {
830 cctx->env = xmalloc(sizeof(*cctx->env) * (env_len + 1));
831 for (i = 0; i < env_len; i++)
832 cctx->env[i] = buffer_get_string(&m, &len);
833 cctx->env[i] = NULL;
834 }
835
Damien Miller0e220db2004-06-15 10:34:08 +1000836 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
837 cctx->want_tty, cctx->want_subsys, cmd);
838
839 /* Gather fds from client */
840 new_fd[0] = mm_receive_fd(client_fd);
841 new_fd[1] = mm_receive_fd(client_fd);
842 new_fd[2] = mm_receive_fd(client_fd);
843
844 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
845 new_fd[0], new_fd[1], new_fd[2]);
846
847 /* Try to pick up ttymodes from client before it goes raw */
848 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
849 error("%s: tcgetattr: %s", __func__, strerror(errno));
850
Darren Tucker7ebfc102004-11-07 20:06:19 +1100851 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000852 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000853 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000854 error("%s: client msg_send failed", __func__);
855 close(client_fd);
856 close(new_fd[0]);
857 close(new_fd[1]);
858 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000859 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100860 xfree(cctx->term);
861 if (env_len != 0) {
862 for (i = 0; i < env_len; i++)
863 xfree(cctx->env[i]);
864 xfree(cctx->env);
865 }
Damien Miller0e220db2004-06-15 10:34:08 +1000866 return;
867 }
868 buffer_free(&m);
869
870 /* enable nonblocking unless tty */
871 if (!isatty(new_fd[0]))
872 set_nonblock(new_fd[0]);
873 if (!isatty(new_fd[1]))
874 set_nonblock(new_fd[1]);
875 if (!isatty(new_fd[2]))
876 set_nonblock(new_fd[2]);
877
878 set_nonblock(client_fd);
879
Darren Tuckerfc959702004-07-17 16:12:08 +1000880 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000881 new_fd[0], new_fd[1], new_fd[2],
882 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
883 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
884
885 /* XXX */
886 c->ctl_fd = client_fd;
887
888 debug3("%s: channel_new: %d", __func__, c->self);
889
890 channel_send_open(c->self);
891 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
892}
893
894static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000895process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000896{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000897 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100898 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000899 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000900 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100901 u_short cancel_port;
902 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000903
904 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000905 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000906 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000907 if (s == NULL)
908 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000909 while (*s && isspace(*s))
910 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000911 if (*s == '-')
912 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000913 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000914 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000915
Darren Tucker1973c882004-05-24 10:34:36 +1000916 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000917 logit("Commands:");
918 logit(" -Lport:host:hostport Request local forward");
919 logit(" -Rport:host:hostport Request remote forward");
920 logit(" -KRhostport Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100921 if (!options.permit_local_command)
922 goto out;
923 logit(" !args Execute local command");
924 goto out;
925 }
926
927 if (*s == '!' && options.permit_local_command) {
928 s++;
929 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000930 goto out;
931 }
932
933 if (*s == 'K') {
934 delete = 1;
935 s++;
936 }
937 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000938 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000939 goto out;
940 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000941 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000942 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000943 if (local && delete) {
944 logit("Not supported.");
945 goto out;
946 }
947 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000948 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000949 goto out;
950 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000951
952 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000953 while (*s && isspace(*s))
954 s++;
955
Darren Tuckere7066df2004-05-24 10:18:05 +1000956 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100957 cancel_port = 0;
958 cancel_host = hpdelim(&s); /* may be NULL */
959 if (s != NULL) {
960 cancel_port = a2port(s);
961 cancel_host = cleanhostname(cancel_host);
962 } else {
963 cancel_port = a2port(cancel_host);
964 cancel_host = NULL;
965 }
966 if (cancel_port == 0) {
967 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000968 goto out;
969 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100970 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000971 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100972 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000973 logit("Bad forwarding specification.");
974 goto out;
975 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000976 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100977 if (channel_setup_local_fwd_listener(fwd.listen_host,
978 fwd.listen_port, fwd.connect_host,
979 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000980 logit("Port forwarding failed.");
981 goto out;
982 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100983 } else {
984 channel_request_remote_forwarding(fwd.listen_host,
985 fwd.listen_port, fwd.connect_host,
986 fwd.connect_port);
987 }
988
Darren Tuckere7066df2004-05-24 10:18:05 +1000989 logit("Forwarding port.");
990 }
991
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000992out:
993 signal(SIGINT, handler);
994 enter_raw_mode();
995 if (cmd)
996 xfree(cmd);
997}
998
Damien Millerad833b32000-08-23 10:46:23 +1000999/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001000static int
Damien Millerad833b32000-08-23 10:46:23 +10001001process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1002{
1003 char string[1024];
1004 pid_t pid;
1005 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001006 u_int i;
1007 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001008 char *s;
1009
Damien Millereccb9de2005-06-17 12:59:34 +10001010 if (len <= 0)
1011 return (0);
1012
1013 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001014 /* Get one character at a time. */
1015 ch = buf[i];
1016
1017 if (escape_pending) {
1018 /* We have previously seen an escape character. */
1019 /* Clear the flag now. */
1020 escape_pending = 0;
1021
1022 /* Process the escaped character. */
1023 switch (ch) {
1024 case '.':
1025 /* Terminate the connection. */
1026 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1027 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001028
1029 quit_pending = 1;
1030 return -1;
1031
1032 case 'Z' - 64:
1033 /* Suspend the program. */
1034 /* Print a message to that effect to the user. */
1035 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1036 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001037
1038 /* Restore terminal modes and suspend. */
1039 client_suspend_self(bin, bout, berr);
1040
1041 /* We have been continued. */
1042 continue;
1043
Damien Miller54c45982003-05-15 10:20:13 +10001044 case 'B':
1045 if (compat20) {
1046 snprintf(string, sizeof string,
1047 "%cB\r\n", escape_char);
1048 buffer_append(berr, string,
1049 strlen(string));
1050 channel_request_start(session_ident,
1051 "break", 0);
1052 packet_put_int(1000);
1053 packet_send();
1054 }
1055 continue;
1056
Ben Lindstromf28f6342001-04-04 02:03:04 +00001057 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001058 if (compat20) {
1059 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001060 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001061 else
1062 need_rekeying = 1;
1063 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001064 continue;
1065
Damien Millerad833b32000-08-23 10:46:23 +10001066 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001067 /*
1068 * Detach the program (continue to serve connections,
1069 * but put in background and no more new connections).
1070 */
Damien Miller96507ef2001-11-12 10:52:25 +11001071 /* Restore tty modes. */
1072 leave_raw_mode();
1073
1074 /* Stop listening for new connections. */
1075 channel_stop_listening();
1076
1077 snprintf(string, sizeof string,
1078 "%c& [backgrounded]\n", escape_char);
1079 buffer_append(berr, string, strlen(string));
1080
1081 /* Fork into background. */
1082 pid = fork();
1083 if (pid < 0) {
1084 error("fork: %.100s", strerror(errno));
1085 continue;
1086 }
1087 if (pid != 0) { /* This is the parent. */
1088 /* The parent just exits. */
1089 exit(0);
1090 }
1091 /* The child continues serving connections. */
1092 if (compat20) {
1093 buffer_append(bin, "\004", 1);
1094 /* fake EOF on stdin */
1095 return -1;
1096 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001097 /*
1098 * Sending SSH_CMSG_EOF alone does not always appear
1099 * to be enough. So we try to send an EOF character
1100 * first.
1101 */
1102 packet_start(SSH_CMSG_STDIN_DATA);
1103 packet_put_string("\004", 1);
1104 packet_send();
1105 /* Close stdin. */
1106 stdin_eof = 1;
1107 if (buffer_len(bin) == 0) {
1108 packet_start(SSH_CMSG_EOF);
1109 packet_send();
1110 }
1111 }
Damien Miller96507ef2001-11-12 10:52:25 +11001112 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001113
1114 case '?':
1115 snprintf(string, sizeof string,
1116"%c?\r\n\
1117Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001118%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001119%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001120%cC - open a command line\r\n\
1121%cR - Request rekey (SSH protocol 2 only)\r\n\
1122%c^Z - suspend ssh\r\n\
1123%c# - list forwarded connections\r\n\
1124%c& - background ssh (when waiting for connections to terminate)\r\n\
1125%c? - this message\r\n\
1126%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001127(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001128 escape_char, escape_char, escape_char, escape_char,
1129 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001130 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001131 buffer_append(berr, string, strlen(string));
1132 continue;
1133
1134 case '#':
1135 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1136 buffer_append(berr, string, strlen(string));
1137 s = channel_open_message();
1138 buffer_append(berr, s, strlen(s));
1139 xfree(s);
1140 continue;
1141
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001142 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001143 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001144 continue;
1145
Damien Millerad833b32000-08-23 10:46:23 +10001146 default:
1147 if (ch != escape_char) {
1148 buffer_put_char(bin, escape_char);
1149 bytes++;
1150 }
1151 /* Escaped characters fall through here */
1152 break;
1153 }
1154 } else {
1155 /*
1156 * The previous character was not an escape char. Check if this
1157 * is an escape.
1158 */
1159 if (last_was_cr && ch == escape_char) {
1160 /* It is. Set the flag and continue to next character. */
1161 escape_pending = 1;
1162 continue;
1163 }
1164 }
1165
1166 /*
1167 * Normal character. Record whether it was a newline,
1168 * and append it to the buffer.
1169 */
1170 last_was_cr = (ch == '\r' || ch == '\n');
1171 buffer_put_char(bin, ch);
1172 bytes++;
1173 }
1174 return bytes;
1175}
1176
Ben Lindstrombba81212001-06-25 05:01:22 +00001177static void
Damien Miller1383bd82000-04-06 12:32:37 +10001178client_process_input(fd_set * readset)
1179{
Damien Miller166fca82000-04-20 07:42:21 +10001180 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001181 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001182
Damien Miller95def091999-11-25 00:26:21 +11001183 /* Read input from stdin. */
1184 if (FD_ISSET(fileno(stdin), readset)) {
1185 /* Read as much as possible. */
1186 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001187 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1188 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001189 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001190 /*
1191 * Received EOF or error. They are treated
1192 * similarly, except that an error message is printed
1193 * if it was an error condition.
1194 */
Damien Miller95def091999-11-25 00:26:21 +11001195 if (len < 0) {
1196 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1197 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001198 }
1199 /* Mark that we have seen EOF. */
1200 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001201 /*
1202 * Send an EOF message to the server unless there is
1203 * data in the buffer. If there is data in the
1204 * buffer, no message will be sent now. Code
1205 * elsewhere will send the EOF when the buffer
1206 * becomes empty if stdin_eof is set.
1207 */
Damien Miller95def091999-11-25 00:26:21 +11001208 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001209 packet_start(SSH_CMSG_EOF);
1210 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001211 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001212 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001213 /*
1214 * Normal successful read, and no escape character.
1215 * Just append the data to buffer.
1216 */
Damien Miller95def091999-11-25 00:26:21 +11001217 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001218 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001219 /*
1220 * Normal, successful read. But we have an escape character
1221 * and have to process the characters one by one.
1222 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001223 if (process_escapes(&stdin_buffer, &stdout_buffer,
1224 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001225 return;
Damien Miller95def091999-11-25 00:26:21 +11001226 }
1227 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001228}
1229
Ben Lindstrombba81212001-06-25 05:01:22 +00001230static void
Damien Miller95def091999-11-25 00:26:21 +11001231client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001232{
Damien Miller95def091999-11-25 00:26:21 +11001233 int len;
1234 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001235
Damien Miller95def091999-11-25 00:26:21 +11001236 /* Write buffered output to stdout. */
1237 if (FD_ISSET(fileno(stdout), writeset)) {
1238 /* Write as much data as possible. */
1239 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001240 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001241 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001242 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001243 len = 0;
1244 else {
Damien Miller5428f641999-11-25 11:54:57 +11001245 /*
1246 * An error or EOF was encountered. Put an
1247 * error message to stderr buffer.
1248 */
Damien Miller95def091999-11-25 00:26:21 +11001249 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1250 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001251 quit_pending = 1;
1252 return;
1253 }
1254 }
1255 /* Consume printed data from the buffer. */
1256 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001257 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001258 }
Damien Miller95def091999-11-25 00:26:21 +11001259 /* Write buffered output to stderr. */
1260 if (FD_ISSET(fileno(stderr), writeset)) {
1261 /* Write as much data as possible. */
1262 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001263 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001264 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001265 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001266 len = 0;
1267 else {
Damien Miller5428f641999-11-25 11:54:57 +11001268 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001269 quit_pending = 1;
1270 return;
1271 }
1272 }
1273 /* Consume printed characters from the buffer. */
1274 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001275 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001276 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277}
1278
Damien Miller5428f641999-11-25 11:54:57 +11001279/*
Damien Millerb38eff82000-04-01 11:09:21 +10001280 * Get packets from the connection input buffer, and process them as long as
1281 * there are packets available.
1282 *
1283 * Any unknown packets received during the actual
1284 * session cause the session to terminate. This is
1285 * intended to make debugging easier since no
1286 * confirmations are sent. Any compatible protocol
1287 * extensions must be negotiated during the
1288 * preparatory phase.
1289 */
1290
Ben Lindstrombba81212001-06-25 05:01:22 +00001291static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001292client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001293{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001294 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001295}
1296
Damien Millerad833b32000-08-23 10:46:23 +10001297/* scan buf[] for '~' before sending data to the peer */
1298
Ben Lindstrombba81212001-06-25 05:01:22 +00001299static int
Damien Millerad833b32000-08-23 10:46:23 +10001300simple_escape_filter(Channel *c, char *buf, int len)
1301{
1302 /* XXX we assume c->extended is writeable */
1303 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1304}
1305
Ben Lindstrombba81212001-06-25 05:01:22 +00001306static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001307client_channel_closed(int id, void *arg)
1308{
Damien Miller3ec27592001-10-12 11:35:04 +10001309 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001310 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001311 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001312}
1313
Damien Millerb38eff82000-04-01 11:09:21 +10001314/*
Damien Miller5428f641999-11-25 11:54:57 +11001315 * Implements the interactive session with the server. This is called after
1316 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001317 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1318 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001319 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001320
Damien Miller4af51302000-04-16 11:18:38 +10001321int
Damien Millerad833b32000-08-23 10:46:23 +10001322client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001323{
Damien Miller5e953212001-01-30 09:14:00 +11001324 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001325 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001326 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1327 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001328 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001329
Damien Miller95def091999-11-25 00:26:21 +11001330 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001331
Damien Miller95def091999-11-25 00:26:21 +11001332 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001333
Damien Miller95def091999-11-25 00:26:21 +11001334 /* Initialize variables. */
1335 escape_pending = 0;
1336 last_was_cr = 1;
1337 exit_status = -1;
1338 stdin_eof = 0;
1339 buffer_high = 64 * 1024;
1340 connection_in = packet_get_connection_in();
1341 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001342 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001343 if (control_fd != -1)
1344 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001345
1346 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001347 /* enable nonblocking unless tty */
1348 if (!isatty(fileno(stdin)))
1349 set_nonblock(fileno(stdin));
1350 if (!isatty(fileno(stdout)))
1351 set_nonblock(fileno(stdout));
1352 if (!isatty(fileno(stderr)))
1353 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001354 max_fd = MAX(max_fd, fileno(stdin));
1355 max_fd = MAX(max_fd, fileno(stdout));
1356 max_fd = MAX(max_fd, fileno(stderr));
1357 }
Damien Miller95def091999-11-25 00:26:21 +11001358 stdin_bytes = 0;
1359 stdout_bytes = 0;
1360 stderr_bytes = 0;
1361 quit_pending = 0;
1362 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001363
Damien Miller95def091999-11-25 00:26:21 +11001364 /* Initialize buffers. */
1365 buffer_init(&stdin_buffer);
1366 buffer_init(&stdout_buffer);
1367 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001368
Damien Millerb38eff82000-04-01 11:09:21 +10001369 client_init_dispatch();
1370
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001371 /*
1372 * Set signal handlers, (e.g. to restore non-blocking mode)
1373 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1374 */
Darren Tucker07336da2004-11-05 20:02:16 +11001375 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1376 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001377 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1378 signal(SIGINT, signal_handler);
1379 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1380 signal(SIGQUIT, signal_handler);
1381 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1382 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001383 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384
Damien Miller95def091999-11-25 00:26:21 +11001385 if (have_pty)
1386 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001387
Ben Lindstrom5b828322001-02-09 01:34:36 +00001388 if (compat20) {
1389 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001390 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001391 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001392 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001393 if (session_ident != -1)
1394 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001395 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001396 } else {
1397 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001398 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001399 }
Damien Millerad833b32000-08-23 10:46:23 +10001400
Damien Miller95def091999-11-25 00:26:21 +11001401 /* Main loop of the client for the interactive session mode. */
1402 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403
Damien Miller5428f641999-11-25 11:54:57 +11001404 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001405 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001407 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001408 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001409
1410 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001411
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001412 if (rekeying) {
1413 debug("rekeying in progress");
1414 } else {
1415 /*
1416 * Make packets of buffered stdin data, and buffer
1417 * them for sending to the server.
1418 */
1419 if (!compat20)
1420 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001421
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001422 /*
1423 * Make packets from buffered channel data, and
1424 * enqueue them for sending to the server.
1425 */
1426 if (packet_not_very_much_data_to_write())
1427 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001429 /*
1430 * Check if the window size has changed, and buffer a
1431 * message about it to the server if so.
1432 */
1433 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001435 if (quit_pending)
1436 break;
1437 }
Damien Miller5428f641999-11-25 11:54:57 +11001438 /*
1439 * Wait until we have something to do (something becomes
1440 * available on one of the descriptors).
1441 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001442 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001443 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001444 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001445
Damien Miller95def091999-11-25 00:26:21 +11001446 if (quit_pending)
1447 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001449 /* Do channel operations unless rekeying in progress. */
1450 if (!rekeying) {
1451 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001452 if (need_rekeying || packet_need_rekeying()) {
1453 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001454 xxx_kex->done = 0;
1455 kex_send_kexinit(xxx_kex);
1456 need_rekeying = 0;
1457 }
1458 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001459
Damien Miller1383bd82000-04-06 12:32:37 +10001460 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001461 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001462
Damien Miller0e220db2004-06-15 10:34:08 +10001463 /* Accept control connections. */
1464 client_process_control(readset);
1465
Damien Miller1383bd82000-04-06 12:32:37 +10001466 if (quit_pending)
1467 break;
1468
1469 if (!compat20) {
1470 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001471 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001472 /*
1473 * Process output to stdout and stderr. Output to
1474 * the connection is processed elsewhere (above).
1475 */
Damien Miller5e953212001-01-30 09:14:00 +11001476 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001477 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001478
Damien Miller5428f641999-11-25 11:54:57 +11001479 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001480 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001481 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001482 }
Damien Miller5e953212001-01-30 09:14:00 +11001483 if (readset)
1484 xfree(readset);
1485 if (writeset)
1486 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001487
Damien Miller95def091999-11-25 00:26:21 +11001488 /* Terminate the session. */
1489
1490 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001491 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001492
Ben Lindstrom601e4362001-06-21 03:19:23 +00001493 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001494
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001495 if (have_pty)
1496 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001497
1498 /* restore blocking io */
1499 if (!isatty(fileno(stdin)))
1500 unset_nonblock(fileno(stdin));
1501 if (!isatty(fileno(stdout)))
1502 unset_nonblock(fileno(stdout));
1503 if (!isatty(fileno(stderr)))
1504 unset_nonblock(fileno(stderr));
1505
Damien Millerd6965512003-12-17 16:31:53 +11001506 /*
1507 * If there was no shell or command requested, there will be no remote
1508 * exit status to be returned. In that case, clear error code if the
1509 * connection was deliberately terminated at this end.
1510 */
1511 if (no_shell_flag && received_signal == SIGTERM) {
1512 received_signal = 0;
1513 exit_status = 0;
1514 }
1515
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001516 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001517 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001518
1519 /*
1520 * In interactive mode (with pseudo tty) display a message indicating
1521 * that the connection has been closed.
1522 */
1523 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1524 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1525 buffer_append(&stderr_buffer, buf, strlen(buf));
1526 }
1527
Damien Miller95def091999-11-25 00:26:21 +11001528 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001529 while (buffer_len(&stdout_buffer) > 0) {
1530 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001531 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001532 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001533 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001534 break;
1535 }
Damien Miller95def091999-11-25 00:26:21 +11001536 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001537 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001538 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001539
Damien Miller95def091999-11-25 00:26:21 +11001540 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001541 while (buffer_len(&stderr_buffer) > 0) {
1542 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001543 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001544 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001545 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001546 break;
1547 }
Damien Miller95def091999-11-25 00:26:21 +11001548 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001549 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001550 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001551
Damien Miller95def091999-11-25 00:26:21 +11001552 /* Clear and free any buffers. */
1553 memset(buf, 0, sizeof(buf));
1554 buffer_free(&stdin_buffer);
1555 buffer_free(&stdout_buffer);
1556 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557
Damien Miller95def091999-11-25 00:26:21 +11001558 /* Report bytes transferred, and transfer rates. */
1559 total_time = get_current_time() - start_time;
1560 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001561 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001562 if (total_time > 0)
1563 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001564 stdin_bytes / total_time, stdout_bytes / total_time,
1565 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001566
1567 /* Return the exit status of the program. */
1568 debug("Exit status %d", exit_status);
1569 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001570}
Damien Millerb38eff82000-04-01 11:09:21 +10001571
1572/*********/
1573
Ben Lindstrombba81212001-06-25 05:01:22 +00001574static void
Damien Miller630d6f42002-01-22 23:17:30 +11001575client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001576{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001577 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001578 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001579 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001580 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001581 memset(data, 0, data_len);
1582 xfree(data);
1583}
Ben Lindstrombba81212001-06-25 05:01:22 +00001584static void
Damien Miller630d6f42002-01-22 23:17:30 +11001585client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001586{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001587 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001588 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001589 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001590 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001591 memset(data, 0, data_len);
1592 xfree(data);
1593}
Ben Lindstrombba81212001-06-25 05:01:22 +00001594static void
Damien Miller630d6f42002-01-22 23:17:30 +11001595client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001596{
Damien Millerb38eff82000-04-01 11:09:21 +10001597 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001598 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001599 /* Acknowledge the exit. */
1600 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1601 packet_send();
1602 /*
1603 * Must wait for packet to be sent since we are
1604 * exiting the loop.
1605 */
1606 packet_write_wait();
1607 /* Flag that we want to exit. */
1608 quit_pending = 1;
1609}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001610static void
1611client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1612{
1613 Channel *c = NULL;
1614 int remote_id, sock;
1615
1616 /* Read the remote channel number from the message. */
1617 remote_id = packet_get_int();
1618 packet_check_eom();
1619
1620 /*
1621 * Get a connection to the local authentication agent (this may again
1622 * get forwarded).
1623 */
1624 sock = ssh_get_authentication_socket();
1625
1626 /*
1627 * If we could not connect the agent, send an error message back to
1628 * the server. This should never happen unless the agent dies,
1629 * because authentication forwarding is only enabled if we have an
1630 * agent.
1631 */
1632 if (sock >= 0) {
1633 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1634 -1, 0, 0, 0, "authentication agent connection", 1);
1635 c->remote_id = remote_id;
1636 c->force_drain = 1;
1637 }
1638 if (c == NULL) {
1639 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1640 packet_put_int(remote_id);
1641 } else {
1642 /* Send a confirmation to the remote host. */
1643 debug("Forwarding authentication connection.");
1644 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1645 packet_put_int(remote_id);
1646 packet_put_int(c->self);
1647 }
1648 packet_send();
1649}
Damien Millerb38eff82000-04-01 11:09:21 +10001650
Ben Lindstrombba81212001-06-25 05:01:22 +00001651static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001652client_request_forwarded_tcpip(const char *request_type, int rchan)
1653{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001654 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001655 char *listen_address, *originator_address;
1656 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001657 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001658
1659 /* Get rest of the packet */
1660 listen_address = packet_get_string(NULL);
1661 listen_port = packet_get_int();
1662 originator_address = packet_get_string(NULL);
1663 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001664 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001665
1666 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1667 listen_address, listen_port, originator_address, originator_port);
1668
Ben Lindstrom173e6462001-07-04 05:15:15 +00001669 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001670 if (sock < 0) {
1671 xfree(originator_address);
1672 xfree(listen_address);
1673 return NULL;
1674 }
1675 c = channel_new("forwarded-tcpip",
1676 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1677 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001678 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001679 xfree(originator_address);
1680 xfree(listen_address);
1681 return c;
1682}
1683
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001684static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001685client_request_x11(const char *request_type, int rchan)
1686{
1687 Channel *c = NULL;
1688 char *originator;
1689 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001690 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691
1692 if (!options.forward_x11) {
1693 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001694 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001695 return NULL;
1696 }
1697 originator = packet_get_string(NULL);
1698 if (datafellows & SSH_BUG_X11FWD) {
1699 debug2("buggy server: x11 request w/o originator_port");
1700 originator_port = 0;
1701 } else {
1702 originator_port = packet_get_int();
1703 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001704 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001705 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001706 debug("client_request_x11: request from %s %d", originator,
1707 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001708 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001709 sock = x11_connect_display();
1710 if (sock < 0)
1711 return NULL;
1712 c = channel_new("x11",
1713 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001714 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001715 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001716 return c;
1717}
1718
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001719static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001720client_request_agent(const char *request_type, int rchan)
1721{
1722 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001723 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001724
1725 if (!options.forward_agent) {
1726 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001727 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001728 return NULL;
1729 }
1730 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001731 if (sock < 0)
1732 return NULL;
1733 c = channel_new("authentication agent connection",
1734 SSH_CHANNEL_OPEN, sock, sock, -1,
1735 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001736 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001737 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001738 return c;
1739}
1740
Damien Millerbd483e72000-04-30 10:00:53 +10001741/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001742static void
Damien Miller630d6f42002-01-22 23:17:30 +11001743client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001744{
1745 Channel *c = NULL;
1746 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001747 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001748 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001749
1750 ctype = packet_get_string(&len);
1751 rchan = packet_get_int();
1752 rwindow = packet_get_int();
1753 rmaxpack = packet_get_int();
1754
Damien Millere247cc42000-05-07 12:03:14 +10001755 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001756 ctype, rchan, rwindow, rmaxpack);
1757
Damien Miller0bc1bd82000-11-13 22:57:25 +11001758 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1759 c = client_request_forwarded_tcpip(ctype, rchan);
1760 } else if (strcmp(ctype, "x11") == 0) {
1761 c = client_request_x11(ctype, rchan);
1762 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1763 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001764 }
1765/* XXX duplicate : */
1766 if (c != NULL) {
1767 debug("confirm %s", ctype);
1768 c->remote_id = rchan;
1769 c->remote_window = rwindow;
1770 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001771 if (c->type != SSH_CHANNEL_CONNECTING) {
1772 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1773 packet_put_int(c->remote_id);
1774 packet_put_int(c->self);
1775 packet_put_int(c->local_window);
1776 packet_put_int(c->local_maxpacket);
1777 packet_send();
1778 }
Damien Millerbd483e72000-04-30 10:00:53 +10001779 } else {
1780 debug("failure %s", ctype);
1781 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1782 packet_put_int(rchan);
1783 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001784 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001785 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001786 packet_put_cstring("");
1787 }
Damien Millerbd483e72000-04-30 10:00:53 +10001788 packet_send();
1789 }
1790 xfree(ctype);
1791}
Ben Lindstrombba81212001-06-25 05:01:22 +00001792static void
Damien Miller630d6f42002-01-22 23:17:30 +11001793client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001794{
1795 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001796 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001797 char *rtype;
1798
1799 id = packet_get_int();
1800 rtype = packet_get_string(NULL);
1801 reply = packet_get_char();
1802
1803 debug("client_input_channel_req: channel %d rtype %s reply %d",
1804 id, rtype, reply);
1805
Damien Miller3bbd8782004-06-18 22:23:22 +10001806 if (id == -1) {
1807 error("client_input_channel_req: request for channel -1");
1808 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001809 error("client_input_channel_req: channel %d: unknown channel", id);
1810 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001811 exitval = packet_get_int();
1812 if (id == session_ident) {
1813 success = 1;
1814 exit_status = exitval;
1815 } else if (c->ctl_fd == -1) {
1816 error("client_input_channel_req: unexpected channel %d",
1817 session_ident);
1818 } else {
1819 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1820 success = 1;
1821 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001822 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001823 }
1824 if (reply) {
1825 packet_start(success ?
1826 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001827 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001828 packet_send();
1829 }
1830 xfree(rtype);
1831}
Damien Millerc3fa4072002-01-22 23:21:58 +11001832static void
1833client_input_global_request(int type, u_int32_t seq, void *ctxt)
1834{
1835 char *rtype;
1836 int want_reply;
1837 int success = 0;
1838
1839 rtype = packet_get_string(NULL);
1840 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001841 debug("client_input_global_request: rtype %s want_reply %d",
1842 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001843 if (want_reply) {
1844 packet_start(success ?
1845 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1846 packet_send();
1847 packet_write_wait();
1848 }
1849 xfree(rtype);
1850}
Damien Millerbd483e72000-04-30 10:00:53 +10001851
Damien Miller0e220db2004-06-15 10:34:08 +10001852void
Darren Tuckerfc959702004-07-17 16:12:08 +10001853client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001854 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001855 dispatch_fn *subsys_repl)
1856{
1857 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001858 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001859
1860 debug2("%s: id %d", __func__, id);
1861
Darren Tucker5d78de62004-11-05 20:35:44 +11001862 if ((c = channel_lookup(id)) == NULL)
1863 fatal("client_session2_setup: channel %d: unknown channel", id);
1864
Damien Miller0e220db2004-06-15 10:34:08 +10001865 if (want_tty) {
1866 struct winsize ws;
1867 struct termios tio;
1868
1869 /* Store window size in the packet. */
1870 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1871 memset(&ws, 0, sizeof(ws));
1872
1873 channel_request_start(id, "pty-req", 0);
1874 packet_put_cstring(term != NULL ? term : "");
1875 packet_put_int(ws.ws_col);
1876 packet_put_int(ws.ws_row);
1877 packet_put_int(ws.ws_xpixel);
1878 packet_put_int(ws.ws_ypixel);
1879 tio = get_saved_tio();
1880 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1881 packet_send();
1882 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001883 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001884 }
1885
1886 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001887 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001888 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001889 char *name, *val;
1890
1891 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001892 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001893 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001894 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001895 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001896 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001897 continue;
1898 }
1899 *val++ = '\0';
1900
1901 matched = 0;
1902 for (j = 0; j < options.num_send_env; j++) {
1903 if (match_pattern(name, options.send_env[j])) {
1904 matched = 1;
1905 break;
1906 }
1907 }
1908 if (!matched) {
1909 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001910 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001911 continue;
1912 }
1913
1914 debug("Sending env %s = %s", name, val);
1915 channel_request_start(id, "env", 0);
1916 packet_put_cstring(name);
1917 packet_put_cstring(val);
1918 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001919 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001920 }
1921 }
1922
1923 len = buffer_len(cmd);
1924 if (len > 0) {
1925 if (len > 900)
1926 len = 900;
1927 if (want_subsystem) {
1928 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1929 channel_request_start(id, "subsystem", subsys_repl != NULL);
1930 if (subsys_repl != NULL) {
1931 /* register callback for reply */
1932 /* XXX we assume that client_loop has already been called */
1933 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1934 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1935 }
1936 } else {
1937 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1938 channel_request_start(id, "exec", 0);
1939 }
1940 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1941 packet_send();
1942 } else {
1943 channel_request_start(id, "shell", 0);
1944 packet_send();
1945 }
1946}
1947
Ben Lindstrombba81212001-06-25 05:01:22 +00001948static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001949client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001950{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001951 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001952
Damien Miller1383bd82000-04-06 12:32:37 +10001953 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1954 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1955 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1956 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001957 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001958 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1959 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001960 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001961 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001962 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001963
1964 /* rekeying */
1965 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001966
1967 /* global request reply messages */
1968 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1969 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001970}
Ben Lindstrombba81212001-06-25 05:01:22 +00001971static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001972client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001973{
1974 dispatch_init(NULL);
1975 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1976 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1977 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001978 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1979 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1980 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001981 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1982 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1983 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001984
1985 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001986 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001987 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1988 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001989}
Ben Lindstrombba81212001-06-25 05:01:22 +00001990static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001991client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001992{
1993 client_init_dispatch_13();
1994 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1995 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1996}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001997static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001998client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001999{
Damien Miller1383bd82000-04-06 12:32:37 +10002000 if (compat20)
2001 client_init_dispatch_20();
2002 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002003 client_init_dispatch_13();
2004 else
2005 client_init_dispatch_15();
2006}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002007
2008/* client specific fatal cleanup */
2009void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002010cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002011{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002012 leave_raw_mode();
2013 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002014 if (options.control_path != NULL && control_fd != -1)
2015 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002016 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002017}