blob: a7c510ccaaf2d95f59cbd052c5c9efed4b5f9f82 [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 Millerf17883e2006-03-15 11:45:54 +110062RCSID("$OpenBSD: clientloop.c,v 1.154 2006/02/20 17:19:54 stevesk Exp $");
Damien Miller17e91c02006-03-15 11:28:34 +110063
Damien Millerf17883e2006-03-15 11:45:54 +110064#include <sys/types.h>
65#ifdef HAVE_SYS_STAT_H
66# include <sys/stat.h>
67#endif
Damien Miller17e91c02006-03-15 11:28:34 +110068#include <sys/ioctl.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110069
Damien Miller03e20032006-03-15 11:16:59 +110070#include <paths.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110071#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000074#include "ssh1.h"
75#include "ssh2.h"
76#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077#include "packet.h"
78#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100079#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000080#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100081#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100082#include "buffer.h"
83#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110084#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000085#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000086#include "log.h"
87#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000088#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +110089#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "authfd.h"
91#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100092#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000093#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +100094#include "monitor_fdpass.h"
95#include "match.h"
96#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110097
98/* import options */
99extern Options options;
100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101/* Flag indicating that stdin should be redirected from /dev/null. */
102extern int stdin_null_flag;
103
Damien Millerd6965512003-12-17 16:31:53 +1100104/* Flag indicating that no shell has been requested */
105extern int no_shell_flag;
106
Damien Miller0e220db2004-06-15 10:34:08 +1000107/* Control socket */
108extern int control_fd;
109
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * Name of the host we are connecting to. This is the name given on the
112 * command line, or the HostName specified for the user-supplied name in a
113 * configuration file.
114 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115extern char *host;
116
Damien Miller5428f641999-11-25 11:54:57 +1100117/*
118 * Flag to indicate that we have received a window change signal which has
119 * not yet been processed. This will cause a message indicating the new
120 * window size to be sent to the server a little later. This is volatile
121 * because this is updated in a signal handler.
122 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000123static volatile sig_atomic_t received_window_change_signal = 0;
124static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Damien Miller788f2122005-11-05 15:14:59 +1100126/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127static int in_non_blocking_mode = 0;
128
129/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000130static int quit_pending; /* Set to non-zero to quit the client loop. */
131static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100132static int escape_pending; /* Last character was the escape character */
133static int last_was_cr; /* Last character was a newline. */
134static int exit_status; /* Used to store the exit status of the command. */
135static int stdin_eof; /* EOF has been encountered on standard error. */
136static Buffer stdin_buffer; /* Buffer for stdin data. */
137static Buffer stdout_buffer; /* Buffer for stdout data. */
138static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000139static u_long stdin_bytes, stdout_bytes, stderr_bytes;
140static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100141static int connection_in; /* Connection to server (input). */
142static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000143static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000144static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100145static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Ben Lindstrombba81212001-06-25 05:01:22 +0000147static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000148int session_ident = -1;
149
Damien Miller0e220db2004-06-15 10:34:08 +1000150struct confirm_ctx {
151 int want_tty;
152 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000153 int want_x_fwd;
154 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000155 Buffer cmd;
156 char *term;
157 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000158 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000159};
160
Ben Lindstromf28f6342001-04-04 02:03:04 +0000161/*XXX*/
162extern Kex *xxx_kex;
163
Damien Miller0e220db2004-06-15 10:34:08 +1000164void ssh_process_session2_setup(int, int, int, Buffer *);
165
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166/* Restores stdin to blocking mode. */
167
Ben Lindstrombba81212001-06-25 05:01:22 +0000168static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000169leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170{
Damien Miller95def091999-11-25 00:26:21 +1100171 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000172 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100173 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100174 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175}
176
Damien Miller95def091999-11-25 00:26:21 +1100177/* Puts stdin terminal in non-blocking mode. */
178
Ben Lindstrombba81212001-06-25 05:01:22 +0000179static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000180enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181{
Damien Miller95def091999-11-25 00:26:21 +1100182 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000183 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184}
185
Damien Miller5428f641999-11-25 11:54:57 +1100186/*
187 * Signal handler for the window change signal (SIGWINCH). This just sets a
188 * flag indicating that the window has changed.
189 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static void
Damien Miller95def091999-11-25 00:26:21 +1100192window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Damien Miller95def091999-11-25 00:26:21 +1100194 received_window_change_signal = 1;
195 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Damien Miller5428f641999-11-25 11:54:57 +1100198/*
199 * Signal handler for signals that cause the program to terminate. These
200 * signals must be trapped to restore terminal modes.
201 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static void
Damien Miller95def091999-11-25 00:26:21 +1100204signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000206 received_signal = sig;
207 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Damien Miller5428f641999-11-25 11:54:57 +1100210/*
211 * Returns current time in seconds from Jan 1, 1970 with the maximum
212 * available resolution.
213 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000216get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Damien Miller95def091999-11-25 00:26:21 +1100218 struct timeval tv;
219 gettimeofday(&tv, NULL);
220 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221}
222
Damien Miller17e7ed02005-06-17 12:54:33 +1000223#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
224void
225client_x11_get_proto(const char *display, const char *xauth_path,
226 u_int trusted, char **_proto, char **_data)
227{
228 char cmd[1024];
229 char line[512];
230 char xdisplay[512];
231 static char proto[512], data[512];
232 FILE *f;
233 int got_data = 0, generated = 0, do_unlink = 0, i;
234 char *xauthdir, *xauthfile;
235 struct stat st;
236
237 xauthdir = xauthfile = NULL;
238 *_proto = proto;
239 *_data = data;
240 proto[0] = data[0] = '\0';
241
242 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
243 debug("No xauth program.");
244 } else {
245 if (display == NULL) {
246 debug("x11_get_proto: DISPLAY not set");
247 return;
248 }
249 /*
250 * Handle FamilyLocal case where $DISPLAY does
251 * not match an authorization entry. For this we
252 * just try "xauth list unix:displaynum.screennum".
253 * XXX: "localhost" match to determine FamilyLocal
254 * is not perfect.
255 */
256 if (strncmp(display, "localhost:", 10) == 0) {
257 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
258 display + 10);
259 display = xdisplay;
260 }
261 if (trusted == 0) {
262 xauthdir = xmalloc(MAXPATHLEN);
263 xauthfile = xmalloc(MAXPATHLEN);
264 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
265 if (mkdtemp(xauthdir) != NULL) {
266 do_unlink = 1;
267 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
268 xauthdir);
269 snprintf(cmd, sizeof(cmd),
270 "%s -f %s generate %s " SSH_X11_PROTO
271 " untrusted timeout 1200 2>" _PATH_DEVNULL,
272 xauth_path, xauthfile, display);
273 debug2("x11_get_proto: %s", cmd);
274 if (system(cmd) == 0)
275 generated = 1;
276 }
277 }
278 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000279 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000280 xauth_path,
281 generated ? "-f " : "" ,
282 generated ? xauthfile : "",
283 display);
284 debug2("x11_get_proto: %s", cmd);
285 f = popen(cmd, "r");
286 if (f && fgets(line, sizeof(line), f) &&
287 sscanf(line, "%*s %511s %511s", proto, data) == 2)
288 got_data = 1;
289 if (f)
290 pclose(f);
291 }
292
293 if (do_unlink) {
294 unlink(xauthfile);
295 rmdir(xauthdir);
296 }
297 if (xauthdir)
298 xfree(xauthdir);
299 if (xauthfile)
300 xfree(xauthfile);
301
302 /*
303 * If we didn't get authentication data, just make up some
304 * data. The forwarding code will check the validity of the
305 * response anyway, and substitute this data. The X11
306 * server, however, will ignore this fake data and use
307 * whatever authentication mechanisms it was using otherwise
308 * for the local connection.
309 */
310 if (!got_data) {
311 u_int32_t rnd = 0;
312
313 logit("Warning: No xauth data; "
314 "using fake authentication data for X11 forwarding.");
315 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
316 for (i = 0; i < 16; i++) {
317 if (i % 4 == 0)
318 rnd = arc4random();
319 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
320 rnd & 0xff);
321 rnd >>= 8;
322 }
323 }
324}
325
Damien Miller5428f641999-11-25 11:54:57 +1100326/*
327 * This is called when the interactive is entered. This checks if there is
328 * an EOF coming on stdin. We must check this explicitly, as select() does
329 * not appear to wake up when redirecting from /dev/null.
330 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Ben Lindstrombba81212001-06-25 05:01:22 +0000332static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000333client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334{
Damien Miller95def091999-11-25 00:26:21 +1100335 int len;
336 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337
Damien Miller5428f641999-11-25 11:54:57 +1100338 /*
339 * If standard input is to be "redirected from /dev/null", we simply
340 * mark that we have seen an EOF and send an EOF message to the
341 * server. Otherwise, we try to read a single character; it appears
342 * that for some files, such /dev/null, select() never wakes up for
343 * read for this descriptor, which means that we never get EOF. This
344 * way we will get the EOF if stdin comes from /dev/null or similar.
345 */
Damien Miller95def091999-11-25 00:26:21 +1100346 if (stdin_null_flag) {
347 /* Fake EOF on stdin. */
348 debug("Sending eof.");
349 stdin_eof = 1;
350 packet_start(SSH_CMSG_EOF);
351 packet_send();
352 } else {
Damien Miller95def091999-11-25 00:26:21 +1100353 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller95def091999-11-25 00:26:21 +1100355 /* Check for immediate EOF on stdin. */
356 len = read(fileno(stdin), buf, 1);
357 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100358 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100359 debug("Sending eof.");
360 stdin_eof = 1;
361 packet_start(SSH_CMSG_EOF);
362 packet_send();
363 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100364 /*
365 * Got data. We must store the data in the buffer,
366 * and also process it as an escape character if
367 * appropriate.
368 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000369 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100370 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000371 else
Damien Miller95def091999-11-25 00:26:21 +1100372 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100373 }
Damien Miller95def091999-11-25 00:26:21 +1100374 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376}
377
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378
Damien Miller5428f641999-11-25 11:54:57 +1100379/*
380 * Make packets from buffered stdin data, and buffer them for sending to the
381 * connection.
382 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383
Ben Lindstrombba81212001-06-25 05:01:22 +0000384static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000385client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000387 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388
Damien Miller95def091999-11-25 00:26:21 +1100389 /* Send buffered stdin data to the server. */
390 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100391 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100392 len = buffer_len(&stdin_buffer);
393 /* Keep the packets at reasonable size. */
394 if (len > packet_get_maxsize())
395 len = packet_get_maxsize();
396 packet_start(SSH_CMSG_STDIN_DATA);
397 packet_put_string(buffer_ptr(&stdin_buffer), len);
398 packet_send();
399 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000400 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100401 /* If we have a pending EOF, send it now. */
402 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
403 packet_start(SSH_CMSG_EOF);
404 packet_send();
405 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407}
408
Damien Miller5428f641999-11-25 11:54:57 +1100409/*
410 * Checks if the client window has changed, and sends a packet about it to
411 * the server if so. The actual change is detected elsewhere (by a software
412 * interrupt on Unix); this just checks the flag and sends a message if
413 * appropriate.
414 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415
Ben Lindstrombba81212001-06-25 05:01:22 +0000416static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000417client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418{
Damien Miller1383bd82000-04-06 12:32:37 +1000419 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420
Damien Miller1383bd82000-04-06 12:32:37 +1000421 if (! received_window_change_signal)
422 return;
423 /** XXX race */
424 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Damien Millerd3444942000-09-30 14:20:03 +1100426 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000427
428 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000429 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000430 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000431 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
432 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000433 packet_start(SSH_CMSG_WINDOW_SIZE);
434 packet_put_int(ws.ws_row);
435 packet_put_int(ws.ws_col);
436 packet_put_int(ws.ws_xpixel);
437 packet_put_int(ws.ws_ypixel);
438 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440}
441
Damien Miller509b0102003-12-17 16:33:10 +1100442static void
443client_global_request_reply(int type, u_int32_t seq, void *ctxt)
444{
445 server_alive_timeouts = 0;
446 client_global_request_reply_fwd(type, seq, ctxt);
447}
448
449static void
450server_alive_check(void)
451{
452 if (++server_alive_timeouts > options.server_alive_count_max)
453 packet_disconnect("Timeout, server not responding.");
454 packet_start(SSH2_MSG_GLOBAL_REQUEST);
455 packet_put_cstring("keepalive@openssh.com");
456 packet_put_char(1); /* boolean: want reply */
457 packet_send();
458}
459
Damien Miller5428f641999-11-25 11:54:57 +1100460/*
461 * Waits until the client can do something (some data becomes available on
462 * one of the file descriptors).
463 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000464static void
Damien Miller5e953212001-01-30 09:14:00 +1100465client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000466 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467{
Damien Miller509b0102003-12-17 16:33:10 +1100468 struct timeval tv, *tvp;
469 int ret;
470
Damien Miller5e953212001-01-30 09:14:00 +1100471 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000472 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473
Damien Miller1383bd82000-04-06 12:32:37 +1000474 if (!compat20) {
475 /* Read from the connection, unless our buffers are full. */
476 if (buffer_len(&stdout_buffer) < buffer_high &&
477 buffer_len(&stderr_buffer) < buffer_high &&
478 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100479 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000480 /*
481 * Read from stdin, unless we have seen EOF or have very much
482 * buffered data to send to the server.
483 */
484 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100485 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000486
487 /* Select stdout/stderr if have data in buffer. */
488 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100489 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000490 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100491 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000492 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000493 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000494 if (session_closed && !channel_still_open() &&
495 !packet_have_data_to_write()) {
496 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100497 memset(*readsetp, 0, *nallocp);
498 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000499 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000500 } else {
501 FD_SET(connection_in, *readsetp);
502 }
Damien Miller1383bd82000-04-06 12:32:37 +1000503 }
504
Damien Miller95def091999-11-25 00:26:21 +1100505 /* Select server connection if have data to write to the server. */
506 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100507 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100508
Damien Miller0e220db2004-06-15 10:34:08 +1000509 if (control_fd != -1)
510 FD_SET(control_fd, *readsetp);
511
Damien Miller5428f641999-11-25 11:54:57 +1100512 /*
513 * Wait for something to happen. This will suspend the process until
514 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100515 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100516 */
Damien Miller95def091999-11-25 00:26:21 +1100517
Damien Miller509b0102003-12-17 16:33:10 +1100518 if (options.server_alive_interval == 0 || !compat20)
519 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000520 else {
Damien Miller509b0102003-12-17 16:33:10 +1100521 tv.tv_sec = options.server_alive_interval;
522 tv.tv_usec = 0;
523 tvp = &tv;
524 }
525 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
526 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100527 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000528
529 /*
530 * We have to clear the select masks, because we return.
531 * We have to return, because the mainloop checks for the flags
532 * set by the signal handlers.
533 */
Damien Miller79faeff2001-11-12 11:06:32 +1100534 memset(*readsetp, 0, *nallocp);
535 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000536
Damien Miller95def091999-11-25 00:26:21 +1100537 if (errno == EINTR)
538 return;
539 /* Note: we might still have data in the buffers. */
540 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
541 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100542 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100543 } else if (ret == 0)
544 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545}
546
Ben Lindstrombba81212001-06-25 05:01:22 +0000547static void
Damien Millerad833b32000-08-23 10:46:23 +1000548client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549{
Damien Miller95def091999-11-25 00:26:21 +1100550 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000551 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000552 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000553 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000554 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Miller5428f641999-11-25 11:54:57 +1100558 /*
559 * Free (and clear) the buffer to reduce the amount of data that gets
560 * written to swap.
561 */
Damien Millerad833b32000-08-23 10:46:23 +1000562 buffer_free(bin);
563 buffer_free(bout);
564 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller95def091999-11-25 00:26:21 +1100566 /* Send the suspend signal to the program itself. */
567 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Darren Tucker5d78de62004-11-05 20:35:44 +1100569 /* Reset window sizes in case they have changed */
570 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000573 buffer_init(bin);
574 buffer_init(bout);
575 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller95def091999-11-25 00:26:21 +1100577 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578}
579
Ben Lindstrombba81212001-06-25 05:01:22 +0000580static void
Damien Miller1383bd82000-04-06 12:32:37 +1000581client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582{
Damien Miller1383bd82000-04-06 12:32:37 +1000583 int len;
584 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller5428f641999-11-25 11:54:57 +1100586 /*
587 * Read input from the server, and add any such data to the buffer of
588 * the packet subsystem.
589 */
Damien Miller95def091999-11-25 00:26:21 +1100590 if (FD_ISSET(connection_in, readset)) {
591 /* Read as much as possible. */
592 len = read(connection_in, buf, sizeof(buf));
593 if (len == 0) {
594 /* Received EOF. The remote host has closed the connection. */
595 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
596 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598 quit_pending = 1;
599 return;
Damien Miller95def091999-11-25 00:26:21 +1100600 }
Damien Miller5428f641999-11-25 11:54:57 +1100601 /*
602 * There is a kernel bug on Solaris that causes select to
603 * sometimes wake up even though there is no data available.
604 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000605 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100606 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607
Damien Miller95def091999-11-25 00:26:21 +1100608 if (len < 0) {
609 /* An error has encountered. Perhaps there is a network problem. */
610 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
611 host, strerror(errno));
612 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100613 quit_pending = 1;
614 return;
615 }
616 packet_process_incoming(buf, len);
617 }
Damien Miller1383bd82000-04-06 12:32:37 +1000618}
619
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000620static void
Damien Miller0e220db2004-06-15 10:34:08 +1000621client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
622{
623 int id;
624 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000625
Damien Miller0e220db2004-06-15 10:34:08 +1000626 id = packet_get_int();
627 packet_check_eom();
628
629 if ((c = channel_lookup(id)) == NULL) {
630 error("%s: no channel for id %d", __func__, id);
631 return;
632 }
633
634 if (type == SSH2_MSG_CHANNEL_SUCCESS)
635 debug2("Request suceeded on channel %d", id);
636 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
637 error("Request failed on channel %d", id);
638 channel_free(c);
639 }
640}
641
642static void
643client_extra_session2_setup(int id, void *arg)
644{
645 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000646 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000647 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000648 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000649
Damien Miller0e220db2004-06-15 10:34:08 +1000650 if (cctx == NULL)
651 fatal("%s: cctx == NULL", __func__);
652 if ((c = channel_lookup(id)) == NULL)
653 fatal("%s: no channel for id %d", __func__, id);
654
Damien Miller46d38de2005-07-17 17:02:09 +1000655 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000656 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
657 char *proto, *data;
658 /* Get reasonable local authentication information. */
659 client_x11_get_proto(display, options.xauth_location,
660 options.forward_x11_trusted, &proto, &data);
661 /* Request forwarding with authentication spoofing. */
662 debug("Requesting X11 forwarding with authentication spoofing.");
663 x11_request_forwarding_with_spoofing(id, display, proto, data);
664 /* XXX wait for reply */
665 }
666
667 if (cctx->want_agent_fwd && options.forward_agent) {
668 debug("Requesting authentication agent forwarding.");
669 channel_request_start(id, "auth-agent-req@openssh.com", 0);
670 packet_send();
671 }
672
Darren Tuckerfc959702004-07-17 16:12:08 +1000673 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000674 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000675 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000676
Damien Miller0e220db2004-06-15 10:34:08 +1000677 c->confirm_ctx = NULL;
678 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000679 xfree(cctx->term);
680 if (cctx->env != NULL) {
681 for (i = 0; cctx->env[i] != NULL; i++)
682 xfree(cctx->env[i]);
683 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000684 }
Damien Miller3756dce2004-06-18 01:17:29 +1000685 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000686}
687
688static void
689client_process_control(fd_set * readset)
690{
691 Buffer m;
692 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000693 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000694 socklen_t addrlen;
695 struct sockaddr_storage addr;
696 struct confirm_ctx *cctx;
697 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000698 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000699 uid_t euid;
700 gid_t egid;
701
702 /*
703 * Accept connection on control socket
704 */
705 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
706 return;
707
708 memset(&addr, 0, sizeof(addr));
709 addrlen = sizeof(addr);
710 if ((client_fd = accept(control_fd,
711 (struct sockaddr*)&addr, &addrlen)) == -1) {
712 error("%s accept: %s", __func__, strerror(errno));
713 return;
714 }
715
716 if (getpeereid(client_fd, &euid, &egid) < 0) {
717 error("%s getpeereid failed: %s", __func__, strerror(errno));
718 close(client_fd);
719 return;
720 }
721 if ((euid != 0) && (getuid() != euid)) {
722 error("control mode uid mismatch: peer euid %u != uid %u",
723 (u_int) euid, (u_int) getuid());
724 close(client_fd);
725 return;
726 }
Damien Miller23f07702004-06-18 01:19:03 +1000727
Damien Miller0e220db2004-06-15 10:34:08 +1000728 unset_nonblock(client_fd);
729
Darren Tucker7ebfc102004-11-07 20:06:19 +1100730 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000731 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100732 if (ssh_msg_recv(client_fd, &m) == -1) {
733 error("%s: client msg_recv failed", __func__);
734 close(client_fd);
735 buffer_free(&m);
736 return;
737 }
Damien Miller13390022005-07-06 09:44:19 +1000738 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100739 error("%s: wrong client version %d", __func__, ver);
740 buffer_free(&m);
741 close(client_fd);
742 return;
743 }
Damien Miller0e220db2004-06-15 10:34:08 +1000744
Darren Tucker7ebfc102004-11-07 20:06:19 +1100745 allowed = 1;
746 command = buffer_get_int(&m);
747 flags = buffer_get_int(&m);
748
749 buffer_clear(&m);
750
751 switch (command) {
752 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000753 if (options.control_master == SSHCTL_MASTER_ASK ||
754 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100755 allowed = ask_permission("Allow shared connection "
756 "to %s? ", host);
757 /* continue below */
758 break;
759 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000760 if (options.control_master == SSHCTL_MASTER_ASK ||
761 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100762 allowed = ask_permission("Terminate shared connection "
763 "to %s? ", host);
764 if (allowed)
765 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100766 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100767 case SSHMUX_COMMAND_ALIVE_CHECK:
768 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
769 buffer_clear(&m);
770 buffer_put_int(&m, allowed);
771 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000772 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100773 error("%s: client msg_send failed", __func__);
774 close(client_fd);
775 buffer_free(&m);
776 return;
777 }
778 buffer_free(&m);
779 close(client_fd);
780 return;
781 default:
782 error("Unsupported command %d", command);
783 buffer_free(&m);
784 close(client_fd);
785 return;
786 }
787
788 /* Reply for SSHMUX_COMMAND_OPEN */
789 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000790 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000791 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000792 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000793 error("%s: client msg_send failed", __func__);
794 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000795 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000796 return;
797 }
Damien Miller0e220db2004-06-15 10:34:08 +1000798
Damien Miller23f07702004-06-18 01:19:03 +1000799 if (!allowed) {
800 error("Refused control connection");
801 close(client_fd);
802 buffer_free(&m);
803 return;
804 }
805
Darren Tucker7ebfc102004-11-07 20:06:19 +1100806 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000807 if (ssh_msg_recv(client_fd, &m) == -1) {
808 error("%s: client msg_recv failed", __func__);
809 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000810 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000811 return;
812 }
Damien Miller13390022005-07-06 09:44:19 +1000813 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000814 error("%s: wrong client version %d", __func__, ver);
815 buffer_free(&m);
816 close(client_fd);
817 return;
818 }
819
820 cctx = xmalloc(sizeof(*cctx));
821 memset(cctx, 0, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100822 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
823 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000824 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
825 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000826 cctx->term = buffer_get_string(&m, &len);
827
828 cmd = buffer_get_string(&m, &len);
829 buffer_init(&cctx->cmd);
830 buffer_append(&cctx->cmd, cmd, strlen(cmd));
831
Damien Miller3756dce2004-06-18 01:17:29 +1000832 env_len = buffer_get_int(&m);
833 env_len = MIN(env_len, 4096);
834 debug3("%s: receiving %d env vars", __func__, env_len);
835 if (env_len != 0) {
836 cctx->env = xmalloc(sizeof(*cctx->env) * (env_len + 1));
837 for (i = 0; i < env_len; i++)
838 cctx->env[i] = buffer_get_string(&m, &len);
839 cctx->env[i] = NULL;
840 }
841
Damien Miller0e220db2004-06-15 10:34:08 +1000842 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
843 cctx->want_tty, cctx->want_subsys, cmd);
844
845 /* Gather fds from client */
846 new_fd[0] = mm_receive_fd(client_fd);
847 new_fd[1] = mm_receive_fd(client_fd);
848 new_fd[2] = mm_receive_fd(client_fd);
849
850 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
851 new_fd[0], new_fd[1], new_fd[2]);
852
853 /* Try to pick up ttymodes from client before it goes raw */
854 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
855 error("%s: tcgetattr: %s", __func__, strerror(errno));
856
Darren Tucker7ebfc102004-11-07 20:06:19 +1100857 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000858 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000859 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000860 error("%s: client msg_send failed", __func__);
861 close(client_fd);
862 close(new_fd[0]);
863 close(new_fd[1]);
864 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000865 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100866 xfree(cctx->term);
867 if (env_len != 0) {
868 for (i = 0; i < env_len; i++)
869 xfree(cctx->env[i]);
870 xfree(cctx->env);
871 }
Damien Miller0e220db2004-06-15 10:34:08 +1000872 return;
873 }
874 buffer_free(&m);
875
876 /* enable nonblocking unless tty */
877 if (!isatty(new_fd[0]))
878 set_nonblock(new_fd[0]);
879 if (!isatty(new_fd[1]))
880 set_nonblock(new_fd[1]);
881 if (!isatty(new_fd[2]))
882 set_nonblock(new_fd[2]);
883
884 set_nonblock(client_fd);
885
Darren Tuckerfc959702004-07-17 16:12:08 +1000886 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000887 new_fd[0], new_fd[1], new_fd[2],
888 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
889 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
890
891 /* XXX */
892 c->ctl_fd = client_fd;
893
894 debug3("%s: channel_new: %d", __func__, c->self);
895
896 channel_send_open(c->self);
897 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
898}
899
900static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000901process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000902{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000903 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100904 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000905 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000906 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100907 u_short cancel_port;
908 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000909
910 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000911 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000912 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000913 if (s == NULL)
914 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000915 while (*s && isspace(*s))
916 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000917 if (*s == '-')
918 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000919 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000920 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000921
Darren Tucker1973c882004-05-24 10:34:36 +1000922 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000923 logit("Commands:");
924 logit(" -Lport:host:hostport Request local forward");
925 logit(" -Rport:host:hostport Request remote forward");
926 logit(" -KRhostport Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100927 if (!options.permit_local_command)
928 goto out;
929 logit(" !args Execute local command");
930 goto out;
931 }
932
933 if (*s == '!' && options.permit_local_command) {
934 s++;
935 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000936 goto out;
937 }
938
939 if (*s == 'K') {
940 delete = 1;
941 s++;
942 }
943 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000944 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000945 goto out;
946 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000947 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000948 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000949 if (local && delete) {
950 logit("Not supported.");
951 goto out;
952 }
953 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000954 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000955 goto out;
956 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000957
958 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000959 while (*s && isspace(*s))
960 s++;
961
Darren Tuckere7066df2004-05-24 10:18:05 +1000962 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100963 cancel_port = 0;
964 cancel_host = hpdelim(&s); /* may be NULL */
965 if (s != NULL) {
966 cancel_port = a2port(s);
967 cancel_host = cleanhostname(cancel_host);
968 } else {
969 cancel_port = a2port(cancel_host);
970 cancel_host = NULL;
971 }
972 if (cancel_port == 0) {
973 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000974 goto out;
975 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100976 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000977 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100978 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000979 logit("Bad forwarding specification.");
980 goto out;
981 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000982 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100983 if (channel_setup_local_fwd_listener(fwd.listen_host,
984 fwd.listen_port, fwd.connect_host,
985 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000986 logit("Port forwarding failed.");
987 goto out;
988 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100989 } else {
990 channel_request_remote_forwarding(fwd.listen_host,
991 fwd.listen_port, fwd.connect_host,
992 fwd.connect_port);
993 }
994
Darren Tuckere7066df2004-05-24 10:18:05 +1000995 logit("Forwarding port.");
996 }
997
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000998out:
999 signal(SIGINT, handler);
1000 enter_raw_mode();
1001 if (cmd)
1002 xfree(cmd);
1003}
1004
Damien Millerad833b32000-08-23 10:46:23 +10001005/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001006static int
Damien Millerad833b32000-08-23 10:46:23 +10001007process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1008{
1009 char string[1024];
1010 pid_t pid;
1011 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001012 u_int i;
1013 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001014 char *s;
1015
Damien Millereccb9de2005-06-17 12:59:34 +10001016 if (len <= 0)
1017 return (0);
1018
1019 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001020 /* Get one character at a time. */
1021 ch = buf[i];
1022
1023 if (escape_pending) {
1024 /* We have previously seen an escape character. */
1025 /* Clear the flag now. */
1026 escape_pending = 0;
1027
1028 /* Process the escaped character. */
1029 switch (ch) {
1030 case '.':
1031 /* Terminate the connection. */
1032 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1033 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001034
1035 quit_pending = 1;
1036 return -1;
1037
1038 case 'Z' - 64:
1039 /* Suspend the program. */
1040 /* Print a message to that effect to the user. */
1041 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1042 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001043
1044 /* Restore terminal modes and suspend. */
1045 client_suspend_self(bin, bout, berr);
1046
1047 /* We have been continued. */
1048 continue;
1049
Damien Miller54c45982003-05-15 10:20:13 +10001050 case 'B':
1051 if (compat20) {
1052 snprintf(string, sizeof string,
1053 "%cB\r\n", escape_char);
1054 buffer_append(berr, string,
1055 strlen(string));
1056 channel_request_start(session_ident,
1057 "break", 0);
1058 packet_put_int(1000);
1059 packet_send();
1060 }
1061 continue;
1062
Ben Lindstromf28f6342001-04-04 02:03:04 +00001063 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001064 if (compat20) {
1065 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001066 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001067 else
1068 need_rekeying = 1;
1069 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001070 continue;
1071
Damien Millerad833b32000-08-23 10:46:23 +10001072 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001073 /*
1074 * Detach the program (continue to serve connections,
1075 * but put in background and no more new connections).
1076 */
Damien Miller96507ef2001-11-12 10:52:25 +11001077 /* Restore tty modes. */
1078 leave_raw_mode();
1079
1080 /* Stop listening for new connections. */
1081 channel_stop_listening();
1082
1083 snprintf(string, sizeof string,
1084 "%c& [backgrounded]\n", escape_char);
1085 buffer_append(berr, string, strlen(string));
1086
1087 /* Fork into background. */
1088 pid = fork();
1089 if (pid < 0) {
1090 error("fork: %.100s", strerror(errno));
1091 continue;
1092 }
1093 if (pid != 0) { /* This is the parent. */
1094 /* The parent just exits. */
1095 exit(0);
1096 }
1097 /* The child continues serving connections. */
1098 if (compat20) {
1099 buffer_append(bin, "\004", 1);
1100 /* fake EOF on stdin */
1101 return -1;
1102 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001103 /*
1104 * Sending SSH_CMSG_EOF alone does not always appear
1105 * to be enough. So we try to send an EOF character
1106 * first.
1107 */
1108 packet_start(SSH_CMSG_STDIN_DATA);
1109 packet_put_string("\004", 1);
1110 packet_send();
1111 /* Close stdin. */
1112 stdin_eof = 1;
1113 if (buffer_len(bin) == 0) {
1114 packet_start(SSH_CMSG_EOF);
1115 packet_send();
1116 }
1117 }
Damien Miller96507ef2001-11-12 10:52:25 +11001118 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001119
1120 case '?':
1121 snprintf(string, sizeof string,
1122"%c?\r\n\
1123Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001124%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001125%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001126%cC - open a command line\r\n\
1127%cR - Request rekey (SSH protocol 2 only)\r\n\
1128%c^Z - suspend ssh\r\n\
1129%c# - list forwarded connections\r\n\
1130%c& - background ssh (when waiting for connections to terminate)\r\n\
1131%c? - this message\r\n\
1132%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001133(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001134 escape_char, escape_char, escape_char, escape_char,
1135 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001136 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001137 buffer_append(berr, string, strlen(string));
1138 continue;
1139
1140 case '#':
1141 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1142 buffer_append(berr, string, strlen(string));
1143 s = channel_open_message();
1144 buffer_append(berr, s, strlen(s));
1145 xfree(s);
1146 continue;
1147
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001148 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001149 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001150 continue;
1151
Damien Millerad833b32000-08-23 10:46:23 +10001152 default:
1153 if (ch != escape_char) {
1154 buffer_put_char(bin, escape_char);
1155 bytes++;
1156 }
1157 /* Escaped characters fall through here */
1158 break;
1159 }
1160 } else {
1161 /*
1162 * The previous character was not an escape char. Check if this
1163 * is an escape.
1164 */
1165 if (last_was_cr && ch == escape_char) {
1166 /* It is. Set the flag and continue to next character. */
1167 escape_pending = 1;
1168 continue;
1169 }
1170 }
1171
1172 /*
1173 * Normal character. Record whether it was a newline,
1174 * and append it to the buffer.
1175 */
1176 last_was_cr = (ch == '\r' || ch == '\n');
1177 buffer_put_char(bin, ch);
1178 bytes++;
1179 }
1180 return bytes;
1181}
1182
Ben Lindstrombba81212001-06-25 05:01:22 +00001183static void
Damien Miller1383bd82000-04-06 12:32:37 +10001184client_process_input(fd_set * readset)
1185{
Damien Miller166fca82000-04-20 07:42:21 +10001186 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001187 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001188
Damien Miller95def091999-11-25 00:26:21 +11001189 /* Read input from stdin. */
1190 if (FD_ISSET(fileno(stdin), readset)) {
1191 /* Read as much as possible. */
1192 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001193 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1194 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001195 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001196 /*
1197 * Received EOF or error. They are treated
1198 * similarly, except that an error message is printed
1199 * if it was an error condition.
1200 */
Damien Miller95def091999-11-25 00:26:21 +11001201 if (len < 0) {
1202 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1203 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001204 }
1205 /* Mark that we have seen EOF. */
1206 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001207 /*
1208 * Send an EOF message to the server unless there is
1209 * data in the buffer. If there is data in the
1210 * buffer, no message will be sent now. Code
1211 * elsewhere will send the EOF when the buffer
1212 * becomes empty if stdin_eof is set.
1213 */
Damien Miller95def091999-11-25 00:26:21 +11001214 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001215 packet_start(SSH_CMSG_EOF);
1216 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001217 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001218 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001219 /*
1220 * Normal successful read, and no escape character.
1221 * Just append the data to buffer.
1222 */
Damien Miller95def091999-11-25 00:26:21 +11001223 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001224 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001225 /*
1226 * Normal, successful read. But we have an escape character
1227 * and have to process the characters one by one.
1228 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001229 if (process_escapes(&stdin_buffer, &stdout_buffer,
1230 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001231 return;
Damien Miller95def091999-11-25 00:26:21 +11001232 }
1233 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234}
1235
Ben Lindstrombba81212001-06-25 05:01:22 +00001236static void
Damien Miller95def091999-11-25 00:26:21 +11001237client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001238{
Damien Miller95def091999-11-25 00:26:21 +11001239 int len;
1240 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001241
Damien Miller95def091999-11-25 00:26:21 +11001242 /* Write buffered output to stdout. */
1243 if (FD_ISSET(fileno(stdout), writeset)) {
1244 /* Write as much data as possible. */
1245 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001246 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001247 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001248 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001249 len = 0;
1250 else {
Damien Miller5428f641999-11-25 11:54:57 +11001251 /*
1252 * An error or EOF was encountered. Put an
1253 * error message to stderr buffer.
1254 */
Damien Miller95def091999-11-25 00:26:21 +11001255 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1256 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001257 quit_pending = 1;
1258 return;
1259 }
1260 }
1261 /* Consume printed data from the buffer. */
1262 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001263 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001264 }
Damien Miller95def091999-11-25 00:26:21 +11001265 /* Write buffered output to stderr. */
1266 if (FD_ISSET(fileno(stderr), writeset)) {
1267 /* Write as much data as possible. */
1268 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001269 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001270 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001271 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001272 len = 0;
1273 else {
Damien Miller5428f641999-11-25 11:54:57 +11001274 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001275 quit_pending = 1;
1276 return;
1277 }
1278 }
1279 /* Consume printed characters from the buffer. */
1280 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001281 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001282 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283}
1284
Damien Miller5428f641999-11-25 11:54:57 +11001285/*
Damien Millerb38eff82000-04-01 11:09:21 +10001286 * Get packets from the connection input buffer, and process them as long as
1287 * there are packets available.
1288 *
1289 * Any unknown packets received during the actual
1290 * session cause the session to terminate. This is
1291 * intended to make debugging easier since no
1292 * confirmations are sent. Any compatible protocol
1293 * extensions must be negotiated during the
1294 * preparatory phase.
1295 */
1296
Ben Lindstrombba81212001-06-25 05:01:22 +00001297static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001298client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001299{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001300 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001301}
1302
Damien Millerad833b32000-08-23 10:46:23 +10001303/* scan buf[] for '~' before sending data to the peer */
1304
Ben Lindstrombba81212001-06-25 05:01:22 +00001305static int
Damien Millerad833b32000-08-23 10:46:23 +10001306simple_escape_filter(Channel *c, char *buf, int len)
1307{
1308 /* XXX we assume c->extended is writeable */
1309 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1310}
1311
Ben Lindstrombba81212001-06-25 05:01:22 +00001312static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001313client_channel_closed(int id, void *arg)
1314{
Damien Miller3ec27592001-10-12 11:35:04 +10001315 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001316 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001317 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001318}
1319
Damien Millerb38eff82000-04-01 11:09:21 +10001320/*
Damien Miller5428f641999-11-25 11:54:57 +11001321 * Implements the interactive session with the server. This is called after
1322 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001323 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1324 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001325 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001326
Damien Miller4af51302000-04-16 11:18:38 +10001327int
Damien Millerad833b32000-08-23 10:46:23 +10001328client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001329{
Damien Miller5e953212001-01-30 09:14:00 +11001330 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001331 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001332 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1333 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001334 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001335
Damien Miller95def091999-11-25 00:26:21 +11001336 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001337
Damien Miller95def091999-11-25 00:26:21 +11001338 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001339
Damien Miller95def091999-11-25 00:26:21 +11001340 /* Initialize variables. */
1341 escape_pending = 0;
1342 last_was_cr = 1;
1343 exit_status = -1;
1344 stdin_eof = 0;
1345 buffer_high = 64 * 1024;
1346 connection_in = packet_get_connection_in();
1347 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001348 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001349 if (control_fd != -1)
1350 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001351
1352 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001353 /* enable nonblocking unless tty */
1354 if (!isatty(fileno(stdin)))
1355 set_nonblock(fileno(stdin));
1356 if (!isatty(fileno(stdout)))
1357 set_nonblock(fileno(stdout));
1358 if (!isatty(fileno(stderr)))
1359 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001360 max_fd = MAX(max_fd, fileno(stdin));
1361 max_fd = MAX(max_fd, fileno(stdout));
1362 max_fd = MAX(max_fd, fileno(stderr));
1363 }
Damien Miller95def091999-11-25 00:26:21 +11001364 stdin_bytes = 0;
1365 stdout_bytes = 0;
1366 stderr_bytes = 0;
1367 quit_pending = 0;
1368 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001369
Damien Miller95def091999-11-25 00:26:21 +11001370 /* Initialize buffers. */
1371 buffer_init(&stdin_buffer);
1372 buffer_init(&stdout_buffer);
1373 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374
Damien Millerb38eff82000-04-01 11:09:21 +10001375 client_init_dispatch();
1376
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001377 /*
1378 * Set signal handlers, (e.g. to restore non-blocking mode)
1379 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1380 */
Darren Tucker07336da2004-11-05 20:02:16 +11001381 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1382 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001383 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1384 signal(SIGINT, signal_handler);
1385 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1386 signal(SIGQUIT, signal_handler);
1387 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1388 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001389 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001390
Damien Miller95def091999-11-25 00:26:21 +11001391 if (have_pty)
1392 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
Ben Lindstrom5b828322001-02-09 01:34:36 +00001394 if (compat20) {
1395 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001396 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001397 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001398 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001399 if (session_ident != -1)
1400 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001401 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001402 } else {
1403 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001404 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001405 }
Damien Millerad833b32000-08-23 10:46:23 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407 /* Main loop of the client for the interactive session mode. */
1408 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409
Damien Miller5428f641999-11-25 11:54:57 +11001410 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001411 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001412
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001413 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001414 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001415
1416 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001417
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001418 if (rekeying) {
1419 debug("rekeying in progress");
1420 } else {
1421 /*
1422 * Make packets of buffered stdin data, and buffer
1423 * them for sending to the server.
1424 */
1425 if (!compat20)
1426 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001427
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001428 /*
1429 * Make packets from buffered channel data, and
1430 * enqueue them for sending to the server.
1431 */
1432 if (packet_not_very_much_data_to_write())
1433 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001435 /*
1436 * Check if the window size has changed, and buffer a
1437 * message about it to the server if so.
1438 */
1439 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001440
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001441 if (quit_pending)
1442 break;
1443 }
Damien Miller5428f641999-11-25 11:54:57 +11001444 /*
1445 * Wait until we have something to do (something becomes
1446 * available on one of the descriptors).
1447 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001448 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001449 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001450 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001451
Damien Miller95def091999-11-25 00:26:21 +11001452 if (quit_pending)
1453 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001454
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001455 /* Do channel operations unless rekeying in progress. */
1456 if (!rekeying) {
1457 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001458 if (need_rekeying || packet_need_rekeying()) {
1459 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001460 xxx_kex->done = 0;
1461 kex_send_kexinit(xxx_kex);
1462 need_rekeying = 0;
1463 }
1464 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001465
Damien Miller1383bd82000-04-06 12:32:37 +10001466 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001467 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001468
Damien Miller0e220db2004-06-15 10:34:08 +10001469 /* Accept control connections. */
1470 client_process_control(readset);
1471
Damien Miller1383bd82000-04-06 12:32:37 +10001472 if (quit_pending)
1473 break;
1474
1475 if (!compat20) {
1476 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001477 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001478 /*
1479 * Process output to stdout and stderr. Output to
1480 * the connection is processed elsewhere (above).
1481 */
Damien Miller5e953212001-01-30 09:14:00 +11001482 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001483 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001484
Damien Miller5428f641999-11-25 11:54:57 +11001485 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001486 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001487 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001488 }
Damien Miller5e953212001-01-30 09:14:00 +11001489 if (readset)
1490 xfree(readset);
1491 if (writeset)
1492 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001493
Damien Miller95def091999-11-25 00:26:21 +11001494 /* Terminate the session. */
1495
1496 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001497 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001498
Ben Lindstrom601e4362001-06-21 03:19:23 +00001499 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001500
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001501 if (have_pty)
1502 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001503
1504 /* restore blocking io */
1505 if (!isatty(fileno(stdin)))
1506 unset_nonblock(fileno(stdin));
1507 if (!isatty(fileno(stdout)))
1508 unset_nonblock(fileno(stdout));
1509 if (!isatty(fileno(stderr)))
1510 unset_nonblock(fileno(stderr));
1511
Damien Millerd6965512003-12-17 16:31:53 +11001512 /*
1513 * If there was no shell or command requested, there will be no remote
1514 * exit status to be returned. In that case, clear error code if the
1515 * connection was deliberately terminated at this end.
1516 */
1517 if (no_shell_flag && received_signal == SIGTERM) {
1518 received_signal = 0;
1519 exit_status = 0;
1520 }
1521
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001522 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001523 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001524
1525 /*
1526 * In interactive mode (with pseudo tty) display a message indicating
1527 * that the connection has been closed.
1528 */
1529 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1530 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1531 buffer_append(&stderr_buffer, buf, strlen(buf));
1532 }
1533
Damien Miller95def091999-11-25 00:26:21 +11001534 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001535 while (buffer_len(&stdout_buffer) > 0) {
1536 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001537 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001538 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001539 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001540 break;
1541 }
Damien Miller95def091999-11-25 00:26:21 +11001542 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001543 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001544 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001545
Damien Miller95def091999-11-25 00:26:21 +11001546 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001547 while (buffer_len(&stderr_buffer) > 0) {
1548 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001549 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001550 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001551 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001552 break;
1553 }
Damien Miller95def091999-11-25 00:26:21 +11001554 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001555 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001556 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557
Damien Miller95def091999-11-25 00:26:21 +11001558 /* Clear and free any buffers. */
1559 memset(buf, 0, sizeof(buf));
1560 buffer_free(&stdin_buffer);
1561 buffer_free(&stdout_buffer);
1562 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563
Damien Miller95def091999-11-25 00:26:21 +11001564 /* Report bytes transferred, and transfer rates. */
1565 total_time = get_current_time() - start_time;
1566 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001567 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001568 if (total_time > 0)
1569 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001570 stdin_bytes / total_time, stdout_bytes / total_time,
1571 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001572
1573 /* Return the exit status of the program. */
1574 debug("Exit status %d", exit_status);
1575 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001576}
Damien Millerb38eff82000-04-01 11:09:21 +10001577
1578/*********/
1579
Ben Lindstrombba81212001-06-25 05:01:22 +00001580static void
Damien Miller630d6f42002-01-22 23:17:30 +11001581client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001582{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001583 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001584 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001585 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001586 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001587 memset(data, 0, data_len);
1588 xfree(data);
1589}
Ben Lindstrombba81212001-06-25 05:01:22 +00001590static void
Damien Miller630d6f42002-01-22 23:17:30 +11001591client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001592{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001593 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001594 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001595 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001596 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001597 memset(data, 0, data_len);
1598 xfree(data);
1599}
Ben Lindstrombba81212001-06-25 05:01:22 +00001600static void
Damien Miller630d6f42002-01-22 23:17:30 +11001601client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001602{
Damien Millerb38eff82000-04-01 11:09:21 +10001603 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001604 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001605 /* Acknowledge the exit. */
1606 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1607 packet_send();
1608 /*
1609 * Must wait for packet to be sent since we are
1610 * exiting the loop.
1611 */
1612 packet_write_wait();
1613 /* Flag that we want to exit. */
1614 quit_pending = 1;
1615}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001616static void
1617client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1618{
1619 Channel *c = NULL;
1620 int remote_id, sock;
1621
1622 /* Read the remote channel number from the message. */
1623 remote_id = packet_get_int();
1624 packet_check_eom();
1625
1626 /*
1627 * Get a connection to the local authentication agent (this may again
1628 * get forwarded).
1629 */
1630 sock = ssh_get_authentication_socket();
1631
1632 /*
1633 * If we could not connect the agent, send an error message back to
1634 * the server. This should never happen unless the agent dies,
1635 * because authentication forwarding is only enabled if we have an
1636 * agent.
1637 */
1638 if (sock >= 0) {
1639 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1640 -1, 0, 0, 0, "authentication agent connection", 1);
1641 c->remote_id = remote_id;
1642 c->force_drain = 1;
1643 }
1644 if (c == NULL) {
1645 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1646 packet_put_int(remote_id);
1647 } else {
1648 /* Send a confirmation to the remote host. */
1649 debug("Forwarding authentication connection.");
1650 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1651 packet_put_int(remote_id);
1652 packet_put_int(c->self);
1653 }
1654 packet_send();
1655}
Damien Millerb38eff82000-04-01 11:09:21 +10001656
Ben Lindstrombba81212001-06-25 05:01:22 +00001657static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001658client_request_forwarded_tcpip(const char *request_type, int rchan)
1659{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001660 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001661 char *listen_address, *originator_address;
1662 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001663 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001664
1665 /* Get rest of the packet */
1666 listen_address = packet_get_string(NULL);
1667 listen_port = packet_get_int();
1668 originator_address = packet_get_string(NULL);
1669 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001670 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001671
1672 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1673 listen_address, listen_port, originator_address, originator_port);
1674
Ben Lindstrom173e6462001-07-04 05:15:15 +00001675 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001676 if (sock < 0) {
1677 xfree(originator_address);
1678 xfree(listen_address);
1679 return NULL;
1680 }
1681 c = channel_new("forwarded-tcpip",
1682 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1683 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001684 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001685 xfree(originator_address);
1686 xfree(listen_address);
1687 return c;
1688}
1689
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001690static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691client_request_x11(const char *request_type, int rchan)
1692{
1693 Channel *c = NULL;
1694 char *originator;
1695 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001696 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001697
1698 if (!options.forward_x11) {
1699 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001700 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001701 return NULL;
1702 }
1703 originator = packet_get_string(NULL);
1704 if (datafellows & SSH_BUG_X11FWD) {
1705 debug2("buggy server: x11 request w/o originator_port");
1706 originator_port = 0;
1707 } else {
1708 originator_port = packet_get_int();
1709 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001710 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001711 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001712 debug("client_request_x11: request from %s %d", originator,
1713 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001714 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001715 sock = x11_connect_display();
1716 if (sock < 0)
1717 return NULL;
1718 c = channel_new("x11",
1719 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001720 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001721 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001722 return c;
1723}
1724
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001725static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001726client_request_agent(const char *request_type, int rchan)
1727{
1728 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001729 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001730
1731 if (!options.forward_agent) {
1732 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001733 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001734 return NULL;
1735 }
1736 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001737 if (sock < 0)
1738 return NULL;
1739 c = channel_new("authentication agent connection",
1740 SSH_CHANNEL_OPEN, sock, sock, -1,
1741 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001742 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001743 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001744 return c;
1745}
1746
Damien Millerbd483e72000-04-30 10:00:53 +10001747/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001748static void
Damien Miller630d6f42002-01-22 23:17:30 +11001749client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001750{
1751 Channel *c = NULL;
1752 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001753 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001754 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001755
1756 ctype = packet_get_string(&len);
1757 rchan = packet_get_int();
1758 rwindow = packet_get_int();
1759 rmaxpack = packet_get_int();
1760
Damien Millere247cc42000-05-07 12:03:14 +10001761 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001762 ctype, rchan, rwindow, rmaxpack);
1763
Damien Miller0bc1bd82000-11-13 22:57:25 +11001764 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1765 c = client_request_forwarded_tcpip(ctype, rchan);
1766 } else if (strcmp(ctype, "x11") == 0) {
1767 c = client_request_x11(ctype, rchan);
1768 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1769 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001770 }
1771/* XXX duplicate : */
1772 if (c != NULL) {
1773 debug("confirm %s", ctype);
1774 c->remote_id = rchan;
1775 c->remote_window = rwindow;
1776 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001777 if (c->type != SSH_CHANNEL_CONNECTING) {
1778 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1779 packet_put_int(c->remote_id);
1780 packet_put_int(c->self);
1781 packet_put_int(c->local_window);
1782 packet_put_int(c->local_maxpacket);
1783 packet_send();
1784 }
Damien Millerbd483e72000-04-30 10:00:53 +10001785 } else {
1786 debug("failure %s", ctype);
1787 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1788 packet_put_int(rchan);
1789 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001790 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001791 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001792 packet_put_cstring("");
1793 }
Damien Millerbd483e72000-04-30 10:00:53 +10001794 packet_send();
1795 }
1796 xfree(ctype);
1797}
Ben Lindstrombba81212001-06-25 05:01:22 +00001798static void
Damien Miller630d6f42002-01-22 23:17:30 +11001799client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001800{
1801 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001802 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001803 char *rtype;
1804
1805 id = packet_get_int();
1806 rtype = packet_get_string(NULL);
1807 reply = packet_get_char();
1808
1809 debug("client_input_channel_req: channel %d rtype %s reply %d",
1810 id, rtype, reply);
1811
Damien Miller3bbd8782004-06-18 22:23:22 +10001812 if (id == -1) {
1813 error("client_input_channel_req: request for channel -1");
1814 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001815 error("client_input_channel_req: channel %d: unknown channel", id);
1816 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001817 exitval = packet_get_int();
1818 if (id == session_ident) {
1819 success = 1;
1820 exit_status = exitval;
1821 } else if (c->ctl_fd == -1) {
1822 error("client_input_channel_req: unexpected channel %d",
1823 session_ident);
1824 } else {
1825 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1826 success = 1;
1827 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001828 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001829 }
1830 if (reply) {
1831 packet_start(success ?
1832 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001833 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001834 packet_send();
1835 }
1836 xfree(rtype);
1837}
Damien Millerc3fa4072002-01-22 23:21:58 +11001838static void
1839client_input_global_request(int type, u_int32_t seq, void *ctxt)
1840{
1841 char *rtype;
1842 int want_reply;
1843 int success = 0;
1844
1845 rtype = packet_get_string(NULL);
1846 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001847 debug("client_input_global_request: rtype %s want_reply %d",
1848 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001849 if (want_reply) {
1850 packet_start(success ?
1851 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1852 packet_send();
1853 packet_write_wait();
1854 }
1855 xfree(rtype);
1856}
Damien Millerbd483e72000-04-30 10:00:53 +10001857
Damien Miller0e220db2004-06-15 10:34:08 +10001858void
Darren Tuckerfc959702004-07-17 16:12:08 +10001859client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001860 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001861 dispatch_fn *subsys_repl)
1862{
1863 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001864 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001865
1866 debug2("%s: id %d", __func__, id);
1867
Darren Tucker5d78de62004-11-05 20:35:44 +11001868 if ((c = channel_lookup(id)) == NULL)
1869 fatal("client_session2_setup: channel %d: unknown channel", id);
1870
Damien Miller0e220db2004-06-15 10:34:08 +10001871 if (want_tty) {
1872 struct winsize ws;
1873 struct termios tio;
1874
1875 /* Store window size in the packet. */
1876 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1877 memset(&ws, 0, sizeof(ws));
1878
1879 channel_request_start(id, "pty-req", 0);
1880 packet_put_cstring(term != NULL ? term : "");
1881 packet_put_int(ws.ws_col);
1882 packet_put_int(ws.ws_row);
1883 packet_put_int(ws.ws_xpixel);
1884 packet_put_int(ws.ws_ypixel);
1885 tio = get_saved_tio();
1886 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1887 packet_send();
1888 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001889 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001890 }
1891
1892 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001893 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001894 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001895 char *name, *val;
1896
1897 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001898 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001899 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001900 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001901 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001902 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001903 continue;
1904 }
1905 *val++ = '\0';
1906
1907 matched = 0;
1908 for (j = 0; j < options.num_send_env; j++) {
1909 if (match_pattern(name, options.send_env[j])) {
1910 matched = 1;
1911 break;
1912 }
1913 }
1914 if (!matched) {
1915 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001916 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001917 continue;
1918 }
1919
1920 debug("Sending env %s = %s", name, val);
1921 channel_request_start(id, "env", 0);
1922 packet_put_cstring(name);
1923 packet_put_cstring(val);
1924 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001925 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001926 }
1927 }
1928
1929 len = buffer_len(cmd);
1930 if (len > 0) {
1931 if (len > 900)
1932 len = 900;
1933 if (want_subsystem) {
1934 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1935 channel_request_start(id, "subsystem", subsys_repl != NULL);
1936 if (subsys_repl != NULL) {
1937 /* register callback for reply */
1938 /* XXX we assume that client_loop has already been called */
1939 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1940 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1941 }
1942 } else {
1943 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1944 channel_request_start(id, "exec", 0);
1945 }
1946 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1947 packet_send();
1948 } else {
1949 channel_request_start(id, "shell", 0);
1950 packet_send();
1951 }
1952}
1953
Ben Lindstrombba81212001-06-25 05:01:22 +00001954static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001955client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001956{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001957 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001958
Damien Miller1383bd82000-04-06 12:32:37 +10001959 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1960 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1961 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1962 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001963 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001964 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1965 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001966 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001967 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001968 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001969
1970 /* rekeying */
1971 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001972
1973 /* global request reply messages */
1974 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1975 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001976}
Ben Lindstrombba81212001-06-25 05:01:22 +00001977static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001978client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001979{
1980 dispatch_init(NULL);
1981 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1982 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1983 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001984 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1985 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1986 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001987 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1988 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1989 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001990
1991 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001992 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001993 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1994 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001995}
Ben Lindstrombba81212001-06-25 05:01:22 +00001996static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001997client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001998{
1999 client_init_dispatch_13();
2000 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2001 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2002}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002003static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002004client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002005{
Damien Miller1383bd82000-04-06 12:32:37 +10002006 if (compat20)
2007 client_init_dispatch_20();
2008 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002009 client_init_dispatch_13();
2010 else
2011 client_init_dispatch_15();
2012}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002013
2014/* client specific fatal cleanup */
2015void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002016cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002017{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002018 leave_raw_mode();
2019 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002020 if (options.control_path != NULL && control_fd != -1)
2021 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002022 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002023}