blob: 132d75a44c89cfb23a9c9f676235883350053353 [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: clientloop.c,v 1.175 2006/08/03 03:34:42 deraadt 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 Millera7a73ee2006-08-05 11:37:59 +100081#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100082#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100083#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110084#include <termios.h>
Damien Millerd7834352006-08-05 12:39:39 +100085#include <pwd.h>
Damien Millere6b3b612006-07-24 14:01:23 +100086#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Millerd7834352006-08-05 12:39:39 +100088#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "ssh1.h"
91#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092#include "packet.h"
93#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100094#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000095#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100096#include "dispatch.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110097#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100098#include "cipher.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000099#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "log.h"
101#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000102#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100103#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000104#include "authfd.h"
105#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000106#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000107#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000108#include "monitor_fdpass.h"
109#include "match.h"
110#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100111
112/* import options */
113extern Options options;
114
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115/* Flag indicating that stdin should be redirected from /dev/null. */
116extern int stdin_null_flag;
117
Damien Millerd6965512003-12-17 16:31:53 +1100118/* Flag indicating that no shell has been requested */
119extern int no_shell_flag;
120
Damien Miller0e220db2004-06-15 10:34:08 +1000121/* Control socket */
122extern int control_fd;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Name of the host we are connecting to. This is the name given on the
126 * command line, or the HostName specified for the user-supplied name in a
127 * configuration file.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129extern char *host;
130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
132 * Flag to indicate that we have received a window change signal which has
133 * not yet been processed. This will cause a message indicating the new
134 * window size to be sent to the server a little later. This is volatile
135 * because this is updated in a signal handler.
136 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000137static volatile sig_atomic_t received_window_change_signal = 0;
138static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller788f2122005-11-05 15:14:59 +1100140/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141static int in_non_blocking_mode = 0;
142
143/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000144static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000145static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100146static int escape_pending; /* Last character was the escape character */
147static int last_was_cr; /* Last character was a newline. */
148static int exit_status; /* Used to store the exit status of the command. */
149static int stdin_eof; /* EOF has been encountered on standard error. */
150static Buffer stdin_buffer; /* Buffer for stdin data. */
151static Buffer stdout_buffer; /* Buffer for stdout data. */
152static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000153static u_long stdin_bytes, stdout_bytes, stderr_bytes;
154static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100155static int connection_in; /* Connection to server (input). */
156static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000157static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000158static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100159static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000162int session_ident = -1;
163
Damien Miller0e220db2004-06-15 10:34:08 +1000164struct confirm_ctx {
165 int want_tty;
166 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000167 int want_x_fwd;
168 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000169 Buffer cmd;
170 char *term;
171 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000172 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000173};
174
Ben Lindstromf28f6342001-04-04 02:03:04 +0000175/*XXX*/
176extern Kex *xxx_kex;
177
Damien Miller0e220db2004-06-15 10:34:08 +1000178void ssh_process_session2_setup(int, int, int, Buffer *);
179
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180/* Restores stdin to blocking mode. */
181
Ben Lindstrombba81212001-06-25 05:01:22 +0000182static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000183leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184{
Damien Miller95def091999-11-25 00:26:21 +1100185 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000186 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100187 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100188 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189}
190
Damien Miller95def091999-11-25 00:26:21 +1100191/* Puts stdin terminal in non-blocking mode. */
192
Ben Lindstrombba81212001-06-25 05:01:22 +0000193static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000194enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195{
Damien Miller95def091999-11-25 00:26:21 +1100196 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000197 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198}
199
Damien Miller5428f641999-11-25 11:54:57 +1100200/*
201 * Signal handler for the window change signal (SIGWINCH). This just sets a
202 * flag indicating that the window has changed.
203 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100204/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000205static void
Damien Miller95def091999-11-25 00:26:21 +1100206window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207{
Damien Miller95def091999-11-25 00:26:21 +1100208 received_window_change_signal = 1;
209 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210}
211
Damien Miller5428f641999-11-25 11:54:57 +1100212/*
213 * Signal handler for signals that cause the program to terminate. These
214 * signals must be trapped to restore terminal modes.
215 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100216/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000217static void
Damien Miller95def091999-11-25 00:26:21 +1100218signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000220 received_signal = sig;
221 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222}
223
Damien Miller5428f641999-11-25 11:54:57 +1100224/*
225 * Returns current time in seconds from Jan 1, 1970 with the maximum
226 * available resolution.
227 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Ben Lindstrombba81212001-06-25 05:01:22 +0000229static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000230get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231{
Damien Miller95def091999-11-25 00:26:21 +1100232 struct timeval tv;
233 gettimeofday(&tv, NULL);
234 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235}
236
Damien Miller17e7ed02005-06-17 12:54:33 +1000237#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
238void
239client_x11_get_proto(const char *display, const char *xauth_path,
240 u_int trusted, char **_proto, char **_data)
241{
242 char cmd[1024];
243 char line[512];
244 char xdisplay[512];
245 static char proto[512], data[512];
246 FILE *f;
247 int got_data = 0, generated = 0, do_unlink = 0, i;
248 char *xauthdir, *xauthfile;
249 struct stat st;
250
251 xauthdir = xauthfile = NULL;
252 *_proto = proto;
253 *_data = data;
254 proto[0] = data[0] = '\0';
255
256 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
257 debug("No xauth program.");
258 } else {
259 if (display == NULL) {
260 debug("x11_get_proto: DISPLAY not set");
261 return;
262 }
263 /*
264 * Handle FamilyLocal case where $DISPLAY does
265 * not match an authorization entry. For this we
266 * just try "xauth list unix:displaynum.screennum".
267 * XXX: "localhost" match to determine FamilyLocal
268 * is not perfect.
269 */
270 if (strncmp(display, "localhost:", 10) == 0) {
271 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
272 display + 10);
273 display = xdisplay;
274 }
275 if (trusted == 0) {
276 xauthdir = xmalloc(MAXPATHLEN);
277 xauthfile = xmalloc(MAXPATHLEN);
278 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
279 if (mkdtemp(xauthdir) != NULL) {
280 do_unlink = 1;
281 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
282 xauthdir);
283 snprintf(cmd, sizeof(cmd),
284 "%s -f %s generate %s " SSH_X11_PROTO
285 " untrusted timeout 1200 2>" _PATH_DEVNULL,
286 xauth_path, xauthfile, display);
287 debug2("x11_get_proto: %s", cmd);
288 if (system(cmd) == 0)
289 generated = 1;
290 }
291 }
292 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000293 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000294 xauth_path,
295 generated ? "-f " : "" ,
296 generated ? xauthfile : "",
297 display);
298 debug2("x11_get_proto: %s", cmd);
299 f = popen(cmd, "r");
300 if (f && fgets(line, sizeof(line), f) &&
301 sscanf(line, "%*s %511s %511s", proto, data) == 2)
302 got_data = 1;
303 if (f)
304 pclose(f);
305 }
306
307 if (do_unlink) {
308 unlink(xauthfile);
309 rmdir(xauthdir);
310 }
311 if (xauthdir)
312 xfree(xauthdir);
313 if (xauthfile)
314 xfree(xauthfile);
315
316 /*
317 * If we didn't get authentication data, just make up some
318 * data. The forwarding code will check the validity of the
319 * response anyway, and substitute this data. The X11
320 * server, however, will ignore this fake data and use
321 * whatever authentication mechanisms it was using otherwise
322 * for the local connection.
323 */
324 if (!got_data) {
325 u_int32_t rnd = 0;
326
327 logit("Warning: No xauth data; "
328 "using fake authentication data for X11 forwarding.");
329 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
330 for (i = 0; i < 16; i++) {
331 if (i % 4 == 0)
332 rnd = arc4random();
333 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
334 rnd & 0xff);
335 rnd >>= 8;
336 }
337 }
338}
339
Damien Miller5428f641999-11-25 11:54:57 +1100340/*
341 * This is called when the interactive is entered. This checks if there is
342 * an EOF coming on stdin. We must check this explicitly, as select() does
343 * not appear to wake up when redirecting from /dev/null.
344 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Ben Lindstrombba81212001-06-25 05:01:22 +0000346static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000347client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348{
Damien Miller95def091999-11-25 00:26:21 +1100349 int len;
350 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351
Damien Miller5428f641999-11-25 11:54:57 +1100352 /*
353 * If standard input is to be "redirected from /dev/null", we simply
354 * mark that we have seen an EOF and send an EOF message to the
355 * server. Otherwise, we try to read a single character; it appears
356 * that for some files, such /dev/null, select() never wakes up for
357 * read for this descriptor, which means that we never get EOF. This
358 * way we will get the EOF if stdin comes from /dev/null or similar.
359 */
Damien Miller95def091999-11-25 00:26:21 +1100360 if (stdin_null_flag) {
361 /* Fake EOF on stdin. */
362 debug("Sending eof.");
363 stdin_eof = 1;
364 packet_start(SSH_CMSG_EOF);
365 packet_send();
366 } else {
Damien Miller95def091999-11-25 00:26:21 +1100367 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Damien Miller95def091999-11-25 00:26:21 +1100369 /* Check for immediate EOF on stdin. */
370 len = read(fileno(stdin), buf, 1);
371 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100372 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100373 debug("Sending eof.");
374 stdin_eof = 1;
375 packet_start(SSH_CMSG_EOF);
376 packet_send();
377 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100378 /*
379 * Got data. We must store the data in the buffer,
380 * and also process it as an escape character if
381 * appropriate.
382 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000383 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100384 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000385 else
Damien Miller95def091999-11-25 00:26:21 +1100386 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100387 }
Damien Miller95def091999-11-25 00:26:21 +1100388 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390}
391
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392
Damien Miller5428f641999-11-25 11:54:57 +1100393/*
394 * Make packets from buffered stdin data, and buffer them for sending to the
395 * connection.
396 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397
Ben Lindstrombba81212001-06-25 05:01:22 +0000398static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000399client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000401 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402
Damien Miller95def091999-11-25 00:26:21 +1100403 /* Send buffered stdin data to the server. */
404 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100405 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100406 len = buffer_len(&stdin_buffer);
407 /* Keep the packets at reasonable size. */
408 if (len > packet_get_maxsize())
409 len = packet_get_maxsize();
410 packet_start(SSH_CMSG_STDIN_DATA);
411 packet_put_string(buffer_ptr(&stdin_buffer), len);
412 packet_send();
413 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000414 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100415 /* If we have a pending EOF, send it now. */
416 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
417 packet_start(SSH_CMSG_EOF);
418 packet_send();
419 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421}
422
Damien Miller5428f641999-11-25 11:54:57 +1100423/*
424 * Checks if the client window has changed, and sends a packet about it to
425 * the server if so. The actual change is detected elsewhere (by a software
426 * interrupt on Unix); this just checks the flag and sends a message if
427 * appropriate.
428 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Ben Lindstrombba81212001-06-25 05:01:22 +0000430static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000431client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432{
Damien Miller1383bd82000-04-06 12:32:37 +1000433 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434
Damien Miller1383bd82000-04-06 12:32:37 +1000435 if (! received_window_change_signal)
436 return;
437 /** XXX race */
438 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439
Damien Millerd3444942000-09-30 14:20:03 +1100440 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000441
442 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000443 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000444 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000445 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
446 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000447 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100448 packet_put_int((u_int)ws.ws_row);
449 packet_put_int((u_int)ws.ws_col);
450 packet_put_int((u_int)ws.ws_xpixel);
451 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000452 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454}
455
Damien Miller509b0102003-12-17 16:33:10 +1100456static void
457client_global_request_reply(int type, u_int32_t seq, void *ctxt)
458{
459 server_alive_timeouts = 0;
460 client_global_request_reply_fwd(type, seq, ctxt);
461}
462
463static void
464server_alive_check(void)
465{
466 if (++server_alive_timeouts > options.server_alive_count_max)
467 packet_disconnect("Timeout, server not responding.");
468 packet_start(SSH2_MSG_GLOBAL_REQUEST);
469 packet_put_cstring("keepalive@openssh.com");
470 packet_put_char(1); /* boolean: want reply */
471 packet_send();
472}
473
Damien Miller5428f641999-11-25 11:54:57 +1100474/*
475 * Waits until the client can do something (some data becomes available on
476 * one of the file descriptors).
477 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000478static void
Damien Miller5e953212001-01-30 09:14:00 +1100479client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000480 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481{
Damien Miller509b0102003-12-17 16:33:10 +1100482 struct timeval tv, *tvp;
483 int ret;
484
Damien Miller5e953212001-01-30 09:14:00 +1100485 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000486 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487
Damien Miller1383bd82000-04-06 12:32:37 +1000488 if (!compat20) {
489 /* Read from the connection, unless our buffers are full. */
490 if (buffer_len(&stdout_buffer) < buffer_high &&
491 buffer_len(&stderr_buffer) < buffer_high &&
492 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100493 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000494 /*
495 * Read from stdin, unless we have seen EOF or have very much
496 * buffered data to send to the server.
497 */
498 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100499 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000500
501 /* Select stdout/stderr if have data in buffer. */
502 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100503 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000504 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100505 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000506 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000507 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000508 if (session_closed && !channel_still_open() &&
509 !packet_have_data_to_write()) {
510 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100511 memset(*readsetp, 0, *nallocp);
512 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000513 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000514 } else {
515 FD_SET(connection_in, *readsetp);
516 }
Damien Miller1383bd82000-04-06 12:32:37 +1000517 }
518
Damien Miller95def091999-11-25 00:26:21 +1100519 /* Select server connection if have data to write to the server. */
520 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100521 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100522
Damien Miller0e220db2004-06-15 10:34:08 +1000523 if (control_fd != -1)
524 FD_SET(control_fd, *readsetp);
525
Damien Miller5428f641999-11-25 11:54:57 +1100526 /*
527 * Wait for something to happen. This will suspend the process until
528 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100529 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100530 */
Damien Miller95def091999-11-25 00:26:21 +1100531
Damien Miller509b0102003-12-17 16:33:10 +1100532 if (options.server_alive_interval == 0 || !compat20)
533 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000534 else {
Damien Miller509b0102003-12-17 16:33:10 +1100535 tv.tv_sec = options.server_alive_interval;
536 tv.tv_usec = 0;
537 tvp = &tv;
538 }
539 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
540 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100541 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000542
543 /*
544 * We have to clear the select masks, because we return.
545 * We have to return, because the mainloop checks for the flags
546 * set by the signal handlers.
547 */
Damien Miller79faeff2001-11-12 11:06:32 +1100548 memset(*readsetp, 0, *nallocp);
549 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000550
Damien Miller95def091999-11-25 00:26:21 +1100551 if (errno == EINTR)
552 return;
553 /* Note: we might still have data in the buffers. */
554 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
555 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100556 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100557 } else if (ret == 0)
558 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559}
560
Ben Lindstrombba81212001-06-25 05:01:22 +0000561static void
Damien Millerad833b32000-08-23 10:46:23 +1000562client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563{
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000565 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000566 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000567 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000568 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller95def091999-11-25 00:26:21 +1100570 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller5428f641999-11-25 11:54:57 +1100572 /*
573 * Free (and clear) the buffer to reduce the amount of data that gets
574 * written to swap.
575 */
Damien Millerad833b32000-08-23 10:46:23 +1000576 buffer_free(bin);
577 buffer_free(bout);
578 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Send the suspend signal to the program itself. */
581 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Darren Tucker5d78de62004-11-05 20:35:44 +1100583 /* Reset window sizes in case they have changed */
584 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller95def091999-11-25 00:26:21 +1100586 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000587 buffer_init(bin);
588 buffer_init(bout);
589 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592}
593
Ben Lindstrombba81212001-06-25 05:01:22 +0000594static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100595client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596{
Damien Miller1383bd82000-04-06 12:32:37 +1000597 int len;
598 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller5428f641999-11-25 11:54:57 +1100600 /*
601 * Read input from the server, and add any such data to the buffer of
602 * the packet subsystem.
603 */
Damien Miller95def091999-11-25 00:26:21 +1100604 if (FD_ISSET(connection_in, readset)) {
605 /* Read as much as possible. */
606 len = read(connection_in, buf, sizeof(buf));
607 if (len == 0) {
608 /* Received EOF. The remote host has closed the connection. */
609 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
610 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612 quit_pending = 1;
613 return;
Damien Miller95def091999-11-25 00:26:21 +1100614 }
Damien Miller5428f641999-11-25 11:54:57 +1100615 /*
616 * There is a kernel bug on Solaris that causes select to
617 * sometimes wake up even though there is no data available.
618 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000619 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100620 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Damien Miller95def091999-11-25 00:26:21 +1100622 if (len < 0) {
623 /* An error has encountered. Perhaps there is a network problem. */
624 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
625 host, strerror(errno));
626 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100627 quit_pending = 1;
628 return;
629 }
630 packet_process_incoming(buf, len);
631 }
Damien Miller1383bd82000-04-06 12:32:37 +1000632}
633
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000634static void
Damien Miller0e220db2004-06-15 10:34:08 +1000635client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
636{
637 int id;
638 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000639
Damien Miller0e220db2004-06-15 10:34:08 +1000640 id = packet_get_int();
641 packet_check_eom();
642
643 if ((c = channel_lookup(id)) == NULL) {
644 error("%s: no channel for id %d", __func__, id);
645 return;
646 }
647
648 if (type == SSH2_MSG_CHANNEL_SUCCESS)
649 debug2("Request suceeded on channel %d", id);
650 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
651 error("Request failed on channel %d", id);
652 channel_free(c);
653 }
654}
655
656static void
657client_extra_session2_setup(int id, void *arg)
658{
659 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000660 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000661 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000662 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000663
Damien Miller0e220db2004-06-15 10:34:08 +1000664 if (cctx == NULL)
665 fatal("%s: cctx == NULL", __func__);
666 if ((c = channel_lookup(id)) == NULL)
667 fatal("%s: no channel for id %d", __func__, id);
668
Damien Miller46d38de2005-07-17 17:02:09 +1000669 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000670 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
671 char *proto, *data;
672 /* Get reasonable local authentication information. */
673 client_x11_get_proto(display, options.xauth_location,
674 options.forward_x11_trusted, &proto, &data);
675 /* Request forwarding with authentication spoofing. */
676 debug("Requesting X11 forwarding with authentication spoofing.");
677 x11_request_forwarding_with_spoofing(id, display, proto, data);
678 /* XXX wait for reply */
679 }
680
681 if (cctx->want_agent_fwd && options.forward_agent) {
682 debug("Requesting authentication agent forwarding.");
683 channel_request_start(id, "auth-agent-req@openssh.com", 0);
684 packet_send();
685 }
686
Darren Tuckerfc959702004-07-17 16:12:08 +1000687 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000688 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000689 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000690
Damien Miller0e220db2004-06-15 10:34:08 +1000691 c->confirm_ctx = NULL;
692 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000693 xfree(cctx->term);
694 if (cctx->env != NULL) {
695 for (i = 0; cctx->env[i] != NULL; i++)
696 xfree(cctx->env[i]);
697 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000698 }
Damien Miller3756dce2004-06-18 01:17:29 +1000699 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000700}
701
702static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100703client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000704{
705 Buffer m;
706 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000707 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000708 socklen_t addrlen;
709 struct sockaddr_storage addr;
710 struct confirm_ctx *cctx;
711 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000712 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000713 uid_t euid;
714 gid_t egid;
715
716 /*
717 * Accept connection on control socket
718 */
719 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
720 return;
721
722 memset(&addr, 0, sizeof(addr));
723 addrlen = sizeof(addr);
724 if ((client_fd = accept(control_fd,
725 (struct sockaddr*)&addr, &addrlen)) == -1) {
726 error("%s accept: %s", __func__, strerror(errno));
727 return;
728 }
729
730 if (getpeereid(client_fd, &euid, &egid) < 0) {
731 error("%s getpeereid failed: %s", __func__, strerror(errno));
732 close(client_fd);
733 return;
734 }
735 if ((euid != 0) && (getuid() != euid)) {
736 error("control mode uid mismatch: peer euid %u != uid %u",
737 (u_int) euid, (u_int) getuid());
738 close(client_fd);
739 return;
740 }
Damien Miller23f07702004-06-18 01:19:03 +1000741
Damien Miller0e220db2004-06-15 10:34:08 +1000742 unset_nonblock(client_fd);
743
Darren Tucker7ebfc102004-11-07 20:06:19 +1100744 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000745 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100746 if (ssh_msg_recv(client_fd, &m) == -1) {
747 error("%s: client msg_recv failed", __func__);
748 close(client_fd);
749 buffer_free(&m);
750 return;
751 }
Damien Miller13390022005-07-06 09:44:19 +1000752 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100753 error("%s: wrong client version %d", __func__, ver);
754 buffer_free(&m);
755 close(client_fd);
756 return;
757 }
Damien Miller0e220db2004-06-15 10:34:08 +1000758
Darren Tucker7ebfc102004-11-07 20:06:19 +1100759 allowed = 1;
760 command = buffer_get_int(&m);
761 flags = buffer_get_int(&m);
762
763 buffer_clear(&m);
764
765 switch (command) {
766 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000767 if (options.control_master == SSHCTL_MASTER_ASK ||
768 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100769 allowed = ask_permission("Allow shared connection "
770 "to %s? ", host);
771 /* continue below */
772 break;
773 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000774 if (options.control_master == SSHCTL_MASTER_ASK ||
775 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100776 allowed = ask_permission("Terminate shared connection "
777 "to %s? ", host);
778 if (allowed)
779 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100780 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100781 case SSHMUX_COMMAND_ALIVE_CHECK:
782 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
783 buffer_clear(&m);
784 buffer_put_int(&m, allowed);
785 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000786 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100787 error("%s: client msg_send failed", __func__);
788 close(client_fd);
789 buffer_free(&m);
790 return;
791 }
792 buffer_free(&m);
793 close(client_fd);
794 return;
795 default:
796 error("Unsupported command %d", command);
797 buffer_free(&m);
798 close(client_fd);
799 return;
800 }
801
802 /* Reply for SSHMUX_COMMAND_OPEN */
803 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000804 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000805 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000806 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000807 error("%s: client msg_send failed", __func__);
808 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000809 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000810 return;
811 }
Damien Miller0e220db2004-06-15 10:34:08 +1000812
Damien Miller23f07702004-06-18 01:19:03 +1000813 if (!allowed) {
814 error("Refused control connection");
815 close(client_fd);
816 buffer_free(&m);
817 return;
818 }
819
Darren Tucker7ebfc102004-11-07 20:06:19 +1100820 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000821 if (ssh_msg_recv(client_fd, &m) == -1) {
822 error("%s: client msg_recv failed", __func__);
823 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000824 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000825 return;
826 }
Damien Miller13390022005-07-06 09:44:19 +1000827 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000828 error("%s: wrong client version %d", __func__, ver);
829 buffer_free(&m);
830 close(client_fd);
831 return;
832 }
833
Damien Miller07d86be2006-03-26 14:19:21 +1100834 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100835 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
836 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000837 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
838 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000839 cctx->term = buffer_get_string(&m, &len);
840
841 cmd = buffer_get_string(&m, &len);
842 buffer_init(&cctx->cmd);
843 buffer_append(&cctx->cmd, cmd, strlen(cmd));
844
Damien Miller3756dce2004-06-18 01:17:29 +1000845 env_len = buffer_get_int(&m);
846 env_len = MIN(env_len, 4096);
847 debug3("%s: receiving %d env vars", __func__, env_len);
848 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100849 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000850 for (i = 0; i < env_len; i++)
851 cctx->env[i] = buffer_get_string(&m, &len);
852 cctx->env[i] = NULL;
853 }
854
Damien Miller0e220db2004-06-15 10:34:08 +1000855 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
856 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000857 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000858
859 /* Gather fds from client */
860 new_fd[0] = mm_receive_fd(client_fd);
861 new_fd[1] = mm_receive_fd(client_fd);
862 new_fd[2] = mm_receive_fd(client_fd);
863
864 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
865 new_fd[0], new_fd[1], new_fd[2]);
866
867 /* Try to pick up ttymodes from client before it goes raw */
868 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
869 error("%s: tcgetattr: %s", __func__, strerror(errno));
870
Darren Tucker7ebfc102004-11-07 20:06:19 +1100871 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000872 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000873 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000874 error("%s: client msg_send failed", __func__);
875 close(client_fd);
876 close(new_fd[0]);
877 close(new_fd[1]);
878 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000879 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100880 xfree(cctx->term);
881 if (env_len != 0) {
882 for (i = 0; i < env_len; i++)
883 xfree(cctx->env[i]);
884 xfree(cctx->env);
885 }
Damien Miller0e220db2004-06-15 10:34:08 +1000886 return;
887 }
888 buffer_free(&m);
889
890 /* enable nonblocking unless tty */
891 if (!isatty(new_fd[0]))
892 set_nonblock(new_fd[0]);
893 if (!isatty(new_fd[1]))
894 set_nonblock(new_fd[1]);
895 if (!isatty(new_fd[2]))
896 set_nonblock(new_fd[2]);
897
898 set_nonblock(client_fd);
899
Darren Tuckerfc959702004-07-17 16:12:08 +1000900 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000901 new_fd[0], new_fd[1], new_fd[2],
902 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
903 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
904
905 /* XXX */
906 c->ctl_fd = client_fd;
907
908 debug3("%s: channel_new: %d", __func__, c->self);
909
910 channel_send_open(c->self);
911 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
912}
913
914static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000915process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000916{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000917 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100918 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000919 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000920 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100921 u_short cancel_port;
922 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000923
924 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000925 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000926 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000927 if (s == NULL)
928 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000929 while (*s && isspace(*s))
930 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000931 if (*s == '-')
932 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000933 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000934 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000935
Darren Tucker1973c882004-05-24 10:34:36 +1000936 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000937 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000938 logit(" -L[bind_address:]port:host:hostport "
939 "Request local forward");
940 logit(" -R[bind_address:]port:host:hostport "
941 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000942 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000943 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100944 if (!options.permit_local_command)
945 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000946 logit(" !args "
947 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100948 goto out;
949 }
950
951 if (*s == '!' && options.permit_local_command) {
952 s++;
953 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000954 goto out;
955 }
956
957 if (*s == 'K') {
958 delete = 1;
959 s++;
960 }
961 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000963 goto out;
964 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000965 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000966 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000967 if (local && delete) {
968 logit("Not supported.");
969 goto out;
970 }
971 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000972 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000973 goto out;
974 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000975
976 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000977 while (*s && isspace(*s))
978 s++;
979
Darren Tuckere7066df2004-05-24 10:18:05 +1000980 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100981 cancel_port = 0;
982 cancel_host = hpdelim(&s); /* may be NULL */
983 if (s != NULL) {
984 cancel_port = a2port(s);
985 cancel_host = cleanhostname(cancel_host);
986 } else {
987 cancel_port = a2port(cancel_host);
988 cancel_host = NULL;
989 }
990 if (cancel_port == 0) {
991 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000992 goto out;
993 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100994 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000995 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100996 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000997 logit("Bad forwarding specification.");
998 goto out;
999 }
Darren Tuckere7066df2004-05-24 10:18:05 +10001000 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001001 if (channel_setup_local_fwd_listener(fwd.listen_host,
1002 fwd.listen_port, fwd.connect_host,
1003 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +10001004 logit("Port forwarding failed.");
1005 goto out;
1006 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001007 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001008 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001009 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001010 fwd.connect_port) < 0) {
1011 logit("Port forwarding failed.");
1012 goto out;
1013 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001014 }
1015
Darren Tuckere7066df2004-05-24 10:18:05 +10001016 logit("Forwarding port.");
1017 }
1018
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001019out:
1020 signal(SIGINT, handler);
1021 enter_raw_mode();
1022 if (cmd)
1023 xfree(cmd);
1024}
1025
Damien Millerad833b32000-08-23 10:46:23 +10001026/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001027static int
Damien Millerad833b32000-08-23 10:46:23 +10001028process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1029{
1030 char string[1024];
1031 pid_t pid;
1032 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001033 u_int i;
1034 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001035 char *s;
1036
Damien Millereccb9de2005-06-17 12:59:34 +10001037 if (len <= 0)
1038 return (0);
1039
1040 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001041 /* Get one character at a time. */
1042 ch = buf[i];
1043
1044 if (escape_pending) {
1045 /* We have previously seen an escape character. */
1046 /* Clear the flag now. */
1047 escape_pending = 0;
1048
1049 /* Process the escaped character. */
1050 switch (ch) {
1051 case '.':
1052 /* Terminate the connection. */
1053 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1054 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001055
1056 quit_pending = 1;
1057 return -1;
1058
1059 case 'Z' - 64:
1060 /* Suspend the program. */
1061 /* Print a message to that effect to the user. */
1062 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1063 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001064
1065 /* Restore terminal modes and suspend. */
1066 client_suspend_self(bin, bout, berr);
1067
1068 /* We have been continued. */
1069 continue;
1070
Damien Miller54c45982003-05-15 10:20:13 +10001071 case 'B':
1072 if (compat20) {
1073 snprintf(string, sizeof string,
1074 "%cB\r\n", escape_char);
1075 buffer_append(berr, string,
1076 strlen(string));
1077 channel_request_start(session_ident,
1078 "break", 0);
1079 packet_put_int(1000);
1080 packet_send();
1081 }
1082 continue;
1083
Ben Lindstromf28f6342001-04-04 02:03:04 +00001084 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001085 if (compat20) {
1086 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001087 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001088 else
1089 need_rekeying = 1;
1090 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001091 continue;
1092
Damien Millerad833b32000-08-23 10:46:23 +10001093 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001094 /*
1095 * Detach the program (continue to serve connections,
1096 * but put in background and no more new connections).
1097 */
Damien Miller96507ef2001-11-12 10:52:25 +11001098 /* Restore tty modes. */
1099 leave_raw_mode();
1100
1101 /* Stop listening for new connections. */
1102 channel_stop_listening();
1103
1104 snprintf(string, sizeof string,
1105 "%c& [backgrounded]\n", escape_char);
1106 buffer_append(berr, string, strlen(string));
1107
1108 /* Fork into background. */
1109 pid = fork();
1110 if (pid < 0) {
1111 error("fork: %.100s", strerror(errno));
1112 continue;
1113 }
1114 if (pid != 0) { /* This is the parent. */
1115 /* The parent just exits. */
1116 exit(0);
1117 }
1118 /* The child continues serving connections. */
1119 if (compat20) {
1120 buffer_append(bin, "\004", 1);
1121 /* fake EOF on stdin */
1122 return -1;
1123 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001124 /*
1125 * Sending SSH_CMSG_EOF alone does not always appear
1126 * to be enough. So we try to send an EOF character
1127 * first.
1128 */
1129 packet_start(SSH_CMSG_STDIN_DATA);
1130 packet_put_string("\004", 1);
1131 packet_send();
1132 /* Close stdin. */
1133 stdin_eof = 1;
1134 if (buffer_len(bin) == 0) {
1135 packet_start(SSH_CMSG_EOF);
1136 packet_send();
1137 }
1138 }
Damien Miller96507ef2001-11-12 10:52:25 +11001139 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001140
1141 case '?':
1142 snprintf(string, sizeof string,
1143"%c?\r\n\
1144Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001145%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001146%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001147%cC - open a command line\r\n\
1148%cR - Request rekey (SSH protocol 2 only)\r\n\
1149%c^Z - suspend ssh\r\n\
1150%c# - list forwarded connections\r\n\
1151%c& - background ssh (when waiting for connections to terminate)\r\n\
1152%c? - this message\r\n\
1153%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001154(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001155 escape_char, escape_char, escape_char, escape_char,
1156 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001157 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001158 buffer_append(berr, string, strlen(string));
1159 continue;
1160
1161 case '#':
1162 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1163 buffer_append(berr, string, strlen(string));
1164 s = channel_open_message();
1165 buffer_append(berr, s, strlen(s));
1166 xfree(s);
1167 continue;
1168
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001169 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001170 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001171 continue;
1172
Damien Millerad833b32000-08-23 10:46:23 +10001173 default:
1174 if (ch != escape_char) {
1175 buffer_put_char(bin, escape_char);
1176 bytes++;
1177 }
1178 /* Escaped characters fall through here */
1179 break;
1180 }
1181 } else {
1182 /*
1183 * The previous character was not an escape char. Check if this
1184 * is an escape.
1185 */
1186 if (last_was_cr && ch == escape_char) {
1187 /* It is. Set the flag and continue to next character. */
1188 escape_pending = 1;
1189 continue;
1190 }
1191 }
1192
1193 /*
1194 * Normal character. Record whether it was a newline,
1195 * and append it to the buffer.
1196 */
1197 last_was_cr = (ch == '\r' || ch == '\n');
1198 buffer_put_char(bin, ch);
1199 bytes++;
1200 }
1201 return bytes;
1202}
1203
Ben Lindstrombba81212001-06-25 05:01:22 +00001204static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001205client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001206{
Damien Miller166fca82000-04-20 07:42:21 +10001207 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001208 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001209
Damien Miller95def091999-11-25 00:26:21 +11001210 /* Read input from stdin. */
1211 if (FD_ISSET(fileno(stdin), readset)) {
1212 /* Read as much as possible. */
1213 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001214 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1215 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001216 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001217 /*
1218 * Received EOF or error. They are treated
1219 * similarly, except that an error message is printed
1220 * if it was an error condition.
1221 */
Damien Miller95def091999-11-25 00:26:21 +11001222 if (len < 0) {
1223 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1224 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001225 }
1226 /* Mark that we have seen EOF. */
1227 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001228 /*
1229 * Send an EOF message to the server unless there is
1230 * data in the buffer. If there is data in the
1231 * buffer, no message will be sent now. Code
1232 * elsewhere will send the EOF when the buffer
1233 * becomes empty if stdin_eof is set.
1234 */
Damien Miller95def091999-11-25 00:26:21 +11001235 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001236 packet_start(SSH_CMSG_EOF);
1237 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001238 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001239 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001240 /*
1241 * Normal successful read, and no escape character.
1242 * Just append the data to buffer.
1243 */
Damien Miller95def091999-11-25 00:26:21 +11001244 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001245 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001246 /*
1247 * Normal, successful read. But we have an escape character
1248 * and have to process the characters one by one.
1249 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001250 if (process_escapes(&stdin_buffer, &stdout_buffer,
1251 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001252 return;
Damien Miller95def091999-11-25 00:26:21 +11001253 }
1254 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001255}
1256
Ben Lindstrombba81212001-06-25 05:01:22 +00001257static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001258client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001259{
Damien Miller95def091999-11-25 00:26:21 +11001260 int len;
1261 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001262
Damien Miller95def091999-11-25 00:26:21 +11001263 /* Write buffered output to stdout. */
1264 if (FD_ISSET(fileno(stdout), writeset)) {
1265 /* Write as much data as possible. */
1266 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001267 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001268 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001269 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001270 len = 0;
1271 else {
Damien Miller5428f641999-11-25 11:54:57 +11001272 /*
1273 * An error or EOF was encountered. Put an
1274 * error message to stderr buffer.
1275 */
Damien Miller95def091999-11-25 00:26:21 +11001276 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1277 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001278 quit_pending = 1;
1279 return;
1280 }
1281 }
1282 /* Consume printed data from the buffer. */
1283 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001284 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285 }
Damien Miller95def091999-11-25 00:26:21 +11001286 /* Write buffered output to stderr. */
1287 if (FD_ISSET(fileno(stderr), writeset)) {
1288 /* Write as much data as possible. */
1289 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001290 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001291 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001292 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001293 len = 0;
1294 else {
Damien Miller5428f641999-11-25 11:54:57 +11001295 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001296 quit_pending = 1;
1297 return;
1298 }
1299 }
1300 /* Consume printed characters from the buffer. */
1301 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001302 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001303 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001304}
1305
Damien Miller5428f641999-11-25 11:54:57 +11001306/*
Damien Millerb38eff82000-04-01 11:09:21 +10001307 * Get packets from the connection input buffer, and process them as long as
1308 * there are packets available.
1309 *
1310 * Any unknown packets received during the actual
1311 * session cause the session to terminate. This is
1312 * intended to make debugging easier since no
1313 * confirmations are sent. Any compatible protocol
1314 * extensions must be negotiated during the
1315 * preparatory phase.
1316 */
1317
Ben Lindstrombba81212001-06-25 05:01:22 +00001318static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001319client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001320{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001321 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001322}
1323
Damien Millerad833b32000-08-23 10:46:23 +10001324/* scan buf[] for '~' before sending data to the peer */
1325
Ben Lindstrombba81212001-06-25 05:01:22 +00001326static int
Damien Millerad833b32000-08-23 10:46:23 +10001327simple_escape_filter(Channel *c, char *buf, int len)
1328{
1329 /* XXX we assume c->extended is writeable */
1330 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1331}
1332
Ben Lindstrombba81212001-06-25 05:01:22 +00001333static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001334client_channel_closed(int id, void *arg)
1335{
Damien Miller3ec27592001-10-12 11:35:04 +10001336 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001337 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001338 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001339}
1340
Damien Millerb38eff82000-04-01 11:09:21 +10001341/*
Damien Miller5428f641999-11-25 11:54:57 +11001342 * Implements the interactive session with the server. This is called after
1343 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001344 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1345 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001346 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001347
Damien Miller4af51302000-04-16 11:18:38 +10001348int
Damien Millerad833b32000-08-23 10:46:23 +10001349client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001350{
Damien Miller5e953212001-01-30 09:14:00 +11001351 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001352 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001353 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1354 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001355 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001356
Damien Miller95def091999-11-25 00:26:21 +11001357 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001358
Damien Miller95def091999-11-25 00:26:21 +11001359 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001360
Damien Miller95def091999-11-25 00:26:21 +11001361 /* Initialize variables. */
1362 escape_pending = 0;
1363 last_was_cr = 1;
1364 exit_status = -1;
1365 stdin_eof = 0;
1366 buffer_high = 64 * 1024;
1367 connection_in = packet_get_connection_in();
1368 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001369 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001370 if (control_fd != -1)
1371 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001372
1373 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001374 /* enable nonblocking unless tty */
1375 if (!isatty(fileno(stdin)))
1376 set_nonblock(fileno(stdin));
1377 if (!isatty(fileno(stdout)))
1378 set_nonblock(fileno(stdout));
1379 if (!isatty(fileno(stderr)))
1380 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001381 max_fd = MAX(max_fd, fileno(stdin));
1382 max_fd = MAX(max_fd, fileno(stdout));
1383 max_fd = MAX(max_fd, fileno(stderr));
1384 }
Damien Miller95def091999-11-25 00:26:21 +11001385 stdin_bytes = 0;
1386 stdout_bytes = 0;
1387 stderr_bytes = 0;
1388 quit_pending = 0;
1389 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001390
Damien Miller95def091999-11-25 00:26:21 +11001391 /* Initialize buffers. */
1392 buffer_init(&stdin_buffer);
1393 buffer_init(&stdout_buffer);
1394 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395
Damien Millerb38eff82000-04-01 11:09:21 +10001396 client_init_dispatch();
1397
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001398 /*
1399 * Set signal handlers, (e.g. to restore non-blocking mode)
1400 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1401 */
Darren Tucker07336da2004-11-05 20:02:16 +11001402 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1403 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001404 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1405 signal(SIGINT, signal_handler);
1406 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1407 signal(SIGQUIT, signal_handler);
1408 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1409 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001410 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411
Damien Miller95def091999-11-25 00:26:21 +11001412 if (have_pty)
1413 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Ben Lindstrom5b828322001-02-09 01:34:36 +00001415 if (compat20) {
1416 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001417 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001418 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001419 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001420 if (session_ident != -1)
1421 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001422 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001423 } else {
1424 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001425 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001426 }
Damien Millerad833b32000-08-23 10:46:23 +10001427
Damien Miller95def091999-11-25 00:26:21 +11001428 /* Main loop of the client for the interactive session mode. */
1429 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001430
Damien Miller5428f641999-11-25 11:54:57 +11001431 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001432 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001433
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001434 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001435 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001436
1437 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001438
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001439 if (rekeying) {
1440 debug("rekeying in progress");
1441 } else {
1442 /*
1443 * Make packets of buffered stdin data, and buffer
1444 * them for sending to the server.
1445 */
1446 if (!compat20)
1447 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001449 /*
1450 * Make packets from buffered channel data, and
1451 * enqueue them for sending to the server.
1452 */
1453 if (packet_not_very_much_data_to_write())
1454 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001455
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001456 /*
1457 * Check if the window size has changed, and buffer a
1458 * message about it to the server if so.
1459 */
1460 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001461
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001462 if (quit_pending)
1463 break;
1464 }
Damien Miller5428f641999-11-25 11:54:57 +11001465 /*
1466 * Wait until we have something to do (something becomes
1467 * available on one of the descriptors).
1468 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001469 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001470 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001471 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001472
Damien Miller95def091999-11-25 00:26:21 +11001473 if (quit_pending)
1474 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001475
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001476 /* Do channel operations unless rekeying in progress. */
1477 if (!rekeying) {
1478 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001479 if (need_rekeying || packet_need_rekeying()) {
1480 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001481 xxx_kex->done = 0;
1482 kex_send_kexinit(xxx_kex);
1483 need_rekeying = 0;
1484 }
1485 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001486
Damien Miller1383bd82000-04-06 12:32:37 +10001487 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001488 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001489
Damien Miller0e220db2004-06-15 10:34:08 +10001490 /* Accept control connections. */
1491 client_process_control(readset);
1492
Damien Miller1383bd82000-04-06 12:32:37 +10001493 if (quit_pending)
1494 break;
1495
1496 if (!compat20) {
1497 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001498 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001499 /*
1500 * Process output to stdout and stderr. Output to
1501 * the connection is processed elsewhere (above).
1502 */
Damien Miller5e953212001-01-30 09:14:00 +11001503 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001504 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001505
Damien Miller5428f641999-11-25 11:54:57 +11001506 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001507 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001508 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001509 }
Damien Miller5e953212001-01-30 09:14:00 +11001510 if (readset)
1511 xfree(readset);
1512 if (writeset)
1513 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514
Damien Miller95def091999-11-25 00:26:21 +11001515 /* Terminate the session. */
1516
1517 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001518 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001519
Ben Lindstrom601e4362001-06-21 03:19:23 +00001520 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001521
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001522 if (have_pty)
1523 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001524
1525 /* restore blocking io */
1526 if (!isatty(fileno(stdin)))
1527 unset_nonblock(fileno(stdin));
1528 if (!isatty(fileno(stdout)))
1529 unset_nonblock(fileno(stdout));
1530 if (!isatty(fileno(stderr)))
1531 unset_nonblock(fileno(stderr));
1532
Damien Millerd6965512003-12-17 16:31:53 +11001533 /*
1534 * If there was no shell or command requested, there will be no remote
1535 * exit status to be returned. In that case, clear error code if the
1536 * connection was deliberately terminated at this end.
1537 */
1538 if (no_shell_flag && received_signal == SIGTERM) {
1539 received_signal = 0;
1540 exit_status = 0;
1541 }
1542
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001543 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001544 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001545
1546 /*
1547 * In interactive mode (with pseudo tty) display a message indicating
1548 * that the connection has been closed.
1549 */
1550 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1551 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1552 buffer_append(&stderr_buffer, buf, strlen(buf));
1553 }
1554
Damien Miller95def091999-11-25 00:26:21 +11001555 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001556 while (buffer_len(&stdout_buffer) > 0) {
1557 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001558 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001559 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001560 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001561 break;
1562 }
Damien Miller95def091999-11-25 00:26:21 +11001563 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001564 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001565 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566
Damien Miller95def091999-11-25 00:26:21 +11001567 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001568 while (buffer_len(&stderr_buffer) > 0) {
1569 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001570 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001571 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001572 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001573 break;
1574 }
Damien Miller95def091999-11-25 00:26:21 +11001575 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001576 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001577 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001578
Damien Miller95def091999-11-25 00:26:21 +11001579 /* Clear and free any buffers. */
1580 memset(buf, 0, sizeof(buf));
1581 buffer_free(&stdin_buffer);
1582 buffer_free(&stdout_buffer);
1583 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584
Damien Miller95def091999-11-25 00:26:21 +11001585 /* Report bytes transferred, and transfer rates. */
1586 total_time = get_current_time() - start_time;
1587 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001588 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001589 if (total_time > 0)
1590 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001591 stdin_bytes / total_time, stdout_bytes / total_time,
1592 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001593
1594 /* Return the exit status of the program. */
1595 debug("Exit status %d", exit_status);
1596 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001597}
Damien Millerb38eff82000-04-01 11:09:21 +10001598
1599/*********/
1600
Ben Lindstrombba81212001-06-25 05:01:22 +00001601static void
Damien Miller630d6f42002-01-22 23:17:30 +11001602client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001603{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001604 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001605 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001606 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001607 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001608 memset(data, 0, data_len);
1609 xfree(data);
1610}
Ben Lindstrombba81212001-06-25 05:01:22 +00001611static void
Damien Miller630d6f42002-01-22 23:17:30 +11001612client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001613{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001614 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001615 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001616 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001617 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001618 memset(data, 0, data_len);
1619 xfree(data);
1620}
Ben Lindstrombba81212001-06-25 05:01:22 +00001621static void
Damien Miller630d6f42002-01-22 23:17:30 +11001622client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001623{
Damien Millerb38eff82000-04-01 11:09:21 +10001624 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001625 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001626 /* Acknowledge the exit. */
1627 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1628 packet_send();
1629 /*
1630 * Must wait for packet to be sent since we are
1631 * exiting the loop.
1632 */
1633 packet_write_wait();
1634 /* Flag that we want to exit. */
1635 quit_pending = 1;
1636}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001637static void
1638client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1639{
1640 Channel *c = NULL;
1641 int remote_id, sock;
1642
1643 /* Read the remote channel number from the message. */
1644 remote_id = packet_get_int();
1645 packet_check_eom();
1646
1647 /*
1648 * Get a connection to the local authentication agent (this may again
1649 * get forwarded).
1650 */
1651 sock = ssh_get_authentication_socket();
1652
1653 /*
1654 * If we could not connect the agent, send an error message back to
1655 * the server. This should never happen unless the agent dies,
1656 * because authentication forwarding is only enabled if we have an
1657 * agent.
1658 */
1659 if (sock >= 0) {
1660 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1661 -1, 0, 0, 0, "authentication agent connection", 1);
1662 c->remote_id = remote_id;
1663 c->force_drain = 1;
1664 }
1665 if (c == NULL) {
1666 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1667 packet_put_int(remote_id);
1668 } else {
1669 /* Send a confirmation to the remote host. */
1670 debug("Forwarding authentication connection.");
1671 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1672 packet_put_int(remote_id);
1673 packet_put_int(c->self);
1674 }
1675 packet_send();
1676}
Damien Millerb38eff82000-04-01 11:09:21 +10001677
Ben Lindstrombba81212001-06-25 05:01:22 +00001678static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001679client_request_forwarded_tcpip(const char *request_type, int rchan)
1680{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001681 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001682 char *listen_address, *originator_address;
1683 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001684 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001685
1686 /* Get rest of the packet */
1687 listen_address = packet_get_string(NULL);
1688 listen_port = packet_get_int();
1689 originator_address = packet_get_string(NULL);
1690 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001691 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001692
1693 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1694 listen_address, listen_port, originator_address, originator_port);
1695
Ben Lindstrom173e6462001-07-04 05:15:15 +00001696 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001697 if (sock < 0) {
1698 xfree(originator_address);
1699 xfree(listen_address);
1700 return NULL;
1701 }
1702 c = channel_new("forwarded-tcpip",
1703 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1704 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001705 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001706 xfree(originator_address);
1707 xfree(listen_address);
1708 return c;
1709}
1710
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001711static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001712client_request_x11(const char *request_type, int rchan)
1713{
1714 Channel *c = NULL;
1715 char *originator;
1716 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001717 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001718
1719 if (!options.forward_x11) {
1720 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001721 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001722 return NULL;
1723 }
1724 originator = packet_get_string(NULL);
1725 if (datafellows & SSH_BUG_X11FWD) {
1726 debug2("buggy server: x11 request w/o originator_port");
1727 originator_port = 0;
1728 } else {
1729 originator_port = packet_get_int();
1730 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001731 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001732 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001733 debug("client_request_x11: request from %s %d", originator,
1734 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001735 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001736 sock = x11_connect_display();
1737 if (sock < 0)
1738 return NULL;
1739 c = channel_new("x11",
1740 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001741 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001742 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001743 return c;
1744}
1745
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001746static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001747client_request_agent(const char *request_type, int rchan)
1748{
1749 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001750 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001751
1752 if (!options.forward_agent) {
1753 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001754 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001755 return NULL;
1756 }
1757 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001758 if (sock < 0)
1759 return NULL;
1760 c = channel_new("authentication agent connection",
1761 SSH_CHANNEL_OPEN, sock, sock, -1,
1762 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001763 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001764 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001765 return c;
1766}
1767
Damien Millerbd483e72000-04-30 10:00:53 +10001768/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001769static void
Damien Miller630d6f42002-01-22 23:17:30 +11001770client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001771{
1772 Channel *c = NULL;
1773 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001774 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001775 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001776
1777 ctype = packet_get_string(&len);
1778 rchan = packet_get_int();
1779 rwindow = packet_get_int();
1780 rmaxpack = packet_get_int();
1781
Damien Millere247cc42000-05-07 12:03:14 +10001782 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001783 ctype, rchan, rwindow, rmaxpack);
1784
Damien Miller0bc1bd82000-11-13 22:57:25 +11001785 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1786 c = client_request_forwarded_tcpip(ctype, rchan);
1787 } else if (strcmp(ctype, "x11") == 0) {
1788 c = client_request_x11(ctype, rchan);
1789 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1790 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001791 }
1792/* XXX duplicate : */
1793 if (c != NULL) {
1794 debug("confirm %s", ctype);
1795 c->remote_id = rchan;
1796 c->remote_window = rwindow;
1797 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001798 if (c->type != SSH_CHANNEL_CONNECTING) {
1799 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1800 packet_put_int(c->remote_id);
1801 packet_put_int(c->self);
1802 packet_put_int(c->local_window);
1803 packet_put_int(c->local_maxpacket);
1804 packet_send();
1805 }
Damien Millerbd483e72000-04-30 10:00:53 +10001806 } else {
1807 debug("failure %s", ctype);
1808 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1809 packet_put_int(rchan);
1810 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001811 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001812 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001813 packet_put_cstring("");
1814 }
Damien Millerbd483e72000-04-30 10:00:53 +10001815 packet_send();
1816 }
1817 xfree(ctype);
1818}
Ben Lindstrombba81212001-06-25 05:01:22 +00001819static void
Damien Miller630d6f42002-01-22 23:17:30 +11001820client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001821{
1822 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001823 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001824 char *rtype;
1825
1826 id = packet_get_int();
1827 rtype = packet_get_string(NULL);
1828 reply = packet_get_char();
1829
1830 debug("client_input_channel_req: channel %d rtype %s reply %d",
1831 id, rtype, reply);
1832
Damien Miller3bbd8782004-06-18 22:23:22 +10001833 if (id == -1) {
1834 error("client_input_channel_req: request for channel -1");
1835 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001836 error("client_input_channel_req: channel %d: unknown channel", id);
1837 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001838 exitval = packet_get_int();
1839 if (id == session_ident) {
1840 success = 1;
1841 exit_status = exitval;
1842 } else if (c->ctl_fd == -1) {
1843 error("client_input_channel_req: unexpected channel %d",
1844 session_ident);
1845 } else {
1846 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1847 success = 1;
1848 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001849 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001850 }
1851 if (reply) {
1852 packet_start(success ?
1853 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001854 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001855 packet_send();
1856 }
1857 xfree(rtype);
1858}
Damien Millerc3fa4072002-01-22 23:21:58 +11001859static void
1860client_input_global_request(int type, u_int32_t seq, void *ctxt)
1861{
1862 char *rtype;
1863 int want_reply;
1864 int success = 0;
1865
1866 rtype = packet_get_string(NULL);
1867 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001868 debug("client_input_global_request: rtype %s want_reply %d",
1869 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001870 if (want_reply) {
1871 packet_start(success ?
1872 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1873 packet_send();
1874 packet_write_wait();
1875 }
1876 xfree(rtype);
1877}
Damien Millerbd483e72000-04-30 10:00:53 +10001878
Damien Miller0e220db2004-06-15 10:34:08 +10001879void
Darren Tuckerfc959702004-07-17 16:12:08 +10001880client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001881 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001882 dispatch_fn *subsys_repl)
1883{
1884 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001885 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001886
1887 debug2("%s: id %d", __func__, id);
1888
Darren Tucker5d78de62004-11-05 20:35:44 +11001889 if ((c = channel_lookup(id)) == NULL)
1890 fatal("client_session2_setup: channel %d: unknown channel", id);
1891
Damien Miller0e220db2004-06-15 10:34:08 +10001892 if (want_tty) {
1893 struct winsize ws;
1894 struct termios tio;
1895
1896 /* Store window size in the packet. */
1897 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1898 memset(&ws, 0, sizeof(ws));
1899
1900 channel_request_start(id, "pty-req", 0);
1901 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001902 packet_put_int((u_int)ws.ws_col);
1903 packet_put_int((u_int)ws.ws_row);
1904 packet_put_int((u_int)ws.ws_xpixel);
1905 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001906 tio = get_saved_tio();
1907 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1908 packet_send();
1909 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001910 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001911 }
1912
1913 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001914 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001915 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001916 char *name, *val;
1917
1918 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001919 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001920 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001921 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001922 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001923 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001924 continue;
1925 }
1926 *val++ = '\0';
1927
1928 matched = 0;
1929 for (j = 0; j < options.num_send_env; j++) {
1930 if (match_pattern(name, options.send_env[j])) {
1931 matched = 1;
1932 break;
1933 }
1934 }
1935 if (!matched) {
1936 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001937 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001938 continue;
1939 }
1940
1941 debug("Sending env %s = %s", name, val);
1942 channel_request_start(id, "env", 0);
1943 packet_put_cstring(name);
1944 packet_put_cstring(val);
1945 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001946 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001947 }
1948 }
1949
1950 len = buffer_len(cmd);
1951 if (len > 0) {
1952 if (len > 900)
1953 len = 900;
1954 if (want_subsystem) {
1955 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1956 channel_request_start(id, "subsystem", subsys_repl != NULL);
1957 if (subsys_repl != NULL) {
1958 /* register callback for reply */
1959 /* XXX we assume that client_loop has already been called */
1960 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1961 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1962 }
1963 } else {
1964 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1965 channel_request_start(id, "exec", 0);
1966 }
1967 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1968 packet_send();
1969 } else {
1970 channel_request_start(id, "shell", 0);
1971 packet_send();
1972 }
1973}
1974
Ben Lindstrombba81212001-06-25 05:01:22 +00001975static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001976client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001977{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001978 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001979
Damien Miller1383bd82000-04-06 12:32:37 +10001980 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1981 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1982 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1983 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001984 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001985 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1986 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001987 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001988 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001989 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001990
1991 /* rekeying */
1992 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001993
1994 /* global request reply messages */
1995 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1996 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001997}
Ben Lindstrombba81212001-06-25 05:01:22 +00001998static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001999client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002000{
2001 dispatch_init(NULL);
2002 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2003 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2004 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002005 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2006 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2007 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002008 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2009 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2010 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002011
2012 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002013 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002014 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2015 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002016}
Ben Lindstrombba81212001-06-25 05:01:22 +00002017static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002018client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002019{
2020 client_init_dispatch_13();
2021 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2022 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2023}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002024static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002025client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002026{
Damien Miller1383bd82000-04-06 12:32:37 +10002027 if (compat20)
2028 client_init_dispatch_20();
2029 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002030 client_init_dispatch_13();
2031 else
2032 client_init_dispatch_15();
2033}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002034
2035/* client specific fatal cleanup */
2036void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002037cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002038{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002039 leave_raw_mode();
2040 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002041 if (options.control_path != NULL && control_fd != -1)
2042 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002043 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002044}