blob: ee36cc9e52c666cfad039cd4545f8c839913f11f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
13 *
14 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 *
Damien Miller1383bd82000-04-06 12:32:37 +100037 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000038 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110039 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110059 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61#include "includes.h"
Damien Miller17e7ed02005-06-17 12:54:33 +100062RCSID("$OpenBSD: clientloop.c,v 1.138 2005/06/16 03:38:36 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "ssh1.h"
66#include "ssh2.h"
67#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#include "packet.h"
69#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100070#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000071#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100072#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100073#include "buffer.h"
74#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110075#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000076#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000079#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "authfd.h"
81#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100082#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000083#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +100084#include "monitor_fdpass.h"
85#include "match.h"
86#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110087
88/* import options */
89extern Options options;
90
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091/* Flag indicating that stdin should be redirected from /dev/null. */
92extern int stdin_null_flag;
93
Damien Millerd6965512003-12-17 16:31:53 +110094/* Flag indicating that no shell has been requested */
95extern int no_shell_flag;
96
Damien Miller0e220db2004-06-15 10:34:08 +100097/* Control socket */
98extern int control_fd;
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Name of the host we are connecting to. This is the name given on the
102 * command line, or the HostName specified for the user-supplied name in a
103 * configuration file.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105extern char *host;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Flag to indicate that we have received a window change signal which has
109 * not yet been processed. This will cause a message indicating the new
110 * window size to be sent to the server a little later. This is volatile
111 * because this is updated in a signal handler.
112 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000113static volatile sig_atomic_t received_window_change_signal = 0;
114static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
117static int in_non_blocking_mode = 0;
118
119/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000120static int quit_pending; /* Set to non-zero to quit the client loop. */
121static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100122static int escape_pending; /* Last character was the escape character */
123static int last_was_cr; /* Last character was a newline. */
124static int exit_status; /* Used to store the exit status of the command. */
125static int stdin_eof; /* EOF has been encountered on standard error. */
126static Buffer stdin_buffer; /* Buffer for stdin data. */
127static Buffer stdout_buffer; /* Buffer for stdout data. */
128static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000129static u_long stdin_bytes, stdout_bytes, stderr_bytes;
130static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100131static int connection_in; /* Connection to server (input). */
132static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000133static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000134static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100135static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Ben Lindstrombba81212001-06-25 05:01:22 +0000137static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000138int session_ident = -1;
139
Damien Miller0e220db2004-06-15 10:34:08 +1000140struct confirm_ctx {
141 int want_tty;
142 int want_subsys;
143 Buffer cmd;
144 char *term;
145 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000146 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000147};
148
Ben Lindstromf28f6342001-04-04 02:03:04 +0000149/*XXX*/
150extern Kex *xxx_kex;
151
Damien Miller0e220db2004-06-15 10:34:08 +1000152void ssh_process_session2_setup(int, int, int, Buffer *);
153
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154/* Restores stdin to blocking mode. */
155
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller95def091999-11-25 00:26:21 +1100159 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000160 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100161 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100162 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163}
164
Damien Miller95def091999-11-25 00:26:21 +1100165/* Puts stdin terminal in non-blocking mode. */
166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000168enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000171 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172}
173
Damien Miller5428f641999-11-25 11:54:57 +1100174/*
175 * Signal handler for the window change signal (SIGWINCH). This just sets a
176 * flag indicating that the window has changed.
177 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178
Ben Lindstrombba81212001-06-25 05:01:22 +0000179static void
Damien Miller95def091999-11-25 00:26:21 +1100180window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181{
Damien Miller95def091999-11-25 00:26:21 +1100182 received_window_change_signal = 1;
183 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184}
185
Damien Miller5428f641999-11-25 11:54:57 +1100186/*
187 * Signal handler for signals that cause the program to terminate. These
188 * signals must be trapped to restore terminal modes.
189 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static void
Damien Miller95def091999-11-25 00:26:21 +1100192signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000194 received_signal = sig;
195 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Damien Miller5428f641999-11-25 11:54:57 +1100198/*
199 * Returns current time in seconds from Jan 1, 1970 with the maximum
200 * available resolution.
201 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000204get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller95def091999-11-25 00:26:21 +1100206 struct timeval tv;
207 gettimeofday(&tv, NULL);
208 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller17e7ed02005-06-17 12:54:33 +1000211#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
212void
213client_x11_get_proto(const char *display, const char *xauth_path,
214 u_int trusted, char **_proto, char **_data)
215{
216 char cmd[1024];
217 char line[512];
218 char xdisplay[512];
219 static char proto[512], data[512];
220 FILE *f;
221 int got_data = 0, generated = 0, do_unlink = 0, i;
222 char *xauthdir, *xauthfile;
223 struct stat st;
224
225 xauthdir = xauthfile = NULL;
226 *_proto = proto;
227 *_data = data;
228 proto[0] = data[0] = '\0';
229
230 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
231 debug("No xauth program.");
232 } else {
233 if (display == NULL) {
234 debug("x11_get_proto: DISPLAY not set");
235 return;
236 }
237 /*
238 * Handle FamilyLocal case where $DISPLAY does
239 * not match an authorization entry. For this we
240 * just try "xauth list unix:displaynum.screennum".
241 * XXX: "localhost" match to determine FamilyLocal
242 * is not perfect.
243 */
244 if (strncmp(display, "localhost:", 10) == 0) {
245 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
246 display + 10);
247 display = xdisplay;
248 }
249 if (trusted == 0) {
250 xauthdir = xmalloc(MAXPATHLEN);
251 xauthfile = xmalloc(MAXPATHLEN);
252 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
253 if (mkdtemp(xauthdir) != NULL) {
254 do_unlink = 1;
255 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
256 xauthdir);
257 snprintf(cmd, sizeof(cmd),
258 "%s -f %s generate %s " SSH_X11_PROTO
259 " untrusted timeout 1200 2>" _PATH_DEVNULL,
260 xauth_path, xauthfile, display);
261 debug2("x11_get_proto: %s", cmd);
262 if (system(cmd) == 0)
263 generated = 1;
264 }
265 }
266 snprintf(cmd, sizeof(cmd),
267 "%s %s%s list %s . 2>" _PATH_DEVNULL,
268 xauth_path,
269 generated ? "-f " : "" ,
270 generated ? xauthfile : "",
271 display);
272 debug2("x11_get_proto: %s", cmd);
273 f = popen(cmd, "r");
274 if (f && fgets(line, sizeof(line), f) &&
275 sscanf(line, "%*s %511s %511s", proto, data) == 2)
276 got_data = 1;
277 if (f)
278 pclose(f);
279 }
280
281 if (do_unlink) {
282 unlink(xauthfile);
283 rmdir(xauthdir);
284 }
285 if (xauthdir)
286 xfree(xauthdir);
287 if (xauthfile)
288 xfree(xauthfile);
289
290 /*
291 * If we didn't get authentication data, just make up some
292 * data. The forwarding code will check the validity of the
293 * response anyway, and substitute this data. The X11
294 * server, however, will ignore this fake data and use
295 * whatever authentication mechanisms it was using otherwise
296 * for the local connection.
297 */
298 if (!got_data) {
299 u_int32_t rnd = 0;
300
301 logit("Warning: No xauth data; "
302 "using fake authentication data for X11 forwarding.");
303 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
304 for (i = 0; i < 16; i++) {
305 if (i % 4 == 0)
306 rnd = arc4random();
307 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
308 rnd & 0xff);
309 rnd >>= 8;
310 }
311 }
312}
313
Damien Miller5428f641999-11-25 11:54:57 +1100314/*
315 * This is called when the interactive is entered. This checks if there is
316 * an EOF coming on stdin. We must check this explicitly, as select() does
317 * not appear to wake up when redirecting from /dev/null.
318 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
Ben Lindstrombba81212001-06-25 05:01:22 +0000320static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000321client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322{
Damien Miller95def091999-11-25 00:26:21 +1100323 int len;
324 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325
Damien Miller5428f641999-11-25 11:54:57 +1100326 /*
327 * If standard input is to be "redirected from /dev/null", we simply
328 * mark that we have seen an EOF and send an EOF message to the
329 * server. Otherwise, we try to read a single character; it appears
330 * that for some files, such /dev/null, select() never wakes up for
331 * read for this descriptor, which means that we never get EOF. This
332 * way we will get the EOF if stdin comes from /dev/null or similar.
333 */
Damien Miller95def091999-11-25 00:26:21 +1100334 if (stdin_null_flag) {
335 /* Fake EOF on stdin. */
336 debug("Sending eof.");
337 stdin_eof = 1;
338 packet_start(SSH_CMSG_EOF);
339 packet_send();
340 } else {
Damien Miller95def091999-11-25 00:26:21 +1100341 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342
Damien Miller95def091999-11-25 00:26:21 +1100343 /* Check for immediate EOF on stdin. */
344 len = read(fileno(stdin), buf, 1);
345 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100346 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100347 debug("Sending eof.");
348 stdin_eof = 1;
349 packet_start(SSH_CMSG_EOF);
350 packet_send();
351 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100352 /*
353 * Got data. We must store the data in the buffer,
354 * and also process it as an escape character if
355 * appropriate.
356 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000357 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100358 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000359 else
Damien Miller95def091999-11-25 00:26:21 +1100360 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100361 }
Damien Miller95def091999-11-25 00:26:21 +1100362 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364}
365
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
Damien Miller5428f641999-11-25 11:54:57 +1100367/*
368 * Make packets from buffered stdin data, and buffer them for sending to the
369 * connection.
370 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371
Ben Lindstrombba81212001-06-25 05:01:22 +0000372static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000373client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000374{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000375 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376
Damien Miller95def091999-11-25 00:26:21 +1100377 /* Send buffered stdin data to the server. */
378 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100379 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100380 len = buffer_len(&stdin_buffer);
381 /* Keep the packets at reasonable size. */
382 if (len > packet_get_maxsize())
383 len = packet_get_maxsize();
384 packet_start(SSH_CMSG_STDIN_DATA);
385 packet_put_string(buffer_ptr(&stdin_buffer), len);
386 packet_send();
387 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000388 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100389 /* If we have a pending EOF, send it now. */
390 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
391 packet_start(SSH_CMSG_EOF);
392 packet_send();
393 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395}
396
Damien Miller5428f641999-11-25 11:54:57 +1100397/*
398 * Checks if the client window has changed, and sends a packet about it to
399 * the server if so. The actual change is detected elsewhere (by a software
400 * interrupt on Unix); this just checks the flag and sends a message if
401 * appropriate.
402 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403
Ben Lindstrombba81212001-06-25 05:01:22 +0000404static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000405client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406{
Damien Miller1383bd82000-04-06 12:32:37 +1000407 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408
Damien Miller1383bd82000-04-06 12:32:37 +1000409 if (! received_window_change_signal)
410 return;
411 /** XXX race */
412 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413
Damien Millerd3444942000-09-30 14:20:03 +1100414 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000415
416 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000417 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000418 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000419 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
420 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000421 packet_start(SSH_CMSG_WINDOW_SIZE);
422 packet_put_int(ws.ws_row);
423 packet_put_int(ws.ws_col);
424 packet_put_int(ws.ws_xpixel);
425 packet_put_int(ws.ws_ypixel);
426 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428}
429
Damien Miller509b0102003-12-17 16:33:10 +1100430static void
431client_global_request_reply(int type, u_int32_t seq, void *ctxt)
432{
433 server_alive_timeouts = 0;
434 client_global_request_reply_fwd(type, seq, ctxt);
435}
436
437static void
438server_alive_check(void)
439{
440 if (++server_alive_timeouts > options.server_alive_count_max)
441 packet_disconnect("Timeout, server not responding.");
442 packet_start(SSH2_MSG_GLOBAL_REQUEST);
443 packet_put_cstring("keepalive@openssh.com");
444 packet_put_char(1); /* boolean: want reply */
445 packet_send();
446}
447
Damien Miller5428f641999-11-25 11:54:57 +1100448/*
449 * Waits until the client can do something (some data becomes available on
450 * one of the file descriptors).
451 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000452static void
Damien Miller5e953212001-01-30 09:14:00 +1100453client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000454 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455{
Damien Miller509b0102003-12-17 16:33:10 +1100456 struct timeval tv, *tvp;
457 int ret;
458
Damien Miller5e953212001-01-30 09:14:00 +1100459 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000460 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461
Damien Miller1383bd82000-04-06 12:32:37 +1000462 if (!compat20) {
463 /* Read from the connection, unless our buffers are full. */
464 if (buffer_len(&stdout_buffer) < buffer_high &&
465 buffer_len(&stderr_buffer) < buffer_high &&
466 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100467 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000468 /*
469 * Read from stdin, unless we have seen EOF or have very much
470 * buffered data to send to the server.
471 */
472 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100473 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000474
475 /* Select stdout/stderr if have data in buffer. */
476 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100477 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000478 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100479 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000480 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000481 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000482 if (session_closed && !channel_still_open() &&
483 !packet_have_data_to_write()) {
484 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100485 memset(*readsetp, 0, *nallocp);
486 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000487 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000488 } else {
489 FD_SET(connection_in, *readsetp);
490 }
Damien Miller1383bd82000-04-06 12:32:37 +1000491 }
492
Damien Miller95def091999-11-25 00:26:21 +1100493 /* Select server connection if have data to write to the server. */
494 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100495 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100496
Damien Miller0e220db2004-06-15 10:34:08 +1000497 if (control_fd != -1)
498 FD_SET(control_fd, *readsetp);
499
Damien Miller5428f641999-11-25 11:54:57 +1100500 /*
501 * Wait for something to happen. This will suspend the process until
502 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100503 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100504 */
Damien Miller95def091999-11-25 00:26:21 +1100505
Damien Miller509b0102003-12-17 16:33:10 +1100506 if (options.server_alive_interval == 0 || !compat20)
507 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000508 else {
Damien Miller509b0102003-12-17 16:33:10 +1100509 tv.tv_sec = options.server_alive_interval;
510 tv.tv_usec = 0;
511 tvp = &tv;
512 }
513 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
514 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100515 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000516
517 /*
518 * We have to clear the select masks, because we return.
519 * We have to return, because the mainloop checks for the flags
520 * set by the signal handlers.
521 */
Damien Miller79faeff2001-11-12 11:06:32 +1100522 memset(*readsetp, 0, *nallocp);
523 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000524
Damien Miller95def091999-11-25 00:26:21 +1100525 if (errno == EINTR)
526 return;
527 /* Note: we might still have data in the buffers. */
528 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
529 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100530 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100531 } else if (ret == 0)
532 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533}
534
Ben Lindstrombba81212001-06-25 05:01:22 +0000535static void
Damien Millerad833b32000-08-23 10:46:23 +1000536client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537{
Damien Miller95def091999-11-25 00:26:21 +1100538 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000539 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000540 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000541 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000542 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543
Damien Miller95def091999-11-25 00:26:21 +1100544 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Damien Miller5428f641999-11-25 11:54:57 +1100546 /*
547 * Free (and clear) the buffer to reduce the amount of data that gets
548 * written to swap.
549 */
Damien Millerad833b32000-08-23 10:46:23 +1000550 buffer_free(bin);
551 buffer_free(bout);
552 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Damien Miller95def091999-11-25 00:26:21 +1100554 /* Send the suspend signal to the program itself. */
555 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Darren Tucker5d78de62004-11-05 20:35:44 +1100557 /* Reset window sizes in case they have changed */
558 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000561 buffer_init(bin);
562 buffer_init(bout);
563 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller95def091999-11-25 00:26:21 +1100565 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566}
567
Ben Lindstrombba81212001-06-25 05:01:22 +0000568static void
Damien Miller1383bd82000-04-06 12:32:37 +1000569client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570{
Damien Miller1383bd82000-04-06 12:32:37 +1000571 int len;
572 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Damien Miller5428f641999-11-25 11:54:57 +1100574 /*
575 * Read input from the server, and add any such data to the buffer of
576 * the packet subsystem.
577 */
Damien Miller95def091999-11-25 00:26:21 +1100578 if (FD_ISSET(connection_in, readset)) {
579 /* Read as much as possible. */
580 len = read(connection_in, buf, sizeof(buf));
581 if (len == 0) {
582 /* Received EOF. The remote host has closed the connection. */
583 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
584 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 quit_pending = 1;
587 return;
Damien Miller95def091999-11-25 00:26:21 +1100588 }
Damien Miller5428f641999-11-25 11:54:57 +1100589 /*
590 * There is a kernel bug on Solaris that causes select to
591 * sometimes wake up even though there is no data available.
592 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000593 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100594 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
Damien Miller95def091999-11-25 00:26:21 +1100596 if (len < 0) {
597 /* An error has encountered. Perhaps there is a network problem. */
598 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
599 host, strerror(errno));
600 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100601 quit_pending = 1;
602 return;
603 }
604 packet_process_incoming(buf, len);
605 }
Damien Miller1383bd82000-04-06 12:32:37 +1000606}
607
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000608static void
Damien Miller0e220db2004-06-15 10:34:08 +1000609client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
610{
611 int id;
612 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000613
Damien Miller0e220db2004-06-15 10:34:08 +1000614 id = packet_get_int();
615 packet_check_eom();
616
617 if ((c = channel_lookup(id)) == NULL) {
618 error("%s: no channel for id %d", __func__, id);
619 return;
620 }
621
622 if (type == SSH2_MSG_CHANNEL_SUCCESS)
623 debug2("Request suceeded on channel %d", id);
624 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
625 error("Request failed on channel %d", id);
626 channel_free(c);
627 }
628}
629
630static void
631client_extra_session2_setup(int id, void *arg)
632{
633 struct confirm_ctx *cctx = arg;
634 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000635 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000636
Damien Miller0e220db2004-06-15 10:34:08 +1000637 if (cctx == NULL)
638 fatal("%s: cctx == NULL", __func__);
639 if ((c = channel_lookup(id)) == NULL)
640 fatal("%s: no channel for id %d", __func__, id);
641
Darren Tuckerfc959702004-07-17 16:12:08 +1000642 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000643 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000644 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000645
Damien Miller0e220db2004-06-15 10:34:08 +1000646 c->confirm_ctx = NULL;
647 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000648 xfree(cctx->term);
649 if (cctx->env != NULL) {
650 for (i = 0; cctx->env[i] != NULL; i++)
651 xfree(cctx->env[i]);
652 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000653 }
Damien Miller3756dce2004-06-18 01:17:29 +1000654 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000655}
656
657static void
658client_process_control(fd_set * readset)
659{
660 Buffer m;
661 Channel *c;
Damien Miller23f07702004-06-18 01:19:03 +1000662 int client_fd, new_fd[3], ver, i, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000663 socklen_t addrlen;
664 struct sockaddr_storage addr;
665 struct confirm_ctx *cctx;
666 char *cmd;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100667 u_int len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000668 uid_t euid;
669 gid_t egid;
670
671 /*
672 * Accept connection on control socket
673 */
674 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
675 return;
676
677 memset(&addr, 0, sizeof(addr));
678 addrlen = sizeof(addr);
679 if ((client_fd = accept(control_fd,
680 (struct sockaddr*)&addr, &addrlen)) == -1) {
681 error("%s accept: %s", __func__, strerror(errno));
682 return;
683 }
684
685 if (getpeereid(client_fd, &euid, &egid) < 0) {
686 error("%s getpeereid failed: %s", __func__, strerror(errno));
687 close(client_fd);
688 return;
689 }
690 if ((euid != 0) && (getuid() != euid)) {
691 error("control mode uid mismatch: peer euid %u != uid %u",
692 (u_int) euid, (u_int) getuid());
693 close(client_fd);
694 return;
695 }
Damien Miller23f07702004-06-18 01:19:03 +1000696
Damien Miller0e220db2004-06-15 10:34:08 +1000697 unset_nonblock(client_fd);
698
Darren Tucker7ebfc102004-11-07 20:06:19 +1100699 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000700 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100701 if (ssh_msg_recv(client_fd, &m) == -1) {
702 error("%s: client msg_recv failed", __func__);
703 close(client_fd);
704 buffer_free(&m);
705 return;
706 }
707 if ((ver = buffer_get_char(&m)) != 1) {
708 error("%s: wrong client version %d", __func__, ver);
709 buffer_free(&m);
710 close(client_fd);
711 return;
712 }
Damien Miller0e220db2004-06-15 10:34:08 +1000713
Darren Tucker7ebfc102004-11-07 20:06:19 +1100714 allowed = 1;
715 command = buffer_get_int(&m);
716 flags = buffer_get_int(&m);
717
718 buffer_clear(&m);
719
720 switch (command) {
721 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000722 if (options.control_master == SSHCTL_MASTER_ASK ||
723 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100724 allowed = ask_permission("Allow shared connection "
725 "to %s? ", host);
726 /* continue below */
727 break;
728 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000729 if (options.control_master == SSHCTL_MASTER_ASK ||
730 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100731 allowed = ask_permission("Terminate shared connection "
732 "to %s? ", host);
733 if (allowed)
734 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100735 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100736 case SSHMUX_COMMAND_ALIVE_CHECK:
737 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
738 buffer_clear(&m);
739 buffer_put_int(&m, allowed);
740 buffer_put_int(&m, getpid());
741 if (ssh_msg_send(client_fd, /* version */1, &m) == -1) {
742 error("%s: client msg_send failed", __func__);
743 close(client_fd);
744 buffer_free(&m);
745 return;
746 }
747 buffer_free(&m);
748 close(client_fd);
749 return;
750 default:
751 error("Unsupported command %d", command);
752 buffer_free(&m);
753 close(client_fd);
754 return;
755 }
756
757 /* Reply for SSHMUX_COMMAND_OPEN */
758 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000759 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000760 buffer_put_int(&m, getpid());
Darren Tucker7ebfc102004-11-07 20:06:19 +1100761 if (ssh_msg_send(client_fd, /* version */1, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000762 error("%s: client msg_send failed", __func__);
763 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000764 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000765 return;
766 }
Damien Miller0e220db2004-06-15 10:34:08 +1000767
Damien Miller23f07702004-06-18 01:19:03 +1000768 if (!allowed) {
769 error("Refused control connection");
770 close(client_fd);
771 buffer_free(&m);
772 return;
773 }
774
Darren Tucker7ebfc102004-11-07 20:06:19 +1100775 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000776 if (ssh_msg_recv(client_fd, &m) == -1) {
777 error("%s: client msg_recv failed", __func__);
778 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000779 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000780 return;
781 }
Darren Tucker7ebfc102004-11-07 20:06:19 +1100782 if ((ver = buffer_get_char(&m)) != 1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000783 error("%s: wrong client version %d", __func__, ver);
784 buffer_free(&m);
785 close(client_fd);
786 return;
787 }
788
789 cctx = xmalloc(sizeof(*cctx));
790 memset(cctx, 0, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100791 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
792 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000793 cctx->term = buffer_get_string(&m, &len);
794
795 cmd = buffer_get_string(&m, &len);
796 buffer_init(&cctx->cmd);
797 buffer_append(&cctx->cmd, cmd, strlen(cmd));
798
Damien Miller3756dce2004-06-18 01:17:29 +1000799 env_len = buffer_get_int(&m);
800 env_len = MIN(env_len, 4096);
801 debug3("%s: receiving %d env vars", __func__, env_len);
802 if (env_len != 0) {
803 cctx->env = xmalloc(sizeof(*cctx->env) * (env_len + 1));
804 for (i = 0; i < env_len; i++)
805 cctx->env[i] = buffer_get_string(&m, &len);
806 cctx->env[i] = NULL;
807 }
808
Damien Miller0e220db2004-06-15 10:34:08 +1000809 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
810 cctx->want_tty, cctx->want_subsys, cmd);
811
812 /* Gather fds from client */
813 new_fd[0] = mm_receive_fd(client_fd);
814 new_fd[1] = mm_receive_fd(client_fd);
815 new_fd[2] = mm_receive_fd(client_fd);
816
817 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
818 new_fd[0], new_fd[1], new_fd[2]);
819
820 /* Try to pick up ttymodes from client before it goes raw */
821 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
822 error("%s: tcgetattr: %s", __func__, strerror(errno));
823
Darren Tucker7ebfc102004-11-07 20:06:19 +1100824 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000825 buffer_clear(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100826 if (ssh_msg_send(client_fd, /* version */1, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000827 error("%s: client msg_send failed", __func__);
828 close(client_fd);
829 close(new_fd[0]);
830 close(new_fd[1]);
831 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000832 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100833 xfree(cctx->term);
834 if (env_len != 0) {
835 for (i = 0; i < env_len; i++)
836 xfree(cctx->env[i]);
837 xfree(cctx->env);
838 }
Damien Miller0e220db2004-06-15 10:34:08 +1000839 return;
840 }
841 buffer_free(&m);
842
843 /* enable nonblocking unless tty */
844 if (!isatty(new_fd[0]))
845 set_nonblock(new_fd[0]);
846 if (!isatty(new_fd[1]))
847 set_nonblock(new_fd[1]);
848 if (!isatty(new_fd[2]))
849 set_nonblock(new_fd[2]);
850
851 set_nonblock(client_fd);
852
Darren Tuckerfc959702004-07-17 16:12:08 +1000853 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000854 new_fd[0], new_fd[1], new_fd[2],
855 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
856 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
857
858 /* XXX */
859 c->ctl_fd = client_fd;
860
861 debug3("%s: channel_new: %d", __func__, c->self);
862
863 channel_send_open(c->self);
864 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
865}
866
867static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000868process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000869{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000870 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100871 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000872 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000873 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100874 u_short cancel_port;
875 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000876
877 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000878 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000879 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000880 if (s == NULL)
881 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000882 while (*s && isspace(*s))
883 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000884 if (*s == '-')
885 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000886 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000887 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000888
Darren Tucker1973c882004-05-24 10:34:36 +1000889 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000890 logit("Commands:");
891 logit(" -Lport:host:hostport Request local forward");
892 logit(" -Rport:host:hostport Request remote forward");
893 logit(" -KRhostport Cancel remote forward");
894 goto out;
895 }
896
897 if (*s == 'K') {
898 delete = 1;
899 s++;
900 }
901 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000902 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000903 goto out;
904 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000905 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000906 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000907 if (local && delete) {
908 logit("Not supported.");
909 goto out;
910 }
911 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000912 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000913 goto out;
914 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000915
916 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000917 while (*s && isspace(*s))
918 s++;
919
Darren Tuckere7066df2004-05-24 10:18:05 +1000920 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100921 cancel_port = 0;
922 cancel_host = hpdelim(&s); /* may be NULL */
923 if (s != NULL) {
924 cancel_port = a2port(s);
925 cancel_host = cleanhostname(cancel_host);
926 } else {
927 cancel_port = a2port(cancel_host);
928 cancel_host = NULL;
929 }
930 if (cancel_port == 0) {
931 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000932 goto out;
933 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100934 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000935 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100936 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000937 logit("Bad forwarding specification.");
938 goto out;
939 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000940 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100941 if (channel_setup_local_fwd_listener(fwd.listen_host,
942 fwd.listen_port, fwd.connect_host,
943 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000944 logit("Port forwarding failed.");
945 goto out;
946 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100947 } else {
948 channel_request_remote_forwarding(fwd.listen_host,
949 fwd.listen_port, fwd.connect_host,
950 fwd.connect_port);
951 }
952
Darren Tuckere7066df2004-05-24 10:18:05 +1000953 logit("Forwarding port.");
954 }
955
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000956out:
957 signal(SIGINT, handler);
958 enter_raw_mode();
959 if (cmd)
960 xfree(cmd);
961}
962
Damien Millerad833b32000-08-23 10:46:23 +1000963/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +0000964static int
Damien Millerad833b32000-08-23 10:46:23 +1000965process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
966{
967 char string[1024];
968 pid_t pid;
969 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000970 u_int i;
971 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000972 char *s;
973
974 for (i = 0; i < len; i++) {
975 /* Get one character at a time. */
976 ch = buf[i];
977
978 if (escape_pending) {
979 /* We have previously seen an escape character. */
980 /* Clear the flag now. */
981 escape_pending = 0;
982
983 /* Process the escaped character. */
984 switch (ch) {
985 case '.':
986 /* Terminate the connection. */
987 snprintf(string, sizeof string, "%c.\r\n", escape_char);
988 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000989
990 quit_pending = 1;
991 return -1;
992
993 case 'Z' - 64:
994 /* Suspend the program. */
995 /* Print a message to that effect to the user. */
996 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
997 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000998
999 /* Restore terminal modes and suspend. */
1000 client_suspend_self(bin, bout, berr);
1001
1002 /* We have been continued. */
1003 continue;
1004
Damien Miller54c45982003-05-15 10:20:13 +10001005 case 'B':
1006 if (compat20) {
1007 snprintf(string, sizeof string,
1008 "%cB\r\n", escape_char);
1009 buffer_append(berr, string,
1010 strlen(string));
1011 channel_request_start(session_ident,
1012 "break", 0);
1013 packet_put_int(1000);
1014 packet_send();
1015 }
1016 continue;
1017
Ben Lindstromf28f6342001-04-04 02:03:04 +00001018 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001019 if (compat20) {
1020 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001021 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001022 else
1023 need_rekeying = 1;
1024 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001025 continue;
1026
Damien Millerad833b32000-08-23 10:46:23 +10001027 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001028 /*
1029 * Detach the program (continue to serve connections,
1030 * but put in background and no more new connections).
1031 */
Damien Miller96507ef2001-11-12 10:52:25 +11001032 /* Restore tty modes. */
1033 leave_raw_mode();
1034
1035 /* Stop listening for new connections. */
1036 channel_stop_listening();
1037
1038 snprintf(string, sizeof string,
1039 "%c& [backgrounded]\n", escape_char);
1040 buffer_append(berr, string, strlen(string));
1041
1042 /* Fork into background. */
1043 pid = fork();
1044 if (pid < 0) {
1045 error("fork: %.100s", strerror(errno));
1046 continue;
1047 }
1048 if (pid != 0) { /* This is the parent. */
1049 /* The parent just exits. */
1050 exit(0);
1051 }
1052 /* The child continues serving connections. */
1053 if (compat20) {
1054 buffer_append(bin, "\004", 1);
1055 /* fake EOF on stdin */
1056 return -1;
1057 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001058 /*
1059 * Sending SSH_CMSG_EOF alone does not always appear
1060 * to be enough. So we try to send an EOF character
1061 * first.
1062 */
1063 packet_start(SSH_CMSG_STDIN_DATA);
1064 packet_put_string("\004", 1);
1065 packet_send();
1066 /* Close stdin. */
1067 stdin_eof = 1;
1068 if (buffer_len(bin) == 0) {
1069 packet_start(SSH_CMSG_EOF);
1070 packet_send();
1071 }
1072 }
Damien Miller96507ef2001-11-12 10:52:25 +11001073 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001074
1075 case '?':
1076 snprintf(string, sizeof string,
1077"%c?\r\n\
1078Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001079%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001080%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001081%cC - open a command line\r\n\
1082%cR - Request rekey (SSH protocol 2 only)\r\n\
1083%c^Z - suspend ssh\r\n\
1084%c# - list forwarded connections\r\n\
1085%c& - background ssh (when waiting for connections to terminate)\r\n\
1086%c? - this message\r\n\
1087%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001088(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001089 escape_char, escape_char, escape_char, escape_char,
1090 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001091 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001092 buffer_append(berr, string, strlen(string));
1093 continue;
1094
1095 case '#':
1096 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1097 buffer_append(berr, string, strlen(string));
1098 s = channel_open_message();
1099 buffer_append(berr, s, strlen(s));
1100 xfree(s);
1101 continue;
1102
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001103 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001104 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001105 continue;
1106
Damien Millerad833b32000-08-23 10:46:23 +10001107 default:
1108 if (ch != escape_char) {
1109 buffer_put_char(bin, escape_char);
1110 bytes++;
1111 }
1112 /* Escaped characters fall through here */
1113 break;
1114 }
1115 } else {
1116 /*
1117 * The previous character was not an escape char. Check if this
1118 * is an escape.
1119 */
1120 if (last_was_cr && ch == escape_char) {
1121 /* It is. Set the flag and continue to next character. */
1122 escape_pending = 1;
1123 continue;
1124 }
1125 }
1126
1127 /*
1128 * Normal character. Record whether it was a newline,
1129 * and append it to the buffer.
1130 */
1131 last_was_cr = (ch == '\r' || ch == '\n');
1132 buffer_put_char(bin, ch);
1133 bytes++;
1134 }
1135 return bytes;
1136}
1137
Ben Lindstrombba81212001-06-25 05:01:22 +00001138static void
Damien Miller1383bd82000-04-06 12:32:37 +10001139client_process_input(fd_set * readset)
1140{
Damien Miller166fca82000-04-20 07:42:21 +10001141 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001142 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001143
Damien Miller95def091999-11-25 00:26:21 +11001144 /* Read input from stdin. */
1145 if (FD_ISSET(fileno(stdin), readset)) {
1146 /* Read as much as possible. */
1147 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001148 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1149 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001150 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001151 /*
1152 * Received EOF or error. They are treated
1153 * similarly, except that an error message is printed
1154 * if it was an error condition.
1155 */
Damien Miller95def091999-11-25 00:26:21 +11001156 if (len < 0) {
1157 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1158 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001159 }
1160 /* Mark that we have seen EOF. */
1161 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001162 /*
1163 * Send an EOF message to the server unless there is
1164 * data in the buffer. If there is data in the
1165 * buffer, no message will be sent now. Code
1166 * elsewhere will send the EOF when the buffer
1167 * becomes empty if stdin_eof is set.
1168 */
Damien Miller95def091999-11-25 00:26:21 +11001169 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001170 packet_start(SSH_CMSG_EOF);
1171 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001172 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001173 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001174 /*
1175 * Normal successful read, and no escape character.
1176 * Just append the data to buffer.
1177 */
Damien Miller95def091999-11-25 00:26:21 +11001178 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001179 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001180 /*
1181 * Normal, successful read. But we have an escape character
1182 * and have to process the characters one by one.
1183 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001184 if (process_escapes(&stdin_buffer, &stdout_buffer,
1185 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001186 return;
Damien Miller95def091999-11-25 00:26:21 +11001187 }
1188 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189}
1190
Ben Lindstrombba81212001-06-25 05:01:22 +00001191static void
Damien Miller95def091999-11-25 00:26:21 +11001192client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001193{
Damien Miller95def091999-11-25 00:26:21 +11001194 int len;
1195 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001196
Damien Miller95def091999-11-25 00:26:21 +11001197 /* Write buffered output to stdout. */
1198 if (FD_ISSET(fileno(stdout), writeset)) {
1199 /* Write as much data as possible. */
1200 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001201 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001202 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001203 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001204 len = 0;
1205 else {
Damien Miller5428f641999-11-25 11:54:57 +11001206 /*
1207 * An error or EOF was encountered. Put an
1208 * error message to stderr buffer.
1209 */
Damien Miller95def091999-11-25 00:26:21 +11001210 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1211 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001212 quit_pending = 1;
1213 return;
1214 }
1215 }
1216 /* Consume printed data from the buffer. */
1217 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001218 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001219 }
Damien Miller95def091999-11-25 00:26:21 +11001220 /* Write buffered output to stderr. */
1221 if (FD_ISSET(fileno(stderr), writeset)) {
1222 /* Write as much data as possible. */
1223 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001224 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001225 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001226 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001227 len = 0;
1228 else {
Damien Miller5428f641999-11-25 11:54:57 +11001229 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001230 quit_pending = 1;
1231 return;
1232 }
1233 }
1234 /* Consume printed characters from the buffer. */
1235 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001236 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001237 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001238}
1239
Damien Miller5428f641999-11-25 11:54:57 +11001240/*
Damien Millerb38eff82000-04-01 11:09:21 +10001241 * Get packets from the connection input buffer, and process them as long as
1242 * there are packets available.
1243 *
1244 * Any unknown packets received during the actual
1245 * session cause the session to terminate. This is
1246 * intended to make debugging easier since no
1247 * confirmations are sent. Any compatible protocol
1248 * extensions must be negotiated during the
1249 * preparatory phase.
1250 */
1251
Ben Lindstrombba81212001-06-25 05:01:22 +00001252static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001253client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001254{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001255 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001256}
1257
Damien Millerad833b32000-08-23 10:46:23 +10001258/* scan buf[] for '~' before sending data to the peer */
1259
Ben Lindstrombba81212001-06-25 05:01:22 +00001260static int
Damien Millerad833b32000-08-23 10:46:23 +10001261simple_escape_filter(Channel *c, char *buf, int len)
1262{
1263 /* XXX we assume c->extended is writeable */
1264 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1265}
1266
Ben Lindstrombba81212001-06-25 05:01:22 +00001267static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001268client_channel_closed(int id, void *arg)
1269{
Damien Miller3ec27592001-10-12 11:35:04 +10001270 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001271 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001272 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001273}
1274
Damien Millerb38eff82000-04-01 11:09:21 +10001275/*
Damien Miller5428f641999-11-25 11:54:57 +11001276 * Implements the interactive session with the server. This is called after
1277 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001278 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1279 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001280 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001281
Damien Miller4af51302000-04-16 11:18:38 +10001282int
Damien Millerad833b32000-08-23 10:46:23 +10001283client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001284{
Damien Miller5e953212001-01-30 09:14:00 +11001285 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001286 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001287 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1288 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001289 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001290
Damien Miller95def091999-11-25 00:26:21 +11001291 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller95def091999-11-25 00:26:21 +11001293 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller95def091999-11-25 00:26:21 +11001295 /* Initialize variables. */
1296 escape_pending = 0;
1297 last_was_cr = 1;
1298 exit_status = -1;
1299 stdin_eof = 0;
1300 buffer_high = 64 * 1024;
1301 connection_in = packet_get_connection_in();
1302 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001303 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001304 if (control_fd != -1)
1305 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001306
1307 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001308 /* enable nonblocking unless tty */
1309 if (!isatty(fileno(stdin)))
1310 set_nonblock(fileno(stdin));
1311 if (!isatty(fileno(stdout)))
1312 set_nonblock(fileno(stdout));
1313 if (!isatty(fileno(stderr)))
1314 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001315 max_fd = MAX(max_fd, fileno(stdin));
1316 max_fd = MAX(max_fd, fileno(stdout));
1317 max_fd = MAX(max_fd, fileno(stderr));
1318 }
Damien Miller95def091999-11-25 00:26:21 +11001319 stdin_bytes = 0;
1320 stdout_bytes = 0;
1321 stderr_bytes = 0;
1322 quit_pending = 0;
1323 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001324
Damien Miller95def091999-11-25 00:26:21 +11001325 /* Initialize buffers. */
1326 buffer_init(&stdin_buffer);
1327 buffer_init(&stdout_buffer);
1328 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001329
Damien Millerb38eff82000-04-01 11:09:21 +10001330 client_init_dispatch();
1331
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001332 /*
1333 * Set signal handlers, (e.g. to restore non-blocking mode)
1334 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1335 */
Darren Tucker07336da2004-11-05 20:02:16 +11001336 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1337 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001338 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1339 signal(SIGINT, signal_handler);
1340 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1341 signal(SIGQUIT, signal_handler);
1342 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1343 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001344 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345
Damien Miller95def091999-11-25 00:26:21 +11001346 if (have_pty)
1347 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001348
Ben Lindstrom5b828322001-02-09 01:34:36 +00001349 if (compat20) {
1350 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001351 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001352 channel_register_filter(session_ident,
1353 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001354 if (session_ident != -1)
1355 channel_register_cleanup(session_ident,
1356 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001357 } else {
1358 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001359 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001360 }
Damien Millerad833b32000-08-23 10:46:23 +10001361
Damien Miller95def091999-11-25 00:26:21 +11001362 /* Main loop of the client for the interactive session mode. */
1363 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001364
Damien Miller5428f641999-11-25 11:54:57 +11001365 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001366 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001367
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001368 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001369 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001370
1371 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001372
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001373 if (rekeying) {
1374 debug("rekeying in progress");
1375 } else {
1376 /*
1377 * Make packets of buffered stdin data, and buffer
1378 * them for sending to the server.
1379 */
1380 if (!compat20)
1381 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001382
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001383 /*
1384 * Make packets from buffered channel data, and
1385 * enqueue them for sending to the server.
1386 */
1387 if (packet_not_very_much_data_to_write())
1388 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001390 /*
1391 * Check if the window size has changed, and buffer a
1392 * message about it to the server if so.
1393 */
1394 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001396 if (quit_pending)
1397 break;
1398 }
Damien Miller5428f641999-11-25 11:54:57 +11001399 /*
1400 * Wait until we have something to do (something becomes
1401 * available on one of the descriptors).
1402 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001403 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001404 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001405 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407 if (quit_pending)
1408 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001410 /* Do channel operations unless rekeying in progress. */
1411 if (!rekeying) {
1412 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001413 if (need_rekeying || packet_need_rekeying()) {
1414 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001415 xxx_kex->done = 0;
1416 kex_send_kexinit(xxx_kex);
1417 need_rekeying = 0;
1418 }
1419 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001420
Damien Miller1383bd82000-04-06 12:32:37 +10001421 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001422 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001423
Damien Miller0e220db2004-06-15 10:34:08 +10001424 /* Accept control connections. */
1425 client_process_control(readset);
1426
Damien Miller1383bd82000-04-06 12:32:37 +10001427 if (quit_pending)
1428 break;
1429
1430 if (!compat20) {
1431 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001432 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001433 /*
1434 * Process output to stdout and stderr. Output to
1435 * the connection is processed elsewhere (above).
1436 */
Damien Miller5e953212001-01-30 09:14:00 +11001437 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001438 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Damien Miller5428f641999-11-25 11:54:57 +11001440 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001441 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001442 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443 }
Damien Miller5e953212001-01-30 09:14:00 +11001444 if (readset)
1445 xfree(readset);
1446 if (writeset)
1447 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448
Damien Miller95def091999-11-25 00:26:21 +11001449 /* Terminate the session. */
1450
1451 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001452 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001453
Ben Lindstrom601e4362001-06-21 03:19:23 +00001454 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001455
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001456 if (have_pty)
1457 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001458
1459 /* restore blocking io */
1460 if (!isatty(fileno(stdin)))
1461 unset_nonblock(fileno(stdin));
1462 if (!isatty(fileno(stdout)))
1463 unset_nonblock(fileno(stdout));
1464 if (!isatty(fileno(stderr)))
1465 unset_nonblock(fileno(stderr));
1466
Damien Millerd6965512003-12-17 16:31:53 +11001467 /*
1468 * If there was no shell or command requested, there will be no remote
1469 * exit status to be returned. In that case, clear error code if the
1470 * connection was deliberately terminated at this end.
1471 */
1472 if (no_shell_flag && received_signal == SIGTERM) {
1473 received_signal = 0;
1474 exit_status = 0;
1475 }
1476
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001477 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001478 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001479
1480 /*
1481 * In interactive mode (with pseudo tty) display a message indicating
1482 * that the connection has been closed.
1483 */
1484 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1485 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1486 buffer_append(&stderr_buffer, buf, strlen(buf));
1487 }
1488
Damien Miller95def091999-11-25 00:26:21 +11001489 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001490 while (buffer_len(&stdout_buffer) > 0) {
1491 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001492 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001493 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001494 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001495 break;
1496 }
Damien Miller95def091999-11-25 00:26:21 +11001497 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001498 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001499 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001500
Damien Miller95def091999-11-25 00:26:21 +11001501 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001502 while (buffer_len(&stderr_buffer) > 0) {
1503 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001504 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001505 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001506 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001507 break;
1508 }
Damien Miller95def091999-11-25 00:26:21 +11001509 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001510 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001511 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512
Damien Miller95def091999-11-25 00:26:21 +11001513 /* Clear and free any buffers. */
1514 memset(buf, 0, sizeof(buf));
1515 buffer_free(&stdin_buffer);
1516 buffer_free(&stdout_buffer);
1517 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001518
Damien Miller95def091999-11-25 00:26:21 +11001519 /* Report bytes transferred, and transfer rates. */
1520 total_time = get_current_time() - start_time;
1521 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001522 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001523 if (total_time > 0)
1524 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001525 stdin_bytes / total_time, stdout_bytes / total_time,
1526 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001527
1528 /* Return the exit status of the program. */
1529 debug("Exit status %d", exit_status);
1530 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001531}
Damien Millerb38eff82000-04-01 11:09:21 +10001532
1533/*********/
1534
Ben Lindstrombba81212001-06-25 05:01:22 +00001535static void
Damien Miller630d6f42002-01-22 23:17:30 +11001536client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001537{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001538 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001539 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001540 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001541 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001542 memset(data, 0, data_len);
1543 xfree(data);
1544}
Ben Lindstrombba81212001-06-25 05:01:22 +00001545static void
Damien Miller630d6f42002-01-22 23:17:30 +11001546client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001547{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001548 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001549 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001550 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001551 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001552 memset(data, 0, data_len);
1553 xfree(data);
1554}
Ben Lindstrombba81212001-06-25 05:01:22 +00001555static void
Damien Miller630d6f42002-01-22 23:17:30 +11001556client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001557{
Damien Millerb38eff82000-04-01 11:09:21 +10001558 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001559 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001560 /* Acknowledge the exit. */
1561 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1562 packet_send();
1563 /*
1564 * Must wait for packet to be sent since we are
1565 * exiting the loop.
1566 */
1567 packet_write_wait();
1568 /* Flag that we want to exit. */
1569 quit_pending = 1;
1570}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001571static void
1572client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1573{
1574 Channel *c = NULL;
1575 int remote_id, sock;
1576
1577 /* Read the remote channel number from the message. */
1578 remote_id = packet_get_int();
1579 packet_check_eom();
1580
1581 /*
1582 * Get a connection to the local authentication agent (this may again
1583 * get forwarded).
1584 */
1585 sock = ssh_get_authentication_socket();
1586
1587 /*
1588 * If we could not connect the agent, send an error message back to
1589 * the server. This should never happen unless the agent dies,
1590 * because authentication forwarding is only enabled if we have an
1591 * agent.
1592 */
1593 if (sock >= 0) {
1594 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1595 -1, 0, 0, 0, "authentication agent connection", 1);
1596 c->remote_id = remote_id;
1597 c->force_drain = 1;
1598 }
1599 if (c == NULL) {
1600 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1601 packet_put_int(remote_id);
1602 } else {
1603 /* Send a confirmation to the remote host. */
1604 debug("Forwarding authentication connection.");
1605 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1606 packet_put_int(remote_id);
1607 packet_put_int(c->self);
1608 }
1609 packet_send();
1610}
Damien Millerb38eff82000-04-01 11:09:21 +10001611
Ben Lindstrombba81212001-06-25 05:01:22 +00001612static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001613client_request_forwarded_tcpip(const char *request_type, int rchan)
1614{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001615 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001616 char *listen_address, *originator_address;
1617 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001618 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619
1620 /* Get rest of the packet */
1621 listen_address = packet_get_string(NULL);
1622 listen_port = packet_get_int();
1623 originator_address = packet_get_string(NULL);
1624 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001625 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001626
1627 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1628 listen_address, listen_port, originator_address, originator_port);
1629
Ben Lindstrom173e6462001-07-04 05:15:15 +00001630 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001631 if (sock < 0) {
1632 xfree(originator_address);
1633 xfree(listen_address);
1634 return NULL;
1635 }
1636 c = channel_new("forwarded-tcpip",
1637 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1638 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001639 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001640 xfree(originator_address);
1641 xfree(listen_address);
1642 return c;
1643}
1644
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001645static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001646client_request_x11(const char *request_type, int rchan)
1647{
1648 Channel *c = NULL;
1649 char *originator;
1650 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001651 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001652
1653 if (!options.forward_x11) {
1654 error("Warning: ssh server tried X11 forwarding.");
1655 error("Warning: this is probably a break in attempt by a malicious server.");
1656 return NULL;
1657 }
1658 originator = packet_get_string(NULL);
1659 if (datafellows & SSH_BUG_X11FWD) {
1660 debug2("buggy server: x11 request w/o originator_port");
1661 originator_port = 0;
1662 } else {
1663 originator_port = packet_get_int();
1664 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001665 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001666 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001667 debug("client_request_x11: request from %s %d", originator,
1668 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001670 sock = x11_connect_display();
1671 if (sock < 0)
1672 return NULL;
1673 c = channel_new("x11",
1674 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001675 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001676 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001677 return c;
1678}
1679
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001680static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681client_request_agent(const char *request_type, int rchan)
1682{
1683 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001684 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001685
1686 if (!options.forward_agent) {
1687 error("Warning: ssh server tried agent forwarding.");
1688 error("Warning: this is probably a break in attempt by a malicious server.");
1689 return NULL;
1690 }
1691 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001692 if (sock < 0)
1693 return NULL;
1694 c = channel_new("authentication agent connection",
1695 SSH_CHANNEL_OPEN, sock, sock, -1,
1696 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001697 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001698 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001699 return c;
1700}
1701
Damien Millerbd483e72000-04-30 10:00:53 +10001702/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001703static void
Damien Miller630d6f42002-01-22 23:17:30 +11001704client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001705{
1706 Channel *c = NULL;
1707 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001708 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001709 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001710
1711 ctype = packet_get_string(&len);
1712 rchan = packet_get_int();
1713 rwindow = packet_get_int();
1714 rmaxpack = packet_get_int();
1715
Damien Millere247cc42000-05-07 12:03:14 +10001716 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001717 ctype, rchan, rwindow, rmaxpack);
1718
Damien Miller0bc1bd82000-11-13 22:57:25 +11001719 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1720 c = client_request_forwarded_tcpip(ctype, rchan);
1721 } else if (strcmp(ctype, "x11") == 0) {
1722 c = client_request_x11(ctype, rchan);
1723 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1724 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001725 }
1726/* XXX duplicate : */
1727 if (c != NULL) {
1728 debug("confirm %s", ctype);
1729 c->remote_id = rchan;
1730 c->remote_window = rwindow;
1731 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001732 if (c->type != SSH_CHANNEL_CONNECTING) {
1733 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1734 packet_put_int(c->remote_id);
1735 packet_put_int(c->self);
1736 packet_put_int(c->local_window);
1737 packet_put_int(c->local_maxpacket);
1738 packet_send();
1739 }
Damien Millerbd483e72000-04-30 10:00:53 +10001740 } else {
1741 debug("failure %s", ctype);
1742 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1743 packet_put_int(rchan);
1744 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001745 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001746 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001747 packet_put_cstring("");
1748 }
Damien Millerbd483e72000-04-30 10:00:53 +10001749 packet_send();
1750 }
1751 xfree(ctype);
1752}
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static void
Damien Miller630d6f42002-01-22 23:17:30 +11001754client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001755{
1756 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001757 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001758 char *rtype;
1759
1760 id = packet_get_int();
1761 rtype = packet_get_string(NULL);
1762 reply = packet_get_char();
1763
1764 debug("client_input_channel_req: channel %d rtype %s reply %d",
1765 id, rtype, reply);
1766
Damien Miller3bbd8782004-06-18 22:23:22 +10001767 if (id == -1) {
1768 error("client_input_channel_req: request for channel -1");
1769 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001770 error("client_input_channel_req: channel %d: unknown channel", id);
1771 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001772 exitval = packet_get_int();
1773 if (id == session_ident) {
1774 success = 1;
1775 exit_status = exitval;
1776 } else if (c->ctl_fd == -1) {
1777 error("client_input_channel_req: unexpected channel %d",
1778 session_ident);
1779 } else {
1780 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1781 success = 1;
1782 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001783 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001784 }
1785 if (reply) {
1786 packet_start(success ?
1787 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001788 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001789 packet_send();
1790 }
1791 xfree(rtype);
1792}
Damien Millerc3fa4072002-01-22 23:21:58 +11001793static void
1794client_input_global_request(int type, u_int32_t seq, void *ctxt)
1795{
1796 char *rtype;
1797 int want_reply;
1798 int success = 0;
1799
1800 rtype = packet_get_string(NULL);
1801 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001802 debug("client_input_global_request: rtype %s want_reply %d",
1803 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001804 if (want_reply) {
1805 packet_start(success ?
1806 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1807 packet_send();
1808 packet_write_wait();
1809 }
1810 xfree(rtype);
1811}
Damien Millerbd483e72000-04-30 10:00:53 +10001812
Damien Miller0e220db2004-06-15 10:34:08 +10001813void
Darren Tuckerfc959702004-07-17 16:12:08 +10001814client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001815 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001816 dispatch_fn *subsys_repl)
1817{
1818 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001819 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001820
1821 debug2("%s: id %d", __func__, id);
1822
Darren Tucker5d78de62004-11-05 20:35:44 +11001823 if ((c = channel_lookup(id)) == NULL)
1824 fatal("client_session2_setup: channel %d: unknown channel", id);
1825
Damien Miller0e220db2004-06-15 10:34:08 +10001826 if (want_tty) {
1827 struct winsize ws;
1828 struct termios tio;
1829
1830 /* Store window size in the packet. */
1831 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1832 memset(&ws, 0, sizeof(ws));
1833
1834 channel_request_start(id, "pty-req", 0);
1835 packet_put_cstring(term != NULL ? term : "");
1836 packet_put_int(ws.ws_col);
1837 packet_put_int(ws.ws_row);
1838 packet_put_int(ws.ws_xpixel);
1839 packet_put_int(ws.ws_ypixel);
1840 tio = get_saved_tio();
1841 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1842 packet_send();
1843 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001844 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001845 }
1846
1847 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001848 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001849 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001850 char *name, *val;
1851
1852 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001853 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001854 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001855 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001856 if ((val = strchr(name, '=')) == NULL) {
1857 free(name);
1858 continue;
1859 }
1860 *val++ = '\0';
1861
1862 matched = 0;
1863 for (j = 0; j < options.num_send_env; j++) {
1864 if (match_pattern(name, options.send_env[j])) {
1865 matched = 1;
1866 break;
1867 }
1868 }
1869 if (!matched) {
1870 debug3("Ignored env %s", name);
1871 free(name);
1872 continue;
1873 }
1874
1875 debug("Sending env %s = %s", name, val);
1876 channel_request_start(id, "env", 0);
1877 packet_put_cstring(name);
1878 packet_put_cstring(val);
1879 packet_send();
1880 free(name);
1881 }
1882 }
1883
1884 len = buffer_len(cmd);
1885 if (len > 0) {
1886 if (len > 900)
1887 len = 900;
1888 if (want_subsystem) {
1889 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1890 channel_request_start(id, "subsystem", subsys_repl != NULL);
1891 if (subsys_repl != NULL) {
1892 /* register callback for reply */
1893 /* XXX we assume that client_loop has already been called */
1894 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1895 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1896 }
1897 } else {
1898 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1899 channel_request_start(id, "exec", 0);
1900 }
1901 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1902 packet_send();
1903 } else {
1904 channel_request_start(id, "shell", 0);
1905 packet_send();
1906 }
1907}
1908
Ben Lindstrombba81212001-06-25 05:01:22 +00001909static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001910client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001911{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001912 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001913
Damien Miller1383bd82000-04-06 12:32:37 +10001914 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1915 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1916 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1917 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001918 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001919 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1920 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001921 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001922 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001923 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001924
1925 /* rekeying */
1926 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001927
1928 /* global request reply messages */
1929 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1930 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001931}
Ben Lindstrombba81212001-06-25 05:01:22 +00001932static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001933client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001934{
1935 dispatch_init(NULL);
1936 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1937 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1938 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001939 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1940 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1941 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001942 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1943 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1944 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001945
1946 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001947 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001948 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1949 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001950}
Ben Lindstrombba81212001-06-25 05:01:22 +00001951static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001952client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001953{
1954 client_init_dispatch_13();
1955 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1956 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1957}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001958static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001959client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001960{
Damien Miller1383bd82000-04-06 12:32:37 +10001961 if (compat20)
1962 client_init_dispatch_20();
1963 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001964 client_init_dispatch_13();
1965 else
1966 client_init_dispatch_15();
1967}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001968
1969/* client specific fatal cleanup */
1970void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001971cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001972{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001973 leave_raw_mode();
1974 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10001975 if (options.control_path != NULL && control_fd != -1)
1976 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001977 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001978}