blob: c7362caa8ccc3e36e6ef3222dc12025c2916c544 [file] [log] [blame]
Darren Tuckerd04188e2007-02-25 20:36:49 +11001/* $OpenBSD: clientloop.c,v 1.178 2007/02/20 10:25:14 djm 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>
Damien Miller9aec9192006-08-05 10:57:45 +100065#include <sys/ioctl.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100066#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110067#ifdef HAVE_SYS_STAT_H
68# include <sys/stat.h>
69#endif
Damien Miller9aec9192006-08-05 10:57:45 +100070#ifdef HAVE_SYS_TIME_H
71# include <sys/time.h>
72#endif
Damien Millere3b60b52006-07-10 21:08:03 +100073#include <sys/socket.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110074
Damien Millerc7b06362006-03-15 11:53:45 +110075#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100076#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110077#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110078#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110079#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110080#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100081#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100082#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100083#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100084#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110085#include <termios.h>
Damien Millerd7834352006-08-05 12:39:39 +100086#include <pwd.h>
Damien Millere6b3b612006-07-24 14:01:23 +100087#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Millerd7834352006-08-05 12:39:39 +100089#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000091#include "ssh1.h"
92#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093#include "packet.h"
94#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100095#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000096#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100097#include "dispatch.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110098#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100099#include "cipher.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +0000100#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000101#include "log.h"
102#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000103#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100104#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000105#include "authfd.h"
106#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000107#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000108#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000109#include "monitor_fdpass.h"
110#include "match.h"
111#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100112
113/* import options */
114extern Options options;
115
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116/* Flag indicating that stdin should be redirected from /dev/null. */
117extern int stdin_null_flag;
118
Damien Millerd6965512003-12-17 16:31:53 +1100119/* Flag indicating that no shell has been requested */
120extern int no_shell_flag;
121
Damien Miller0e220db2004-06-15 10:34:08 +1000122/* Control socket */
123extern int control_fd;
124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Name of the host we are connecting to. This is the name given on the
127 * command line, or the HostName specified for the user-supplied name in a
128 * configuration file.
129 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130extern char *host;
131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag to indicate that we have received a window change signal which has
134 * not yet been processed. This will cause a message indicating the new
135 * window size to be sent to the server a little later. This is volatile
136 * because this is updated in a signal handler.
137 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000138static volatile sig_atomic_t received_window_change_signal = 0;
139static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller788f2122005-11-05 15:14:59 +1100141/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142static int in_non_blocking_mode = 0;
143
144/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000145static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000146static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100147static int escape_pending; /* Last character was the escape character */
148static int last_was_cr; /* Last character was a newline. */
149static int exit_status; /* Used to store the exit status of the command. */
150static int stdin_eof; /* EOF has been encountered on standard error. */
151static Buffer stdin_buffer; /* Buffer for stdin data. */
152static Buffer stdout_buffer; /* Buffer for stdout data. */
153static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000154static u_long stdin_bytes, stdout_bytes, stderr_bytes;
155static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100156static int connection_in; /* Connection to server (input). */
157static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000158static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000159static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100160static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000163int session_ident = -1;
164
Damien Miller0e220db2004-06-15 10:34:08 +1000165struct confirm_ctx {
166 int want_tty;
167 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000168 int want_x_fwd;
169 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000170 Buffer cmd;
171 char *term;
172 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000173 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000174};
175
Ben Lindstromf28f6342001-04-04 02:03:04 +0000176/*XXX*/
177extern Kex *xxx_kex;
178
Damien Miller0e220db2004-06-15 10:34:08 +1000179void ssh_process_session2_setup(int, int, int, Buffer *);
180
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181/* Restores stdin to blocking mode. */
182
Ben Lindstrombba81212001-06-25 05:01:22 +0000183static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000184leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185{
Damien Miller95def091999-11-25 00:26:21 +1100186 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000187 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100188 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100189 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190}
191
Damien Miller95def091999-11-25 00:26:21 +1100192/* Puts stdin terminal in non-blocking mode. */
193
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000195enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196{
Damien Miller95def091999-11-25 00:26:21 +1100197 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000198 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199}
200
Damien Miller5428f641999-11-25 11:54:57 +1100201/*
202 * Signal handler for the window change signal (SIGWINCH). This just sets a
203 * flag indicating that the window has changed.
204 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100205/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000206static void
Damien Miller95def091999-11-25 00:26:21 +1100207window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208{
Damien Miller95def091999-11-25 00:26:21 +1100209 received_window_change_signal = 1;
210 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211}
212
Damien Miller5428f641999-11-25 11:54:57 +1100213/*
214 * Signal handler for signals that cause the program to terminate. These
215 * signals must be trapped to restore terminal modes.
216 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100217/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Damien Miller95def091999-11-25 00:26:21 +1100219signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000221 received_signal = sig;
222 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller5428f641999-11-25 11:54:57 +1100225/*
226 * Returns current time in seconds from Jan 1, 1970 with the maximum
227 * available resolution.
228 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229
Ben Lindstrombba81212001-06-25 05:01:22 +0000230static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000231get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 struct timeval tv;
234 gettimeofday(&tv, NULL);
235 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller17e7ed02005-06-17 12:54:33 +1000238#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
239void
240client_x11_get_proto(const char *display, const char *xauth_path,
241 u_int trusted, char **_proto, char **_data)
242{
243 char cmd[1024];
244 char line[512];
245 char xdisplay[512];
246 static char proto[512], data[512];
247 FILE *f;
248 int got_data = 0, generated = 0, do_unlink = 0, i;
249 char *xauthdir, *xauthfile;
250 struct stat st;
251
252 xauthdir = xauthfile = NULL;
253 *_proto = proto;
254 *_data = data;
255 proto[0] = data[0] = '\0';
256
257 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
258 debug("No xauth program.");
259 } else {
260 if (display == NULL) {
261 debug("x11_get_proto: DISPLAY not set");
262 return;
263 }
264 /*
265 * Handle FamilyLocal case where $DISPLAY does
266 * not match an authorization entry. For this we
267 * just try "xauth list unix:displaynum.screennum".
268 * XXX: "localhost" match to determine FamilyLocal
269 * is not perfect.
270 */
271 if (strncmp(display, "localhost:", 10) == 0) {
272 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
273 display + 10);
274 display = xdisplay;
275 }
276 if (trusted == 0) {
277 xauthdir = xmalloc(MAXPATHLEN);
278 xauthfile = xmalloc(MAXPATHLEN);
279 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
280 if (mkdtemp(xauthdir) != NULL) {
281 do_unlink = 1;
282 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
283 xauthdir);
284 snprintf(cmd, sizeof(cmd),
285 "%s -f %s generate %s " SSH_X11_PROTO
286 " untrusted timeout 1200 2>" _PATH_DEVNULL,
287 xauth_path, xauthfile, display);
288 debug2("x11_get_proto: %s", cmd);
289 if (system(cmd) == 0)
290 generated = 1;
291 }
292 }
293 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000294 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000295 xauth_path,
296 generated ? "-f " : "" ,
297 generated ? xauthfile : "",
298 display);
299 debug2("x11_get_proto: %s", cmd);
300 f = popen(cmd, "r");
301 if (f && fgets(line, sizeof(line), f) &&
302 sscanf(line, "%*s %511s %511s", proto, data) == 2)
303 got_data = 1;
304 if (f)
305 pclose(f);
306 }
307
308 if (do_unlink) {
309 unlink(xauthfile);
310 rmdir(xauthdir);
311 }
312 if (xauthdir)
313 xfree(xauthdir);
314 if (xauthfile)
315 xfree(xauthfile);
316
317 /*
318 * If we didn't get authentication data, just make up some
319 * data. The forwarding code will check the validity of the
320 * response anyway, and substitute this data. The X11
321 * server, however, will ignore this fake data and use
322 * whatever authentication mechanisms it was using otherwise
323 * for the local connection.
324 */
325 if (!got_data) {
326 u_int32_t rnd = 0;
327
328 logit("Warning: No xauth data; "
329 "using fake authentication data for X11 forwarding.");
330 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
331 for (i = 0; i < 16; i++) {
332 if (i % 4 == 0)
333 rnd = arc4random();
334 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
335 rnd & 0xff);
336 rnd >>= 8;
337 }
338 }
339}
340
Damien Miller5428f641999-11-25 11:54:57 +1100341/*
342 * This is called when the interactive is entered. This checks if there is
343 * an EOF coming on stdin. We must check this explicitly, as select() does
344 * not appear to wake up when redirecting from /dev/null.
345 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346
Ben Lindstrombba81212001-06-25 05:01:22 +0000347static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000348client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349{
Damien Miller95def091999-11-25 00:26:21 +1100350 int len;
351 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352
Damien Miller5428f641999-11-25 11:54:57 +1100353 /*
354 * If standard input is to be "redirected from /dev/null", we simply
355 * mark that we have seen an EOF and send an EOF message to the
356 * server. Otherwise, we try to read a single character; it appears
357 * that for some files, such /dev/null, select() never wakes up for
358 * read for this descriptor, which means that we never get EOF. This
359 * way we will get the EOF if stdin comes from /dev/null or similar.
360 */
Damien Miller95def091999-11-25 00:26:21 +1100361 if (stdin_null_flag) {
362 /* Fake EOF on stdin. */
363 debug("Sending eof.");
364 stdin_eof = 1;
365 packet_start(SSH_CMSG_EOF);
366 packet_send();
367 } else {
Damien Miller95def091999-11-25 00:26:21 +1100368 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369
Damien Miller95def091999-11-25 00:26:21 +1100370 /* Check for immediate EOF on stdin. */
371 len = read(fileno(stdin), buf, 1);
372 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100373 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100374 debug("Sending eof.");
375 stdin_eof = 1;
376 packet_start(SSH_CMSG_EOF);
377 packet_send();
378 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100379 /*
380 * Got data. We must store the data in the buffer,
381 * and also process it as an escape character if
382 * appropriate.
383 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000384 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100385 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000386 else
Damien Miller95def091999-11-25 00:26:21 +1100387 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100388 }
Damien Miller95def091999-11-25 00:26:21 +1100389 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391}
392
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393
Damien Miller5428f641999-11-25 11:54:57 +1100394/*
395 * Make packets from buffered stdin data, and buffer them for sending to the
396 * connection.
397 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398
Ben Lindstrombba81212001-06-25 05:01:22 +0000399static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000400client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000402 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403
Damien Miller95def091999-11-25 00:26:21 +1100404 /* Send buffered stdin data to the server. */
405 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100406 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100407 len = buffer_len(&stdin_buffer);
408 /* Keep the packets at reasonable size. */
409 if (len > packet_get_maxsize())
410 len = packet_get_maxsize();
411 packet_start(SSH_CMSG_STDIN_DATA);
412 packet_put_string(buffer_ptr(&stdin_buffer), len);
413 packet_send();
414 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000415 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100416 /* If we have a pending EOF, send it now. */
417 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
418 packet_start(SSH_CMSG_EOF);
419 packet_send();
420 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422}
423
Damien Miller5428f641999-11-25 11:54:57 +1100424/*
425 * Checks if the client window has changed, and sends a packet about it to
426 * the server if so. The actual change is detected elsewhere (by a software
427 * interrupt on Unix); this just checks the flag and sends a message if
428 * appropriate.
429 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Ben Lindstrombba81212001-06-25 05:01:22 +0000431static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000432client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433{
Damien Miller1383bd82000-04-06 12:32:37 +1000434 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435
Damien Miller1383bd82000-04-06 12:32:37 +1000436 if (! received_window_change_signal)
437 return;
438 /** XXX race */
439 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Damien Millerd3444942000-09-30 14:20:03 +1100441 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000442
443 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000444 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000445 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000446 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
447 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000448 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100449 packet_put_int((u_int)ws.ws_row);
450 packet_put_int((u_int)ws.ws_col);
451 packet_put_int((u_int)ws.ws_xpixel);
452 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000453 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455}
456
Damien Miller509b0102003-12-17 16:33:10 +1100457static void
458client_global_request_reply(int type, u_int32_t seq, void *ctxt)
459{
460 server_alive_timeouts = 0;
461 client_global_request_reply_fwd(type, seq, ctxt);
462}
463
464static void
465server_alive_check(void)
466{
Damien Miller985a4482006-10-24 03:02:41 +1000467 if (++server_alive_timeouts > options.server_alive_count_max) {
468 logit("Timeout, server not responding.");
469 cleanup_exit(255);
470 }
Damien Miller509b0102003-12-17 16:33:10 +1100471 packet_start(SSH2_MSG_GLOBAL_REQUEST);
472 packet_put_cstring("keepalive@openssh.com");
473 packet_put_char(1); /* boolean: want reply */
474 packet_send();
475}
476
Damien Miller5428f641999-11-25 11:54:57 +1100477/*
478 * Waits until the client can do something (some data becomes available on
479 * one of the file descriptors).
480 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000481static void
Damien Miller5e953212001-01-30 09:14:00 +1100482client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000483 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484{
Damien Miller509b0102003-12-17 16:33:10 +1100485 struct timeval tv, *tvp;
486 int ret;
487
Damien Miller5e953212001-01-30 09:14:00 +1100488 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000489 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Miller1383bd82000-04-06 12:32:37 +1000491 if (!compat20) {
492 /* Read from the connection, unless our buffers are full. */
493 if (buffer_len(&stdout_buffer) < buffer_high &&
494 buffer_len(&stderr_buffer) < buffer_high &&
495 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100496 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000497 /*
498 * Read from stdin, unless we have seen EOF or have very much
499 * buffered data to send to the server.
500 */
501 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100502 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000503
504 /* Select stdout/stderr if have data in buffer. */
505 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100506 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000507 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100508 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000509 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000510 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000511 if (session_closed && !channel_still_open() &&
512 !packet_have_data_to_write()) {
513 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100514 memset(*readsetp, 0, *nallocp);
515 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000516 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000517 } else {
518 FD_SET(connection_in, *readsetp);
519 }
Damien Miller1383bd82000-04-06 12:32:37 +1000520 }
521
Damien Miller95def091999-11-25 00:26:21 +1100522 /* Select server connection if have data to write to the server. */
523 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100524 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100525
Damien Miller0e220db2004-06-15 10:34:08 +1000526 if (control_fd != -1)
527 FD_SET(control_fd, *readsetp);
528
Damien Miller5428f641999-11-25 11:54:57 +1100529 /*
530 * Wait for something to happen. This will suspend the process until
531 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100532 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100533 */
Damien Miller95def091999-11-25 00:26:21 +1100534
Damien Miller509b0102003-12-17 16:33:10 +1100535 if (options.server_alive_interval == 0 || !compat20)
536 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000537 else {
Damien Miller509b0102003-12-17 16:33:10 +1100538 tv.tv_sec = options.server_alive_interval;
539 tv.tv_usec = 0;
540 tvp = &tv;
541 }
542 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
543 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100544 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000545
546 /*
547 * We have to clear the select masks, because we return.
548 * We have to return, because the mainloop checks for the flags
549 * set by the signal handlers.
550 */
Damien Miller79faeff2001-11-12 11:06:32 +1100551 memset(*readsetp, 0, *nallocp);
552 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000553
Damien Miller95def091999-11-25 00:26:21 +1100554 if (errno == EINTR)
555 return;
556 /* Note: we might still have data in the buffers. */
557 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
558 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100559 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100560 } else if (ret == 0)
561 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562}
563
Ben Lindstrombba81212001-06-25 05:01:22 +0000564static void
Damien Millerad833b32000-08-23 10:46:23 +1000565client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566{
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000568 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000569 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000570 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000571 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Damien Miller95def091999-11-25 00:26:21 +1100573 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Damien Miller5428f641999-11-25 11:54:57 +1100575 /*
576 * Free (and clear) the buffer to reduce the amount of data that gets
577 * written to swap.
578 */
Damien Millerad833b32000-08-23 10:46:23 +1000579 buffer_free(bin);
580 buffer_free(bout);
581 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller95def091999-11-25 00:26:21 +1100583 /* Send the suspend signal to the program itself. */
584 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Darren Tucker5d78de62004-11-05 20:35:44 +1100586 /* Reset window sizes in case they have changed */
587 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000590 buffer_init(bin);
591 buffer_init(bout);
592 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller95def091999-11-25 00:26:21 +1100594 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595}
596
Ben Lindstrombba81212001-06-25 05:01:22 +0000597static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100598client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599{
Damien Miller1383bd82000-04-06 12:32:37 +1000600 int len;
601 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602
Damien Miller5428f641999-11-25 11:54:57 +1100603 /*
604 * Read input from the server, and add any such data to the buffer of
605 * the packet subsystem.
606 */
Damien Miller95def091999-11-25 00:26:21 +1100607 if (FD_ISSET(connection_in, readset)) {
608 /* Read as much as possible. */
609 len = read(connection_in, buf, sizeof(buf));
610 if (len == 0) {
611 /* Received EOF. The remote host has closed the connection. */
612 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
613 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615 quit_pending = 1;
616 return;
Damien Miller95def091999-11-25 00:26:21 +1100617 }
Damien Miller5428f641999-11-25 11:54:57 +1100618 /*
619 * There is a kernel bug on Solaris that causes select to
620 * sometimes wake up even though there is no data available.
621 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000622 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100623 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller95def091999-11-25 00:26:21 +1100625 if (len < 0) {
626 /* An error has encountered. Perhaps there is a network problem. */
627 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
628 host, strerror(errno));
629 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100630 quit_pending = 1;
631 return;
632 }
633 packet_process_incoming(buf, len);
634 }
Damien Miller1383bd82000-04-06 12:32:37 +1000635}
636
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000637static void
Damien Miller0e220db2004-06-15 10:34:08 +1000638client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
639{
640 int id;
641 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000642
Damien Miller0e220db2004-06-15 10:34:08 +1000643 id = packet_get_int();
644 packet_check_eom();
645
646 if ((c = channel_lookup(id)) == NULL) {
647 error("%s: no channel for id %d", __func__, id);
648 return;
649 }
650
651 if (type == SSH2_MSG_CHANNEL_SUCCESS)
652 debug2("Request suceeded on channel %d", id);
653 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
654 error("Request failed on channel %d", id);
655 channel_free(c);
656 }
657}
658
659static void
660client_extra_session2_setup(int id, void *arg)
661{
662 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000663 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000664 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000665 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000666
Damien Miller0e220db2004-06-15 10:34:08 +1000667 if (cctx == NULL)
668 fatal("%s: cctx == NULL", __func__);
669 if ((c = channel_lookup(id)) == NULL)
670 fatal("%s: no channel for id %d", __func__, id);
671
Damien Miller46d38de2005-07-17 17:02:09 +1000672 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000673 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
674 char *proto, *data;
675 /* Get reasonable local authentication information. */
676 client_x11_get_proto(display, options.xauth_location,
677 options.forward_x11_trusted, &proto, &data);
678 /* Request forwarding with authentication spoofing. */
679 debug("Requesting X11 forwarding with authentication spoofing.");
680 x11_request_forwarding_with_spoofing(id, display, proto, data);
681 /* XXX wait for reply */
682 }
683
684 if (cctx->want_agent_fwd && options.forward_agent) {
685 debug("Requesting authentication agent forwarding.");
686 channel_request_start(id, "auth-agent-req@openssh.com", 0);
687 packet_send();
688 }
689
Darren Tuckerfc959702004-07-17 16:12:08 +1000690 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000691 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000692 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000693
Damien Miller0e220db2004-06-15 10:34:08 +1000694 c->confirm_ctx = NULL;
695 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000696 xfree(cctx->term);
697 if (cctx->env != NULL) {
698 for (i = 0; cctx->env[i] != NULL; i++)
699 xfree(cctx->env[i]);
700 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000701 }
Damien Miller3756dce2004-06-18 01:17:29 +1000702 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000703}
704
705static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100706client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000707{
708 Buffer m;
709 Channel *c;
Darren Tuckerd04188e2007-02-25 20:36:49 +1100710 int client_fd, new_fd[3], ver, allowed, window, packetmax;
Damien Miller0e220db2004-06-15 10:34:08 +1000711 socklen_t addrlen;
712 struct sockaddr_storage addr;
713 struct confirm_ctx *cctx;
714 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000715 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000716 uid_t euid;
717 gid_t egid;
718
719 /*
720 * Accept connection on control socket
721 */
722 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
723 return;
724
725 memset(&addr, 0, sizeof(addr));
726 addrlen = sizeof(addr);
727 if ((client_fd = accept(control_fd,
728 (struct sockaddr*)&addr, &addrlen)) == -1) {
729 error("%s accept: %s", __func__, strerror(errno));
730 return;
731 }
732
733 if (getpeereid(client_fd, &euid, &egid) < 0) {
734 error("%s getpeereid failed: %s", __func__, strerror(errno));
735 close(client_fd);
736 return;
737 }
738 if ((euid != 0) && (getuid() != euid)) {
739 error("control mode uid mismatch: peer euid %u != uid %u",
740 (u_int) euid, (u_int) getuid());
741 close(client_fd);
742 return;
743 }
Damien Miller23f07702004-06-18 01:19:03 +1000744
Damien Miller0e220db2004-06-15 10:34:08 +1000745 unset_nonblock(client_fd);
746
Darren Tucker7ebfc102004-11-07 20:06:19 +1100747 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000748 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100749 if (ssh_msg_recv(client_fd, &m) == -1) {
750 error("%s: client msg_recv failed", __func__);
751 close(client_fd);
752 buffer_free(&m);
753 return;
754 }
Damien Miller13390022005-07-06 09:44:19 +1000755 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100756 error("%s: wrong client version %d", __func__, ver);
757 buffer_free(&m);
758 close(client_fd);
759 return;
760 }
Damien Miller0e220db2004-06-15 10:34:08 +1000761
Darren Tucker7ebfc102004-11-07 20:06:19 +1100762 allowed = 1;
763 command = buffer_get_int(&m);
764 flags = buffer_get_int(&m);
765
766 buffer_clear(&m);
767
768 switch (command) {
769 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000770 if (options.control_master == SSHCTL_MASTER_ASK ||
771 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100772 allowed = ask_permission("Allow shared connection "
773 "to %s? ", host);
774 /* continue below */
775 break;
776 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000777 if (options.control_master == SSHCTL_MASTER_ASK ||
778 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100779 allowed = ask_permission("Terminate shared connection "
780 "to %s? ", host);
781 if (allowed)
782 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100783 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100784 case SSHMUX_COMMAND_ALIVE_CHECK:
785 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
786 buffer_clear(&m);
787 buffer_put_int(&m, allowed);
788 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000789 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100790 error("%s: client msg_send failed", __func__);
791 close(client_fd);
792 buffer_free(&m);
793 return;
794 }
795 buffer_free(&m);
796 close(client_fd);
797 return;
798 default:
799 error("Unsupported command %d", command);
800 buffer_free(&m);
801 close(client_fd);
802 return;
803 }
804
805 /* Reply for SSHMUX_COMMAND_OPEN */
806 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000807 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000808 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000809 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000810 error("%s: client msg_send failed", __func__);
811 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000812 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000813 return;
814 }
Damien Miller0e220db2004-06-15 10:34:08 +1000815
Damien Miller23f07702004-06-18 01:19:03 +1000816 if (!allowed) {
817 error("Refused control connection");
818 close(client_fd);
819 buffer_free(&m);
820 return;
821 }
822
Darren Tucker7ebfc102004-11-07 20:06:19 +1100823 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000824 if (ssh_msg_recv(client_fd, &m) == -1) {
825 error("%s: client msg_recv failed", __func__);
826 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000827 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000828 return;
829 }
Damien Miller13390022005-07-06 09:44:19 +1000830 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000831 error("%s: wrong client version %d", __func__, ver);
832 buffer_free(&m);
833 close(client_fd);
834 return;
835 }
836
Damien Miller07d86be2006-03-26 14:19:21 +1100837 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100838 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
839 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000840 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
841 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000842 cctx->term = buffer_get_string(&m, &len);
843
844 cmd = buffer_get_string(&m, &len);
845 buffer_init(&cctx->cmd);
846 buffer_append(&cctx->cmd, cmd, strlen(cmd));
847
Damien Miller3756dce2004-06-18 01:17:29 +1000848 env_len = buffer_get_int(&m);
849 env_len = MIN(env_len, 4096);
850 debug3("%s: receiving %d env vars", __func__, env_len);
851 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100852 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000853 for (i = 0; i < env_len; i++)
854 cctx->env[i] = buffer_get_string(&m, &len);
855 cctx->env[i] = NULL;
856 }
857
Damien Miller0e220db2004-06-15 10:34:08 +1000858 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
859 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000860 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000861
862 /* Gather fds from client */
863 new_fd[0] = mm_receive_fd(client_fd);
864 new_fd[1] = mm_receive_fd(client_fd);
865 new_fd[2] = mm_receive_fd(client_fd);
866
867 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
868 new_fd[0], new_fd[1], new_fd[2]);
869
870 /* Try to pick up ttymodes from client before it goes raw */
871 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
872 error("%s: tcgetattr: %s", __func__, strerror(errno));
873
Darren Tucker7ebfc102004-11-07 20:06:19 +1100874 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000875 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000876 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000877 error("%s: client msg_send failed", __func__);
878 close(client_fd);
879 close(new_fd[0]);
880 close(new_fd[1]);
881 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000882 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100883 xfree(cctx->term);
884 if (env_len != 0) {
885 for (i = 0; i < env_len; i++)
886 xfree(cctx->env[i]);
887 xfree(cctx->env);
888 }
Damien Miller0e220db2004-06-15 10:34:08 +1000889 return;
890 }
891 buffer_free(&m);
892
893 /* enable nonblocking unless tty */
894 if (!isatty(new_fd[0]))
895 set_nonblock(new_fd[0]);
896 if (!isatty(new_fd[1]))
897 set_nonblock(new_fd[1]);
898 if (!isatty(new_fd[2]))
899 set_nonblock(new_fd[2]);
900
901 set_nonblock(client_fd);
902
Darren Tuckerd04188e2007-02-25 20:36:49 +1100903 window = CHAN_SES_WINDOW_DEFAULT;
904 packetmax = CHAN_SES_PACKET_DEFAULT;
905 if (cctx->want_tty) {
906 window >>= 1;
907 packetmax >>= 1;
908 }
909
Darren Tuckerfc959702004-07-17 16:12:08 +1000910 c = channel_new("session", SSH_CHANNEL_OPENING,
Darren Tuckerd04188e2007-02-25 20:36:49 +1100911 new_fd[0], new_fd[1], new_fd[2], window, packetmax,
Damien Miller0e220db2004-06-15 10:34:08 +1000912 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
913
914 /* XXX */
915 c->ctl_fd = client_fd;
916
917 debug3("%s: channel_new: %d", __func__, c->self);
918
919 channel_send_open(c->self);
920 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
921}
922
923static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000924process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000925{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000926 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100927 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000928 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000929 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100930 u_short cancel_port;
931 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000932
933 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000934 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000935 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000936 if (s == NULL)
937 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000938 while (*s && isspace(*s))
939 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000940 if (*s == '-')
941 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000942 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000943 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000944
Darren Tucker1973c882004-05-24 10:34:36 +1000945 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000946 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000947 logit(" -L[bind_address:]port:host:hostport "
948 "Request local forward");
949 logit(" -R[bind_address:]port:host:hostport "
950 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000951 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000952 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100953 if (!options.permit_local_command)
954 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000955 logit(" !args "
956 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100957 goto out;
958 }
959
960 if (*s == '!' && options.permit_local_command) {
961 s++;
962 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000963 goto out;
964 }
965
966 if (*s == 'K') {
967 delete = 1;
968 s++;
969 }
970 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000971 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000972 goto out;
973 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000974 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000975 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000976 if (local && delete) {
977 logit("Not supported.");
978 goto out;
979 }
980 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000981 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000982 goto out;
983 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000984
985 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000986 while (*s && isspace(*s))
987 s++;
988
Darren Tuckere7066df2004-05-24 10:18:05 +1000989 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100990 cancel_port = 0;
991 cancel_host = hpdelim(&s); /* may be NULL */
992 if (s != NULL) {
993 cancel_port = a2port(s);
994 cancel_host = cleanhostname(cancel_host);
995 } else {
996 cancel_port = a2port(cancel_host);
997 cancel_host = NULL;
998 }
999 if (cancel_port == 0) {
1000 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001001 goto out;
1002 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001003 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +10001004 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001005 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +10001006 logit("Bad forwarding specification.");
1007 goto out;
1008 }
Darren Tuckere7066df2004-05-24 10:18:05 +10001009 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001010 if (channel_setup_local_fwd_listener(fwd.listen_host,
1011 fwd.listen_port, fwd.connect_host,
1012 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +10001013 logit("Port forwarding failed.");
1014 goto out;
1015 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001016 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001017 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001018 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001019 fwd.connect_port) < 0) {
1020 logit("Port forwarding failed.");
1021 goto out;
1022 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001023 }
1024
Darren Tuckere7066df2004-05-24 10:18:05 +10001025 logit("Forwarding port.");
1026 }
1027
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001028out:
1029 signal(SIGINT, handler);
1030 enter_raw_mode();
1031 if (cmd)
1032 xfree(cmd);
1033}
1034
Damien Millerad833b32000-08-23 10:46:23 +10001035/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001036static int
Damien Millerad833b32000-08-23 10:46:23 +10001037process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1038{
1039 char string[1024];
1040 pid_t pid;
1041 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001042 u_int i;
1043 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001044 char *s;
1045
Damien Millereccb9de2005-06-17 12:59:34 +10001046 if (len <= 0)
1047 return (0);
1048
1049 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001050 /* Get one character at a time. */
1051 ch = buf[i];
1052
1053 if (escape_pending) {
1054 /* We have previously seen an escape character. */
1055 /* Clear the flag now. */
1056 escape_pending = 0;
1057
1058 /* Process the escaped character. */
1059 switch (ch) {
1060 case '.':
1061 /* Terminate the connection. */
1062 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1063 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001064
1065 quit_pending = 1;
1066 return -1;
1067
1068 case 'Z' - 64:
1069 /* Suspend the program. */
1070 /* Print a message to that effect to the user. */
1071 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1072 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001073
1074 /* Restore terminal modes and suspend. */
1075 client_suspend_self(bin, bout, berr);
1076
1077 /* We have been continued. */
1078 continue;
1079
Damien Miller54c45982003-05-15 10:20:13 +10001080 case 'B':
1081 if (compat20) {
1082 snprintf(string, sizeof string,
1083 "%cB\r\n", escape_char);
1084 buffer_append(berr, string,
1085 strlen(string));
1086 channel_request_start(session_ident,
1087 "break", 0);
1088 packet_put_int(1000);
1089 packet_send();
1090 }
1091 continue;
1092
Ben Lindstromf28f6342001-04-04 02:03:04 +00001093 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001094 if (compat20) {
1095 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001096 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001097 else
1098 need_rekeying = 1;
1099 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001100 continue;
1101
Damien Millerad833b32000-08-23 10:46:23 +10001102 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001103 /*
1104 * Detach the program (continue to serve connections,
1105 * but put in background and no more new connections).
1106 */
Damien Miller96507ef2001-11-12 10:52:25 +11001107 /* Restore tty modes. */
1108 leave_raw_mode();
1109
1110 /* Stop listening for new connections. */
1111 channel_stop_listening();
1112
1113 snprintf(string, sizeof string,
1114 "%c& [backgrounded]\n", escape_char);
1115 buffer_append(berr, string, strlen(string));
1116
1117 /* Fork into background. */
1118 pid = fork();
1119 if (pid < 0) {
1120 error("fork: %.100s", strerror(errno));
1121 continue;
1122 }
1123 if (pid != 0) { /* This is the parent. */
1124 /* The parent just exits. */
1125 exit(0);
1126 }
1127 /* The child continues serving connections. */
1128 if (compat20) {
1129 buffer_append(bin, "\004", 1);
1130 /* fake EOF on stdin */
1131 return -1;
1132 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001133 /*
1134 * Sending SSH_CMSG_EOF alone does not always appear
1135 * to be enough. So we try to send an EOF character
1136 * first.
1137 */
1138 packet_start(SSH_CMSG_STDIN_DATA);
1139 packet_put_string("\004", 1);
1140 packet_send();
1141 /* Close stdin. */
1142 stdin_eof = 1;
1143 if (buffer_len(bin) == 0) {
1144 packet_start(SSH_CMSG_EOF);
1145 packet_send();
1146 }
1147 }
Damien Miller96507ef2001-11-12 10:52:25 +11001148 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001149
1150 case '?':
1151 snprintf(string, sizeof string,
1152"%c?\r\n\
1153Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001154%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001155%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001156%cC - open a command line\r\n\
1157%cR - Request rekey (SSH protocol 2 only)\r\n\
1158%c^Z - suspend ssh\r\n\
1159%c# - list forwarded connections\r\n\
1160%c& - background ssh (when waiting for connections to terminate)\r\n\
1161%c? - this message\r\n\
1162%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001163(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001164 escape_char, escape_char, escape_char, escape_char,
1165 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001166 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001167 buffer_append(berr, string, strlen(string));
1168 continue;
1169
1170 case '#':
1171 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1172 buffer_append(berr, string, strlen(string));
1173 s = channel_open_message();
1174 buffer_append(berr, s, strlen(s));
1175 xfree(s);
1176 continue;
1177
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001178 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001179 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001180 continue;
1181
Damien Millerad833b32000-08-23 10:46:23 +10001182 default:
1183 if (ch != escape_char) {
1184 buffer_put_char(bin, escape_char);
1185 bytes++;
1186 }
1187 /* Escaped characters fall through here */
1188 break;
1189 }
1190 } else {
1191 /*
1192 * The previous character was not an escape char. Check if this
1193 * is an escape.
1194 */
1195 if (last_was_cr && ch == escape_char) {
1196 /* It is. Set the flag and continue to next character. */
1197 escape_pending = 1;
1198 continue;
1199 }
1200 }
1201
1202 /*
1203 * Normal character. Record whether it was a newline,
1204 * and append it to the buffer.
1205 */
1206 last_was_cr = (ch == '\r' || ch == '\n');
1207 buffer_put_char(bin, ch);
1208 bytes++;
1209 }
1210 return bytes;
1211}
1212
Ben Lindstrombba81212001-06-25 05:01:22 +00001213static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001214client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001215{
Damien Miller166fca82000-04-20 07:42:21 +10001216 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001217 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001218
Damien Miller95def091999-11-25 00:26:21 +11001219 /* Read input from stdin. */
1220 if (FD_ISSET(fileno(stdin), readset)) {
1221 /* Read as much as possible. */
1222 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001223 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1224 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001225 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001226 /*
1227 * Received EOF or error. They are treated
1228 * similarly, except that an error message is printed
1229 * if it was an error condition.
1230 */
Damien Miller95def091999-11-25 00:26:21 +11001231 if (len < 0) {
1232 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1233 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001234 }
1235 /* Mark that we have seen EOF. */
1236 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001237 /*
1238 * Send an EOF message to the server unless there is
1239 * data in the buffer. If there is data in the
1240 * buffer, no message will be sent now. Code
1241 * elsewhere will send the EOF when the buffer
1242 * becomes empty if stdin_eof is set.
1243 */
Damien Miller95def091999-11-25 00:26:21 +11001244 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001245 packet_start(SSH_CMSG_EOF);
1246 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001247 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001248 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001249 /*
1250 * Normal successful read, and no escape character.
1251 * Just append the data to buffer.
1252 */
Damien Miller95def091999-11-25 00:26:21 +11001253 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001254 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001255 /*
1256 * Normal, successful read. But we have an escape character
1257 * and have to process the characters one by one.
1258 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001259 if (process_escapes(&stdin_buffer, &stdout_buffer,
1260 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001261 return;
Damien Miller95def091999-11-25 00:26:21 +11001262 }
1263 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001264}
1265
Ben Lindstrombba81212001-06-25 05:01:22 +00001266static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001267client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001268{
Damien Miller95def091999-11-25 00:26:21 +11001269 int len;
1270 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001271
Damien Miller95def091999-11-25 00:26:21 +11001272 /* Write buffered output to stdout. */
1273 if (FD_ISSET(fileno(stdout), writeset)) {
1274 /* Write as much data as possible. */
1275 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001276 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001277 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001278 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001279 len = 0;
1280 else {
Damien Miller5428f641999-11-25 11:54:57 +11001281 /*
1282 * An error or EOF was encountered. Put an
1283 * error message to stderr buffer.
1284 */
Damien Miller95def091999-11-25 00:26:21 +11001285 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1286 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001287 quit_pending = 1;
1288 return;
1289 }
1290 }
1291 /* Consume printed data from the buffer. */
1292 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001293 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294 }
Damien Miller95def091999-11-25 00:26:21 +11001295 /* Write buffered output to stderr. */
1296 if (FD_ISSET(fileno(stderr), writeset)) {
1297 /* Write as much data as possible. */
1298 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001299 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001300 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001301 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001302 len = 0;
1303 else {
Damien Miller5428f641999-11-25 11:54:57 +11001304 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001305 quit_pending = 1;
1306 return;
1307 }
1308 }
1309 /* Consume printed characters from the buffer. */
1310 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001311 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001312 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001313}
1314
Damien Miller5428f641999-11-25 11:54:57 +11001315/*
Damien Millerb38eff82000-04-01 11:09:21 +10001316 * Get packets from the connection input buffer, and process them as long as
1317 * there are packets available.
1318 *
1319 * Any unknown packets received during the actual
1320 * session cause the session to terminate. This is
1321 * intended to make debugging easier since no
1322 * confirmations are sent. Any compatible protocol
1323 * extensions must be negotiated during the
1324 * preparatory phase.
1325 */
1326
Ben Lindstrombba81212001-06-25 05:01:22 +00001327static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001328client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001329{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001330 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001331}
1332
Damien Millerad833b32000-08-23 10:46:23 +10001333/* scan buf[] for '~' before sending data to the peer */
1334
Ben Lindstrombba81212001-06-25 05:01:22 +00001335static int
Damien Millerad833b32000-08-23 10:46:23 +10001336simple_escape_filter(Channel *c, char *buf, int len)
1337{
1338 /* XXX we assume c->extended is writeable */
1339 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1340}
1341
Ben Lindstrombba81212001-06-25 05:01:22 +00001342static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001343client_channel_closed(int id, void *arg)
1344{
Damien Miller3ec27592001-10-12 11:35:04 +10001345 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001346 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001347 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001348}
1349
Damien Millerb38eff82000-04-01 11:09:21 +10001350/*
Damien Miller5428f641999-11-25 11:54:57 +11001351 * Implements the interactive session with the server. This is called after
1352 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001353 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1354 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001355 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001356
Damien Miller4af51302000-04-16 11:18:38 +10001357int
Damien Millerad833b32000-08-23 10:46:23 +10001358client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001359{
Damien Miller5e953212001-01-30 09:14:00 +11001360 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001361 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001362 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1363 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001364 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001365
Damien Miller95def091999-11-25 00:26:21 +11001366 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001367
Damien Miller95def091999-11-25 00:26:21 +11001368 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001369
Damien Miller95def091999-11-25 00:26:21 +11001370 /* Initialize variables. */
1371 escape_pending = 0;
1372 last_was_cr = 1;
1373 exit_status = -1;
1374 stdin_eof = 0;
1375 buffer_high = 64 * 1024;
1376 connection_in = packet_get_connection_in();
1377 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001378 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001379 if (control_fd != -1)
1380 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001381
1382 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001383 /* enable nonblocking unless tty */
1384 if (!isatty(fileno(stdin)))
1385 set_nonblock(fileno(stdin));
1386 if (!isatty(fileno(stdout)))
1387 set_nonblock(fileno(stdout));
1388 if (!isatty(fileno(stderr)))
1389 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001390 max_fd = MAX(max_fd, fileno(stdin));
1391 max_fd = MAX(max_fd, fileno(stdout));
1392 max_fd = MAX(max_fd, fileno(stderr));
1393 }
Damien Miller95def091999-11-25 00:26:21 +11001394 stdin_bytes = 0;
1395 stdout_bytes = 0;
1396 stderr_bytes = 0;
1397 quit_pending = 0;
1398 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001399
Damien Miller95def091999-11-25 00:26:21 +11001400 /* Initialize buffers. */
1401 buffer_init(&stdin_buffer);
1402 buffer_init(&stdout_buffer);
1403 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001404
Damien Millerb38eff82000-04-01 11:09:21 +10001405 client_init_dispatch();
1406
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001407 /*
1408 * Set signal handlers, (e.g. to restore non-blocking mode)
1409 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1410 */
Darren Tucker07336da2004-11-05 20:02:16 +11001411 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1412 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001413 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1414 signal(SIGINT, signal_handler);
1415 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1416 signal(SIGQUIT, signal_handler);
1417 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1418 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001419 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001420
Damien Miller95def091999-11-25 00:26:21 +11001421 if (have_pty)
1422 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001423
Ben Lindstrom5b828322001-02-09 01:34:36 +00001424 if (compat20) {
1425 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001426 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001427 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001428 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001429 if (session_ident != -1)
1430 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001431 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001432 } else {
1433 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001434 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001435 }
Damien Millerad833b32000-08-23 10:46:23 +10001436
Damien Miller95def091999-11-25 00:26:21 +11001437 /* Main loop of the client for the interactive session mode. */
1438 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Damien Miller5428f641999-11-25 11:54:57 +11001440 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001441 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001442
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001443 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001444 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001445
1446 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001447
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001448 if (rekeying) {
1449 debug("rekeying in progress");
1450 } else {
1451 /*
1452 * Make packets of buffered stdin data, and buffer
1453 * them for sending to the server.
1454 */
1455 if (!compat20)
1456 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001457
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001458 /*
1459 * Make packets from buffered channel data, and
1460 * enqueue them for sending to the server.
1461 */
1462 if (packet_not_very_much_data_to_write())
1463 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001464
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001465 /*
1466 * Check if the window size has changed, and buffer a
1467 * message about it to the server if so.
1468 */
1469 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001470
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001471 if (quit_pending)
1472 break;
1473 }
Damien Miller5428f641999-11-25 11:54:57 +11001474 /*
1475 * Wait until we have something to do (something becomes
1476 * available on one of the descriptors).
1477 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001478 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001479 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001480 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001481
Damien Miller95def091999-11-25 00:26:21 +11001482 if (quit_pending)
1483 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001484
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001485 /* Do channel operations unless rekeying in progress. */
1486 if (!rekeying) {
1487 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001488 if (need_rekeying || packet_need_rekeying()) {
1489 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001490 xxx_kex->done = 0;
1491 kex_send_kexinit(xxx_kex);
1492 need_rekeying = 0;
1493 }
1494 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001495
Damien Miller1383bd82000-04-06 12:32:37 +10001496 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001497 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001498
Damien Miller0e220db2004-06-15 10:34:08 +10001499 /* Accept control connections. */
1500 client_process_control(readset);
1501
Damien Miller1383bd82000-04-06 12:32:37 +10001502 if (quit_pending)
1503 break;
1504
1505 if (!compat20) {
1506 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001507 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001508 /*
1509 * Process output to stdout and stderr. Output to
1510 * the connection is processed elsewhere (above).
1511 */
Damien Miller5e953212001-01-30 09:14:00 +11001512 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514
Damien Miller5428f641999-11-25 11:54:57 +11001515 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001516 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001517 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001518 }
Damien Miller5e953212001-01-30 09:14:00 +11001519 if (readset)
1520 xfree(readset);
1521 if (writeset)
1522 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001523
Damien Miller95def091999-11-25 00:26:21 +11001524 /* Terminate the session. */
1525
1526 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001527 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001528
Ben Lindstrom601e4362001-06-21 03:19:23 +00001529 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001530
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001531 if (have_pty)
1532 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001533
1534 /* restore blocking io */
1535 if (!isatty(fileno(stdin)))
1536 unset_nonblock(fileno(stdin));
1537 if (!isatty(fileno(stdout)))
1538 unset_nonblock(fileno(stdout));
1539 if (!isatty(fileno(stderr)))
1540 unset_nonblock(fileno(stderr));
1541
Damien Millerd6965512003-12-17 16:31:53 +11001542 /*
1543 * If there was no shell or command requested, there will be no remote
1544 * exit status to be returned. In that case, clear error code if the
1545 * connection was deliberately terminated at this end.
1546 */
1547 if (no_shell_flag && received_signal == SIGTERM) {
1548 received_signal = 0;
1549 exit_status = 0;
1550 }
1551
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001552 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001553 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001554
1555 /*
1556 * In interactive mode (with pseudo tty) display a message indicating
1557 * that the connection has been closed.
1558 */
1559 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1560 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1561 buffer_append(&stderr_buffer, buf, strlen(buf));
1562 }
1563
Damien Miller95def091999-11-25 00:26:21 +11001564 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001565 while (buffer_len(&stdout_buffer) > 0) {
1566 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001567 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001568 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001569 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001570 break;
1571 }
Damien Miller95def091999-11-25 00:26:21 +11001572 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001573 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001574 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001575
Damien Miller95def091999-11-25 00:26:21 +11001576 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001577 while (buffer_len(&stderr_buffer) > 0) {
1578 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001579 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001580 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001581 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001582 break;
1583 }
Damien Miller95def091999-11-25 00:26:21 +11001584 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001585 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001587
Damien Miller95def091999-11-25 00:26:21 +11001588 /* Clear and free any buffers. */
1589 memset(buf, 0, sizeof(buf));
1590 buffer_free(&stdin_buffer);
1591 buffer_free(&stdout_buffer);
1592 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001593
Damien Miller95def091999-11-25 00:26:21 +11001594 /* Report bytes transferred, and transfer rates. */
1595 total_time = get_current_time() - start_time;
1596 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001597 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001598 if (total_time > 0)
1599 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001600 stdin_bytes / total_time, stdout_bytes / total_time,
1601 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001602
1603 /* Return the exit status of the program. */
1604 debug("Exit status %d", exit_status);
1605 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001606}
Damien Millerb38eff82000-04-01 11:09:21 +10001607
1608/*********/
1609
Ben Lindstrombba81212001-06-25 05:01:22 +00001610static void
Damien Miller630d6f42002-01-22 23:17:30 +11001611client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001612{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001613 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001614 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001615 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001616 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001617 memset(data, 0, data_len);
1618 xfree(data);
1619}
Ben Lindstrombba81212001-06-25 05:01:22 +00001620static void
Damien Miller630d6f42002-01-22 23:17:30 +11001621client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001622{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001623 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001624 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001625 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001626 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001627 memset(data, 0, data_len);
1628 xfree(data);
1629}
Ben Lindstrombba81212001-06-25 05:01:22 +00001630static void
Damien Miller630d6f42002-01-22 23:17:30 +11001631client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001632{
Damien Millerb38eff82000-04-01 11:09:21 +10001633 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001634 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001635 /* Acknowledge the exit. */
1636 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1637 packet_send();
1638 /*
1639 * Must wait for packet to be sent since we are
1640 * exiting the loop.
1641 */
1642 packet_write_wait();
1643 /* Flag that we want to exit. */
1644 quit_pending = 1;
1645}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001646static void
1647client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1648{
1649 Channel *c = NULL;
1650 int remote_id, sock;
1651
1652 /* Read the remote channel number from the message. */
1653 remote_id = packet_get_int();
1654 packet_check_eom();
1655
1656 /*
1657 * Get a connection to the local authentication agent (this may again
1658 * get forwarded).
1659 */
1660 sock = ssh_get_authentication_socket();
1661
1662 /*
1663 * If we could not connect the agent, send an error message back to
1664 * the server. This should never happen unless the agent dies,
1665 * because authentication forwarding is only enabled if we have an
1666 * agent.
1667 */
1668 if (sock >= 0) {
1669 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1670 -1, 0, 0, 0, "authentication agent connection", 1);
1671 c->remote_id = remote_id;
1672 c->force_drain = 1;
1673 }
1674 if (c == NULL) {
1675 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1676 packet_put_int(remote_id);
1677 } else {
1678 /* Send a confirmation to the remote host. */
1679 debug("Forwarding authentication connection.");
1680 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1681 packet_put_int(remote_id);
1682 packet_put_int(c->self);
1683 }
1684 packet_send();
1685}
Damien Millerb38eff82000-04-01 11:09:21 +10001686
Ben Lindstrombba81212001-06-25 05:01:22 +00001687static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001688client_request_forwarded_tcpip(const char *request_type, int rchan)
1689{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001690 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 char *listen_address, *originator_address;
1692 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001693 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001694
1695 /* Get rest of the packet */
1696 listen_address = packet_get_string(NULL);
1697 listen_port = packet_get_int();
1698 originator_address = packet_get_string(NULL);
1699 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001700 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001701
1702 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1703 listen_address, listen_port, originator_address, originator_port);
1704
Ben Lindstrom173e6462001-07-04 05:15:15 +00001705 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001706 if (sock < 0) {
1707 xfree(originator_address);
1708 xfree(listen_address);
1709 return NULL;
1710 }
1711 c = channel_new("forwarded-tcpip",
1712 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1713 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001714 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001715 xfree(originator_address);
1716 xfree(listen_address);
1717 return c;
1718}
1719
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001720static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001721client_request_x11(const char *request_type, int rchan)
1722{
1723 Channel *c = NULL;
1724 char *originator;
1725 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001726 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001727
1728 if (!options.forward_x11) {
1729 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001730 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001731 return NULL;
1732 }
1733 originator = packet_get_string(NULL);
1734 if (datafellows & SSH_BUG_X11FWD) {
1735 debug2("buggy server: x11 request w/o originator_port");
1736 originator_port = 0;
1737 } else {
1738 originator_port = packet_get_int();
1739 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001740 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001741 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001742 debug("client_request_x11: request from %s %d", originator,
1743 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001744 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001745 sock = x11_connect_display();
1746 if (sock < 0)
1747 return NULL;
1748 c = channel_new("x11",
1749 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001750 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001751 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001752 return c;
1753}
1754
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001755static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001756client_request_agent(const char *request_type, int rchan)
1757{
1758 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001759 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001760
1761 if (!options.forward_agent) {
1762 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001763 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001764 return NULL;
1765 }
Darren Tucker82a3d2b2007-02-19 22:10:25 +11001766 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001767 if (sock < 0)
1768 return NULL;
1769 c = channel_new("authentication agent connection",
1770 SSH_CHANNEL_OPEN, sock, sock, -1,
1771 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001772 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001773 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001774 return c;
1775}
1776
Damien Millerbd483e72000-04-30 10:00:53 +10001777/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001778static void
Damien Miller630d6f42002-01-22 23:17:30 +11001779client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001780{
1781 Channel *c = NULL;
1782 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001783 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001784 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001785
1786 ctype = packet_get_string(&len);
1787 rchan = packet_get_int();
1788 rwindow = packet_get_int();
1789 rmaxpack = packet_get_int();
1790
Damien Millere247cc42000-05-07 12:03:14 +10001791 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001792 ctype, rchan, rwindow, rmaxpack);
1793
Damien Miller0bc1bd82000-11-13 22:57:25 +11001794 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1795 c = client_request_forwarded_tcpip(ctype, rchan);
1796 } else if (strcmp(ctype, "x11") == 0) {
1797 c = client_request_x11(ctype, rchan);
1798 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1799 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001800 }
1801/* XXX duplicate : */
1802 if (c != NULL) {
1803 debug("confirm %s", ctype);
1804 c->remote_id = rchan;
1805 c->remote_window = rwindow;
1806 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001807 if (c->type != SSH_CHANNEL_CONNECTING) {
1808 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1809 packet_put_int(c->remote_id);
1810 packet_put_int(c->self);
1811 packet_put_int(c->local_window);
1812 packet_put_int(c->local_maxpacket);
1813 packet_send();
1814 }
Damien Millerbd483e72000-04-30 10:00:53 +10001815 } else {
1816 debug("failure %s", ctype);
1817 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1818 packet_put_int(rchan);
1819 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001820 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001821 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001822 packet_put_cstring("");
1823 }
Damien Millerbd483e72000-04-30 10:00:53 +10001824 packet_send();
1825 }
1826 xfree(ctype);
1827}
Ben Lindstrombba81212001-06-25 05:01:22 +00001828static void
Damien Miller630d6f42002-01-22 23:17:30 +11001829client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001830{
1831 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001832 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001833 char *rtype;
1834
1835 id = packet_get_int();
1836 rtype = packet_get_string(NULL);
1837 reply = packet_get_char();
1838
1839 debug("client_input_channel_req: channel %d rtype %s reply %d",
1840 id, rtype, reply);
1841
Damien Miller3bbd8782004-06-18 22:23:22 +10001842 if (id == -1) {
1843 error("client_input_channel_req: request for channel -1");
1844 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001845 error("client_input_channel_req: channel %d: unknown channel", id);
1846 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001847 exitval = packet_get_int();
1848 if (id == session_ident) {
1849 success = 1;
1850 exit_status = exitval;
1851 } else if (c->ctl_fd == -1) {
1852 error("client_input_channel_req: unexpected channel %d",
1853 session_ident);
1854 } else {
1855 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1856 success = 1;
1857 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001858 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001859 }
1860 if (reply) {
1861 packet_start(success ?
1862 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001863 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001864 packet_send();
1865 }
1866 xfree(rtype);
1867}
Damien Millerc3fa4072002-01-22 23:21:58 +11001868static void
1869client_input_global_request(int type, u_int32_t seq, void *ctxt)
1870{
1871 char *rtype;
1872 int want_reply;
1873 int success = 0;
1874
1875 rtype = packet_get_string(NULL);
1876 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001877 debug("client_input_global_request: rtype %s want_reply %d",
1878 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001879 if (want_reply) {
1880 packet_start(success ?
1881 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1882 packet_send();
1883 packet_write_wait();
1884 }
1885 xfree(rtype);
1886}
Damien Millerbd483e72000-04-30 10:00:53 +10001887
Damien Miller0e220db2004-06-15 10:34:08 +10001888void
Darren Tuckerfc959702004-07-17 16:12:08 +10001889client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001890 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001891 dispatch_fn *subsys_repl)
1892{
1893 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001894 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001895
1896 debug2("%s: id %d", __func__, id);
1897
Darren Tucker5d78de62004-11-05 20:35:44 +11001898 if ((c = channel_lookup(id)) == NULL)
1899 fatal("client_session2_setup: channel %d: unknown channel", id);
1900
Damien Miller0e220db2004-06-15 10:34:08 +10001901 if (want_tty) {
1902 struct winsize ws;
1903 struct termios tio;
1904
1905 /* Store window size in the packet. */
1906 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1907 memset(&ws, 0, sizeof(ws));
1908
1909 channel_request_start(id, "pty-req", 0);
1910 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001911 packet_put_int((u_int)ws.ws_col);
1912 packet_put_int((u_int)ws.ws_row);
1913 packet_put_int((u_int)ws.ws_xpixel);
1914 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001915 tio = get_saved_tio();
1916 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1917 packet_send();
1918 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001919 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001920 }
1921
1922 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001923 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001924 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001925 char *name, *val;
1926
1927 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001928 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001929 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001930 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001931 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001932 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001933 continue;
1934 }
1935 *val++ = '\0';
1936
1937 matched = 0;
1938 for (j = 0; j < options.num_send_env; j++) {
1939 if (match_pattern(name, options.send_env[j])) {
1940 matched = 1;
1941 break;
1942 }
1943 }
1944 if (!matched) {
1945 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001946 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001947 continue;
1948 }
1949
1950 debug("Sending env %s = %s", name, val);
1951 channel_request_start(id, "env", 0);
1952 packet_put_cstring(name);
1953 packet_put_cstring(val);
1954 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001955 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001956 }
1957 }
1958
1959 len = buffer_len(cmd);
1960 if (len > 0) {
1961 if (len > 900)
1962 len = 900;
1963 if (want_subsystem) {
1964 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1965 channel_request_start(id, "subsystem", subsys_repl != NULL);
1966 if (subsys_repl != NULL) {
1967 /* register callback for reply */
1968 /* XXX we assume that client_loop has already been called */
1969 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1970 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1971 }
1972 } else {
1973 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1974 channel_request_start(id, "exec", 0);
1975 }
1976 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1977 packet_send();
1978 } else {
1979 channel_request_start(id, "shell", 0);
1980 packet_send();
1981 }
1982}
1983
Ben Lindstrombba81212001-06-25 05:01:22 +00001984static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001985client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001986{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001987 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001988
Damien Miller1383bd82000-04-06 12:32:37 +10001989 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1990 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1991 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1992 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001993 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001994 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1995 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001996 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001997 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001998 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001999
2000 /* rekeying */
2001 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10002002
2003 /* global request reply messages */
2004 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2005 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10002006}
Ben Lindstrombba81212001-06-25 05:01:22 +00002007static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002008client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002009{
2010 dispatch_init(NULL);
2011 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2012 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2013 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002014 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2015 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2016 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002017 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2018 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2019 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002020
2021 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002022 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002023 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2024 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002025}
Ben Lindstrombba81212001-06-25 05:01:22 +00002026static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002027client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002028{
2029 client_init_dispatch_13();
2030 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2031 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2032}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002033static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002034client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002035{
Damien Miller1383bd82000-04-06 12:32:37 +10002036 if (compat20)
2037 client_init_dispatch_20();
2038 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002039 client_init_dispatch_13();
2040 else
2041 client_init_dispatch_15();
2042}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002043
2044/* client specific fatal cleanup */
2045void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002046cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002047{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002048 leave_raw_mode();
2049 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002050 if (options.control_path != NULL && control_fd != -1)
2051 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002052 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002053}