blob: ca7b9060ade19e5abdaa7c9adf45cd333034e5ae [file] [log] [blame]
Damien Miller8dbffe72006-08-05 11:02:17 +10001/* $OpenBSD: clientloop.c,v 1.172 2006/07/26 02:35:17 stevesk 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 Millere3476ed2006-07-24 14:13:33 +100081#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110082#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100083#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000086#include "ssh1.h"
87#include "ssh2.h"
88#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089#include "packet.h"
90#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100091#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000092#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100093#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100094#include "buffer.h"
95#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110096#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000097#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "log.h"
99#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000100#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100101#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000102#include "authfd.h"
103#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000104#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000105#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000106#include "monitor_fdpass.h"
107#include "match.h"
108#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100109
110/* import options */
111extern Options options;
112
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113/* Flag indicating that stdin should be redirected from /dev/null. */
114extern int stdin_null_flag;
115
Damien Millerd6965512003-12-17 16:31:53 +1100116/* Flag indicating that no shell has been requested */
117extern int no_shell_flag;
118
Damien Miller0e220db2004-06-15 10:34:08 +1000119/* Control socket */
120extern int control_fd;
121
Damien Miller5428f641999-11-25 11:54:57 +1100122/*
123 * Name of the host we are connecting to. This is the name given on the
124 * command line, or the HostName specified for the user-supplied name in a
125 * configuration file.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127extern char *host;
128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
130 * Flag to indicate that we have received a window change signal which has
131 * not yet been processed. This will cause a message indicating the new
132 * window size to be sent to the server a little later. This is volatile
133 * because this is updated in a signal handler.
134 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000135static volatile sig_atomic_t received_window_change_signal = 0;
136static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137
Damien Miller788f2122005-11-05 15:14:59 +1100138/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139static int in_non_blocking_mode = 0;
140
141/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000142static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000143static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100144static int escape_pending; /* Last character was the escape character */
145static int last_was_cr; /* Last character was a newline. */
146static int exit_status; /* Used to store the exit status of the command. */
147static int stdin_eof; /* EOF has been encountered on standard error. */
148static Buffer stdin_buffer; /* Buffer for stdin data. */
149static Buffer stdout_buffer; /* Buffer for stdout data. */
150static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000151static u_long stdin_bytes, stdout_bytes, stderr_bytes;
152static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100153static int connection_in; /* Connection to server (input). */
154static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000155static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000156static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100157static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Ben Lindstrombba81212001-06-25 05:01:22 +0000159static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000160int session_ident = -1;
161
Damien Miller0e220db2004-06-15 10:34:08 +1000162struct confirm_ctx {
163 int want_tty;
164 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000165 int want_x_fwd;
166 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000167 Buffer cmd;
168 char *term;
169 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000170 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000171};
172
Ben Lindstromf28f6342001-04-04 02:03:04 +0000173/*XXX*/
174extern Kex *xxx_kex;
175
Damien Miller0e220db2004-06-15 10:34:08 +1000176void ssh_process_session2_setup(int, int, int, Buffer *);
177
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178/* Restores stdin to blocking mode. */
179
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000181leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182{
Damien Miller95def091999-11-25 00:26:21 +1100183 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000184 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100185 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100186 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187}
188
Damien Miller95def091999-11-25 00:26:21 +1100189/* Puts stdin terminal in non-blocking mode. */
190
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000192enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Damien Miller95def091999-11-25 00:26:21 +1100194 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000195 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Damien Miller5428f641999-11-25 11:54:57 +1100198/*
199 * Signal handler for the window change signal (SIGWINCH). This just sets a
200 * flag indicating that the window has changed.
201 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100202/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static void
Damien Miller95def091999-11-25 00:26:21 +1100204window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller95def091999-11-25 00:26:21 +1100206 received_window_change_signal = 1;
207 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Damien Miller5428f641999-11-25 11:54:57 +1100210/*
211 * Signal handler for signals that cause the program to terminate. These
212 * signals must be trapped to restore terminal modes.
213 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100214/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static void
Damien Miller95def091999-11-25 00:26:21 +1100216signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000218 received_signal = sig;
219 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220}
221
Damien Miller5428f641999-11-25 11:54:57 +1100222/*
223 * Returns current time in seconds from Jan 1, 1970 with the maximum
224 * available resolution.
225 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Ben Lindstrombba81212001-06-25 05:01:22 +0000227static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000228get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229{
Damien Miller95def091999-11-25 00:26:21 +1100230 struct timeval tv;
231 gettimeofday(&tv, NULL);
232 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233}
234
Damien Miller17e7ed02005-06-17 12:54:33 +1000235#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
236void
237client_x11_get_proto(const char *display, const char *xauth_path,
238 u_int trusted, char **_proto, char **_data)
239{
240 char cmd[1024];
241 char line[512];
242 char xdisplay[512];
243 static char proto[512], data[512];
244 FILE *f;
245 int got_data = 0, generated = 0, do_unlink = 0, i;
246 char *xauthdir, *xauthfile;
247 struct stat st;
248
249 xauthdir = xauthfile = NULL;
250 *_proto = proto;
251 *_data = data;
252 proto[0] = data[0] = '\0';
253
254 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
255 debug("No xauth program.");
256 } else {
257 if (display == NULL) {
258 debug("x11_get_proto: DISPLAY not set");
259 return;
260 }
261 /*
262 * Handle FamilyLocal case where $DISPLAY does
263 * not match an authorization entry. For this we
264 * just try "xauth list unix:displaynum.screennum".
265 * XXX: "localhost" match to determine FamilyLocal
266 * is not perfect.
267 */
268 if (strncmp(display, "localhost:", 10) == 0) {
269 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
270 display + 10);
271 display = xdisplay;
272 }
273 if (trusted == 0) {
274 xauthdir = xmalloc(MAXPATHLEN);
275 xauthfile = xmalloc(MAXPATHLEN);
276 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
277 if (mkdtemp(xauthdir) != NULL) {
278 do_unlink = 1;
279 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
280 xauthdir);
281 snprintf(cmd, sizeof(cmd),
282 "%s -f %s generate %s " SSH_X11_PROTO
283 " untrusted timeout 1200 2>" _PATH_DEVNULL,
284 xauth_path, xauthfile, display);
285 debug2("x11_get_proto: %s", cmd);
286 if (system(cmd) == 0)
287 generated = 1;
288 }
289 }
290 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000291 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000292 xauth_path,
293 generated ? "-f " : "" ,
294 generated ? xauthfile : "",
295 display);
296 debug2("x11_get_proto: %s", cmd);
297 f = popen(cmd, "r");
298 if (f && fgets(line, sizeof(line), f) &&
299 sscanf(line, "%*s %511s %511s", proto, data) == 2)
300 got_data = 1;
301 if (f)
302 pclose(f);
303 }
304
305 if (do_unlink) {
306 unlink(xauthfile);
307 rmdir(xauthdir);
308 }
309 if (xauthdir)
310 xfree(xauthdir);
311 if (xauthfile)
312 xfree(xauthfile);
313
314 /*
315 * If we didn't get authentication data, just make up some
316 * data. The forwarding code will check the validity of the
317 * response anyway, and substitute this data. The X11
318 * server, however, will ignore this fake data and use
319 * whatever authentication mechanisms it was using otherwise
320 * for the local connection.
321 */
322 if (!got_data) {
323 u_int32_t rnd = 0;
324
325 logit("Warning: No xauth data; "
326 "using fake authentication data for X11 forwarding.");
327 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
328 for (i = 0; i < 16; i++) {
329 if (i % 4 == 0)
330 rnd = arc4random();
331 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
332 rnd & 0xff);
333 rnd >>= 8;
334 }
335 }
336}
337
Damien Miller5428f641999-11-25 11:54:57 +1100338/*
339 * This is called when the interactive is entered. This checks if there is
340 * an EOF coming on stdin. We must check this explicitly, as select() does
341 * not appear to wake up when redirecting from /dev/null.
342 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Ben Lindstrombba81212001-06-25 05:01:22 +0000344static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000345client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346{
Damien Miller95def091999-11-25 00:26:21 +1100347 int len;
348 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349
Damien Miller5428f641999-11-25 11:54:57 +1100350 /*
351 * If standard input is to be "redirected from /dev/null", we simply
352 * mark that we have seen an EOF and send an EOF message to the
353 * server. Otherwise, we try to read a single character; it appears
354 * that for some files, such /dev/null, select() never wakes up for
355 * read for this descriptor, which means that we never get EOF. This
356 * way we will get the EOF if stdin comes from /dev/null or similar.
357 */
Damien Miller95def091999-11-25 00:26:21 +1100358 if (stdin_null_flag) {
359 /* Fake EOF on stdin. */
360 debug("Sending eof.");
361 stdin_eof = 1;
362 packet_start(SSH_CMSG_EOF);
363 packet_send();
364 } else {
Damien Miller95def091999-11-25 00:26:21 +1100365 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
Damien Miller95def091999-11-25 00:26:21 +1100367 /* Check for immediate EOF on stdin. */
368 len = read(fileno(stdin), buf, 1);
369 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100370 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100371 debug("Sending eof.");
372 stdin_eof = 1;
373 packet_start(SSH_CMSG_EOF);
374 packet_send();
375 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100376 /*
377 * Got data. We must store the data in the buffer,
378 * and also process it as an escape character if
379 * appropriate.
380 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000381 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100382 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000383 else
Damien Miller95def091999-11-25 00:26:21 +1100384 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100385 }
Damien Miller95def091999-11-25 00:26:21 +1100386 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388}
389
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390
Damien Miller5428f641999-11-25 11:54:57 +1100391/*
392 * Make packets from buffered stdin data, and buffer them for sending to the
393 * connection.
394 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395
Ben Lindstrombba81212001-06-25 05:01:22 +0000396static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000397client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000399 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400
Damien Miller95def091999-11-25 00:26:21 +1100401 /* Send buffered stdin data to the server. */
402 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100403 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100404 len = buffer_len(&stdin_buffer);
405 /* Keep the packets at reasonable size. */
406 if (len > packet_get_maxsize())
407 len = packet_get_maxsize();
408 packet_start(SSH_CMSG_STDIN_DATA);
409 packet_put_string(buffer_ptr(&stdin_buffer), len);
410 packet_send();
411 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000412 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100413 /* If we have a pending EOF, send it now. */
414 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
415 packet_start(SSH_CMSG_EOF);
416 packet_send();
417 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419}
420
Damien Miller5428f641999-11-25 11:54:57 +1100421/*
422 * Checks if the client window has changed, and sends a packet about it to
423 * the server if so. The actual change is detected elsewhere (by a software
424 * interrupt on Unix); this just checks the flag and sends a message if
425 * appropriate.
426 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427
Ben Lindstrombba81212001-06-25 05:01:22 +0000428static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000429client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430{
Damien Miller1383bd82000-04-06 12:32:37 +1000431 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller1383bd82000-04-06 12:32:37 +1000433 if (! received_window_change_signal)
434 return;
435 /** XXX race */
436 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437
Damien Millerd3444942000-09-30 14:20:03 +1100438 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000439
440 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000441 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000442 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000443 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
444 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000445 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100446 packet_put_int((u_int)ws.ws_row);
447 packet_put_int((u_int)ws.ws_col);
448 packet_put_int((u_int)ws.ws_xpixel);
449 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000450 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452}
453
Damien Miller509b0102003-12-17 16:33:10 +1100454static void
455client_global_request_reply(int type, u_int32_t seq, void *ctxt)
456{
457 server_alive_timeouts = 0;
458 client_global_request_reply_fwd(type, seq, ctxt);
459}
460
461static void
462server_alive_check(void)
463{
464 if (++server_alive_timeouts > options.server_alive_count_max)
465 packet_disconnect("Timeout, server not responding.");
466 packet_start(SSH2_MSG_GLOBAL_REQUEST);
467 packet_put_cstring("keepalive@openssh.com");
468 packet_put_char(1); /* boolean: want reply */
469 packet_send();
470}
471
Damien Miller5428f641999-11-25 11:54:57 +1100472/*
473 * Waits until the client can do something (some data becomes available on
474 * one of the file descriptors).
475 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000476static void
Damien Miller5e953212001-01-30 09:14:00 +1100477client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000478 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479{
Damien Miller509b0102003-12-17 16:33:10 +1100480 struct timeval tv, *tvp;
481 int ret;
482
Damien Miller5e953212001-01-30 09:14:00 +1100483 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000484 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Damien Miller1383bd82000-04-06 12:32:37 +1000486 if (!compat20) {
487 /* Read from the connection, unless our buffers are full. */
488 if (buffer_len(&stdout_buffer) < buffer_high &&
489 buffer_len(&stderr_buffer) < buffer_high &&
490 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100491 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000492 /*
493 * Read from stdin, unless we have seen EOF or have very much
494 * buffered data to send to the server.
495 */
496 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100497 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000498
499 /* Select stdout/stderr if have data in buffer. */
500 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100501 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000502 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100503 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000504 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000505 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000506 if (session_closed && !channel_still_open() &&
507 !packet_have_data_to_write()) {
508 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100509 memset(*readsetp, 0, *nallocp);
510 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000511 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000512 } else {
513 FD_SET(connection_in, *readsetp);
514 }
Damien Miller1383bd82000-04-06 12:32:37 +1000515 }
516
Damien Miller95def091999-11-25 00:26:21 +1100517 /* Select server connection if have data to write to the server. */
518 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100519 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100520
Damien Miller0e220db2004-06-15 10:34:08 +1000521 if (control_fd != -1)
522 FD_SET(control_fd, *readsetp);
523
Damien Miller5428f641999-11-25 11:54:57 +1100524 /*
525 * Wait for something to happen. This will suspend the process until
526 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100527 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100528 */
Damien Miller95def091999-11-25 00:26:21 +1100529
Damien Miller509b0102003-12-17 16:33:10 +1100530 if (options.server_alive_interval == 0 || !compat20)
531 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000532 else {
Damien Miller509b0102003-12-17 16:33:10 +1100533 tv.tv_sec = options.server_alive_interval;
534 tv.tv_usec = 0;
535 tvp = &tv;
536 }
537 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
538 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100539 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000540
541 /*
542 * We have to clear the select masks, because we return.
543 * We have to return, because the mainloop checks for the flags
544 * set by the signal handlers.
545 */
Damien Miller79faeff2001-11-12 11:06:32 +1100546 memset(*readsetp, 0, *nallocp);
547 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000548
Damien Miller95def091999-11-25 00:26:21 +1100549 if (errno == EINTR)
550 return;
551 /* Note: we might still have data in the buffers. */
552 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
553 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100554 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100555 } else if (ret == 0)
556 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557}
558
Ben Lindstrombba81212001-06-25 05:01:22 +0000559static void
Damien Millerad833b32000-08-23 10:46:23 +1000560client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561{
Damien Miller95def091999-11-25 00:26:21 +1100562 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000563 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000564 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000565 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000566 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller95def091999-11-25 00:26:21 +1100568 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller5428f641999-11-25 11:54:57 +1100570 /*
571 * Free (and clear) the buffer to reduce the amount of data that gets
572 * written to swap.
573 */
Damien Millerad833b32000-08-23 10:46:23 +1000574 buffer_free(bin);
575 buffer_free(bout);
576 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller95def091999-11-25 00:26:21 +1100578 /* Send the suspend signal to the program itself. */
579 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Darren Tucker5d78de62004-11-05 20:35:44 +1100581 /* Reset window sizes in case they have changed */
582 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000585 buffer_init(bin);
586 buffer_init(bout);
587 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590}
591
Ben Lindstrombba81212001-06-25 05:01:22 +0000592static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100593client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594{
Damien Miller1383bd82000-04-06 12:32:37 +1000595 int len;
596 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller5428f641999-11-25 11:54:57 +1100598 /*
599 * Read input from the server, and add any such data to the buffer of
600 * the packet subsystem.
601 */
Damien Miller95def091999-11-25 00:26:21 +1100602 if (FD_ISSET(connection_in, readset)) {
603 /* Read as much as possible. */
604 len = read(connection_in, buf, sizeof(buf));
605 if (len == 0) {
606 /* Received EOF. The remote host has closed the connection. */
607 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
608 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610 quit_pending = 1;
611 return;
Damien Miller95def091999-11-25 00:26:21 +1100612 }
Damien Miller5428f641999-11-25 11:54:57 +1100613 /*
614 * There is a kernel bug on Solaris that causes select to
615 * sometimes wake up even though there is no data available.
616 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000617 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100618 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Damien Miller95def091999-11-25 00:26:21 +1100620 if (len < 0) {
621 /* An error has encountered. Perhaps there is a network problem. */
622 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
623 host, strerror(errno));
624 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100625 quit_pending = 1;
626 return;
627 }
628 packet_process_incoming(buf, len);
629 }
Damien Miller1383bd82000-04-06 12:32:37 +1000630}
631
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000632static void
Damien Miller0e220db2004-06-15 10:34:08 +1000633client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
634{
635 int id;
636 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000637
Damien Miller0e220db2004-06-15 10:34:08 +1000638 id = packet_get_int();
639 packet_check_eom();
640
641 if ((c = channel_lookup(id)) == NULL) {
642 error("%s: no channel for id %d", __func__, id);
643 return;
644 }
645
646 if (type == SSH2_MSG_CHANNEL_SUCCESS)
647 debug2("Request suceeded on channel %d", id);
648 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
649 error("Request failed on channel %d", id);
650 channel_free(c);
651 }
652}
653
654static void
655client_extra_session2_setup(int id, void *arg)
656{
657 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000658 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000659 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000660 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000661
Damien Miller0e220db2004-06-15 10:34:08 +1000662 if (cctx == NULL)
663 fatal("%s: cctx == NULL", __func__);
664 if ((c = channel_lookup(id)) == NULL)
665 fatal("%s: no channel for id %d", __func__, id);
666
Damien Miller46d38de2005-07-17 17:02:09 +1000667 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000668 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
669 char *proto, *data;
670 /* Get reasonable local authentication information. */
671 client_x11_get_proto(display, options.xauth_location,
672 options.forward_x11_trusted, &proto, &data);
673 /* Request forwarding with authentication spoofing. */
674 debug("Requesting X11 forwarding with authentication spoofing.");
675 x11_request_forwarding_with_spoofing(id, display, proto, data);
676 /* XXX wait for reply */
677 }
678
679 if (cctx->want_agent_fwd && options.forward_agent) {
680 debug("Requesting authentication agent forwarding.");
681 channel_request_start(id, "auth-agent-req@openssh.com", 0);
682 packet_send();
683 }
684
Darren Tuckerfc959702004-07-17 16:12:08 +1000685 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000686 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000687 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000688
Damien Miller0e220db2004-06-15 10:34:08 +1000689 c->confirm_ctx = NULL;
690 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000691 xfree(cctx->term);
692 if (cctx->env != NULL) {
693 for (i = 0; cctx->env[i] != NULL; i++)
694 xfree(cctx->env[i]);
695 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000696 }
Damien Miller3756dce2004-06-18 01:17:29 +1000697 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000698}
699
700static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100701client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000702{
703 Buffer m;
704 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000705 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000706 socklen_t addrlen;
707 struct sockaddr_storage addr;
708 struct confirm_ctx *cctx;
709 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000710 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000711 uid_t euid;
712 gid_t egid;
713
714 /*
715 * Accept connection on control socket
716 */
717 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
718 return;
719
720 memset(&addr, 0, sizeof(addr));
721 addrlen = sizeof(addr);
722 if ((client_fd = accept(control_fd,
723 (struct sockaddr*)&addr, &addrlen)) == -1) {
724 error("%s accept: %s", __func__, strerror(errno));
725 return;
726 }
727
728 if (getpeereid(client_fd, &euid, &egid) < 0) {
729 error("%s getpeereid failed: %s", __func__, strerror(errno));
730 close(client_fd);
731 return;
732 }
733 if ((euid != 0) && (getuid() != euid)) {
734 error("control mode uid mismatch: peer euid %u != uid %u",
735 (u_int) euid, (u_int) getuid());
736 close(client_fd);
737 return;
738 }
Damien Miller23f07702004-06-18 01:19:03 +1000739
Damien Miller0e220db2004-06-15 10:34:08 +1000740 unset_nonblock(client_fd);
741
Darren Tucker7ebfc102004-11-07 20:06:19 +1100742 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000743 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100744 if (ssh_msg_recv(client_fd, &m) == -1) {
745 error("%s: client msg_recv failed", __func__);
746 close(client_fd);
747 buffer_free(&m);
748 return;
749 }
Damien Miller13390022005-07-06 09:44:19 +1000750 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100751 error("%s: wrong client version %d", __func__, ver);
752 buffer_free(&m);
753 close(client_fd);
754 return;
755 }
Damien Miller0e220db2004-06-15 10:34:08 +1000756
Darren Tucker7ebfc102004-11-07 20:06:19 +1100757 allowed = 1;
758 command = buffer_get_int(&m);
759 flags = buffer_get_int(&m);
760
761 buffer_clear(&m);
762
763 switch (command) {
764 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000765 if (options.control_master == SSHCTL_MASTER_ASK ||
766 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100767 allowed = ask_permission("Allow shared connection "
768 "to %s? ", host);
769 /* continue below */
770 break;
771 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000772 if (options.control_master == SSHCTL_MASTER_ASK ||
773 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100774 allowed = ask_permission("Terminate shared connection "
775 "to %s? ", host);
776 if (allowed)
777 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100778 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100779 case SSHMUX_COMMAND_ALIVE_CHECK:
780 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
781 buffer_clear(&m);
782 buffer_put_int(&m, allowed);
783 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000784 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100785 error("%s: client msg_send failed", __func__);
786 close(client_fd);
787 buffer_free(&m);
788 return;
789 }
790 buffer_free(&m);
791 close(client_fd);
792 return;
793 default:
794 error("Unsupported command %d", command);
795 buffer_free(&m);
796 close(client_fd);
797 return;
798 }
799
800 /* Reply for SSHMUX_COMMAND_OPEN */
801 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000802 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000803 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000804 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000805 error("%s: client msg_send failed", __func__);
806 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000807 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000808 return;
809 }
Damien Miller0e220db2004-06-15 10:34:08 +1000810
Damien Miller23f07702004-06-18 01:19:03 +1000811 if (!allowed) {
812 error("Refused control connection");
813 close(client_fd);
814 buffer_free(&m);
815 return;
816 }
817
Darren Tucker7ebfc102004-11-07 20:06:19 +1100818 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000819 if (ssh_msg_recv(client_fd, &m) == -1) {
820 error("%s: client msg_recv failed", __func__);
821 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000822 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000823 return;
824 }
Damien Miller13390022005-07-06 09:44:19 +1000825 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000826 error("%s: wrong client version %d", __func__, ver);
827 buffer_free(&m);
828 close(client_fd);
829 return;
830 }
831
Damien Miller07d86be2006-03-26 14:19:21 +1100832 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100833 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
834 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000835 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
836 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000837 cctx->term = buffer_get_string(&m, &len);
838
839 cmd = buffer_get_string(&m, &len);
840 buffer_init(&cctx->cmd);
841 buffer_append(&cctx->cmd, cmd, strlen(cmd));
842
Damien Miller3756dce2004-06-18 01:17:29 +1000843 env_len = buffer_get_int(&m);
844 env_len = MIN(env_len, 4096);
845 debug3("%s: receiving %d env vars", __func__, env_len);
846 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100847 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000848 for (i = 0; i < env_len; i++)
849 cctx->env[i] = buffer_get_string(&m, &len);
850 cctx->env[i] = NULL;
851 }
852
Damien Miller0e220db2004-06-15 10:34:08 +1000853 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
854 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000855 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000856
857 /* Gather fds from client */
858 new_fd[0] = mm_receive_fd(client_fd);
859 new_fd[1] = mm_receive_fd(client_fd);
860 new_fd[2] = mm_receive_fd(client_fd);
861
862 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
863 new_fd[0], new_fd[1], new_fd[2]);
864
865 /* Try to pick up ttymodes from client before it goes raw */
866 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
867 error("%s: tcgetattr: %s", __func__, strerror(errno));
868
Darren Tucker7ebfc102004-11-07 20:06:19 +1100869 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000870 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000871 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000872 error("%s: client msg_send failed", __func__);
873 close(client_fd);
874 close(new_fd[0]);
875 close(new_fd[1]);
876 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000877 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100878 xfree(cctx->term);
879 if (env_len != 0) {
880 for (i = 0; i < env_len; i++)
881 xfree(cctx->env[i]);
882 xfree(cctx->env);
883 }
Damien Miller0e220db2004-06-15 10:34:08 +1000884 return;
885 }
886 buffer_free(&m);
887
888 /* enable nonblocking unless tty */
889 if (!isatty(new_fd[0]))
890 set_nonblock(new_fd[0]);
891 if (!isatty(new_fd[1]))
892 set_nonblock(new_fd[1]);
893 if (!isatty(new_fd[2]))
894 set_nonblock(new_fd[2]);
895
896 set_nonblock(client_fd);
897
Darren Tuckerfc959702004-07-17 16:12:08 +1000898 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000899 new_fd[0], new_fd[1], new_fd[2],
900 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
901 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
902
903 /* XXX */
904 c->ctl_fd = client_fd;
905
906 debug3("%s: channel_new: %d", __func__, c->self);
907
908 channel_send_open(c->self);
909 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
910}
911
912static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000913process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000914{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000915 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100916 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000917 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000918 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100919 u_short cancel_port;
920 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000921
922 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000923 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000924 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000925 if (s == NULL)
926 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000927 while (*s && isspace(*s))
928 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000929 if (*s == '-')
930 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000931 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000932 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000933
Darren Tucker1973c882004-05-24 10:34:36 +1000934 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000935 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000936 logit(" -L[bind_address:]port:host:hostport "
937 "Request local forward");
938 logit(" -R[bind_address:]port:host:hostport "
939 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000940 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000941 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100942 if (!options.permit_local_command)
943 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000944 logit(" !args "
945 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100946 goto out;
947 }
948
949 if (*s == '!' && options.permit_local_command) {
950 s++;
951 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000952 goto out;
953 }
954
955 if (*s == 'K') {
956 delete = 1;
957 s++;
958 }
959 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000960 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000961 goto out;
962 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000963 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000964 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000965 if (local && delete) {
966 logit("Not supported.");
967 goto out;
968 }
969 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000970 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000971 goto out;
972 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000973
974 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000975 while (*s && isspace(*s))
976 s++;
977
Darren Tuckere7066df2004-05-24 10:18:05 +1000978 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100979 cancel_port = 0;
980 cancel_host = hpdelim(&s); /* may be NULL */
981 if (s != NULL) {
982 cancel_port = a2port(s);
983 cancel_host = cleanhostname(cancel_host);
984 } else {
985 cancel_port = a2port(cancel_host);
986 cancel_host = NULL;
987 }
988 if (cancel_port == 0) {
989 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000990 goto out;
991 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100992 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000993 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100994 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000995 logit("Bad forwarding specification.");
996 goto out;
997 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000998 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100999 if (channel_setup_local_fwd_listener(fwd.listen_host,
1000 fwd.listen_port, fwd.connect_host,
1001 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +10001002 logit("Port forwarding failed.");
1003 goto out;
1004 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001005 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001006 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001007 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001008 fwd.connect_port) < 0) {
1009 logit("Port forwarding failed.");
1010 goto out;
1011 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001012 }
1013
Darren Tuckere7066df2004-05-24 10:18:05 +10001014 logit("Forwarding port.");
1015 }
1016
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001017out:
1018 signal(SIGINT, handler);
1019 enter_raw_mode();
1020 if (cmd)
1021 xfree(cmd);
1022}
1023
Damien Millerad833b32000-08-23 10:46:23 +10001024/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static int
Damien Millerad833b32000-08-23 10:46:23 +10001026process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1027{
1028 char string[1024];
1029 pid_t pid;
1030 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001031 u_int i;
1032 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001033 char *s;
1034
Damien Millereccb9de2005-06-17 12:59:34 +10001035 if (len <= 0)
1036 return (0);
1037
1038 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001039 /* Get one character at a time. */
1040 ch = buf[i];
1041
1042 if (escape_pending) {
1043 /* We have previously seen an escape character. */
1044 /* Clear the flag now. */
1045 escape_pending = 0;
1046
1047 /* Process the escaped character. */
1048 switch (ch) {
1049 case '.':
1050 /* Terminate the connection. */
1051 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1052 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001053
1054 quit_pending = 1;
1055 return -1;
1056
1057 case 'Z' - 64:
1058 /* Suspend the program. */
1059 /* Print a message to that effect to the user. */
1060 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1061 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001062
1063 /* Restore terminal modes and suspend. */
1064 client_suspend_self(bin, bout, berr);
1065
1066 /* We have been continued. */
1067 continue;
1068
Damien Miller54c45982003-05-15 10:20:13 +10001069 case 'B':
1070 if (compat20) {
1071 snprintf(string, sizeof string,
1072 "%cB\r\n", escape_char);
1073 buffer_append(berr, string,
1074 strlen(string));
1075 channel_request_start(session_ident,
1076 "break", 0);
1077 packet_put_int(1000);
1078 packet_send();
1079 }
1080 continue;
1081
Ben Lindstromf28f6342001-04-04 02:03:04 +00001082 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001083 if (compat20) {
1084 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001085 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001086 else
1087 need_rekeying = 1;
1088 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001089 continue;
1090
Damien Millerad833b32000-08-23 10:46:23 +10001091 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001092 /*
1093 * Detach the program (continue to serve connections,
1094 * but put in background and no more new connections).
1095 */
Damien Miller96507ef2001-11-12 10:52:25 +11001096 /* Restore tty modes. */
1097 leave_raw_mode();
1098
1099 /* Stop listening for new connections. */
1100 channel_stop_listening();
1101
1102 snprintf(string, sizeof string,
1103 "%c& [backgrounded]\n", escape_char);
1104 buffer_append(berr, string, strlen(string));
1105
1106 /* Fork into background. */
1107 pid = fork();
1108 if (pid < 0) {
1109 error("fork: %.100s", strerror(errno));
1110 continue;
1111 }
1112 if (pid != 0) { /* This is the parent. */
1113 /* The parent just exits. */
1114 exit(0);
1115 }
1116 /* The child continues serving connections. */
1117 if (compat20) {
1118 buffer_append(bin, "\004", 1);
1119 /* fake EOF on stdin */
1120 return -1;
1121 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001122 /*
1123 * Sending SSH_CMSG_EOF alone does not always appear
1124 * to be enough. So we try to send an EOF character
1125 * first.
1126 */
1127 packet_start(SSH_CMSG_STDIN_DATA);
1128 packet_put_string("\004", 1);
1129 packet_send();
1130 /* Close stdin. */
1131 stdin_eof = 1;
1132 if (buffer_len(bin) == 0) {
1133 packet_start(SSH_CMSG_EOF);
1134 packet_send();
1135 }
1136 }
Damien Miller96507ef2001-11-12 10:52:25 +11001137 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001138
1139 case '?':
1140 snprintf(string, sizeof string,
1141"%c?\r\n\
1142Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001143%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001144%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001145%cC - open a command line\r\n\
1146%cR - Request rekey (SSH protocol 2 only)\r\n\
1147%c^Z - suspend ssh\r\n\
1148%c# - list forwarded connections\r\n\
1149%c& - background ssh (when waiting for connections to terminate)\r\n\
1150%c? - this message\r\n\
1151%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001152(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001153 escape_char, escape_char, escape_char, escape_char,
1154 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001155 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001156 buffer_append(berr, string, strlen(string));
1157 continue;
1158
1159 case '#':
1160 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1161 buffer_append(berr, string, strlen(string));
1162 s = channel_open_message();
1163 buffer_append(berr, s, strlen(s));
1164 xfree(s);
1165 continue;
1166
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001167 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001168 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001169 continue;
1170
Damien Millerad833b32000-08-23 10:46:23 +10001171 default:
1172 if (ch != escape_char) {
1173 buffer_put_char(bin, escape_char);
1174 bytes++;
1175 }
1176 /* Escaped characters fall through here */
1177 break;
1178 }
1179 } else {
1180 /*
1181 * The previous character was not an escape char. Check if this
1182 * is an escape.
1183 */
1184 if (last_was_cr && ch == escape_char) {
1185 /* It is. Set the flag and continue to next character. */
1186 escape_pending = 1;
1187 continue;
1188 }
1189 }
1190
1191 /*
1192 * Normal character. Record whether it was a newline,
1193 * and append it to the buffer.
1194 */
1195 last_was_cr = (ch == '\r' || ch == '\n');
1196 buffer_put_char(bin, ch);
1197 bytes++;
1198 }
1199 return bytes;
1200}
1201
Ben Lindstrombba81212001-06-25 05:01:22 +00001202static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001203client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001204{
Damien Miller166fca82000-04-20 07:42:21 +10001205 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001206 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001207
Damien Miller95def091999-11-25 00:26:21 +11001208 /* Read input from stdin. */
1209 if (FD_ISSET(fileno(stdin), readset)) {
1210 /* Read as much as possible. */
1211 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001212 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1213 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001214 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001215 /*
1216 * Received EOF or error. They are treated
1217 * similarly, except that an error message is printed
1218 * if it was an error condition.
1219 */
Damien Miller95def091999-11-25 00:26:21 +11001220 if (len < 0) {
1221 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1222 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001223 }
1224 /* Mark that we have seen EOF. */
1225 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001226 /*
1227 * Send an EOF message to the server unless there is
1228 * data in the buffer. If there is data in the
1229 * buffer, no message will be sent now. Code
1230 * elsewhere will send the EOF when the buffer
1231 * becomes empty if stdin_eof is set.
1232 */
Damien Miller95def091999-11-25 00:26:21 +11001233 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234 packet_start(SSH_CMSG_EOF);
1235 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001236 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001237 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001238 /*
1239 * Normal successful read, and no escape character.
1240 * Just append the data to buffer.
1241 */
Damien Miller95def091999-11-25 00:26:21 +11001242 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001243 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001244 /*
1245 * Normal, successful read. But we have an escape character
1246 * and have to process the characters one by one.
1247 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001248 if (process_escapes(&stdin_buffer, &stdout_buffer,
1249 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001250 return;
Damien Miller95def091999-11-25 00:26:21 +11001251 }
1252 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001253}
1254
Ben Lindstrombba81212001-06-25 05:01:22 +00001255static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001256client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257{
Damien Miller95def091999-11-25 00:26:21 +11001258 int len;
1259 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001260
Damien Miller95def091999-11-25 00:26:21 +11001261 /* Write buffered output to stdout. */
1262 if (FD_ISSET(fileno(stdout), writeset)) {
1263 /* Write as much data as possible. */
1264 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001265 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001266 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001267 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001268 len = 0;
1269 else {
Damien Miller5428f641999-11-25 11:54:57 +11001270 /*
1271 * An error or EOF was encountered. Put an
1272 * error message to stderr buffer.
1273 */
Damien Miller95def091999-11-25 00:26:21 +11001274 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1275 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001276 quit_pending = 1;
1277 return;
1278 }
1279 }
1280 /* Consume printed data from the buffer. */
1281 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001282 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283 }
Damien Miller95def091999-11-25 00:26:21 +11001284 /* Write buffered output to stderr. */
1285 if (FD_ISSET(fileno(stderr), writeset)) {
1286 /* Write as much data as possible. */
1287 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001288 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001289 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001290 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001291 len = 0;
1292 else {
Damien Miller5428f641999-11-25 11:54:57 +11001293 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001294 quit_pending = 1;
1295 return;
1296 }
1297 }
1298 /* Consume printed characters from the buffer. */
1299 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001300 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001301 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001302}
1303
Damien Miller5428f641999-11-25 11:54:57 +11001304/*
Damien Millerb38eff82000-04-01 11:09:21 +10001305 * Get packets from the connection input buffer, and process them as long as
1306 * there are packets available.
1307 *
1308 * Any unknown packets received during the actual
1309 * session cause the session to terminate. This is
1310 * intended to make debugging easier since no
1311 * confirmations are sent. Any compatible protocol
1312 * extensions must be negotiated during the
1313 * preparatory phase.
1314 */
1315
Ben Lindstrombba81212001-06-25 05:01:22 +00001316static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001317client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001318{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001319 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001320}
1321
Damien Millerad833b32000-08-23 10:46:23 +10001322/* scan buf[] for '~' before sending data to the peer */
1323
Ben Lindstrombba81212001-06-25 05:01:22 +00001324static int
Damien Millerad833b32000-08-23 10:46:23 +10001325simple_escape_filter(Channel *c, char *buf, int len)
1326{
1327 /* XXX we assume c->extended is writeable */
1328 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1329}
1330
Ben Lindstrombba81212001-06-25 05:01:22 +00001331static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001332client_channel_closed(int id, void *arg)
1333{
Damien Miller3ec27592001-10-12 11:35:04 +10001334 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001335 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001336 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001337}
1338
Damien Millerb38eff82000-04-01 11:09:21 +10001339/*
Damien Miller5428f641999-11-25 11:54:57 +11001340 * Implements the interactive session with the server. This is called after
1341 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001342 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1343 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001344 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345
Damien Miller4af51302000-04-16 11:18:38 +10001346int
Damien Millerad833b32000-08-23 10:46:23 +10001347client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001348{
Damien Miller5e953212001-01-30 09:14:00 +11001349 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001350 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001351 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1352 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001353 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001354
Damien Miller95def091999-11-25 00:26:21 +11001355 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001356
Damien Miller95def091999-11-25 00:26:21 +11001357 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001358
Damien Miller95def091999-11-25 00:26:21 +11001359 /* Initialize variables. */
1360 escape_pending = 0;
1361 last_was_cr = 1;
1362 exit_status = -1;
1363 stdin_eof = 0;
1364 buffer_high = 64 * 1024;
1365 connection_in = packet_get_connection_in();
1366 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001367 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001368 if (control_fd != -1)
1369 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001370
1371 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001372 /* enable nonblocking unless tty */
1373 if (!isatty(fileno(stdin)))
1374 set_nonblock(fileno(stdin));
1375 if (!isatty(fileno(stdout)))
1376 set_nonblock(fileno(stdout));
1377 if (!isatty(fileno(stderr)))
1378 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001379 max_fd = MAX(max_fd, fileno(stdin));
1380 max_fd = MAX(max_fd, fileno(stdout));
1381 max_fd = MAX(max_fd, fileno(stderr));
1382 }
Damien Miller95def091999-11-25 00:26:21 +11001383 stdin_bytes = 0;
1384 stdout_bytes = 0;
1385 stderr_bytes = 0;
1386 quit_pending = 0;
1387 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388
Damien Miller95def091999-11-25 00:26:21 +11001389 /* Initialize buffers. */
1390 buffer_init(&stdin_buffer);
1391 buffer_init(&stdout_buffer);
1392 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
Damien Millerb38eff82000-04-01 11:09:21 +10001394 client_init_dispatch();
1395
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001396 /*
1397 * Set signal handlers, (e.g. to restore non-blocking mode)
1398 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1399 */
Darren Tucker07336da2004-11-05 20:02:16 +11001400 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1401 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001402 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1403 signal(SIGINT, signal_handler);
1404 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1405 signal(SIGQUIT, signal_handler);
1406 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1407 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001408 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409
Damien Miller95def091999-11-25 00:26:21 +11001410 if (have_pty)
1411 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001412
Ben Lindstrom5b828322001-02-09 01:34:36 +00001413 if (compat20) {
1414 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001415 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001416 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001417 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001418 if (session_ident != -1)
1419 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001420 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001421 } else {
1422 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001423 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001424 }
Damien Millerad833b32000-08-23 10:46:23 +10001425
Damien Miller95def091999-11-25 00:26:21 +11001426 /* Main loop of the client for the interactive session mode. */
1427 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428
Damien Miller5428f641999-11-25 11:54:57 +11001429 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001430 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001431
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001432 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001433 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001434
1435 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001436
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001437 if (rekeying) {
1438 debug("rekeying in progress");
1439 } else {
1440 /*
1441 * Make packets of buffered stdin data, and buffer
1442 * them for sending to the server.
1443 */
1444 if (!compat20)
1445 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001446
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001447 /*
1448 * Make packets from buffered channel data, and
1449 * enqueue them for sending to the server.
1450 */
1451 if (packet_not_very_much_data_to_write())
1452 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001453
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001454 /*
1455 * Check if the window size has changed, and buffer a
1456 * message about it to the server if so.
1457 */
1458 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001459
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001460 if (quit_pending)
1461 break;
1462 }
Damien Miller5428f641999-11-25 11:54:57 +11001463 /*
1464 * Wait until we have something to do (something becomes
1465 * available on one of the descriptors).
1466 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001467 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001468 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001469 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001470
Damien Miller95def091999-11-25 00:26:21 +11001471 if (quit_pending)
1472 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001474 /* Do channel operations unless rekeying in progress. */
1475 if (!rekeying) {
1476 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001477 if (need_rekeying || packet_need_rekeying()) {
1478 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001479 xxx_kex->done = 0;
1480 kex_send_kexinit(xxx_kex);
1481 need_rekeying = 0;
1482 }
1483 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001484
Damien Miller1383bd82000-04-06 12:32:37 +10001485 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001486 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001487
Damien Miller0e220db2004-06-15 10:34:08 +10001488 /* Accept control connections. */
1489 client_process_control(readset);
1490
Damien Miller1383bd82000-04-06 12:32:37 +10001491 if (quit_pending)
1492 break;
1493
1494 if (!compat20) {
1495 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001496 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001497 /*
1498 * Process output to stdout and stderr. Output to
1499 * the connection is processed elsewhere (above).
1500 */
Damien Miller5e953212001-01-30 09:14:00 +11001501 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001502 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503
Damien Miller5428f641999-11-25 11:54:57 +11001504 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001505 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001506 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001507 }
Damien Miller5e953212001-01-30 09:14:00 +11001508 if (readset)
1509 xfree(readset);
1510 if (writeset)
1511 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512
Damien Miller95def091999-11-25 00:26:21 +11001513 /* Terminate the session. */
1514
1515 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001516 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001517
Ben Lindstrom601e4362001-06-21 03:19:23 +00001518 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001519
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001520 if (have_pty)
1521 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001522
1523 /* restore blocking io */
1524 if (!isatty(fileno(stdin)))
1525 unset_nonblock(fileno(stdin));
1526 if (!isatty(fileno(stdout)))
1527 unset_nonblock(fileno(stdout));
1528 if (!isatty(fileno(stderr)))
1529 unset_nonblock(fileno(stderr));
1530
Damien Millerd6965512003-12-17 16:31:53 +11001531 /*
1532 * If there was no shell or command requested, there will be no remote
1533 * exit status to be returned. In that case, clear error code if the
1534 * connection was deliberately terminated at this end.
1535 */
1536 if (no_shell_flag && received_signal == SIGTERM) {
1537 received_signal = 0;
1538 exit_status = 0;
1539 }
1540
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001541 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001542 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001543
1544 /*
1545 * In interactive mode (with pseudo tty) display a message indicating
1546 * that the connection has been closed.
1547 */
1548 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1549 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1550 buffer_append(&stderr_buffer, buf, strlen(buf));
1551 }
1552
Damien Miller95def091999-11-25 00:26:21 +11001553 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001554 while (buffer_len(&stdout_buffer) > 0) {
1555 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001556 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001557 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001558 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001559 break;
1560 }
Damien Miller95def091999-11-25 00:26:21 +11001561 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001562 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001563 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564
Damien Miller95def091999-11-25 00:26:21 +11001565 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001566 while (buffer_len(&stderr_buffer) > 0) {
1567 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001568 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001569 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001570 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001571 break;
1572 }
Damien Miller95def091999-11-25 00:26:21 +11001573 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001574 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001575 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001576
Damien Miller95def091999-11-25 00:26:21 +11001577 /* Clear and free any buffers. */
1578 memset(buf, 0, sizeof(buf));
1579 buffer_free(&stdin_buffer);
1580 buffer_free(&stdout_buffer);
1581 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582
Damien Miller95def091999-11-25 00:26:21 +11001583 /* Report bytes transferred, and transfer rates. */
1584 total_time = get_current_time() - start_time;
1585 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001586 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001587 if (total_time > 0)
1588 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001589 stdin_bytes / total_time, stdout_bytes / total_time,
1590 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001591
1592 /* Return the exit status of the program. */
1593 debug("Exit status %d", exit_status);
1594 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001595}
Damien Millerb38eff82000-04-01 11:09:21 +10001596
1597/*********/
1598
Ben Lindstrombba81212001-06-25 05:01:22 +00001599static void
Damien Miller630d6f42002-01-22 23:17:30 +11001600client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001601{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001602 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001603 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001604 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001605 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001606 memset(data, 0, data_len);
1607 xfree(data);
1608}
Ben Lindstrombba81212001-06-25 05:01:22 +00001609static void
Damien Miller630d6f42002-01-22 23:17:30 +11001610client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001611{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001612 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001613 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001614 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001615 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001616 memset(data, 0, data_len);
1617 xfree(data);
1618}
Ben Lindstrombba81212001-06-25 05:01:22 +00001619static void
Damien Miller630d6f42002-01-22 23:17:30 +11001620client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001621{
Damien Millerb38eff82000-04-01 11:09:21 +10001622 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001623 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001624 /* Acknowledge the exit. */
1625 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1626 packet_send();
1627 /*
1628 * Must wait for packet to be sent since we are
1629 * exiting the loop.
1630 */
1631 packet_write_wait();
1632 /* Flag that we want to exit. */
1633 quit_pending = 1;
1634}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001635static void
1636client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1637{
1638 Channel *c = NULL;
1639 int remote_id, sock;
1640
1641 /* Read the remote channel number from the message. */
1642 remote_id = packet_get_int();
1643 packet_check_eom();
1644
1645 /*
1646 * Get a connection to the local authentication agent (this may again
1647 * get forwarded).
1648 */
1649 sock = ssh_get_authentication_socket();
1650
1651 /*
1652 * If we could not connect the agent, send an error message back to
1653 * the server. This should never happen unless the agent dies,
1654 * because authentication forwarding is only enabled if we have an
1655 * agent.
1656 */
1657 if (sock >= 0) {
1658 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1659 -1, 0, 0, 0, "authentication agent connection", 1);
1660 c->remote_id = remote_id;
1661 c->force_drain = 1;
1662 }
1663 if (c == NULL) {
1664 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1665 packet_put_int(remote_id);
1666 } else {
1667 /* Send a confirmation to the remote host. */
1668 debug("Forwarding authentication connection.");
1669 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1670 packet_put_int(remote_id);
1671 packet_put_int(c->self);
1672 }
1673 packet_send();
1674}
Damien Millerb38eff82000-04-01 11:09:21 +10001675
Ben Lindstrombba81212001-06-25 05:01:22 +00001676static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001677client_request_forwarded_tcpip(const char *request_type, int rchan)
1678{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001679 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001680 char *listen_address, *originator_address;
1681 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001682 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001683
1684 /* Get rest of the packet */
1685 listen_address = packet_get_string(NULL);
1686 listen_port = packet_get_int();
1687 originator_address = packet_get_string(NULL);
1688 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001689 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001690
1691 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1692 listen_address, listen_port, originator_address, originator_port);
1693
Ben Lindstrom173e6462001-07-04 05:15:15 +00001694 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001695 if (sock < 0) {
1696 xfree(originator_address);
1697 xfree(listen_address);
1698 return NULL;
1699 }
1700 c = channel_new("forwarded-tcpip",
1701 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1702 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001703 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001704 xfree(originator_address);
1705 xfree(listen_address);
1706 return c;
1707}
1708
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001709static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001710client_request_x11(const char *request_type, int rchan)
1711{
1712 Channel *c = NULL;
1713 char *originator;
1714 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001715 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001716
1717 if (!options.forward_x11) {
1718 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001719 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001720 return NULL;
1721 }
1722 originator = packet_get_string(NULL);
1723 if (datafellows & SSH_BUG_X11FWD) {
1724 debug2("buggy server: x11 request w/o originator_port");
1725 originator_port = 0;
1726 } else {
1727 originator_port = packet_get_int();
1728 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001729 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001730 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001731 debug("client_request_x11: request from %s %d", originator,
1732 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001733 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001734 sock = x11_connect_display();
1735 if (sock < 0)
1736 return NULL;
1737 c = channel_new("x11",
1738 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001739 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001740 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001741 return c;
1742}
1743
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001744static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001745client_request_agent(const char *request_type, int rchan)
1746{
1747 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001748 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001749
1750 if (!options.forward_agent) {
1751 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001752 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001753 return NULL;
1754 }
1755 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001756 if (sock < 0)
1757 return NULL;
1758 c = channel_new("authentication agent connection",
1759 SSH_CHANNEL_OPEN, sock, sock, -1,
1760 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001761 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001762 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001763 return c;
1764}
1765
Damien Millerbd483e72000-04-30 10:00:53 +10001766/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001767static void
Damien Miller630d6f42002-01-22 23:17:30 +11001768client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001769{
1770 Channel *c = NULL;
1771 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001772 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001773 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001774
1775 ctype = packet_get_string(&len);
1776 rchan = packet_get_int();
1777 rwindow = packet_get_int();
1778 rmaxpack = packet_get_int();
1779
Damien Millere247cc42000-05-07 12:03:14 +10001780 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001781 ctype, rchan, rwindow, rmaxpack);
1782
Damien Miller0bc1bd82000-11-13 22:57:25 +11001783 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1784 c = client_request_forwarded_tcpip(ctype, rchan);
1785 } else if (strcmp(ctype, "x11") == 0) {
1786 c = client_request_x11(ctype, rchan);
1787 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1788 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001789 }
1790/* XXX duplicate : */
1791 if (c != NULL) {
1792 debug("confirm %s", ctype);
1793 c->remote_id = rchan;
1794 c->remote_window = rwindow;
1795 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001796 if (c->type != SSH_CHANNEL_CONNECTING) {
1797 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1798 packet_put_int(c->remote_id);
1799 packet_put_int(c->self);
1800 packet_put_int(c->local_window);
1801 packet_put_int(c->local_maxpacket);
1802 packet_send();
1803 }
Damien Millerbd483e72000-04-30 10:00:53 +10001804 } else {
1805 debug("failure %s", ctype);
1806 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1807 packet_put_int(rchan);
1808 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001809 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001810 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001811 packet_put_cstring("");
1812 }
Damien Millerbd483e72000-04-30 10:00:53 +10001813 packet_send();
1814 }
1815 xfree(ctype);
1816}
Ben Lindstrombba81212001-06-25 05:01:22 +00001817static void
Damien Miller630d6f42002-01-22 23:17:30 +11001818client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001819{
1820 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001821 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001822 char *rtype;
1823
1824 id = packet_get_int();
1825 rtype = packet_get_string(NULL);
1826 reply = packet_get_char();
1827
1828 debug("client_input_channel_req: channel %d rtype %s reply %d",
1829 id, rtype, reply);
1830
Damien Miller3bbd8782004-06-18 22:23:22 +10001831 if (id == -1) {
1832 error("client_input_channel_req: request for channel -1");
1833 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001834 error("client_input_channel_req: channel %d: unknown channel", id);
1835 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001836 exitval = packet_get_int();
1837 if (id == session_ident) {
1838 success = 1;
1839 exit_status = exitval;
1840 } else if (c->ctl_fd == -1) {
1841 error("client_input_channel_req: unexpected channel %d",
1842 session_ident);
1843 } else {
1844 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1845 success = 1;
1846 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001847 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001848 }
1849 if (reply) {
1850 packet_start(success ?
1851 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001852 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001853 packet_send();
1854 }
1855 xfree(rtype);
1856}
Damien Millerc3fa4072002-01-22 23:21:58 +11001857static void
1858client_input_global_request(int type, u_int32_t seq, void *ctxt)
1859{
1860 char *rtype;
1861 int want_reply;
1862 int success = 0;
1863
1864 rtype = packet_get_string(NULL);
1865 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001866 debug("client_input_global_request: rtype %s want_reply %d",
1867 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001868 if (want_reply) {
1869 packet_start(success ?
1870 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1871 packet_send();
1872 packet_write_wait();
1873 }
1874 xfree(rtype);
1875}
Damien Millerbd483e72000-04-30 10:00:53 +10001876
Damien Miller0e220db2004-06-15 10:34:08 +10001877void
Darren Tuckerfc959702004-07-17 16:12:08 +10001878client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001879 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001880 dispatch_fn *subsys_repl)
1881{
1882 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001883 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001884
1885 debug2("%s: id %d", __func__, id);
1886
Darren Tucker5d78de62004-11-05 20:35:44 +11001887 if ((c = channel_lookup(id)) == NULL)
1888 fatal("client_session2_setup: channel %d: unknown channel", id);
1889
Damien Miller0e220db2004-06-15 10:34:08 +10001890 if (want_tty) {
1891 struct winsize ws;
1892 struct termios tio;
1893
1894 /* Store window size in the packet. */
1895 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1896 memset(&ws, 0, sizeof(ws));
1897
1898 channel_request_start(id, "pty-req", 0);
1899 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001900 packet_put_int((u_int)ws.ws_col);
1901 packet_put_int((u_int)ws.ws_row);
1902 packet_put_int((u_int)ws.ws_xpixel);
1903 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001904 tio = get_saved_tio();
1905 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1906 packet_send();
1907 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001908 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001909 }
1910
1911 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001912 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001913 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001914 char *name, *val;
1915
1916 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001917 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001918 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001919 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001920 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001921 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001922 continue;
1923 }
1924 *val++ = '\0';
1925
1926 matched = 0;
1927 for (j = 0; j < options.num_send_env; j++) {
1928 if (match_pattern(name, options.send_env[j])) {
1929 matched = 1;
1930 break;
1931 }
1932 }
1933 if (!matched) {
1934 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001935 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001936 continue;
1937 }
1938
1939 debug("Sending env %s = %s", name, val);
1940 channel_request_start(id, "env", 0);
1941 packet_put_cstring(name);
1942 packet_put_cstring(val);
1943 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001944 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001945 }
1946 }
1947
1948 len = buffer_len(cmd);
1949 if (len > 0) {
1950 if (len > 900)
1951 len = 900;
1952 if (want_subsystem) {
1953 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1954 channel_request_start(id, "subsystem", subsys_repl != NULL);
1955 if (subsys_repl != NULL) {
1956 /* register callback for reply */
1957 /* XXX we assume that client_loop has already been called */
1958 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1959 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1960 }
1961 } else {
1962 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1963 channel_request_start(id, "exec", 0);
1964 }
1965 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1966 packet_send();
1967 } else {
1968 channel_request_start(id, "shell", 0);
1969 packet_send();
1970 }
1971}
1972
Ben Lindstrombba81212001-06-25 05:01:22 +00001973static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001974client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001975{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001976 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001977
Damien Miller1383bd82000-04-06 12:32:37 +10001978 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1979 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1980 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1981 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001982 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001983 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1984 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001985 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001986 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001987 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001988
1989 /* rekeying */
1990 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001991
1992 /* global request reply messages */
1993 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1994 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001995}
Ben Lindstrombba81212001-06-25 05:01:22 +00001996static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001997client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001998{
1999 dispatch_init(NULL);
2000 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2001 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2002 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002003 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2004 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2005 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002006 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2007 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2008 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002009
2010 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002011 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002012 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2013 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002014}
Ben Lindstrombba81212001-06-25 05:01:22 +00002015static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002016client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002017{
2018 client_init_dispatch_13();
2019 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2020 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2021}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002022static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002023client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002024{
Damien Miller1383bd82000-04-06 12:32:37 +10002025 if (compat20)
2026 client_init_dispatch_20();
2027 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002028 client_init_dispatch_13();
2029 else
2030 client_init_dispatch_15();
2031}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002032
2033/* client specific fatal cleanup */
2034void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002035cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002036{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002037 leave_raw_mode();
2038 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002039 if (options.control_path != NULL && control_fd != -1)
2040 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002041 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002042}