blob: 9398dc9897ef3fd4610c9342a8dc29f9985ac74c [file] [log] [blame]
Damien Millere6b3b612006-07-24 14:01:23 +10001/* $OpenBSD: clientloop.c,v 1.169 2006/07/17 01:31:09 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>
65#ifdef HAVE_SYS_STAT_H
66# include <sys/stat.h>
67#endif
Damien Millere3b60b52006-07-10 21:08:03 +100068#include <sys/socket.h>
Damien Miller17e91c02006-03-15 11:28:34 +110069#include <sys/ioctl.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110070
Damien Millerc7b06362006-03-15 11:53:45 +110071#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100072#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110073#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110074#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110075#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110076#include <signal.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110077#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100078#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "ssh1.h"
82#include "ssh2.h"
83#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084#include "packet.h"
85#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100086#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000087#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100088#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100089#include "buffer.h"
90#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110091#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000092#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000093#include "log.h"
94#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000095#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +110096#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000097#include "authfd.h"
98#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100099#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000100#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000101#include "monitor_fdpass.h"
102#include "match.h"
103#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100104
105/* import options */
106extern Options options;
107
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108/* Flag indicating that stdin should be redirected from /dev/null. */
109extern int stdin_null_flag;
110
Damien Millerd6965512003-12-17 16:31:53 +1100111/* Flag indicating that no shell has been requested */
112extern int no_shell_flag;
113
Damien Miller0e220db2004-06-15 10:34:08 +1000114/* Control socket */
115extern int control_fd;
116
Damien Miller5428f641999-11-25 11:54:57 +1100117/*
118 * Name of the host we are connecting to. This is the name given on the
119 * command line, or the HostName specified for the user-supplied name in a
120 * configuration file.
121 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122extern char *host;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Flag to indicate that we have received a window change signal which has
126 * not yet been processed. This will cause a message indicating the new
127 * window size to be sent to the server a little later. This is volatile
128 * because this is updated in a signal handler.
129 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000130static volatile sig_atomic_t received_window_change_signal = 0;
131static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller788f2122005-11-05 15:14:59 +1100133/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134static int in_non_blocking_mode = 0;
135
136/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000137static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000138static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100139static int escape_pending; /* Last character was the escape character */
140static int last_was_cr; /* Last character was a newline. */
141static int exit_status; /* Used to store the exit status of the command. */
142static int stdin_eof; /* EOF has been encountered on standard error. */
143static Buffer stdin_buffer; /* Buffer for stdin data. */
144static Buffer stdout_buffer; /* Buffer for stdout data. */
145static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000146static u_long stdin_bytes, stdout_bytes, stderr_bytes;
147static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100148static int connection_in; /* Connection to server (input). */
149static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000150static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000151static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100152static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153
Ben Lindstrombba81212001-06-25 05:01:22 +0000154static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000155int session_ident = -1;
156
Damien Miller0e220db2004-06-15 10:34:08 +1000157struct confirm_ctx {
158 int want_tty;
159 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000160 int want_x_fwd;
161 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000162 Buffer cmd;
163 char *term;
164 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000165 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000166};
167
Ben Lindstromf28f6342001-04-04 02:03:04 +0000168/*XXX*/
169extern Kex *xxx_kex;
170
Damien Miller0e220db2004-06-15 10:34:08 +1000171void ssh_process_session2_setup(int, int, int, Buffer *);
172
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173/* Restores stdin to blocking mode. */
174
Ben Lindstrombba81212001-06-25 05:01:22 +0000175static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000176leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177{
Damien Miller95def091999-11-25 00:26:21 +1100178 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000179 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100180 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100181 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182}
183
Damien Miller95def091999-11-25 00:26:21 +1100184/* Puts stdin terminal in non-blocking mode. */
185
Ben Lindstrombba81212001-06-25 05:01:22 +0000186static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000187enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188{
Damien Miller95def091999-11-25 00:26:21 +1100189 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000190 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191}
192
Damien Miller5428f641999-11-25 11:54:57 +1100193/*
194 * Signal handler for the window change signal (SIGWINCH). This just sets a
195 * flag indicating that the window has changed.
196 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100197/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000198static void
Damien Miller95def091999-11-25 00:26:21 +1100199window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200{
Damien Miller95def091999-11-25 00:26:21 +1100201 received_window_change_signal = 1;
202 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203}
204
Damien Miller5428f641999-11-25 11:54:57 +1100205/*
206 * Signal handler for signals that cause the program to terminate. These
207 * signals must be trapped to restore terminal modes.
208 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100209/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static void
Damien Miller95def091999-11-25 00:26:21 +1100211signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000213 received_signal = sig;
214 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Returns current time in seconds from Jan 1, 1970 with the maximum
219 * available resolution.
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000223get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224{
Damien Miller95def091999-11-25 00:26:21 +1100225 struct timeval tv;
226 gettimeofday(&tv, NULL);
227 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228}
229
Damien Miller17e7ed02005-06-17 12:54:33 +1000230#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
231void
232client_x11_get_proto(const char *display, const char *xauth_path,
233 u_int trusted, char **_proto, char **_data)
234{
235 char cmd[1024];
236 char line[512];
237 char xdisplay[512];
238 static char proto[512], data[512];
239 FILE *f;
240 int got_data = 0, generated = 0, do_unlink = 0, i;
241 char *xauthdir, *xauthfile;
242 struct stat st;
243
244 xauthdir = xauthfile = NULL;
245 *_proto = proto;
246 *_data = data;
247 proto[0] = data[0] = '\0';
248
249 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
250 debug("No xauth program.");
251 } else {
252 if (display == NULL) {
253 debug("x11_get_proto: DISPLAY not set");
254 return;
255 }
256 /*
257 * Handle FamilyLocal case where $DISPLAY does
258 * not match an authorization entry. For this we
259 * just try "xauth list unix:displaynum.screennum".
260 * XXX: "localhost" match to determine FamilyLocal
261 * is not perfect.
262 */
263 if (strncmp(display, "localhost:", 10) == 0) {
264 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
265 display + 10);
266 display = xdisplay;
267 }
268 if (trusted == 0) {
269 xauthdir = xmalloc(MAXPATHLEN);
270 xauthfile = xmalloc(MAXPATHLEN);
271 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
272 if (mkdtemp(xauthdir) != NULL) {
273 do_unlink = 1;
274 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
275 xauthdir);
276 snprintf(cmd, sizeof(cmd),
277 "%s -f %s generate %s " SSH_X11_PROTO
278 " untrusted timeout 1200 2>" _PATH_DEVNULL,
279 xauth_path, xauthfile, display);
280 debug2("x11_get_proto: %s", cmd);
281 if (system(cmd) == 0)
282 generated = 1;
283 }
284 }
285 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000286 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000287 xauth_path,
288 generated ? "-f " : "" ,
289 generated ? xauthfile : "",
290 display);
291 debug2("x11_get_proto: %s", cmd);
292 f = popen(cmd, "r");
293 if (f && fgets(line, sizeof(line), f) &&
294 sscanf(line, "%*s %511s %511s", proto, data) == 2)
295 got_data = 1;
296 if (f)
297 pclose(f);
298 }
299
300 if (do_unlink) {
301 unlink(xauthfile);
302 rmdir(xauthdir);
303 }
304 if (xauthdir)
305 xfree(xauthdir);
306 if (xauthfile)
307 xfree(xauthfile);
308
309 /*
310 * If we didn't get authentication data, just make up some
311 * data. The forwarding code will check the validity of the
312 * response anyway, and substitute this data. The X11
313 * server, however, will ignore this fake data and use
314 * whatever authentication mechanisms it was using otherwise
315 * for the local connection.
316 */
317 if (!got_data) {
318 u_int32_t rnd = 0;
319
320 logit("Warning: No xauth data; "
321 "using fake authentication data for X11 forwarding.");
322 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
323 for (i = 0; i < 16; i++) {
324 if (i % 4 == 0)
325 rnd = arc4random();
326 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
327 rnd & 0xff);
328 rnd >>= 8;
329 }
330 }
331}
332
Damien Miller5428f641999-11-25 11:54:57 +1100333/*
334 * This is called when the interactive is entered. This checks if there is
335 * an EOF coming on stdin. We must check this explicitly, as select() does
336 * not appear to wake up when redirecting from /dev/null.
337 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338
Ben Lindstrombba81212001-06-25 05:01:22 +0000339static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000340client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341{
Damien Miller95def091999-11-25 00:26:21 +1100342 int len;
343 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344
Damien Miller5428f641999-11-25 11:54:57 +1100345 /*
346 * If standard input is to be "redirected from /dev/null", we simply
347 * mark that we have seen an EOF and send an EOF message to the
348 * server. Otherwise, we try to read a single character; it appears
349 * that for some files, such /dev/null, select() never wakes up for
350 * read for this descriptor, which means that we never get EOF. This
351 * way we will get the EOF if stdin comes from /dev/null or similar.
352 */
Damien Miller95def091999-11-25 00:26:21 +1100353 if (stdin_null_flag) {
354 /* Fake EOF on stdin. */
355 debug("Sending eof.");
356 stdin_eof = 1;
357 packet_start(SSH_CMSG_EOF);
358 packet_send();
359 } else {
Damien Miller95def091999-11-25 00:26:21 +1100360 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 /* Check for immediate EOF on stdin. */
363 len = read(fileno(stdin), buf, 1);
364 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100365 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100366 debug("Sending eof.");
367 stdin_eof = 1;
368 packet_start(SSH_CMSG_EOF);
369 packet_send();
370 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100371 /*
372 * Got data. We must store the data in the buffer,
373 * and also process it as an escape character if
374 * appropriate.
375 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000376 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100377 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000378 else
Damien Miller95def091999-11-25 00:26:21 +1100379 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100380 }
Damien Miller95def091999-11-25 00:26:21 +1100381 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383}
384
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385
Damien Miller5428f641999-11-25 11:54:57 +1100386/*
387 * Make packets from buffered stdin data, and buffer them for sending to the
388 * connection.
389 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390
Ben Lindstrombba81212001-06-25 05:01:22 +0000391static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000392client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000394 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395
Damien Miller95def091999-11-25 00:26:21 +1100396 /* Send buffered stdin data to the server. */
397 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100398 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100399 len = buffer_len(&stdin_buffer);
400 /* Keep the packets at reasonable size. */
401 if (len > packet_get_maxsize())
402 len = packet_get_maxsize();
403 packet_start(SSH_CMSG_STDIN_DATA);
404 packet_put_string(buffer_ptr(&stdin_buffer), len);
405 packet_send();
406 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000407 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100408 /* If we have a pending EOF, send it now. */
409 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
410 packet_start(SSH_CMSG_EOF);
411 packet_send();
412 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414}
415
Damien Miller5428f641999-11-25 11:54:57 +1100416/*
417 * Checks if the client window has changed, and sends a packet about it to
418 * the server if so. The actual change is detected elsewhere (by a software
419 * interrupt on Unix); this just checks the flag and sends a message if
420 * appropriate.
421 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422
Ben Lindstrombba81212001-06-25 05:01:22 +0000423static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000424client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425{
Damien Miller1383bd82000-04-06 12:32:37 +1000426 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427
Damien Miller1383bd82000-04-06 12:32:37 +1000428 if (! received_window_change_signal)
429 return;
430 /** XXX race */
431 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Millerd3444942000-09-30 14:20:03 +1100433 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000434
435 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000436 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000437 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000438 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
439 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000440 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100441 packet_put_int((u_int)ws.ws_row);
442 packet_put_int((u_int)ws.ws_col);
443 packet_put_int((u_int)ws.ws_xpixel);
444 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000445 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447}
448
Damien Miller509b0102003-12-17 16:33:10 +1100449static void
450client_global_request_reply(int type, u_int32_t seq, void *ctxt)
451{
452 server_alive_timeouts = 0;
453 client_global_request_reply_fwd(type, seq, ctxt);
454}
455
456static void
457server_alive_check(void)
458{
459 if (++server_alive_timeouts > options.server_alive_count_max)
460 packet_disconnect("Timeout, server not responding.");
461 packet_start(SSH2_MSG_GLOBAL_REQUEST);
462 packet_put_cstring("keepalive@openssh.com");
463 packet_put_char(1); /* boolean: want reply */
464 packet_send();
465}
466
Damien Miller5428f641999-11-25 11:54:57 +1100467/*
468 * Waits until the client can do something (some data becomes available on
469 * one of the file descriptors).
470 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000471static void
Damien Miller5e953212001-01-30 09:14:00 +1100472client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000473 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474{
Damien Miller509b0102003-12-17 16:33:10 +1100475 struct timeval tv, *tvp;
476 int ret;
477
Damien Miller5e953212001-01-30 09:14:00 +1100478 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000479 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Damien Miller1383bd82000-04-06 12:32:37 +1000481 if (!compat20) {
482 /* Read from the connection, unless our buffers are full. */
483 if (buffer_len(&stdout_buffer) < buffer_high &&
484 buffer_len(&stderr_buffer) < buffer_high &&
485 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100486 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000487 /*
488 * Read from stdin, unless we have seen EOF or have very much
489 * buffered data to send to the server.
490 */
491 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100492 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000493
494 /* Select stdout/stderr if have data in buffer. */
495 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100496 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000497 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100498 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000499 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000500 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000501 if (session_closed && !channel_still_open() &&
502 !packet_have_data_to_write()) {
503 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100504 memset(*readsetp, 0, *nallocp);
505 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000506 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000507 } else {
508 FD_SET(connection_in, *readsetp);
509 }
Damien Miller1383bd82000-04-06 12:32:37 +1000510 }
511
Damien Miller95def091999-11-25 00:26:21 +1100512 /* Select server connection if have data to write to the server. */
513 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100514 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100515
Damien Miller0e220db2004-06-15 10:34:08 +1000516 if (control_fd != -1)
517 FD_SET(control_fd, *readsetp);
518
Damien Miller5428f641999-11-25 11:54:57 +1100519 /*
520 * Wait for something to happen. This will suspend the process until
521 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100522 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100523 */
Damien Miller95def091999-11-25 00:26:21 +1100524
Damien Miller509b0102003-12-17 16:33:10 +1100525 if (options.server_alive_interval == 0 || !compat20)
526 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000527 else {
Damien Miller509b0102003-12-17 16:33:10 +1100528 tv.tv_sec = options.server_alive_interval;
529 tv.tv_usec = 0;
530 tvp = &tv;
531 }
532 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
533 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100534 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000535
536 /*
537 * We have to clear the select masks, because we return.
538 * We have to return, because the mainloop checks for the flags
539 * set by the signal handlers.
540 */
Damien Miller79faeff2001-11-12 11:06:32 +1100541 memset(*readsetp, 0, *nallocp);
542 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000543
Damien Miller95def091999-11-25 00:26:21 +1100544 if (errno == EINTR)
545 return;
546 /* Note: we might still have data in the buffers. */
547 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
548 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100549 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100550 } else if (ret == 0)
551 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552}
553
Ben Lindstrombba81212001-06-25 05:01:22 +0000554static void
Damien Millerad833b32000-08-23 10:46:23 +1000555client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556{
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000558 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000559 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000560 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000561 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller5428f641999-11-25 11:54:57 +1100565 /*
566 * Free (and clear) the buffer to reduce the amount of data that gets
567 * written to swap.
568 */
Damien Millerad833b32000-08-23 10:46:23 +1000569 buffer_free(bin);
570 buffer_free(bout);
571 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Damien Miller95def091999-11-25 00:26:21 +1100573 /* Send the suspend signal to the program itself. */
574 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Darren Tucker5d78de62004-11-05 20:35:44 +1100576 /* Reset window sizes in case they have changed */
577 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller95def091999-11-25 00:26:21 +1100579 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000580 buffer_init(bin);
581 buffer_init(bout);
582 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585}
586
Ben Lindstrombba81212001-06-25 05:01:22 +0000587static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100588client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589{
Damien Miller1383bd82000-04-06 12:32:37 +1000590 int len;
591 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller5428f641999-11-25 11:54:57 +1100593 /*
594 * Read input from the server, and add any such data to the buffer of
595 * the packet subsystem.
596 */
Damien Miller95def091999-11-25 00:26:21 +1100597 if (FD_ISSET(connection_in, readset)) {
598 /* Read as much as possible. */
599 len = read(connection_in, buf, sizeof(buf));
600 if (len == 0) {
601 /* Received EOF. The remote host has closed the connection. */
602 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
603 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605 quit_pending = 1;
606 return;
Damien Miller95def091999-11-25 00:26:21 +1100607 }
Damien Miller5428f641999-11-25 11:54:57 +1100608 /*
609 * There is a kernel bug on Solaris that causes select to
610 * sometimes wake up even though there is no data available.
611 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000612 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100613 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Damien Miller95def091999-11-25 00:26:21 +1100615 if (len < 0) {
616 /* An error has encountered. Perhaps there is a network problem. */
617 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
618 host, strerror(errno));
619 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100620 quit_pending = 1;
621 return;
622 }
623 packet_process_incoming(buf, len);
624 }
Damien Miller1383bd82000-04-06 12:32:37 +1000625}
626
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000627static void
Damien Miller0e220db2004-06-15 10:34:08 +1000628client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
629{
630 int id;
631 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000632
Damien Miller0e220db2004-06-15 10:34:08 +1000633 id = packet_get_int();
634 packet_check_eom();
635
636 if ((c = channel_lookup(id)) == NULL) {
637 error("%s: no channel for id %d", __func__, id);
638 return;
639 }
640
641 if (type == SSH2_MSG_CHANNEL_SUCCESS)
642 debug2("Request suceeded on channel %d", id);
643 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
644 error("Request failed on channel %d", id);
645 channel_free(c);
646 }
647}
648
649static void
650client_extra_session2_setup(int id, void *arg)
651{
652 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000653 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000654 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000655 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000656
Damien Miller0e220db2004-06-15 10:34:08 +1000657 if (cctx == NULL)
658 fatal("%s: cctx == NULL", __func__);
659 if ((c = channel_lookup(id)) == NULL)
660 fatal("%s: no channel for id %d", __func__, id);
661
Damien Miller46d38de2005-07-17 17:02:09 +1000662 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000663 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
664 char *proto, *data;
665 /* Get reasonable local authentication information. */
666 client_x11_get_proto(display, options.xauth_location,
667 options.forward_x11_trusted, &proto, &data);
668 /* Request forwarding with authentication spoofing. */
669 debug("Requesting X11 forwarding with authentication spoofing.");
670 x11_request_forwarding_with_spoofing(id, display, proto, data);
671 /* XXX wait for reply */
672 }
673
674 if (cctx->want_agent_fwd && options.forward_agent) {
675 debug("Requesting authentication agent forwarding.");
676 channel_request_start(id, "auth-agent-req@openssh.com", 0);
677 packet_send();
678 }
679
Darren Tuckerfc959702004-07-17 16:12:08 +1000680 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000681 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000682 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000683
Damien Miller0e220db2004-06-15 10:34:08 +1000684 c->confirm_ctx = NULL;
685 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000686 xfree(cctx->term);
687 if (cctx->env != NULL) {
688 for (i = 0; cctx->env[i] != NULL; i++)
689 xfree(cctx->env[i]);
690 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000691 }
Damien Miller3756dce2004-06-18 01:17:29 +1000692 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000693}
694
695static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100696client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000697{
698 Buffer m;
699 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000700 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000701 socklen_t addrlen;
702 struct sockaddr_storage addr;
703 struct confirm_ctx *cctx;
704 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000705 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000706 uid_t euid;
707 gid_t egid;
708
709 /*
710 * Accept connection on control socket
711 */
712 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
713 return;
714
715 memset(&addr, 0, sizeof(addr));
716 addrlen = sizeof(addr);
717 if ((client_fd = accept(control_fd,
718 (struct sockaddr*)&addr, &addrlen)) == -1) {
719 error("%s accept: %s", __func__, strerror(errno));
720 return;
721 }
722
723 if (getpeereid(client_fd, &euid, &egid) < 0) {
724 error("%s getpeereid failed: %s", __func__, strerror(errno));
725 close(client_fd);
726 return;
727 }
728 if ((euid != 0) && (getuid() != euid)) {
729 error("control mode uid mismatch: peer euid %u != uid %u",
730 (u_int) euid, (u_int) getuid());
731 close(client_fd);
732 return;
733 }
Damien Miller23f07702004-06-18 01:19:03 +1000734
Damien Miller0e220db2004-06-15 10:34:08 +1000735 unset_nonblock(client_fd);
736
Darren Tucker7ebfc102004-11-07 20:06:19 +1100737 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000738 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100739 if (ssh_msg_recv(client_fd, &m) == -1) {
740 error("%s: client msg_recv failed", __func__);
741 close(client_fd);
742 buffer_free(&m);
743 return;
744 }
Damien Miller13390022005-07-06 09:44:19 +1000745 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100746 error("%s: wrong client version %d", __func__, ver);
747 buffer_free(&m);
748 close(client_fd);
749 return;
750 }
Damien Miller0e220db2004-06-15 10:34:08 +1000751
Darren Tucker7ebfc102004-11-07 20:06:19 +1100752 allowed = 1;
753 command = buffer_get_int(&m);
754 flags = buffer_get_int(&m);
755
756 buffer_clear(&m);
757
758 switch (command) {
759 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000760 if (options.control_master == SSHCTL_MASTER_ASK ||
761 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100762 allowed = ask_permission("Allow shared connection "
763 "to %s? ", host);
764 /* continue below */
765 break;
766 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000767 if (options.control_master == SSHCTL_MASTER_ASK ||
768 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100769 allowed = ask_permission("Terminate shared connection "
770 "to %s? ", host);
771 if (allowed)
772 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100773 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100774 case SSHMUX_COMMAND_ALIVE_CHECK:
775 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
776 buffer_clear(&m);
777 buffer_put_int(&m, allowed);
778 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000779 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100780 error("%s: client msg_send failed", __func__);
781 close(client_fd);
782 buffer_free(&m);
783 return;
784 }
785 buffer_free(&m);
786 close(client_fd);
787 return;
788 default:
789 error("Unsupported command %d", command);
790 buffer_free(&m);
791 close(client_fd);
792 return;
793 }
794
795 /* Reply for SSHMUX_COMMAND_OPEN */
796 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000797 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000798 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000799 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000800 error("%s: client msg_send failed", __func__);
801 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000802 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000803 return;
804 }
Damien Miller0e220db2004-06-15 10:34:08 +1000805
Damien Miller23f07702004-06-18 01:19:03 +1000806 if (!allowed) {
807 error("Refused control connection");
808 close(client_fd);
809 buffer_free(&m);
810 return;
811 }
812
Darren Tucker7ebfc102004-11-07 20:06:19 +1100813 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000814 if (ssh_msg_recv(client_fd, &m) == -1) {
815 error("%s: client msg_recv failed", __func__);
816 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000817 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000818 return;
819 }
Damien Miller13390022005-07-06 09:44:19 +1000820 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000821 error("%s: wrong client version %d", __func__, ver);
822 buffer_free(&m);
823 close(client_fd);
824 return;
825 }
826
Damien Miller07d86be2006-03-26 14:19:21 +1100827 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100828 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
829 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000830 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
831 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000832 cctx->term = buffer_get_string(&m, &len);
833
834 cmd = buffer_get_string(&m, &len);
835 buffer_init(&cctx->cmd);
836 buffer_append(&cctx->cmd, cmd, strlen(cmd));
837
Damien Miller3756dce2004-06-18 01:17:29 +1000838 env_len = buffer_get_int(&m);
839 env_len = MIN(env_len, 4096);
840 debug3("%s: receiving %d env vars", __func__, env_len);
841 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100842 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000843 for (i = 0; i < env_len; i++)
844 cctx->env[i] = buffer_get_string(&m, &len);
845 cctx->env[i] = NULL;
846 }
847
Damien Miller0e220db2004-06-15 10:34:08 +1000848 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
849 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000850 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000851
852 /* Gather fds from client */
853 new_fd[0] = mm_receive_fd(client_fd);
854 new_fd[1] = mm_receive_fd(client_fd);
855 new_fd[2] = mm_receive_fd(client_fd);
856
857 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
858 new_fd[0], new_fd[1], new_fd[2]);
859
860 /* Try to pick up ttymodes from client before it goes raw */
861 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
862 error("%s: tcgetattr: %s", __func__, strerror(errno));
863
Darren Tucker7ebfc102004-11-07 20:06:19 +1100864 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000865 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000866 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000867 error("%s: client msg_send failed", __func__);
868 close(client_fd);
869 close(new_fd[0]);
870 close(new_fd[1]);
871 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000872 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100873 xfree(cctx->term);
874 if (env_len != 0) {
875 for (i = 0; i < env_len; i++)
876 xfree(cctx->env[i]);
877 xfree(cctx->env);
878 }
Damien Miller0e220db2004-06-15 10:34:08 +1000879 return;
880 }
881 buffer_free(&m);
882
883 /* enable nonblocking unless tty */
884 if (!isatty(new_fd[0]))
885 set_nonblock(new_fd[0]);
886 if (!isatty(new_fd[1]))
887 set_nonblock(new_fd[1]);
888 if (!isatty(new_fd[2]))
889 set_nonblock(new_fd[2]);
890
891 set_nonblock(client_fd);
892
Darren Tuckerfc959702004-07-17 16:12:08 +1000893 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000894 new_fd[0], new_fd[1], new_fd[2],
895 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
896 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
897
898 /* XXX */
899 c->ctl_fd = client_fd;
900
901 debug3("%s: channel_new: %d", __func__, c->self);
902
903 channel_send_open(c->self);
904 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
905}
906
907static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000908process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000909{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000910 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100911 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000912 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000913 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100914 u_short cancel_port;
915 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000916
917 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000918 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000919 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000920 if (s == NULL)
921 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000922 while (*s && isspace(*s))
923 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000924 if (*s == '-')
925 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000926 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000927 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000928
Darren Tucker1973c882004-05-24 10:34:36 +1000929 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000930 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000931 logit(" -L[bind_address:]port:host:hostport "
932 "Request local forward");
933 logit(" -R[bind_address:]port:host:hostport "
934 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000935 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000936 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100937 if (!options.permit_local_command)
938 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000939 logit(" !args "
940 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100941 goto out;
942 }
943
944 if (*s == '!' && options.permit_local_command) {
945 s++;
946 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000947 goto out;
948 }
949
950 if (*s == 'K') {
951 delete = 1;
952 s++;
953 }
954 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000955 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000956 goto out;
957 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000958 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000959 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000960 if (local && delete) {
961 logit("Not supported.");
962 goto out;
963 }
964 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000965 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000966 goto out;
967 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000968
969 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000970 while (*s && isspace(*s))
971 s++;
972
Darren Tuckere7066df2004-05-24 10:18:05 +1000973 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100974 cancel_port = 0;
975 cancel_host = hpdelim(&s); /* may be NULL */
976 if (s != NULL) {
977 cancel_port = a2port(s);
978 cancel_host = cleanhostname(cancel_host);
979 } else {
980 cancel_port = a2port(cancel_host);
981 cancel_host = NULL;
982 }
983 if (cancel_port == 0) {
984 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000985 goto out;
986 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100987 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000988 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100989 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000990 logit("Bad forwarding specification.");
991 goto out;
992 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000993 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100994 if (channel_setup_local_fwd_listener(fwd.listen_host,
995 fwd.listen_port, fwd.connect_host,
996 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000997 logit("Port forwarding failed.");
998 goto out;
999 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001000 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001001 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001002 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001003 fwd.connect_port) < 0) {
1004 logit("Port forwarding failed.");
1005 goto out;
1006 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001007 }
1008
Darren Tuckere7066df2004-05-24 10:18:05 +10001009 logit("Forwarding port.");
1010 }
1011
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001012out:
1013 signal(SIGINT, handler);
1014 enter_raw_mode();
1015 if (cmd)
1016 xfree(cmd);
1017}
1018
Damien Millerad833b32000-08-23 10:46:23 +10001019/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001020static int
Damien Millerad833b32000-08-23 10:46:23 +10001021process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1022{
1023 char string[1024];
1024 pid_t pid;
1025 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001026 u_int i;
1027 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001028 char *s;
1029
Damien Millereccb9de2005-06-17 12:59:34 +10001030 if (len <= 0)
1031 return (0);
1032
1033 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001034 /* Get one character at a time. */
1035 ch = buf[i];
1036
1037 if (escape_pending) {
1038 /* We have previously seen an escape character. */
1039 /* Clear the flag now. */
1040 escape_pending = 0;
1041
1042 /* Process the escaped character. */
1043 switch (ch) {
1044 case '.':
1045 /* Terminate the connection. */
1046 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1047 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001048
1049 quit_pending = 1;
1050 return -1;
1051
1052 case 'Z' - 64:
1053 /* Suspend the program. */
1054 /* Print a message to that effect to the user. */
1055 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1056 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001057
1058 /* Restore terminal modes and suspend. */
1059 client_suspend_self(bin, bout, berr);
1060
1061 /* We have been continued. */
1062 continue;
1063
Damien Miller54c45982003-05-15 10:20:13 +10001064 case 'B':
1065 if (compat20) {
1066 snprintf(string, sizeof string,
1067 "%cB\r\n", escape_char);
1068 buffer_append(berr, string,
1069 strlen(string));
1070 channel_request_start(session_ident,
1071 "break", 0);
1072 packet_put_int(1000);
1073 packet_send();
1074 }
1075 continue;
1076
Ben Lindstromf28f6342001-04-04 02:03:04 +00001077 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001078 if (compat20) {
1079 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001080 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001081 else
1082 need_rekeying = 1;
1083 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001084 continue;
1085
Damien Millerad833b32000-08-23 10:46:23 +10001086 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001087 /*
1088 * Detach the program (continue to serve connections,
1089 * but put in background and no more new connections).
1090 */
Damien Miller96507ef2001-11-12 10:52:25 +11001091 /* Restore tty modes. */
1092 leave_raw_mode();
1093
1094 /* Stop listening for new connections. */
1095 channel_stop_listening();
1096
1097 snprintf(string, sizeof string,
1098 "%c& [backgrounded]\n", escape_char);
1099 buffer_append(berr, string, strlen(string));
1100
1101 /* Fork into background. */
1102 pid = fork();
1103 if (pid < 0) {
1104 error("fork: %.100s", strerror(errno));
1105 continue;
1106 }
1107 if (pid != 0) { /* This is the parent. */
1108 /* The parent just exits. */
1109 exit(0);
1110 }
1111 /* The child continues serving connections. */
1112 if (compat20) {
1113 buffer_append(bin, "\004", 1);
1114 /* fake EOF on stdin */
1115 return -1;
1116 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001117 /*
1118 * Sending SSH_CMSG_EOF alone does not always appear
1119 * to be enough. So we try to send an EOF character
1120 * first.
1121 */
1122 packet_start(SSH_CMSG_STDIN_DATA);
1123 packet_put_string("\004", 1);
1124 packet_send();
1125 /* Close stdin. */
1126 stdin_eof = 1;
1127 if (buffer_len(bin) == 0) {
1128 packet_start(SSH_CMSG_EOF);
1129 packet_send();
1130 }
1131 }
Damien Miller96507ef2001-11-12 10:52:25 +11001132 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001133
1134 case '?':
1135 snprintf(string, sizeof string,
1136"%c?\r\n\
1137Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001138%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001139%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001140%cC - open a command line\r\n\
1141%cR - Request rekey (SSH protocol 2 only)\r\n\
1142%c^Z - suspend ssh\r\n\
1143%c# - list forwarded connections\r\n\
1144%c& - background ssh (when waiting for connections to terminate)\r\n\
1145%c? - this message\r\n\
1146%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001147(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001148 escape_char, escape_char, escape_char, escape_char,
1149 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001150 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001151 buffer_append(berr, string, strlen(string));
1152 continue;
1153
1154 case '#':
1155 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1156 buffer_append(berr, string, strlen(string));
1157 s = channel_open_message();
1158 buffer_append(berr, s, strlen(s));
1159 xfree(s);
1160 continue;
1161
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001162 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001163 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001164 continue;
1165
Damien Millerad833b32000-08-23 10:46:23 +10001166 default:
1167 if (ch != escape_char) {
1168 buffer_put_char(bin, escape_char);
1169 bytes++;
1170 }
1171 /* Escaped characters fall through here */
1172 break;
1173 }
1174 } else {
1175 /*
1176 * The previous character was not an escape char. Check if this
1177 * is an escape.
1178 */
1179 if (last_was_cr && ch == escape_char) {
1180 /* It is. Set the flag and continue to next character. */
1181 escape_pending = 1;
1182 continue;
1183 }
1184 }
1185
1186 /*
1187 * Normal character. Record whether it was a newline,
1188 * and append it to the buffer.
1189 */
1190 last_was_cr = (ch == '\r' || ch == '\n');
1191 buffer_put_char(bin, ch);
1192 bytes++;
1193 }
1194 return bytes;
1195}
1196
Ben Lindstrombba81212001-06-25 05:01:22 +00001197static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001198client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001199{
Damien Miller166fca82000-04-20 07:42:21 +10001200 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001201 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001202
Damien Miller95def091999-11-25 00:26:21 +11001203 /* Read input from stdin. */
1204 if (FD_ISSET(fileno(stdin), readset)) {
1205 /* Read as much as possible. */
1206 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001207 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1208 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001209 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001210 /*
1211 * Received EOF or error. They are treated
1212 * similarly, except that an error message is printed
1213 * if it was an error condition.
1214 */
Damien Miller95def091999-11-25 00:26:21 +11001215 if (len < 0) {
1216 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1217 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001218 }
1219 /* Mark that we have seen EOF. */
1220 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001221 /*
1222 * Send an EOF message to the server unless there is
1223 * data in the buffer. If there is data in the
1224 * buffer, no message will be sent now. Code
1225 * elsewhere will send the EOF when the buffer
1226 * becomes empty if stdin_eof is set.
1227 */
Damien Miller95def091999-11-25 00:26:21 +11001228 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001229 packet_start(SSH_CMSG_EOF);
1230 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001231 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001232 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001233 /*
1234 * Normal successful read, and no escape character.
1235 * Just append the data to buffer.
1236 */
Damien Miller95def091999-11-25 00:26:21 +11001237 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001238 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001239 /*
1240 * Normal, successful read. But we have an escape character
1241 * and have to process the characters one by one.
1242 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001243 if (process_escapes(&stdin_buffer, &stdout_buffer,
1244 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001245 return;
Damien Miller95def091999-11-25 00:26:21 +11001246 }
1247 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001248}
1249
Ben Lindstrombba81212001-06-25 05:01:22 +00001250static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001251client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001252{
Damien Miller95def091999-11-25 00:26:21 +11001253 int len;
1254 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001255
Damien Miller95def091999-11-25 00:26:21 +11001256 /* Write buffered output to stdout. */
1257 if (FD_ISSET(fileno(stdout), writeset)) {
1258 /* Write as much data as possible. */
1259 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001260 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001261 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001262 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001263 len = 0;
1264 else {
Damien Miller5428f641999-11-25 11:54:57 +11001265 /*
1266 * An error or EOF was encountered. Put an
1267 * error message to stderr buffer.
1268 */
Damien Miller95def091999-11-25 00:26:21 +11001269 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1270 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001271 quit_pending = 1;
1272 return;
1273 }
1274 }
1275 /* Consume printed data from the buffer. */
1276 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001277 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001278 }
Damien Miller95def091999-11-25 00:26:21 +11001279 /* Write buffered output to stderr. */
1280 if (FD_ISSET(fileno(stderr), writeset)) {
1281 /* Write as much data as possible. */
1282 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001283 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001284 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001285 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001286 len = 0;
1287 else {
Damien Miller5428f641999-11-25 11:54:57 +11001288 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001289 quit_pending = 1;
1290 return;
1291 }
1292 }
1293 /* Consume printed characters from the buffer. */
1294 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001295 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001296 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001297}
1298
Damien Miller5428f641999-11-25 11:54:57 +11001299/*
Damien Millerb38eff82000-04-01 11:09:21 +10001300 * Get packets from the connection input buffer, and process them as long as
1301 * there are packets available.
1302 *
1303 * Any unknown packets received during the actual
1304 * session cause the session to terminate. This is
1305 * intended to make debugging easier since no
1306 * confirmations are sent. Any compatible protocol
1307 * extensions must be negotiated during the
1308 * preparatory phase.
1309 */
1310
Ben Lindstrombba81212001-06-25 05:01:22 +00001311static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001312client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001313{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001314 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001315}
1316
Damien Millerad833b32000-08-23 10:46:23 +10001317/* scan buf[] for '~' before sending data to the peer */
1318
Ben Lindstrombba81212001-06-25 05:01:22 +00001319static int
Damien Millerad833b32000-08-23 10:46:23 +10001320simple_escape_filter(Channel *c, char *buf, int len)
1321{
1322 /* XXX we assume c->extended is writeable */
1323 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1324}
1325
Ben Lindstrombba81212001-06-25 05:01:22 +00001326static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001327client_channel_closed(int id, void *arg)
1328{
Damien Miller3ec27592001-10-12 11:35:04 +10001329 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001330 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001331 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001332}
1333
Damien Millerb38eff82000-04-01 11:09:21 +10001334/*
Damien Miller5428f641999-11-25 11:54:57 +11001335 * Implements the interactive session with the server. This is called after
1336 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001337 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1338 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001339 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001340
Damien Miller4af51302000-04-16 11:18:38 +10001341int
Damien Millerad833b32000-08-23 10:46:23 +10001342client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343{
Damien Miller5e953212001-01-30 09:14:00 +11001344 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001345 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001346 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1347 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001348 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349
Damien Miller95def091999-11-25 00:26:21 +11001350 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001351
Damien Miller95def091999-11-25 00:26:21 +11001352 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001353
Damien Miller95def091999-11-25 00:26:21 +11001354 /* Initialize variables. */
1355 escape_pending = 0;
1356 last_was_cr = 1;
1357 exit_status = -1;
1358 stdin_eof = 0;
1359 buffer_high = 64 * 1024;
1360 connection_in = packet_get_connection_in();
1361 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001362 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001363 if (control_fd != -1)
1364 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001365
1366 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001367 /* enable nonblocking unless tty */
1368 if (!isatty(fileno(stdin)))
1369 set_nonblock(fileno(stdin));
1370 if (!isatty(fileno(stdout)))
1371 set_nonblock(fileno(stdout));
1372 if (!isatty(fileno(stderr)))
1373 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001374 max_fd = MAX(max_fd, fileno(stdin));
1375 max_fd = MAX(max_fd, fileno(stdout));
1376 max_fd = MAX(max_fd, fileno(stderr));
1377 }
Damien Miller95def091999-11-25 00:26:21 +11001378 stdin_bytes = 0;
1379 stdout_bytes = 0;
1380 stderr_bytes = 0;
1381 quit_pending = 0;
1382 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001383
Damien Miller95def091999-11-25 00:26:21 +11001384 /* Initialize buffers. */
1385 buffer_init(&stdin_buffer);
1386 buffer_init(&stdout_buffer);
1387 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388
Damien Millerb38eff82000-04-01 11:09:21 +10001389 client_init_dispatch();
1390
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001391 /*
1392 * Set signal handlers, (e.g. to restore non-blocking mode)
1393 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1394 */
Darren Tucker07336da2004-11-05 20:02:16 +11001395 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1396 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001397 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1398 signal(SIGINT, signal_handler);
1399 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1400 signal(SIGQUIT, signal_handler);
1401 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1402 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001403 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001404
Damien Miller95def091999-11-25 00:26:21 +11001405 if (have_pty)
1406 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001407
Ben Lindstrom5b828322001-02-09 01:34:36 +00001408 if (compat20) {
1409 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001410 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001411 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001412 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001413 if (session_ident != -1)
1414 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001415 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001416 } else {
1417 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001418 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001419 }
Damien Millerad833b32000-08-23 10:46:23 +10001420
Damien Miller95def091999-11-25 00:26:21 +11001421 /* Main loop of the client for the interactive session mode. */
1422 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001423
Damien Miller5428f641999-11-25 11:54:57 +11001424 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001425 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001427 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001428 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001429
1430 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001431
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001432 if (rekeying) {
1433 debug("rekeying in progress");
1434 } else {
1435 /*
1436 * Make packets of buffered stdin data, and buffer
1437 * them for sending to the server.
1438 */
1439 if (!compat20)
1440 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001441
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001442 /*
1443 * Make packets from buffered channel data, and
1444 * enqueue them for sending to the server.
1445 */
1446 if (packet_not_very_much_data_to_write())
1447 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001449 /*
1450 * Check if the window size has changed, and buffer a
1451 * message about it to the server if so.
1452 */
1453 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001454
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001455 if (quit_pending)
1456 break;
1457 }
Damien Miller5428f641999-11-25 11:54:57 +11001458 /*
1459 * Wait until we have something to do (something becomes
1460 * available on one of the descriptors).
1461 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001462 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001463 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001464 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001465
Damien Miller95def091999-11-25 00:26:21 +11001466 if (quit_pending)
1467 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001468
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001469 /* Do channel operations unless rekeying in progress. */
1470 if (!rekeying) {
1471 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001472 if (need_rekeying || packet_need_rekeying()) {
1473 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001474 xxx_kex->done = 0;
1475 kex_send_kexinit(xxx_kex);
1476 need_rekeying = 0;
1477 }
1478 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001479
Damien Miller1383bd82000-04-06 12:32:37 +10001480 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001481 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001482
Damien Miller0e220db2004-06-15 10:34:08 +10001483 /* Accept control connections. */
1484 client_process_control(readset);
1485
Damien Miller1383bd82000-04-06 12:32:37 +10001486 if (quit_pending)
1487 break;
1488
1489 if (!compat20) {
1490 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001491 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001492 /*
1493 * Process output to stdout and stderr. Output to
1494 * the connection is processed elsewhere (above).
1495 */
Damien Miller5e953212001-01-30 09:14:00 +11001496 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001497 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001498
Damien Miller5428f641999-11-25 11:54:57 +11001499 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001500 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001501 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001502 }
Damien Miller5e953212001-01-30 09:14:00 +11001503 if (readset)
1504 xfree(readset);
1505 if (writeset)
1506 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001507
Damien Miller95def091999-11-25 00:26:21 +11001508 /* Terminate the session. */
1509
1510 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001511 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001512
Ben Lindstrom601e4362001-06-21 03:19:23 +00001513 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001514
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001515 if (have_pty)
1516 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001517
1518 /* restore blocking io */
1519 if (!isatty(fileno(stdin)))
1520 unset_nonblock(fileno(stdin));
1521 if (!isatty(fileno(stdout)))
1522 unset_nonblock(fileno(stdout));
1523 if (!isatty(fileno(stderr)))
1524 unset_nonblock(fileno(stderr));
1525
Damien Millerd6965512003-12-17 16:31:53 +11001526 /*
1527 * If there was no shell or command requested, there will be no remote
1528 * exit status to be returned. In that case, clear error code if the
1529 * connection was deliberately terminated at this end.
1530 */
1531 if (no_shell_flag && received_signal == SIGTERM) {
1532 received_signal = 0;
1533 exit_status = 0;
1534 }
1535
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001536 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001537 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001538
1539 /*
1540 * In interactive mode (with pseudo tty) display a message indicating
1541 * that the connection has been closed.
1542 */
1543 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1544 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1545 buffer_append(&stderr_buffer, buf, strlen(buf));
1546 }
1547
Damien Miller95def091999-11-25 00:26:21 +11001548 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001549 while (buffer_len(&stdout_buffer) > 0) {
1550 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001551 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001552 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001553 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001554 break;
1555 }
Damien Miller95def091999-11-25 00:26:21 +11001556 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001557 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001558 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001559
Damien Miller95def091999-11-25 00:26:21 +11001560 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001561 while (buffer_len(&stderr_buffer) > 0) {
1562 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001563 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001564 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001565 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001566 break;
1567 }
Damien Miller95def091999-11-25 00:26:21 +11001568 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001569 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001570 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571
Damien Miller95def091999-11-25 00:26:21 +11001572 /* Clear and free any buffers. */
1573 memset(buf, 0, sizeof(buf));
1574 buffer_free(&stdin_buffer);
1575 buffer_free(&stdout_buffer);
1576 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001577
Damien Miller95def091999-11-25 00:26:21 +11001578 /* Report bytes transferred, and transfer rates. */
1579 total_time = get_current_time() - start_time;
1580 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001581 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001582 if (total_time > 0)
1583 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001584 stdin_bytes / total_time, stdout_bytes / total_time,
1585 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001586
1587 /* Return the exit status of the program. */
1588 debug("Exit status %d", exit_status);
1589 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001590}
Damien Millerb38eff82000-04-01 11:09:21 +10001591
1592/*********/
1593
Ben Lindstrombba81212001-06-25 05:01:22 +00001594static void
Damien Miller630d6f42002-01-22 23:17:30 +11001595client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001596{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001597 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001598 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001599 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001600 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001601 memset(data, 0, data_len);
1602 xfree(data);
1603}
Ben Lindstrombba81212001-06-25 05:01:22 +00001604static void
Damien Miller630d6f42002-01-22 23:17:30 +11001605client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001606{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001607 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001608 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001609 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001610 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001611 memset(data, 0, data_len);
1612 xfree(data);
1613}
Ben Lindstrombba81212001-06-25 05:01:22 +00001614static void
Damien Miller630d6f42002-01-22 23:17:30 +11001615client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001616{
Damien Millerb38eff82000-04-01 11:09:21 +10001617 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001618 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001619 /* Acknowledge the exit. */
1620 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1621 packet_send();
1622 /*
1623 * Must wait for packet to be sent since we are
1624 * exiting the loop.
1625 */
1626 packet_write_wait();
1627 /* Flag that we want to exit. */
1628 quit_pending = 1;
1629}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001630static void
1631client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1632{
1633 Channel *c = NULL;
1634 int remote_id, sock;
1635
1636 /* Read the remote channel number from the message. */
1637 remote_id = packet_get_int();
1638 packet_check_eom();
1639
1640 /*
1641 * Get a connection to the local authentication agent (this may again
1642 * get forwarded).
1643 */
1644 sock = ssh_get_authentication_socket();
1645
1646 /*
1647 * If we could not connect the agent, send an error message back to
1648 * the server. This should never happen unless the agent dies,
1649 * because authentication forwarding is only enabled if we have an
1650 * agent.
1651 */
1652 if (sock >= 0) {
1653 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1654 -1, 0, 0, 0, "authentication agent connection", 1);
1655 c->remote_id = remote_id;
1656 c->force_drain = 1;
1657 }
1658 if (c == NULL) {
1659 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1660 packet_put_int(remote_id);
1661 } else {
1662 /* Send a confirmation to the remote host. */
1663 debug("Forwarding authentication connection.");
1664 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1665 packet_put_int(remote_id);
1666 packet_put_int(c->self);
1667 }
1668 packet_send();
1669}
Damien Millerb38eff82000-04-01 11:09:21 +10001670
Ben Lindstrombba81212001-06-25 05:01:22 +00001671static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001672client_request_forwarded_tcpip(const char *request_type, int rchan)
1673{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001674 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001675 char *listen_address, *originator_address;
1676 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001677 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001678
1679 /* Get rest of the packet */
1680 listen_address = packet_get_string(NULL);
1681 listen_port = packet_get_int();
1682 originator_address = packet_get_string(NULL);
1683 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001684 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001685
1686 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1687 listen_address, listen_port, originator_address, originator_port);
1688
Ben Lindstrom173e6462001-07-04 05:15:15 +00001689 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001690 if (sock < 0) {
1691 xfree(originator_address);
1692 xfree(listen_address);
1693 return NULL;
1694 }
1695 c = channel_new("forwarded-tcpip",
1696 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1697 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001698 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001699 xfree(originator_address);
1700 xfree(listen_address);
1701 return c;
1702}
1703
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001704static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001705client_request_x11(const char *request_type, int rchan)
1706{
1707 Channel *c = NULL;
1708 char *originator;
1709 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001710 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001711
1712 if (!options.forward_x11) {
1713 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001714 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001715 return NULL;
1716 }
1717 originator = packet_get_string(NULL);
1718 if (datafellows & SSH_BUG_X11FWD) {
1719 debug2("buggy server: x11 request w/o originator_port");
1720 originator_port = 0;
1721 } else {
1722 originator_port = packet_get_int();
1723 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001724 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001725 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001726 debug("client_request_x11: request from %s %d", originator,
1727 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001728 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001729 sock = x11_connect_display();
1730 if (sock < 0)
1731 return NULL;
1732 c = channel_new("x11",
1733 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001734 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001735 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001736 return c;
1737}
1738
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001739static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001740client_request_agent(const char *request_type, int rchan)
1741{
1742 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001743 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001744
1745 if (!options.forward_agent) {
1746 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001747 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001748 return NULL;
1749 }
1750 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001751 if (sock < 0)
1752 return NULL;
1753 c = channel_new("authentication agent connection",
1754 SSH_CHANNEL_OPEN, sock, sock, -1,
1755 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001756 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001757 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001758 return c;
1759}
1760
Damien Millerbd483e72000-04-30 10:00:53 +10001761/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001762static void
Damien Miller630d6f42002-01-22 23:17:30 +11001763client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001764{
1765 Channel *c = NULL;
1766 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001767 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001768 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001769
1770 ctype = packet_get_string(&len);
1771 rchan = packet_get_int();
1772 rwindow = packet_get_int();
1773 rmaxpack = packet_get_int();
1774
Damien Millere247cc42000-05-07 12:03:14 +10001775 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001776 ctype, rchan, rwindow, rmaxpack);
1777
Damien Miller0bc1bd82000-11-13 22:57:25 +11001778 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1779 c = client_request_forwarded_tcpip(ctype, rchan);
1780 } else if (strcmp(ctype, "x11") == 0) {
1781 c = client_request_x11(ctype, rchan);
1782 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1783 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001784 }
1785/* XXX duplicate : */
1786 if (c != NULL) {
1787 debug("confirm %s", ctype);
1788 c->remote_id = rchan;
1789 c->remote_window = rwindow;
1790 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001791 if (c->type != SSH_CHANNEL_CONNECTING) {
1792 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1793 packet_put_int(c->remote_id);
1794 packet_put_int(c->self);
1795 packet_put_int(c->local_window);
1796 packet_put_int(c->local_maxpacket);
1797 packet_send();
1798 }
Damien Millerbd483e72000-04-30 10:00:53 +10001799 } else {
1800 debug("failure %s", ctype);
1801 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1802 packet_put_int(rchan);
1803 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001804 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001805 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001806 packet_put_cstring("");
1807 }
Damien Millerbd483e72000-04-30 10:00:53 +10001808 packet_send();
1809 }
1810 xfree(ctype);
1811}
Ben Lindstrombba81212001-06-25 05:01:22 +00001812static void
Damien Miller630d6f42002-01-22 23:17:30 +11001813client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001814{
1815 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001816 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001817 char *rtype;
1818
1819 id = packet_get_int();
1820 rtype = packet_get_string(NULL);
1821 reply = packet_get_char();
1822
1823 debug("client_input_channel_req: channel %d rtype %s reply %d",
1824 id, rtype, reply);
1825
Damien Miller3bbd8782004-06-18 22:23:22 +10001826 if (id == -1) {
1827 error("client_input_channel_req: request for channel -1");
1828 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001829 error("client_input_channel_req: channel %d: unknown channel", id);
1830 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001831 exitval = packet_get_int();
1832 if (id == session_ident) {
1833 success = 1;
1834 exit_status = exitval;
1835 } else if (c->ctl_fd == -1) {
1836 error("client_input_channel_req: unexpected channel %d",
1837 session_ident);
1838 } else {
1839 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1840 success = 1;
1841 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001842 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001843 }
1844 if (reply) {
1845 packet_start(success ?
1846 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001847 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001848 packet_send();
1849 }
1850 xfree(rtype);
1851}
Damien Millerc3fa4072002-01-22 23:21:58 +11001852static void
1853client_input_global_request(int type, u_int32_t seq, void *ctxt)
1854{
1855 char *rtype;
1856 int want_reply;
1857 int success = 0;
1858
1859 rtype = packet_get_string(NULL);
1860 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001861 debug("client_input_global_request: rtype %s want_reply %d",
1862 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001863 if (want_reply) {
1864 packet_start(success ?
1865 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1866 packet_send();
1867 packet_write_wait();
1868 }
1869 xfree(rtype);
1870}
Damien Millerbd483e72000-04-30 10:00:53 +10001871
Damien Miller0e220db2004-06-15 10:34:08 +10001872void
Darren Tuckerfc959702004-07-17 16:12:08 +10001873client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001874 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001875 dispatch_fn *subsys_repl)
1876{
1877 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001878 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001879
1880 debug2("%s: id %d", __func__, id);
1881
Darren Tucker5d78de62004-11-05 20:35:44 +11001882 if ((c = channel_lookup(id)) == NULL)
1883 fatal("client_session2_setup: channel %d: unknown channel", id);
1884
Damien Miller0e220db2004-06-15 10:34:08 +10001885 if (want_tty) {
1886 struct winsize ws;
1887 struct termios tio;
1888
1889 /* Store window size in the packet. */
1890 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1891 memset(&ws, 0, sizeof(ws));
1892
1893 channel_request_start(id, "pty-req", 0);
1894 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001895 packet_put_int((u_int)ws.ws_col);
1896 packet_put_int((u_int)ws.ws_row);
1897 packet_put_int((u_int)ws.ws_xpixel);
1898 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001899 tio = get_saved_tio();
1900 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1901 packet_send();
1902 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001903 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001904 }
1905
1906 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001907 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001908 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001909 char *name, *val;
1910
1911 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001912 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001913 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001914 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001915 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001916 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001917 continue;
1918 }
1919 *val++ = '\0';
1920
1921 matched = 0;
1922 for (j = 0; j < options.num_send_env; j++) {
1923 if (match_pattern(name, options.send_env[j])) {
1924 matched = 1;
1925 break;
1926 }
1927 }
1928 if (!matched) {
1929 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001930 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001931 continue;
1932 }
1933
1934 debug("Sending env %s = %s", name, val);
1935 channel_request_start(id, "env", 0);
1936 packet_put_cstring(name);
1937 packet_put_cstring(val);
1938 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001939 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001940 }
1941 }
1942
1943 len = buffer_len(cmd);
1944 if (len > 0) {
1945 if (len > 900)
1946 len = 900;
1947 if (want_subsystem) {
1948 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1949 channel_request_start(id, "subsystem", subsys_repl != NULL);
1950 if (subsys_repl != NULL) {
1951 /* register callback for reply */
1952 /* XXX we assume that client_loop has already been called */
1953 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1954 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1955 }
1956 } else {
1957 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1958 channel_request_start(id, "exec", 0);
1959 }
1960 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1961 packet_send();
1962 } else {
1963 channel_request_start(id, "shell", 0);
1964 packet_send();
1965 }
1966}
1967
Ben Lindstrombba81212001-06-25 05:01:22 +00001968static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001969client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001970{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001971 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001972
Damien Miller1383bd82000-04-06 12:32:37 +10001973 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1974 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1975 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1976 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001977 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001978 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1979 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001980 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001981 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001982 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001983
1984 /* rekeying */
1985 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001986
1987 /* global request reply messages */
1988 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1989 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001990}
Ben Lindstrombba81212001-06-25 05:01:22 +00001991static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001992client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001993{
1994 dispatch_init(NULL);
1995 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1996 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1997 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001998 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1999 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2000 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002001 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2002 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2003 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002004
2005 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002006 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002007 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2008 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002009}
Ben Lindstrombba81212001-06-25 05:01:22 +00002010static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002011client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002012{
2013 client_init_dispatch_13();
2014 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2015 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2016}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002017static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002018client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002019{
Damien Miller1383bd82000-04-06 12:32:37 +10002020 if (compat20)
2021 client_init_dispatch_20();
2022 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002023 client_init_dispatch_13();
2024 else
2025 client_init_dispatch_15();
2026}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002027
2028/* client specific fatal cleanup */
2029void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002030cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002031{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002032 leave_raw_mode();
2033 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002034 if (options.control_path != NULL && control_fd != -1)
2035 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002036 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002037}