blob: 6cb2a7ac7596c0838eb2709d5088d95a0e88da5b [file] [log] [blame]
Darren Tuckere7d4b192006-07-12 22:17:10 +10001/* $OpenBSD: clientloop.c,v 1.167 2006/07/11 18:50:47 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
15 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 *
Damien Miller1383bd82000-04-06 12:32:37 +100038 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000039 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110040 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110060 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
62#include "includes.h"
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 Millere3b60b52006-07-10 21:08:03 +100068#include <sys/socket.h>
Damien Miller17e91c02006-03-15 11:28:34 +110069#include <sys/ioctl.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110070
Damien Millerc7b06362006-03-15 11:53:45 +110071#include <ctype.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110072#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110073#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110074#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110075#include <signal.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110076#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000079#include "ssh1.h"
80#include "ssh2.h"
81#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#include "packet.h"
83#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100084#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000085#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100086#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100087#include "buffer.h"
88#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110089#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000090#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000091#include "log.h"
92#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000093#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +110094#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "authfd.h"
96#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100097#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000098#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +100099#include "monitor_fdpass.h"
100#include "match.h"
101#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100102
103/* import options */
104extern Options options;
105
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106/* Flag indicating that stdin should be redirected from /dev/null. */
107extern int stdin_null_flag;
108
Damien Millerd6965512003-12-17 16:31:53 +1100109/* Flag indicating that no shell has been requested */
110extern int no_shell_flag;
111
Damien Miller0e220db2004-06-15 10:34:08 +1000112/* Control socket */
113extern int control_fd;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Name of the host we are connecting to. This is the name given on the
117 * command line, or the HostName specified for the user-supplied name in a
118 * configuration file.
119 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120extern char *host;
121
Damien Miller5428f641999-11-25 11:54:57 +1100122/*
123 * Flag to indicate that we have received a window change signal which has
124 * not yet been processed. This will cause a message indicating the new
125 * window size to be sent to the server a little later. This is volatile
126 * because this is updated in a signal handler.
127 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000128static volatile sig_atomic_t received_window_change_signal = 0;
129static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Damien Miller788f2122005-11-05 15:14:59 +1100131/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132static int in_non_blocking_mode = 0;
133
134/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000135static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000136static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100137static int escape_pending; /* Last character was the escape character */
138static int last_was_cr; /* Last character was a newline. */
139static int exit_status; /* Used to store the exit status of the command. */
140static int stdin_eof; /* EOF has been encountered on standard error. */
141static Buffer stdin_buffer; /* Buffer for stdin data. */
142static Buffer stdout_buffer; /* Buffer for stdout data. */
143static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000144static u_long stdin_bytes, stdout_bytes, stderr_bytes;
145static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100146static int connection_in; /* Connection to server (input). */
147static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000148static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000149static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100150static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151
Ben Lindstrombba81212001-06-25 05:01:22 +0000152static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000153int session_ident = -1;
154
Damien Miller0e220db2004-06-15 10:34:08 +1000155struct confirm_ctx {
156 int want_tty;
157 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000158 int want_x_fwd;
159 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000160 Buffer cmd;
161 char *term;
162 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000163 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000164};
165
Ben Lindstromf28f6342001-04-04 02:03:04 +0000166/*XXX*/
167extern Kex *xxx_kex;
168
Damien Miller0e220db2004-06-15 10:34:08 +1000169void ssh_process_session2_setup(int, int, int, Buffer *);
170
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171/* Restores stdin to blocking mode. */
172
Ben Lindstrombba81212001-06-25 05:01:22 +0000173static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000174leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175{
Damien Miller95def091999-11-25 00:26:21 +1100176 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000177 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100178 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100179 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180}
181
Damien Miller95def091999-11-25 00:26:21 +1100182/* Puts stdin terminal in non-blocking mode. */
183
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000185enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186{
Damien Miller95def091999-11-25 00:26:21 +1100187 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000188 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189}
190
Damien Miller5428f641999-11-25 11:54:57 +1100191/*
192 * Signal handler for the window change signal (SIGWINCH). This just sets a
193 * flag indicating that the window has changed.
194 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100195/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000196static void
Damien Miller95def091999-11-25 00:26:21 +1100197window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198{
Damien Miller95def091999-11-25 00:26:21 +1100199 received_window_change_signal = 1;
200 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201}
202
Damien Miller5428f641999-11-25 11:54:57 +1100203/*
204 * Signal handler for signals that cause the program to terminate. These
205 * signals must be trapped to restore terminal modes.
206 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100207/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static void
Damien Miller95def091999-11-25 00:26:21 +1100209signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000211 received_signal = sig;
212 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213}
214
Damien Miller5428f641999-11-25 11:54:57 +1100215/*
216 * Returns current time in seconds from Jan 1, 1970 with the maximum
217 * available resolution.
218 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219
Ben Lindstrombba81212001-06-25 05:01:22 +0000220static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000221get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222{
Damien Miller95def091999-11-25 00:26:21 +1100223 struct timeval tv;
224 gettimeofday(&tv, NULL);
225 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226}
227
Damien Miller17e7ed02005-06-17 12:54:33 +1000228#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
229void
230client_x11_get_proto(const char *display, const char *xauth_path,
231 u_int trusted, char **_proto, char **_data)
232{
233 char cmd[1024];
234 char line[512];
235 char xdisplay[512];
236 static char proto[512], data[512];
237 FILE *f;
238 int got_data = 0, generated = 0, do_unlink = 0, i;
239 char *xauthdir, *xauthfile;
240 struct stat st;
241
242 xauthdir = xauthfile = NULL;
243 *_proto = proto;
244 *_data = data;
245 proto[0] = data[0] = '\0';
246
247 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
248 debug("No xauth program.");
249 } else {
250 if (display == NULL) {
251 debug("x11_get_proto: DISPLAY not set");
252 return;
253 }
254 /*
255 * Handle FamilyLocal case where $DISPLAY does
256 * not match an authorization entry. For this we
257 * just try "xauth list unix:displaynum.screennum".
258 * XXX: "localhost" match to determine FamilyLocal
259 * is not perfect.
260 */
261 if (strncmp(display, "localhost:", 10) == 0) {
262 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
263 display + 10);
264 display = xdisplay;
265 }
266 if (trusted == 0) {
267 xauthdir = xmalloc(MAXPATHLEN);
268 xauthfile = xmalloc(MAXPATHLEN);
269 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
270 if (mkdtemp(xauthdir) != NULL) {
271 do_unlink = 1;
272 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
273 xauthdir);
274 snprintf(cmd, sizeof(cmd),
275 "%s -f %s generate %s " SSH_X11_PROTO
276 " untrusted timeout 1200 2>" _PATH_DEVNULL,
277 xauth_path, xauthfile, display);
278 debug2("x11_get_proto: %s", cmd);
279 if (system(cmd) == 0)
280 generated = 1;
281 }
282 }
283 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000284 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000285 xauth_path,
286 generated ? "-f " : "" ,
287 generated ? xauthfile : "",
288 display);
289 debug2("x11_get_proto: %s", cmd);
290 f = popen(cmd, "r");
291 if (f && fgets(line, sizeof(line), f) &&
292 sscanf(line, "%*s %511s %511s", proto, data) == 2)
293 got_data = 1;
294 if (f)
295 pclose(f);
296 }
297
298 if (do_unlink) {
299 unlink(xauthfile);
300 rmdir(xauthdir);
301 }
302 if (xauthdir)
303 xfree(xauthdir);
304 if (xauthfile)
305 xfree(xauthfile);
306
307 /*
308 * If we didn't get authentication data, just make up some
309 * data. The forwarding code will check the validity of the
310 * response anyway, and substitute this data. The X11
311 * server, however, will ignore this fake data and use
312 * whatever authentication mechanisms it was using otherwise
313 * for the local connection.
314 */
315 if (!got_data) {
316 u_int32_t rnd = 0;
317
318 logit("Warning: No xauth data; "
319 "using fake authentication data for X11 forwarding.");
320 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
321 for (i = 0; i < 16; i++) {
322 if (i % 4 == 0)
323 rnd = arc4random();
324 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
325 rnd & 0xff);
326 rnd >>= 8;
327 }
328 }
329}
330
Damien Miller5428f641999-11-25 11:54:57 +1100331/*
332 * This is called when the interactive is entered. This checks if there is
333 * an EOF coming on stdin. We must check this explicitly, as select() does
334 * not appear to wake up when redirecting from /dev/null.
335 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336
Ben Lindstrombba81212001-06-25 05:01:22 +0000337static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000338client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339{
Damien Miller95def091999-11-25 00:26:21 +1100340 int len;
341 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342
Damien Miller5428f641999-11-25 11:54:57 +1100343 /*
344 * If standard input is to be "redirected from /dev/null", we simply
345 * mark that we have seen an EOF and send an EOF message to the
346 * server. Otherwise, we try to read a single character; it appears
347 * that for some files, such /dev/null, select() never wakes up for
348 * read for this descriptor, which means that we never get EOF. This
349 * way we will get the EOF if stdin comes from /dev/null or similar.
350 */
Damien Miller95def091999-11-25 00:26:21 +1100351 if (stdin_null_flag) {
352 /* Fake EOF on stdin. */
353 debug("Sending eof.");
354 stdin_eof = 1;
355 packet_start(SSH_CMSG_EOF);
356 packet_send();
357 } else {
Damien Miller95def091999-11-25 00:26:21 +1100358 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359
Damien Miller95def091999-11-25 00:26:21 +1100360 /* Check for immediate EOF on stdin. */
361 len = read(fileno(stdin), buf, 1);
362 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100363 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100364 debug("Sending eof.");
365 stdin_eof = 1;
366 packet_start(SSH_CMSG_EOF);
367 packet_send();
368 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100369 /*
370 * Got data. We must store the data in the buffer,
371 * and also process it as an escape character if
372 * appropriate.
373 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000374 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100375 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000376 else
Damien Miller95def091999-11-25 00:26:21 +1100377 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100378 }
Damien Miller95def091999-11-25 00:26:21 +1100379 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000381}
382
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383
Damien Miller5428f641999-11-25 11:54:57 +1100384/*
385 * Make packets from buffered stdin data, and buffer them for sending to the
386 * connection.
387 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388
Ben Lindstrombba81212001-06-25 05:01:22 +0000389static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000390client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000392 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393
Damien Miller95def091999-11-25 00:26:21 +1100394 /* Send buffered stdin data to the server. */
395 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100396 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100397 len = buffer_len(&stdin_buffer);
398 /* Keep the packets at reasonable size. */
399 if (len > packet_get_maxsize())
400 len = packet_get_maxsize();
401 packet_start(SSH_CMSG_STDIN_DATA);
402 packet_put_string(buffer_ptr(&stdin_buffer), len);
403 packet_send();
404 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000405 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100406 /* If we have a pending EOF, send it now. */
407 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
408 packet_start(SSH_CMSG_EOF);
409 packet_send();
410 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000412}
413
Damien Miller5428f641999-11-25 11:54:57 +1100414/*
415 * Checks if the client window has changed, and sends a packet about it to
416 * the server if so. The actual change is detected elsewhere (by a software
417 * interrupt on Unix); this just checks the flag and sends a message if
418 * appropriate.
419 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420
Ben Lindstrombba81212001-06-25 05:01:22 +0000421static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000422client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423{
Damien Miller1383bd82000-04-06 12:32:37 +1000424 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Damien Miller1383bd82000-04-06 12:32:37 +1000426 if (! received_window_change_signal)
427 return;
428 /** XXX race */
429 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Damien Millerd3444942000-09-30 14:20:03 +1100431 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000432
433 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000434 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000435 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000436 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
437 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000438 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100439 packet_put_int((u_int)ws.ws_row);
440 packet_put_int((u_int)ws.ws_col);
441 packet_put_int((u_int)ws.ws_xpixel);
442 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000443 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445}
446
Damien Miller509b0102003-12-17 16:33:10 +1100447static void
448client_global_request_reply(int type, u_int32_t seq, void *ctxt)
449{
450 server_alive_timeouts = 0;
451 client_global_request_reply_fwd(type, seq, ctxt);
452}
453
454static void
455server_alive_check(void)
456{
457 if (++server_alive_timeouts > options.server_alive_count_max)
458 packet_disconnect("Timeout, server not responding.");
459 packet_start(SSH2_MSG_GLOBAL_REQUEST);
460 packet_put_cstring("keepalive@openssh.com");
461 packet_put_char(1); /* boolean: want reply */
462 packet_send();
463}
464
Damien Miller5428f641999-11-25 11:54:57 +1100465/*
466 * Waits until the client can do something (some data becomes available on
467 * one of the file descriptors).
468 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000469static void
Damien Miller5e953212001-01-30 09:14:00 +1100470client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000471 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472{
Damien Miller509b0102003-12-17 16:33:10 +1100473 struct timeval tv, *tvp;
474 int ret;
475
Damien Miller5e953212001-01-30 09:14:00 +1100476 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000477 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000478
Damien Miller1383bd82000-04-06 12:32:37 +1000479 if (!compat20) {
480 /* Read from the connection, unless our buffers are full. */
481 if (buffer_len(&stdout_buffer) < buffer_high &&
482 buffer_len(&stderr_buffer) < buffer_high &&
483 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100484 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000485 /*
486 * Read from stdin, unless we have seen EOF or have very much
487 * buffered data to send to the server.
488 */
489 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100490 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000491
492 /* Select stdout/stderr if have data in buffer. */
493 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100494 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000495 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100496 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000497 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000498 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000499 if (session_closed && !channel_still_open() &&
500 !packet_have_data_to_write()) {
501 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100502 memset(*readsetp, 0, *nallocp);
503 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000504 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000505 } else {
506 FD_SET(connection_in, *readsetp);
507 }
Damien Miller1383bd82000-04-06 12:32:37 +1000508 }
509
Damien Miller95def091999-11-25 00:26:21 +1100510 /* Select server connection if have data to write to the server. */
511 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100512 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100513
Damien Miller0e220db2004-06-15 10:34:08 +1000514 if (control_fd != -1)
515 FD_SET(control_fd, *readsetp);
516
Damien Miller5428f641999-11-25 11:54:57 +1100517 /*
518 * Wait for something to happen. This will suspend the process until
519 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100520 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100521 */
Damien Miller95def091999-11-25 00:26:21 +1100522
Damien Miller509b0102003-12-17 16:33:10 +1100523 if (options.server_alive_interval == 0 || !compat20)
524 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000525 else {
Damien Miller509b0102003-12-17 16:33:10 +1100526 tv.tv_sec = options.server_alive_interval;
527 tv.tv_usec = 0;
528 tvp = &tv;
529 }
530 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
531 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100532 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000533
534 /*
535 * We have to clear the select masks, because we return.
536 * We have to return, because the mainloop checks for the flags
537 * set by the signal handlers.
538 */
Damien Miller79faeff2001-11-12 11:06:32 +1100539 memset(*readsetp, 0, *nallocp);
540 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000541
Damien Miller95def091999-11-25 00:26:21 +1100542 if (errno == EINTR)
543 return;
544 /* Note: we might still have data in the buffers. */
545 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
546 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100547 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100548 } else if (ret == 0)
549 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550}
551
Ben Lindstrombba81212001-06-25 05:01:22 +0000552static void
Damien Millerad833b32000-08-23 10:46:23 +1000553client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554{
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000556 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000557 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000558 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000559 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Miller95def091999-11-25 00:26:21 +1100561 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller5428f641999-11-25 11:54:57 +1100563 /*
564 * Free (and clear) the buffer to reduce the amount of data that gets
565 * written to swap.
566 */
Damien Millerad833b32000-08-23 10:46:23 +1000567 buffer_free(bin);
568 buffer_free(bout);
569 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller95def091999-11-25 00:26:21 +1100571 /* Send the suspend signal to the program itself. */
572 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Darren Tucker5d78de62004-11-05 20:35:44 +1100574 /* Reset window sizes in case they have changed */
575 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller95def091999-11-25 00:26:21 +1100577 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000578 buffer_init(bin);
579 buffer_init(bout);
580 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581
Damien Miller95def091999-11-25 00:26:21 +1100582 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583}
584
Ben Lindstrombba81212001-06-25 05:01:22 +0000585static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100586client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587{
Damien Miller1383bd82000-04-06 12:32:37 +1000588 int len;
589 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller5428f641999-11-25 11:54:57 +1100591 /*
592 * Read input from the server, and add any such data to the buffer of
593 * the packet subsystem.
594 */
Damien Miller95def091999-11-25 00:26:21 +1100595 if (FD_ISSET(connection_in, readset)) {
596 /* Read as much as possible. */
597 len = read(connection_in, buf, sizeof(buf));
598 if (len == 0) {
599 /* Received EOF. The remote host has closed the connection. */
600 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
601 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603 quit_pending = 1;
604 return;
Damien Miller95def091999-11-25 00:26:21 +1100605 }
Damien Miller5428f641999-11-25 11:54:57 +1100606 /*
607 * There is a kernel bug on Solaris that causes select to
608 * sometimes wake up even though there is no data available.
609 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000610 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100611 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612
Damien Miller95def091999-11-25 00:26:21 +1100613 if (len < 0) {
614 /* An error has encountered. Perhaps there is a network problem. */
615 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
616 host, strerror(errno));
617 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100618 quit_pending = 1;
619 return;
620 }
621 packet_process_incoming(buf, len);
622 }
Damien Miller1383bd82000-04-06 12:32:37 +1000623}
624
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000625static void
Damien Miller0e220db2004-06-15 10:34:08 +1000626client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
627{
628 int id;
629 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000630
Damien Miller0e220db2004-06-15 10:34:08 +1000631 id = packet_get_int();
632 packet_check_eom();
633
634 if ((c = channel_lookup(id)) == NULL) {
635 error("%s: no channel for id %d", __func__, id);
636 return;
637 }
638
639 if (type == SSH2_MSG_CHANNEL_SUCCESS)
640 debug2("Request suceeded on channel %d", id);
641 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
642 error("Request failed on channel %d", id);
643 channel_free(c);
644 }
645}
646
647static void
648client_extra_session2_setup(int id, void *arg)
649{
650 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000651 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000652 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000653 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000654
Damien Miller0e220db2004-06-15 10:34:08 +1000655 if (cctx == NULL)
656 fatal("%s: cctx == NULL", __func__);
657 if ((c = channel_lookup(id)) == NULL)
658 fatal("%s: no channel for id %d", __func__, id);
659
Damien Miller46d38de2005-07-17 17:02:09 +1000660 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000661 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
662 char *proto, *data;
663 /* Get reasonable local authentication information. */
664 client_x11_get_proto(display, options.xauth_location,
665 options.forward_x11_trusted, &proto, &data);
666 /* Request forwarding with authentication spoofing. */
667 debug("Requesting X11 forwarding with authentication spoofing.");
668 x11_request_forwarding_with_spoofing(id, display, proto, data);
669 /* XXX wait for reply */
670 }
671
672 if (cctx->want_agent_fwd && options.forward_agent) {
673 debug("Requesting authentication agent forwarding.");
674 channel_request_start(id, "auth-agent-req@openssh.com", 0);
675 packet_send();
676 }
677
Darren Tuckerfc959702004-07-17 16:12:08 +1000678 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000679 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000680 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000681
Damien Miller0e220db2004-06-15 10:34:08 +1000682 c->confirm_ctx = NULL;
683 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000684 xfree(cctx->term);
685 if (cctx->env != NULL) {
686 for (i = 0; cctx->env[i] != NULL; i++)
687 xfree(cctx->env[i]);
688 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000689 }
Damien Miller3756dce2004-06-18 01:17:29 +1000690 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000691}
692
693static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100694client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000695{
696 Buffer m;
697 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000698 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000699 socklen_t addrlen;
700 struct sockaddr_storage addr;
701 struct confirm_ctx *cctx;
702 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000703 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000704 uid_t euid;
705 gid_t egid;
706
707 /*
708 * Accept connection on control socket
709 */
710 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
711 return;
712
713 memset(&addr, 0, sizeof(addr));
714 addrlen = sizeof(addr);
715 if ((client_fd = accept(control_fd,
716 (struct sockaddr*)&addr, &addrlen)) == -1) {
717 error("%s accept: %s", __func__, strerror(errno));
718 return;
719 }
720
721 if (getpeereid(client_fd, &euid, &egid) < 0) {
722 error("%s getpeereid failed: %s", __func__, strerror(errno));
723 close(client_fd);
724 return;
725 }
726 if ((euid != 0) && (getuid() != euid)) {
727 error("control mode uid mismatch: peer euid %u != uid %u",
728 (u_int) euid, (u_int) getuid());
729 close(client_fd);
730 return;
731 }
Damien Miller23f07702004-06-18 01:19:03 +1000732
Damien Miller0e220db2004-06-15 10:34:08 +1000733 unset_nonblock(client_fd);
734
Darren Tucker7ebfc102004-11-07 20:06:19 +1100735 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000736 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100737 if (ssh_msg_recv(client_fd, &m) == -1) {
738 error("%s: client msg_recv failed", __func__);
739 close(client_fd);
740 buffer_free(&m);
741 return;
742 }
Damien Miller13390022005-07-06 09:44:19 +1000743 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100744 error("%s: wrong client version %d", __func__, ver);
745 buffer_free(&m);
746 close(client_fd);
747 return;
748 }
Damien Miller0e220db2004-06-15 10:34:08 +1000749
Darren Tucker7ebfc102004-11-07 20:06:19 +1100750 allowed = 1;
751 command = buffer_get_int(&m);
752 flags = buffer_get_int(&m);
753
754 buffer_clear(&m);
755
756 switch (command) {
757 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000758 if (options.control_master == SSHCTL_MASTER_ASK ||
759 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100760 allowed = ask_permission("Allow shared connection "
761 "to %s? ", host);
762 /* continue below */
763 break;
764 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000765 if (options.control_master == SSHCTL_MASTER_ASK ||
766 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100767 allowed = ask_permission("Terminate shared connection "
768 "to %s? ", host);
769 if (allowed)
770 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100771 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100772 case SSHMUX_COMMAND_ALIVE_CHECK:
773 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
774 buffer_clear(&m);
775 buffer_put_int(&m, allowed);
776 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000777 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100778 error("%s: client msg_send failed", __func__);
779 close(client_fd);
780 buffer_free(&m);
781 return;
782 }
783 buffer_free(&m);
784 close(client_fd);
785 return;
786 default:
787 error("Unsupported command %d", command);
788 buffer_free(&m);
789 close(client_fd);
790 return;
791 }
792
793 /* Reply for SSHMUX_COMMAND_OPEN */
794 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000795 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000796 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000797 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000798 error("%s: client msg_send failed", __func__);
799 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000800 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000801 return;
802 }
Damien Miller0e220db2004-06-15 10:34:08 +1000803
Damien Miller23f07702004-06-18 01:19:03 +1000804 if (!allowed) {
805 error("Refused control connection");
806 close(client_fd);
807 buffer_free(&m);
808 return;
809 }
810
Darren Tucker7ebfc102004-11-07 20:06:19 +1100811 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000812 if (ssh_msg_recv(client_fd, &m) == -1) {
813 error("%s: client msg_recv failed", __func__);
814 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000815 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000816 return;
817 }
Damien Miller13390022005-07-06 09:44:19 +1000818 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000819 error("%s: wrong client version %d", __func__, ver);
820 buffer_free(&m);
821 close(client_fd);
822 return;
823 }
824
Damien Miller07d86be2006-03-26 14:19:21 +1100825 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100826 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
827 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000828 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
829 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000830 cctx->term = buffer_get_string(&m, &len);
831
832 cmd = buffer_get_string(&m, &len);
833 buffer_init(&cctx->cmd);
834 buffer_append(&cctx->cmd, cmd, strlen(cmd));
835
Damien Miller3756dce2004-06-18 01:17:29 +1000836 env_len = buffer_get_int(&m);
837 env_len = MIN(env_len, 4096);
838 debug3("%s: receiving %d env vars", __func__, env_len);
839 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100840 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000841 for (i = 0; i < env_len; i++)
842 cctx->env[i] = buffer_get_string(&m, &len);
843 cctx->env[i] = NULL;
844 }
845
Damien Miller0e220db2004-06-15 10:34:08 +1000846 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
847 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000848 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000849
850 /* Gather fds from client */
851 new_fd[0] = mm_receive_fd(client_fd);
852 new_fd[1] = mm_receive_fd(client_fd);
853 new_fd[2] = mm_receive_fd(client_fd);
854
855 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
856 new_fd[0], new_fd[1], new_fd[2]);
857
858 /* Try to pick up ttymodes from client before it goes raw */
859 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
860 error("%s: tcgetattr: %s", __func__, strerror(errno));
861
Darren Tucker7ebfc102004-11-07 20:06:19 +1100862 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000863 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000864 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000865 error("%s: client msg_send failed", __func__);
866 close(client_fd);
867 close(new_fd[0]);
868 close(new_fd[1]);
869 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000870 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100871 xfree(cctx->term);
872 if (env_len != 0) {
873 for (i = 0; i < env_len; i++)
874 xfree(cctx->env[i]);
875 xfree(cctx->env);
876 }
Damien Miller0e220db2004-06-15 10:34:08 +1000877 return;
878 }
879 buffer_free(&m);
880
881 /* enable nonblocking unless tty */
882 if (!isatty(new_fd[0]))
883 set_nonblock(new_fd[0]);
884 if (!isatty(new_fd[1]))
885 set_nonblock(new_fd[1]);
886 if (!isatty(new_fd[2]))
887 set_nonblock(new_fd[2]);
888
889 set_nonblock(client_fd);
890
Darren Tuckerfc959702004-07-17 16:12:08 +1000891 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000892 new_fd[0], new_fd[1], new_fd[2],
893 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
894 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
895
896 /* XXX */
897 c->ctl_fd = client_fd;
898
899 debug3("%s: channel_new: %d", __func__, c->self);
900
901 channel_send_open(c->self);
902 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
903}
904
905static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000906process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000907{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000908 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100909 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000910 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000911 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100912 u_short cancel_port;
913 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000914
915 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000916 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000917 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000918 if (s == NULL)
919 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000920 while (*s && isspace(*s))
921 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000922 if (*s == '-')
923 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000924 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000925 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000926
Darren Tucker1973c882004-05-24 10:34:36 +1000927 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000928 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000929 logit(" -L[bind_address:]port:host:hostport "
930 "Request local forward");
931 logit(" -R[bind_address:]port:host:hostport "
932 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000933 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000934 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100935 if (!options.permit_local_command)
936 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000937 logit(" !args "
938 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100939 goto out;
940 }
941
942 if (*s == '!' && options.permit_local_command) {
943 s++;
944 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000945 goto out;
946 }
947
948 if (*s == 'K') {
949 delete = 1;
950 s++;
951 }
952 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000954 goto out;
955 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000956 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000957 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000958 if (local && delete) {
959 logit("Not supported.");
960 goto out;
961 }
962 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000963 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000964 goto out;
965 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000966
967 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000968 while (*s && isspace(*s))
969 s++;
970
Darren Tuckere7066df2004-05-24 10:18:05 +1000971 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100972 cancel_port = 0;
973 cancel_host = hpdelim(&s); /* may be NULL */
974 if (s != NULL) {
975 cancel_port = a2port(s);
976 cancel_host = cleanhostname(cancel_host);
977 } else {
978 cancel_port = a2port(cancel_host);
979 cancel_host = NULL;
980 }
981 if (cancel_port == 0) {
982 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000983 goto out;
984 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100985 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000986 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100987 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000988 logit("Bad forwarding specification.");
989 goto out;
990 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000991 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100992 if (channel_setup_local_fwd_listener(fwd.listen_host,
993 fwd.listen_port, fwd.connect_host,
994 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000995 logit("Port forwarding failed.");
996 goto out;
997 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100998 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +1000999 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001000 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001001 fwd.connect_port) < 0) {
1002 logit("Port forwarding failed.");
1003 goto out;
1004 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001005 }
1006
Darren Tuckere7066df2004-05-24 10:18:05 +10001007 logit("Forwarding port.");
1008 }
1009
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001010out:
1011 signal(SIGINT, handler);
1012 enter_raw_mode();
1013 if (cmd)
1014 xfree(cmd);
1015}
1016
Damien Millerad833b32000-08-23 10:46:23 +10001017/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static int
Damien Millerad833b32000-08-23 10:46:23 +10001019process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1020{
1021 char string[1024];
1022 pid_t pid;
1023 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001024 u_int i;
1025 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001026 char *s;
1027
Damien Millereccb9de2005-06-17 12:59:34 +10001028 if (len <= 0)
1029 return (0);
1030
1031 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001032 /* Get one character at a time. */
1033 ch = buf[i];
1034
1035 if (escape_pending) {
1036 /* We have previously seen an escape character. */
1037 /* Clear the flag now. */
1038 escape_pending = 0;
1039
1040 /* Process the escaped character. */
1041 switch (ch) {
1042 case '.':
1043 /* Terminate the connection. */
1044 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1045 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001046
1047 quit_pending = 1;
1048 return -1;
1049
1050 case 'Z' - 64:
1051 /* Suspend the program. */
1052 /* Print a message to that effect to the user. */
1053 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1054 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001055
1056 /* Restore terminal modes and suspend. */
1057 client_suspend_self(bin, bout, berr);
1058
1059 /* We have been continued. */
1060 continue;
1061
Damien Miller54c45982003-05-15 10:20:13 +10001062 case 'B':
1063 if (compat20) {
1064 snprintf(string, sizeof string,
1065 "%cB\r\n", escape_char);
1066 buffer_append(berr, string,
1067 strlen(string));
1068 channel_request_start(session_ident,
1069 "break", 0);
1070 packet_put_int(1000);
1071 packet_send();
1072 }
1073 continue;
1074
Ben Lindstromf28f6342001-04-04 02:03:04 +00001075 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001076 if (compat20) {
1077 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001078 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001079 else
1080 need_rekeying = 1;
1081 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001082 continue;
1083
Damien Millerad833b32000-08-23 10:46:23 +10001084 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001085 /*
1086 * Detach the program (continue to serve connections,
1087 * but put in background and no more new connections).
1088 */
Damien Miller96507ef2001-11-12 10:52:25 +11001089 /* Restore tty modes. */
1090 leave_raw_mode();
1091
1092 /* Stop listening for new connections. */
1093 channel_stop_listening();
1094
1095 snprintf(string, sizeof string,
1096 "%c& [backgrounded]\n", escape_char);
1097 buffer_append(berr, string, strlen(string));
1098
1099 /* Fork into background. */
1100 pid = fork();
1101 if (pid < 0) {
1102 error("fork: %.100s", strerror(errno));
1103 continue;
1104 }
1105 if (pid != 0) { /* This is the parent. */
1106 /* The parent just exits. */
1107 exit(0);
1108 }
1109 /* The child continues serving connections. */
1110 if (compat20) {
1111 buffer_append(bin, "\004", 1);
1112 /* fake EOF on stdin */
1113 return -1;
1114 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001115 /*
1116 * Sending SSH_CMSG_EOF alone does not always appear
1117 * to be enough. So we try to send an EOF character
1118 * first.
1119 */
1120 packet_start(SSH_CMSG_STDIN_DATA);
1121 packet_put_string("\004", 1);
1122 packet_send();
1123 /* Close stdin. */
1124 stdin_eof = 1;
1125 if (buffer_len(bin) == 0) {
1126 packet_start(SSH_CMSG_EOF);
1127 packet_send();
1128 }
1129 }
Damien Miller96507ef2001-11-12 10:52:25 +11001130 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001131
1132 case '?':
1133 snprintf(string, sizeof string,
1134"%c?\r\n\
1135Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001136%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001137%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001138%cC - open a command line\r\n\
1139%cR - Request rekey (SSH protocol 2 only)\r\n\
1140%c^Z - suspend ssh\r\n\
1141%c# - list forwarded connections\r\n\
1142%c& - background ssh (when waiting for connections to terminate)\r\n\
1143%c? - this message\r\n\
1144%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001145(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001146 escape_char, escape_char, escape_char, escape_char,
1147 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001148 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001149 buffer_append(berr, string, strlen(string));
1150 continue;
1151
1152 case '#':
1153 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1154 buffer_append(berr, string, strlen(string));
1155 s = channel_open_message();
1156 buffer_append(berr, s, strlen(s));
1157 xfree(s);
1158 continue;
1159
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001160 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001161 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001162 continue;
1163
Damien Millerad833b32000-08-23 10:46:23 +10001164 default:
1165 if (ch != escape_char) {
1166 buffer_put_char(bin, escape_char);
1167 bytes++;
1168 }
1169 /* Escaped characters fall through here */
1170 break;
1171 }
1172 } else {
1173 /*
1174 * The previous character was not an escape char. Check if this
1175 * is an escape.
1176 */
1177 if (last_was_cr && ch == escape_char) {
1178 /* It is. Set the flag and continue to next character. */
1179 escape_pending = 1;
1180 continue;
1181 }
1182 }
1183
1184 /*
1185 * Normal character. Record whether it was a newline,
1186 * and append it to the buffer.
1187 */
1188 last_was_cr = (ch == '\r' || ch == '\n');
1189 buffer_put_char(bin, ch);
1190 bytes++;
1191 }
1192 return bytes;
1193}
1194
Ben Lindstrombba81212001-06-25 05:01:22 +00001195static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001196client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001197{
Damien Miller166fca82000-04-20 07:42:21 +10001198 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001199 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001200
Damien Miller95def091999-11-25 00:26:21 +11001201 /* Read input from stdin. */
1202 if (FD_ISSET(fileno(stdin), readset)) {
1203 /* Read as much as possible. */
1204 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001205 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1206 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001207 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001208 /*
1209 * Received EOF or error. They are treated
1210 * similarly, except that an error message is printed
1211 * if it was an error condition.
1212 */
Damien Miller95def091999-11-25 00:26:21 +11001213 if (len < 0) {
1214 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1215 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001216 }
1217 /* Mark that we have seen EOF. */
1218 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001219 /*
1220 * Send an EOF message to the server unless there is
1221 * data in the buffer. If there is data in the
1222 * buffer, no message will be sent now. Code
1223 * elsewhere will send the EOF when the buffer
1224 * becomes empty if stdin_eof is set.
1225 */
Damien Miller95def091999-11-25 00:26:21 +11001226 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001227 packet_start(SSH_CMSG_EOF);
1228 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001229 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001230 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001231 /*
1232 * Normal successful read, and no escape character.
1233 * Just append the data to buffer.
1234 */
Damien Miller95def091999-11-25 00:26:21 +11001235 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001236 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001237 /*
1238 * Normal, successful read. But we have an escape character
1239 * and have to process the characters one by one.
1240 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001241 if (process_escapes(&stdin_buffer, &stdout_buffer,
1242 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001243 return;
Damien Miller95def091999-11-25 00:26:21 +11001244 }
1245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001246}
1247
Ben Lindstrombba81212001-06-25 05:01:22 +00001248static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001249client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001250{
Damien Miller95def091999-11-25 00:26:21 +11001251 int len;
1252 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001253
Damien Miller95def091999-11-25 00:26:21 +11001254 /* Write buffered output to stdout. */
1255 if (FD_ISSET(fileno(stdout), writeset)) {
1256 /* Write as much data as possible. */
1257 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001258 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001259 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001260 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001261 len = 0;
1262 else {
Damien Miller5428f641999-11-25 11:54:57 +11001263 /*
1264 * An error or EOF was encountered. Put an
1265 * error message to stderr buffer.
1266 */
Damien Miller95def091999-11-25 00:26:21 +11001267 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1268 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001269 quit_pending = 1;
1270 return;
1271 }
1272 }
1273 /* Consume printed data from the buffer. */
1274 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001275 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276 }
Damien Miller95def091999-11-25 00:26:21 +11001277 /* Write buffered output to stderr. */
1278 if (FD_ISSET(fileno(stderr), writeset)) {
1279 /* Write as much data as possible. */
1280 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001281 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001282 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001283 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001284 len = 0;
1285 else {
Damien Miller5428f641999-11-25 11:54:57 +11001286 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001287 quit_pending = 1;
1288 return;
1289 }
1290 }
1291 /* Consume printed characters from the buffer. */
1292 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001293 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001294 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295}
1296
Damien Miller5428f641999-11-25 11:54:57 +11001297/*
Damien Millerb38eff82000-04-01 11:09:21 +10001298 * Get packets from the connection input buffer, and process them as long as
1299 * there are packets available.
1300 *
1301 * Any unknown packets received during the actual
1302 * session cause the session to terminate. This is
1303 * intended to make debugging easier since no
1304 * confirmations are sent. Any compatible protocol
1305 * extensions must be negotiated during the
1306 * preparatory phase.
1307 */
1308
Ben Lindstrombba81212001-06-25 05:01:22 +00001309static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001310client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001311{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001312 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001313}
1314
Damien Millerad833b32000-08-23 10:46:23 +10001315/* scan buf[] for '~' before sending data to the peer */
1316
Ben Lindstrombba81212001-06-25 05:01:22 +00001317static int
Damien Millerad833b32000-08-23 10:46:23 +10001318simple_escape_filter(Channel *c, char *buf, int len)
1319{
1320 /* XXX we assume c->extended is writeable */
1321 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1322}
1323
Ben Lindstrombba81212001-06-25 05:01:22 +00001324static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001325client_channel_closed(int id, void *arg)
1326{
Damien Miller3ec27592001-10-12 11:35:04 +10001327 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001328 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001329 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001330}
1331
Damien Millerb38eff82000-04-01 11:09:21 +10001332/*
Damien Miller5428f641999-11-25 11:54:57 +11001333 * Implements the interactive session with the server. This is called after
1334 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001335 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1336 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001337 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001338
Damien Miller4af51302000-04-16 11:18:38 +10001339int
Damien Millerad833b32000-08-23 10:46:23 +10001340client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341{
Damien Miller5e953212001-01-30 09:14:00 +11001342 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001343 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001344 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1345 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001346 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001347
Damien Miller95def091999-11-25 00:26:21 +11001348 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349
Damien Miller95def091999-11-25 00:26:21 +11001350 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001351
Damien Miller95def091999-11-25 00:26:21 +11001352 /* Initialize variables. */
1353 escape_pending = 0;
1354 last_was_cr = 1;
1355 exit_status = -1;
1356 stdin_eof = 0;
1357 buffer_high = 64 * 1024;
1358 connection_in = packet_get_connection_in();
1359 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001360 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001361 if (control_fd != -1)
1362 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001363
1364 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001365 /* enable nonblocking unless tty */
1366 if (!isatty(fileno(stdin)))
1367 set_nonblock(fileno(stdin));
1368 if (!isatty(fileno(stdout)))
1369 set_nonblock(fileno(stdout));
1370 if (!isatty(fileno(stderr)))
1371 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001372 max_fd = MAX(max_fd, fileno(stdin));
1373 max_fd = MAX(max_fd, fileno(stdout));
1374 max_fd = MAX(max_fd, fileno(stderr));
1375 }
Damien Miller95def091999-11-25 00:26:21 +11001376 stdin_bytes = 0;
1377 stdout_bytes = 0;
1378 stderr_bytes = 0;
1379 quit_pending = 0;
1380 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001381
Damien Miller95def091999-11-25 00:26:21 +11001382 /* Initialize buffers. */
1383 buffer_init(&stdin_buffer);
1384 buffer_init(&stdout_buffer);
1385 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
Damien Millerb38eff82000-04-01 11:09:21 +10001387 client_init_dispatch();
1388
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001389 /*
1390 * Set signal handlers, (e.g. to restore non-blocking mode)
1391 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1392 */
Darren Tucker07336da2004-11-05 20:02:16 +11001393 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1394 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001395 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1396 signal(SIGINT, signal_handler);
1397 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1398 signal(SIGQUIT, signal_handler);
1399 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1400 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001401 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402
Damien Miller95def091999-11-25 00:26:21 +11001403 if (have_pty)
1404 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001405
Ben Lindstrom5b828322001-02-09 01:34:36 +00001406 if (compat20) {
1407 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001408 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001409 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001410 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001411 if (session_ident != -1)
1412 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001413 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001414 } else {
1415 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001416 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001417 }
Damien Millerad833b32000-08-23 10:46:23 +10001418
Damien Miller95def091999-11-25 00:26:21 +11001419 /* Main loop of the client for the interactive session mode. */
1420 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001421
Damien Miller5428f641999-11-25 11:54:57 +11001422 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001423 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001424
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001425 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001426 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001427
1428 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001429
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001430 if (rekeying) {
1431 debug("rekeying in progress");
1432 } else {
1433 /*
1434 * Make packets of buffered stdin data, and buffer
1435 * them for sending to the server.
1436 */
1437 if (!compat20)
1438 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001440 /*
1441 * Make packets from buffered channel data, and
1442 * enqueue them for sending to the server.
1443 */
1444 if (packet_not_very_much_data_to_write())
1445 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001446
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001447 /*
1448 * Check if the window size has changed, and buffer a
1449 * message about it to the server if so.
1450 */
1451 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001452
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001453 if (quit_pending)
1454 break;
1455 }
Damien Miller5428f641999-11-25 11:54:57 +11001456 /*
1457 * Wait until we have something to do (something becomes
1458 * available on one of the descriptors).
1459 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001460 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001461 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001462 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001463
Damien Miller95def091999-11-25 00:26:21 +11001464 if (quit_pending)
1465 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001466
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001467 /* Do channel operations unless rekeying in progress. */
1468 if (!rekeying) {
1469 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001470 if (need_rekeying || packet_need_rekeying()) {
1471 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001472 xxx_kex->done = 0;
1473 kex_send_kexinit(xxx_kex);
1474 need_rekeying = 0;
1475 }
1476 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001477
Damien Miller1383bd82000-04-06 12:32:37 +10001478 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001479 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Damien Miller0e220db2004-06-15 10:34:08 +10001481 /* Accept control connections. */
1482 client_process_control(readset);
1483
Damien Miller1383bd82000-04-06 12:32:37 +10001484 if (quit_pending)
1485 break;
1486
1487 if (!compat20) {
1488 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001489 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001490 /*
1491 * Process output to stdout and stderr. Output to
1492 * the connection is processed elsewhere (above).
1493 */
Damien Miller5e953212001-01-30 09:14:00 +11001494 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001495 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001496
Damien Miller5428f641999-11-25 11:54:57 +11001497 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001498 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001499 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001500 }
Damien Miller5e953212001-01-30 09:14:00 +11001501 if (readset)
1502 xfree(readset);
1503 if (writeset)
1504 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001505
Damien Miller95def091999-11-25 00:26:21 +11001506 /* Terminate the session. */
1507
1508 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001509 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001510
Ben Lindstrom601e4362001-06-21 03:19:23 +00001511 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001512
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001513 if (have_pty)
1514 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001515
1516 /* restore blocking io */
1517 if (!isatty(fileno(stdin)))
1518 unset_nonblock(fileno(stdin));
1519 if (!isatty(fileno(stdout)))
1520 unset_nonblock(fileno(stdout));
1521 if (!isatty(fileno(stderr)))
1522 unset_nonblock(fileno(stderr));
1523
Damien Millerd6965512003-12-17 16:31:53 +11001524 /*
1525 * If there was no shell or command requested, there will be no remote
1526 * exit status to be returned. In that case, clear error code if the
1527 * connection was deliberately terminated at this end.
1528 */
1529 if (no_shell_flag && received_signal == SIGTERM) {
1530 received_signal = 0;
1531 exit_status = 0;
1532 }
1533
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001534 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001535 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001536
1537 /*
1538 * In interactive mode (with pseudo tty) display a message indicating
1539 * that the connection has been closed.
1540 */
1541 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1542 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1543 buffer_append(&stderr_buffer, buf, strlen(buf));
1544 }
1545
Damien Miller95def091999-11-25 00:26:21 +11001546 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001547 while (buffer_len(&stdout_buffer) > 0) {
1548 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001549 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001550 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001551 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001552 break;
1553 }
Damien Miller95def091999-11-25 00:26:21 +11001554 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001555 stdout_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 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001559 while (buffer_len(&stderr_buffer) > 0) {
1560 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001561 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001562 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001563 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001564 break;
1565 }
Damien Miller95def091999-11-25 00:26:21 +11001566 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001567 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001568 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001569
Damien Miller95def091999-11-25 00:26:21 +11001570 /* Clear and free any buffers. */
1571 memset(buf, 0, sizeof(buf));
1572 buffer_free(&stdin_buffer);
1573 buffer_free(&stdout_buffer);
1574 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001575
Damien Miller95def091999-11-25 00:26:21 +11001576 /* Report bytes transferred, and transfer rates. */
1577 total_time = get_current_time() - start_time;
1578 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001579 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001580 if (total_time > 0)
1581 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001582 stdin_bytes / total_time, stdout_bytes / total_time,
1583 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001584
1585 /* Return the exit status of the program. */
1586 debug("Exit status %d", exit_status);
1587 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001588}
Damien Millerb38eff82000-04-01 11:09:21 +10001589
1590/*********/
1591
Ben Lindstrombba81212001-06-25 05:01:22 +00001592static void
Damien Miller630d6f42002-01-22 23:17:30 +11001593client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001594{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001595 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001596 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001597 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001598 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001599 memset(data, 0, data_len);
1600 xfree(data);
1601}
Ben Lindstrombba81212001-06-25 05:01:22 +00001602static void
Damien Miller630d6f42002-01-22 23:17:30 +11001603client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001604{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001605 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001606 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001607 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001608 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001609 memset(data, 0, data_len);
1610 xfree(data);
1611}
Ben Lindstrombba81212001-06-25 05:01:22 +00001612static void
Damien Miller630d6f42002-01-22 23:17:30 +11001613client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001614{
Damien Millerb38eff82000-04-01 11:09:21 +10001615 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001616 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001617 /* Acknowledge the exit. */
1618 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1619 packet_send();
1620 /*
1621 * Must wait for packet to be sent since we are
1622 * exiting the loop.
1623 */
1624 packet_write_wait();
1625 /* Flag that we want to exit. */
1626 quit_pending = 1;
1627}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001628static void
1629client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1630{
1631 Channel *c = NULL;
1632 int remote_id, sock;
1633
1634 /* Read the remote channel number from the message. */
1635 remote_id = packet_get_int();
1636 packet_check_eom();
1637
1638 /*
1639 * Get a connection to the local authentication agent (this may again
1640 * get forwarded).
1641 */
1642 sock = ssh_get_authentication_socket();
1643
1644 /*
1645 * If we could not connect the agent, send an error message back to
1646 * the server. This should never happen unless the agent dies,
1647 * because authentication forwarding is only enabled if we have an
1648 * agent.
1649 */
1650 if (sock >= 0) {
1651 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1652 -1, 0, 0, 0, "authentication agent connection", 1);
1653 c->remote_id = remote_id;
1654 c->force_drain = 1;
1655 }
1656 if (c == NULL) {
1657 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1658 packet_put_int(remote_id);
1659 } else {
1660 /* Send a confirmation to the remote host. */
1661 debug("Forwarding authentication connection.");
1662 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1663 packet_put_int(remote_id);
1664 packet_put_int(c->self);
1665 }
1666 packet_send();
1667}
Damien Millerb38eff82000-04-01 11:09:21 +10001668
Ben Lindstrombba81212001-06-25 05:01:22 +00001669static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001670client_request_forwarded_tcpip(const char *request_type, int rchan)
1671{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001672 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001673 char *listen_address, *originator_address;
1674 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001675 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001676
1677 /* Get rest of the packet */
1678 listen_address = packet_get_string(NULL);
1679 listen_port = packet_get_int();
1680 originator_address = packet_get_string(NULL);
1681 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001682 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001683
1684 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1685 listen_address, listen_port, originator_address, originator_port);
1686
Ben Lindstrom173e6462001-07-04 05:15:15 +00001687 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001688 if (sock < 0) {
1689 xfree(originator_address);
1690 xfree(listen_address);
1691 return NULL;
1692 }
1693 c = channel_new("forwarded-tcpip",
1694 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1695 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001696 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001697 xfree(originator_address);
1698 xfree(listen_address);
1699 return c;
1700}
1701
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001702static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001703client_request_x11(const char *request_type, int rchan)
1704{
1705 Channel *c = NULL;
1706 char *originator;
1707 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001708 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001709
1710 if (!options.forward_x11) {
1711 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001712 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001713 return NULL;
1714 }
1715 originator = packet_get_string(NULL);
1716 if (datafellows & SSH_BUG_X11FWD) {
1717 debug2("buggy server: x11 request w/o originator_port");
1718 originator_port = 0;
1719 } else {
1720 originator_port = packet_get_int();
1721 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001722 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001723 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001724 debug("client_request_x11: request from %s %d", originator,
1725 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001726 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001727 sock = x11_connect_display();
1728 if (sock < 0)
1729 return NULL;
1730 c = channel_new("x11",
1731 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001732 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001733 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001734 return c;
1735}
1736
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001737static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001738client_request_agent(const char *request_type, int rchan)
1739{
1740 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001741 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742
1743 if (!options.forward_agent) {
1744 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001745 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001746 return NULL;
1747 }
1748 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001749 if (sock < 0)
1750 return NULL;
1751 c = channel_new("authentication agent connection",
1752 SSH_CHANNEL_OPEN, sock, sock, -1,
1753 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001754 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001755 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001756 return c;
1757}
1758
Damien Millerbd483e72000-04-30 10:00:53 +10001759/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001760static void
Damien Miller630d6f42002-01-22 23:17:30 +11001761client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001762{
1763 Channel *c = NULL;
1764 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001765 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001766 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001767
1768 ctype = packet_get_string(&len);
1769 rchan = packet_get_int();
1770 rwindow = packet_get_int();
1771 rmaxpack = packet_get_int();
1772
Damien Millere247cc42000-05-07 12:03:14 +10001773 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001774 ctype, rchan, rwindow, rmaxpack);
1775
Damien Miller0bc1bd82000-11-13 22:57:25 +11001776 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1777 c = client_request_forwarded_tcpip(ctype, rchan);
1778 } else if (strcmp(ctype, "x11") == 0) {
1779 c = client_request_x11(ctype, rchan);
1780 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1781 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001782 }
1783/* XXX duplicate : */
1784 if (c != NULL) {
1785 debug("confirm %s", ctype);
1786 c->remote_id = rchan;
1787 c->remote_window = rwindow;
1788 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001789 if (c->type != SSH_CHANNEL_CONNECTING) {
1790 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1791 packet_put_int(c->remote_id);
1792 packet_put_int(c->self);
1793 packet_put_int(c->local_window);
1794 packet_put_int(c->local_maxpacket);
1795 packet_send();
1796 }
Damien Millerbd483e72000-04-30 10:00:53 +10001797 } else {
1798 debug("failure %s", ctype);
1799 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1800 packet_put_int(rchan);
1801 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001802 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001803 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001804 packet_put_cstring("");
1805 }
Damien Millerbd483e72000-04-30 10:00:53 +10001806 packet_send();
1807 }
1808 xfree(ctype);
1809}
Ben Lindstrombba81212001-06-25 05:01:22 +00001810static void
Damien Miller630d6f42002-01-22 23:17:30 +11001811client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001812{
1813 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001814 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001815 char *rtype;
1816
1817 id = packet_get_int();
1818 rtype = packet_get_string(NULL);
1819 reply = packet_get_char();
1820
1821 debug("client_input_channel_req: channel %d rtype %s reply %d",
1822 id, rtype, reply);
1823
Damien Miller3bbd8782004-06-18 22:23:22 +10001824 if (id == -1) {
1825 error("client_input_channel_req: request for channel -1");
1826 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001827 error("client_input_channel_req: channel %d: unknown channel", id);
1828 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001829 exitval = packet_get_int();
1830 if (id == session_ident) {
1831 success = 1;
1832 exit_status = exitval;
1833 } else if (c->ctl_fd == -1) {
1834 error("client_input_channel_req: unexpected channel %d",
1835 session_ident);
1836 } else {
1837 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1838 success = 1;
1839 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001840 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001841 }
1842 if (reply) {
1843 packet_start(success ?
1844 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001845 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001846 packet_send();
1847 }
1848 xfree(rtype);
1849}
Damien Millerc3fa4072002-01-22 23:21:58 +11001850static void
1851client_input_global_request(int type, u_int32_t seq, void *ctxt)
1852{
1853 char *rtype;
1854 int want_reply;
1855 int success = 0;
1856
1857 rtype = packet_get_string(NULL);
1858 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001859 debug("client_input_global_request: rtype %s want_reply %d",
1860 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001861 if (want_reply) {
1862 packet_start(success ?
1863 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1864 packet_send();
1865 packet_write_wait();
1866 }
1867 xfree(rtype);
1868}
Damien Millerbd483e72000-04-30 10:00:53 +10001869
Damien Miller0e220db2004-06-15 10:34:08 +10001870void
Darren Tuckerfc959702004-07-17 16:12:08 +10001871client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001872 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001873 dispatch_fn *subsys_repl)
1874{
1875 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001876 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001877
1878 debug2("%s: id %d", __func__, id);
1879
Darren Tucker5d78de62004-11-05 20:35:44 +11001880 if ((c = channel_lookup(id)) == NULL)
1881 fatal("client_session2_setup: channel %d: unknown channel", id);
1882
Damien Miller0e220db2004-06-15 10:34:08 +10001883 if (want_tty) {
1884 struct winsize ws;
1885 struct termios tio;
1886
1887 /* Store window size in the packet. */
1888 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1889 memset(&ws, 0, sizeof(ws));
1890
1891 channel_request_start(id, "pty-req", 0);
1892 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001893 packet_put_int((u_int)ws.ws_col);
1894 packet_put_int((u_int)ws.ws_row);
1895 packet_put_int((u_int)ws.ws_xpixel);
1896 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001897 tio = get_saved_tio();
1898 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1899 packet_send();
1900 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001901 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001902 }
1903
1904 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001905 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001906 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001907 char *name, *val;
1908
1909 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001910 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001911 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001912 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001913 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001914 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001915 continue;
1916 }
1917 *val++ = '\0';
1918
1919 matched = 0;
1920 for (j = 0; j < options.num_send_env; j++) {
1921 if (match_pattern(name, options.send_env[j])) {
1922 matched = 1;
1923 break;
1924 }
1925 }
1926 if (!matched) {
1927 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001928 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001929 continue;
1930 }
1931
1932 debug("Sending env %s = %s", name, val);
1933 channel_request_start(id, "env", 0);
1934 packet_put_cstring(name);
1935 packet_put_cstring(val);
1936 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001937 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001938 }
1939 }
1940
1941 len = buffer_len(cmd);
1942 if (len > 0) {
1943 if (len > 900)
1944 len = 900;
1945 if (want_subsystem) {
1946 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1947 channel_request_start(id, "subsystem", subsys_repl != NULL);
1948 if (subsys_repl != NULL) {
1949 /* register callback for reply */
1950 /* XXX we assume that client_loop has already been called */
1951 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1952 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1953 }
1954 } else {
1955 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1956 channel_request_start(id, "exec", 0);
1957 }
1958 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1959 packet_send();
1960 } else {
1961 channel_request_start(id, "shell", 0);
1962 packet_send();
1963 }
1964}
1965
Ben Lindstrombba81212001-06-25 05:01:22 +00001966static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001967client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001968{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001969 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001970
Damien Miller1383bd82000-04-06 12:32:37 +10001971 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1972 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1973 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1974 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001975 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001976 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1977 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001978 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001979 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001980 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001981
1982 /* rekeying */
1983 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001984
1985 /* global request reply messages */
1986 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1987 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001988}
Ben Lindstrombba81212001-06-25 05:01:22 +00001989static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001990client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001991{
1992 dispatch_init(NULL);
1993 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1994 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1995 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001996 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1997 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1998 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001999 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2000 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2001 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002002
2003 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002004 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002005 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2006 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002007}
Ben Lindstrombba81212001-06-25 05:01:22 +00002008static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002009client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002010{
2011 client_init_dispatch_13();
2012 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2013 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2014}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002015static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002016client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002017{
Damien Miller1383bd82000-04-06 12:32:37 +10002018 if (compat20)
2019 client_init_dispatch_20();
2020 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002021 client_init_dispatch_13();
2022 else
2023 client_init_dispatch_15();
2024}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002025
2026/* client specific fatal cleanup */
2027void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002028cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002029{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002030 leave_raw_mode();
2031 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002032 if (options.control_path != NULL && control_fd != -1)
2033 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002034 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002035}