blob: adfeeab27751dac5ffab9184ca2945588f21dc98 [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"
Darren Tucker06f2bd82004-05-13 16:06:46 +100062RCSID("$OpenBSD: clientloop.c,v 1.118 2004/05/08 00:01:37 deraadt 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"
Ben Lindstrom5589f4b2002-03-22 03:24:32 +000084#include "readpass.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110085
86/* import options */
87extern Options options;
88
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089/* Flag indicating that stdin should be redirected from /dev/null. */
90extern int stdin_null_flag;
91
Damien Millerd6965512003-12-17 16:31:53 +110092/* Flag indicating that no shell has been requested */
93extern int no_shell_flag;
94
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Name of the host we are connecting to. This is the name given on the
97 * command line, or the HostName specified for the user-supplied name in a
98 * configuration file.
99 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100extern char *host;
101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag to indicate that we have received a window change signal which has
104 * not yet been processed. This will cause a message indicating the new
105 * window size to be sent to the server a little later. This is volatile
106 * because this is updated in a signal handler.
107 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000108static volatile sig_atomic_t received_window_change_signal = 0;
109static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
112static int in_non_blocking_mode = 0;
113
114/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000115static int quit_pending; /* Set to non-zero to quit the client loop. */
116static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100117static int escape_pending; /* Last character was the escape character */
118static int last_was_cr; /* Last character was a newline. */
119static int exit_status; /* Used to store the exit status of the command. */
120static int stdin_eof; /* EOF has been encountered on standard error. */
121static Buffer stdin_buffer; /* Buffer for stdin data. */
122static Buffer stdout_buffer; /* Buffer for stdout data. */
123static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000124static u_long stdin_bytes, stdout_bytes, stderr_bytes;
125static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100126static int connection_in; /* Connection to server (input). */
127static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000128static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000129static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100130static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Ben Lindstrombba81212001-06-25 05:01:22 +0000132static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000133int session_ident = -1;
134
Ben Lindstromf28f6342001-04-04 02:03:04 +0000135/*XXX*/
136extern Kex *xxx_kex;
137
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138/* Restores stdin to blocking mode. */
139
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000141leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142{
Damien Miller95def091999-11-25 00:26:21 +1100143 if (in_non_blocking_mode) {
144 (void) fcntl(fileno(stdin), F_SETFL, 0);
145 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100146 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147}
148
Damien Miller95def091999-11-25 00:26:21 +1100149/* Puts stdin terminal in non-blocking mode. */
150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000152enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153{
Damien Miller95def091999-11-25 00:26:21 +1100154 in_non_blocking_mode = 1;
155 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156}
157
Damien Miller5428f641999-11-25 11:54:57 +1100158/*
159 * Signal handler for the window change signal (SIGWINCH). This just sets a
160 * flag indicating that the window has changed.
161 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162
Ben Lindstrombba81212001-06-25 05:01:22 +0000163static void
Damien Miller95def091999-11-25 00:26:21 +1100164window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165{
Damien Miller95def091999-11-25 00:26:21 +1100166 received_window_change_signal = 1;
167 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168}
169
Damien Miller5428f641999-11-25 11:54:57 +1100170/*
171 * Signal handler for signals that cause the program to terminate. These
172 * signals must be trapped to restore terminal modes.
173 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Ben Lindstrombba81212001-06-25 05:01:22 +0000175static void
Damien Miller95def091999-11-25 00:26:21 +1100176signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000178 received_signal = sig;
179 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180}
181
Damien Miller5428f641999-11-25 11:54:57 +1100182/*
183 * Returns current time in seconds from Jan 1, 1970 with the maximum
184 * available resolution.
185 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000188get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189{
Damien Miller95def091999-11-25 00:26:21 +1100190 struct timeval tv;
191 gettimeofday(&tv, NULL);
192 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193}
194
Damien Miller5428f641999-11-25 11:54:57 +1100195/*
196 * This is called when the interactive is entered. This checks if there is
197 * an EOF coming on stdin. We must check this explicitly, as select() does
198 * not appear to wake up when redirecting from /dev/null.
199 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000202client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203{
Damien Miller95def091999-11-25 00:26:21 +1100204 int len;
205 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206
Damien Miller5428f641999-11-25 11:54:57 +1100207 /*
208 * If standard input is to be "redirected from /dev/null", we simply
209 * mark that we have seen an EOF and send an EOF message to the
210 * server. Otherwise, we try to read a single character; it appears
211 * that for some files, such /dev/null, select() never wakes up for
212 * read for this descriptor, which means that we never get EOF. This
213 * way we will get the EOF if stdin comes from /dev/null or similar.
214 */
Damien Miller95def091999-11-25 00:26:21 +1100215 if (stdin_null_flag) {
216 /* Fake EOF on stdin. */
217 debug("Sending eof.");
218 stdin_eof = 1;
219 packet_start(SSH_CMSG_EOF);
220 packet_send();
221 } else {
Damien Miller95def091999-11-25 00:26:21 +1100222 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223
Damien Miller95def091999-11-25 00:26:21 +1100224 /* Check for immediate EOF on stdin. */
225 len = read(fileno(stdin), buf, 1);
226 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100227 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100228 debug("Sending eof.");
229 stdin_eof = 1;
230 packet_start(SSH_CMSG_EOF);
231 packet_send();
232 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100233 /*
234 * Got data. We must store the data in the buffer,
235 * and also process it as an escape character if
236 * appropriate.
237 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000238 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100239 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000240 else
Damien Miller95def091999-11-25 00:26:21 +1100241 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100242 }
Damien Miller95def091999-11-25 00:26:21 +1100243 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245}
246
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller5428f641999-11-25 11:54:57 +1100248/*
249 * Make packets from buffered stdin data, and buffer them for sending to the
250 * connection.
251 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252
Ben Lindstrombba81212001-06-25 05:01:22 +0000253static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000254client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000256 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller95def091999-11-25 00:26:21 +1100258 /* Send buffered stdin data to the server. */
259 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100260 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100261 len = buffer_len(&stdin_buffer);
262 /* Keep the packets at reasonable size. */
263 if (len > packet_get_maxsize())
264 len = packet_get_maxsize();
265 packet_start(SSH_CMSG_STDIN_DATA);
266 packet_put_string(buffer_ptr(&stdin_buffer), len);
267 packet_send();
268 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000269 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100270 /* If we have a pending EOF, send it now. */
271 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
272 packet_start(SSH_CMSG_EOF);
273 packet_send();
274 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276}
277
Damien Miller5428f641999-11-25 11:54:57 +1100278/*
279 * Checks if the client window has changed, and sends a packet about it to
280 * the server if so. The actual change is detected elsewhere (by a software
281 * interrupt on Unix); this just checks the flag and sends a message if
282 * appropriate.
283 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Ben Lindstrombba81212001-06-25 05:01:22 +0000285static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000286client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287{
Damien Miller1383bd82000-04-06 12:32:37 +1000288 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289
Damien Miller1383bd82000-04-06 12:32:37 +1000290 if (! received_window_change_signal)
291 return;
292 /** XXX race */
293 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294
Damien Miller1383bd82000-04-06 12:32:37 +1000295 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
296 return;
297
Damien Millerd3444942000-09-30 14:20:03 +1100298 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000299
300 if (compat20) {
301 channel_request_start(session_ident, "window-change", 0);
302 packet_put_int(ws.ws_col);
303 packet_put_int(ws.ws_row);
304 packet_put_int(ws.ws_xpixel);
305 packet_put_int(ws.ws_ypixel);
306 packet_send();
307 } else {
308 packet_start(SSH_CMSG_WINDOW_SIZE);
309 packet_put_int(ws.ws_row);
310 packet_put_int(ws.ws_col);
311 packet_put_int(ws.ws_xpixel);
312 packet_put_int(ws.ws_ypixel);
313 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315}
316
Damien Miller509b0102003-12-17 16:33:10 +1100317static void
318client_global_request_reply(int type, u_int32_t seq, void *ctxt)
319{
320 server_alive_timeouts = 0;
321 client_global_request_reply_fwd(type, seq, ctxt);
322}
323
324static void
325server_alive_check(void)
326{
327 if (++server_alive_timeouts > options.server_alive_count_max)
328 packet_disconnect("Timeout, server not responding.");
329 packet_start(SSH2_MSG_GLOBAL_REQUEST);
330 packet_put_cstring("keepalive@openssh.com");
331 packet_put_char(1); /* boolean: want reply */
332 packet_send();
333}
334
Damien Miller5428f641999-11-25 11:54:57 +1100335/*
336 * Waits until the client can do something (some data becomes available on
337 * one of the file descriptors).
338 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Ben Lindstrombba81212001-06-25 05:01:22 +0000340static void
Damien Miller5e953212001-01-30 09:14:00 +1100341client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000342 int *maxfdp, int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343{
Damien Miller509b0102003-12-17 16:33:10 +1100344 struct timeval tv, *tvp;
345 int ret;
346
Damien Miller5e953212001-01-30 09:14:00 +1100347 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000348 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349
Damien Miller1383bd82000-04-06 12:32:37 +1000350 if (!compat20) {
351 /* Read from the connection, unless our buffers are full. */
352 if (buffer_len(&stdout_buffer) < buffer_high &&
353 buffer_len(&stderr_buffer) < buffer_high &&
354 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100355 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000356 /*
357 * Read from stdin, unless we have seen EOF or have very much
358 * buffered data to send to the server.
359 */
360 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100361 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000362
363 /* Select stdout/stderr if have data in buffer. */
364 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100365 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000366 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100367 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000368 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000369 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000370 if (session_closed && !channel_still_open() &&
371 !packet_have_data_to_write()) {
372 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100373 memset(*readsetp, 0, *nallocp);
374 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000375 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000376 } else {
377 FD_SET(connection_in, *readsetp);
378 }
Damien Miller1383bd82000-04-06 12:32:37 +1000379 }
380
Damien Miller95def091999-11-25 00:26:21 +1100381 /* Select server connection if have data to write to the server. */
382 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100383 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100384
Damien Miller5428f641999-11-25 11:54:57 +1100385 /*
386 * Wait for something to happen. This will suspend the process until
387 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100388 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100389 */
Damien Miller95def091999-11-25 00:26:21 +1100390
Damien Miller509b0102003-12-17 16:33:10 +1100391 if (options.server_alive_interval == 0 || !compat20)
392 tvp = NULL;
393 else {
394 tv.tv_sec = options.server_alive_interval;
395 tv.tv_usec = 0;
396 tvp = &tv;
397 }
398 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
399 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100400 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000401
402 /*
403 * We have to clear the select masks, because we return.
404 * We have to return, because the mainloop checks for the flags
405 * set by the signal handlers.
406 */
Damien Miller79faeff2001-11-12 11:06:32 +1100407 memset(*readsetp, 0, *nallocp);
408 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000409
Damien Miller95def091999-11-25 00:26:21 +1100410 if (errno == EINTR)
411 return;
412 /* Note: we might still have data in the buffers. */
413 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
414 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100415 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100416 } else if (ret == 0)
417 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418}
419
Ben Lindstrombba81212001-06-25 05:01:22 +0000420static void
Damien Millerad833b32000-08-23 10:46:23 +1000421client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422{
Damien Miller95def091999-11-25 00:26:21 +1100423 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000426 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000427 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000428 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000429 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Damien Miller95def091999-11-25 00:26:21 +1100431 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller5428f641999-11-25 11:54:57 +1100433 /*
434 * Free (and clear) the buffer to reduce the amount of data that gets
435 * written to swap.
436 */
Damien Millerad833b32000-08-23 10:46:23 +1000437 buffer_free(bin);
438 buffer_free(bout);
439 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Damien Miller95def091999-11-25 00:26:21 +1100441 /* Save old window size. */
442 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000443
Damien Miller95def091999-11-25 00:26:21 +1100444 /* Send the suspend signal to the program itself. */
445 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Miller95def091999-11-25 00:26:21 +1100447 /* Check if the window size has changed. */
448 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
449 (oldws.ws_row != newws.ws_row ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100450 oldws.ws_col != newws.ws_col ||
451 oldws.ws_xpixel != newws.ws_xpixel ||
452 oldws.ws_ypixel != newws.ws_ypixel))
Damien Miller95def091999-11-25 00:26:21 +1100453 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454
Damien Miller95def091999-11-25 00:26:21 +1100455 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000456 buffer_init(bin);
457 buffer_init(bout);
458 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000459
Damien Miller95def091999-11-25 00:26:21 +1100460 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461}
462
Ben Lindstrombba81212001-06-25 05:01:22 +0000463static void
Damien Miller1383bd82000-04-06 12:32:37 +1000464client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465{
Damien Miller1383bd82000-04-06 12:32:37 +1000466 int len;
467 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468
Damien Miller5428f641999-11-25 11:54:57 +1100469 /*
470 * Read input from the server, and add any such data to the buffer of
471 * the packet subsystem.
472 */
Damien Miller95def091999-11-25 00:26:21 +1100473 if (FD_ISSET(connection_in, readset)) {
474 /* Read as much as possible. */
475 len = read(connection_in, buf, sizeof(buf));
476 if (len == 0) {
477 /* Received EOF. The remote host has closed the connection. */
478 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
479 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481 quit_pending = 1;
482 return;
Damien Miller95def091999-11-25 00:26:21 +1100483 }
Damien Miller5428f641999-11-25 11:54:57 +1100484 /*
485 * There is a kernel bug on Solaris that causes select to
486 * sometimes wake up even though there is no data available.
487 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000488 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100489 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Miller95def091999-11-25 00:26:21 +1100491 if (len < 0) {
492 /* An error has encountered. Perhaps there is a network problem. */
493 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
494 host, strerror(errno));
495 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100496 quit_pending = 1;
497 return;
498 }
499 packet_process_incoming(buf, len);
500 }
Damien Miller1383bd82000-04-06 12:32:37 +1000501}
502
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000503static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000504process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000505{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000506 void (*handler)(int);
507 char *s, *cmd;
508 u_short fwd_port, fwd_host_port;
509 char buf[1024], sfwd_port[6], sfwd_host_port[6];
510 int local = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000511
512 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000513 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000514 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000515 if (s == NULL)
516 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000517 while (*s && isspace(*s))
518 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000519 if (*s == 0)
520 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000521 if (strlen(s) < 2 || s[0] != '-' || !(s[1] == 'L' || s[1] == 'R')) {
Damien Miller996acd22003-04-09 20:59:48 +1000522 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000523 goto out;
524 }
525 if (s[1] == 'L')
526 local = 1;
527 if (!local && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000528 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000529 goto out;
530 }
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000531 s += 2;
532 while (*s && isspace(*s))
533 s++;
534
535 if (sscanf(s, "%5[0-9]:%255[^:]:%5[0-9]",
536 sfwd_port, buf, sfwd_host_port) != 3 &&
537 sscanf(s, "%5[0-9]/%255[^/]/%5[0-9]",
538 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Miller996acd22003-04-09 20:59:48 +1000539 logit("Bad forwarding specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000540 goto out;
541 }
542 if ((fwd_port = a2port(sfwd_port)) == 0 ||
543 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000544 logit("Bad forwarding port(s).");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000545 goto out;
546 }
547 if (local) {
Ben Lindstrom681d9322002-03-22 03:53:00 +0000548 if (channel_setup_local_fwd_listener(fwd_port, buf,
549 fwd_host_port, options.gateway_ports) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000550 logit("Port forwarding failed.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000551 goto out;
552 }
553 } else
554 channel_request_remote_forwarding(fwd_port, buf,
555 fwd_host_port);
Damien Miller996acd22003-04-09 20:59:48 +1000556 logit("Forwarding port.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000557out:
558 signal(SIGINT, handler);
559 enter_raw_mode();
560 if (cmd)
561 xfree(cmd);
562}
563
Damien Millerad833b32000-08-23 10:46:23 +1000564/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +0000565static int
Damien Millerad833b32000-08-23 10:46:23 +1000566process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
567{
568 char string[1024];
569 pid_t pid;
570 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000571 u_int i;
572 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000573 char *s;
574
575 for (i = 0; i < len; i++) {
576 /* Get one character at a time. */
577 ch = buf[i];
578
579 if (escape_pending) {
580 /* We have previously seen an escape character. */
581 /* Clear the flag now. */
582 escape_pending = 0;
583
584 /* Process the escaped character. */
585 switch (ch) {
586 case '.':
587 /* Terminate the connection. */
588 snprintf(string, sizeof string, "%c.\r\n", escape_char);
589 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000590
591 quit_pending = 1;
592 return -1;
593
594 case 'Z' - 64:
595 /* Suspend the program. */
596 /* Print a message to that effect to the user. */
597 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
598 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000599
600 /* Restore terminal modes and suspend. */
601 client_suspend_self(bin, bout, berr);
602
603 /* We have been continued. */
604 continue;
605
Damien Miller54c45982003-05-15 10:20:13 +1000606 case 'B':
607 if (compat20) {
608 snprintf(string, sizeof string,
609 "%cB\r\n", escape_char);
610 buffer_append(berr, string,
611 strlen(string));
612 channel_request_start(session_ident,
613 "break", 0);
614 packet_put_int(1000);
615 packet_send();
616 }
617 continue;
618
Ben Lindstromf28f6342001-04-04 02:03:04 +0000619 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000620 if (compat20) {
621 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +1000622 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000623 else
624 need_rekeying = 1;
625 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000626 continue;
627
Damien Millerad833b32000-08-23 10:46:23 +1000628 case '&':
Damien Millerad833b32000-08-23 10:46:23 +1000629 /*
630 * Detach the program (continue to serve connections,
631 * but put in background and no more new connections).
632 */
Damien Miller96507ef2001-11-12 10:52:25 +1100633 /* Restore tty modes. */
634 leave_raw_mode();
635
636 /* Stop listening for new connections. */
637 channel_stop_listening();
638
639 snprintf(string, sizeof string,
640 "%c& [backgrounded]\n", escape_char);
641 buffer_append(berr, string, strlen(string));
642
643 /* Fork into background. */
644 pid = fork();
645 if (pid < 0) {
646 error("fork: %.100s", strerror(errno));
647 continue;
648 }
649 if (pid != 0) { /* This is the parent. */
650 /* The parent just exits. */
651 exit(0);
652 }
653 /* The child continues serving connections. */
654 if (compat20) {
655 buffer_append(bin, "\004", 1);
656 /* fake EOF on stdin */
657 return -1;
658 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +1000659 /*
660 * Sending SSH_CMSG_EOF alone does not always appear
661 * to be enough. So we try to send an EOF character
662 * first.
663 */
664 packet_start(SSH_CMSG_STDIN_DATA);
665 packet_put_string("\004", 1);
666 packet_send();
667 /* Close stdin. */
668 stdin_eof = 1;
669 if (buffer_len(bin) == 0) {
670 packet_start(SSH_CMSG_EOF);
671 packet_send();
672 }
673 }
Damien Miller96507ef2001-11-12 10:52:25 +1100674 continue;
Damien Millerad833b32000-08-23 10:46:23 +1000675
676 case '?':
677 snprintf(string, sizeof string,
678"%c?\r\n\
679Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000680%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +1000681%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000682%cC - open a command line\r\n\
683%cR - Request rekey (SSH protocol 2 only)\r\n\
684%c^Z - suspend ssh\r\n\
685%c# - list forwarded connections\r\n\
686%c& - background ssh (when waiting for connections to terminate)\r\n\
687%c? - this message\r\n\
688%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +1000689(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +1000690 escape_char, escape_char, escape_char, escape_char,
691 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +1000692 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000693 buffer_append(berr, string, strlen(string));
694 continue;
695
696 case '#':
697 snprintf(string, sizeof string, "%c#\r\n", escape_char);
698 buffer_append(berr, string, strlen(string));
699 s = channel_open_message();
700 buffer_append(berr, s, strlen(s));
701 xfree(s);
702 continue;
703
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000704 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +0000705 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000706 continue;
707
Damien Millerad833b32000-08-23 10:46:23 +1000708 default:
709 if (ch != escape_char) {
710 buffer_put_char(bin, escape_char);
711 bytes++;
712 }
713 /* Escaped characters fall through here */
714 break;
715 }
716 } else {
717 /*
718 * The previous character was not an escape char. Check if this
719 * is an escape.
720 */
721 if (last_was_cr && ch == escape_char) {
722 /* It is. Set the flag and continue to next character. */
723 escape_pending = 1;
724 continue;
725 }
726 }
727
728 /*
729 * Normal character. Record whether it was a newline,
730 * and append it to the buffer.
731 */
732 last_was_cr = (ch == '\r' || ch == '\n');
733 buffer_put_char(bin, ch);
734 bytes++;
735 }
736 return bytes;
737}
738
Ben Lindstrombba81212001-06-25 05:01:22 +0000739static void
Damien Miller1383bd82000-04-06 12:32:37 +1000740client_process_input(fd_set * readset)
741{
Damien Miller166fca82000-04-20 07:42:21 +1000742 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000743 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000744
Damien Miller95def091999-11-25 00:26:21 +1100745 /* Read input from stdin. */
746 if (FD_ISSET(fileno(stdin), readset)) {
747 /* Read as much as possible. */
748 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000749 if (len < 0 && (errno == EAGAIN || errno == EINTR))
750 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +1100751 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100752 /*
753 * Received EOF or error. They are treated
754 * similarly, except that an error message is printed
755 * if it was an error condition.
756 */
Damien Miller95def091999-11-25 00:26:21 +1100757 if (len < 0) {
758 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
759 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100760 }
761 /* Mark that we have seen EOF. */
762 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100763 /*
764 * Send an EOF message to the server unless there is
765 * data in the buffer. If there is data in the
766 * buffer, no message will be sent now. Code
767 * elsewhere will send the EOF when the buffer
768 * becomes empty if stdin_eof is set.
769 */
Damien Miller95def091999-11-25 00:26:21 +1100770 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000771 packet_start(SSH_CMSG_EOF);
772 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100773 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000774 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +1100775 /*
776 * Normal successful read, and no escape character.
777 * Just append the data to buffer.
778 */
Damien Miller95def091999-11-25 00:26:21 +1100779 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100780 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100781 /*
782 * Normal, successful read. But we have an escape character
783 * and have to process the characters one by one.
784 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000785 if (process_escapes(&stdin_buffer, &stdout_buffer,
786 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +1000787 return;
Damien Miller95def091999-11-25 00:26:21 +1100788 }
789 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790}
791
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Damien Miller95def091999-11-25 00:26:21 +1100793client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000794{
Damien Miller95def091999-11-25 00:26:21 +1100795 int len;
796 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000797
Damien Miller95def091999-11-25 00:26:21 +1100798 /* Write buffered output to stdout. */
799 if (FD_ISSET(fileno(stdout), writeset)) {
800 /* Write as much data as possible. */
801 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100802 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100803 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000804 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100805 len = 0;
806 else {
Damien Miller5428f641999-11-25 11:54:57 +1100807 /*
808 * An error or EOF was encountered. Put an
809 * error message to stderr buffer.
810 */
Damien Miller95def091999-11-25 00:26:21 +1100811 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
812 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100813 quit_pending = 1;
814 return;
815 }
816 }
817 /* Consume printed data from the buffer. */
818 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000819 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000820 }
Damien Miller95def091999-11-25 00:26:21 +1100821 /* Write buffered output to stderr. */
822 if (FD_ISSET(fileno(stderr), writeset)) {
823 /* Write as much data as possible. */
824 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100825 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100826 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000827 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100828 len = 0;
829 else {
Damien Miller5428f641999-11-25 11:54:57 +1100830 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100831 quit_pending = 1;
832 return;
833 }
834 }
835 /* Consume printed characters from the buffer. */
836 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000837 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100838 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839}
840
Damien Miller5428f641999-11-25 11:54:57 +1100841/*
Damien Millerb38eff82000-04-01 11:09:21 +1000842 * Get packets from the connection input buffer, and process them as long as
843 * there are packets available.
844 *
845 * Any unknown packets received during the actual
846 * session cause the session to terminate. This is
847 * intended to make debugging easier since no
848 * confirmations are sent. Any compatible protocol
849 * extensions must be negotiated during the
850 * preparatory phase.
851 */
852
Ben Lindstrombba81212001-06-25 05:01:22 +0000853static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000854client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000855{
Ben Lindstromf28f6342001-04-04 02:03:04 +0000856 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000857}
858
Damien Millerad833b32000-08-23 10:46:23 +1000859/* scan buf[] for '~' before sending data to the peer */
860
Ben Lindstrombba81212001-06-25 05:01:22 +0000861static int
Damien Millerad833b32000-08-23 10:46:23 +1000862simple_escape_filter(Channel *c, char *buf, int len)
863{
864 /* XXX we assume c->extended is writeable */
865 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
866}
867
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000869client_channel_closed(int id, void *arg)
870{
871 if (id != session_ident)
872 error("client_channel_closed: id %d != session_ident %d",
873 id, session_ident);
Damien Miller3ec27592001-10-12 11:35:04 +1000874 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000875 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +1000876 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000877}
878
Damien Millerb38eff82000-04-01 11:09:21 +1000879/*
Damien Miller5428f641999-11-25 11:54:57 +1100880 * Implements the interactive session with the server. This is called after
881 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000882 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
883 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +1100884 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000885
Damien Miller4af51302000-04-16 11:18:38 +1000886int
Damien Millerad833b32000-08-23 10:46:23 +1000887client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000888{
Damien Miller5e953212001-01-30 09:14:00 +1100889 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100890 double start_time, total_time;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000891 int max_fd = 0, max_fd2 = 0, len, rekeying = 0, nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +1100892 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000893
Damien Miller95def091999-11-25 00:26:21 +1100894 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895
Damien Miller95def091999-11-25 00:26:21 +1100896 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000897
Damien Miller95def091999-11-25 00:26:21 +1100898 /* Initialize variables. */
899 escape_pending = 0;
900 last_was_cr = 1;
901 exit_status = -1;
902 stdin_eof = 0;
903 buffer_high = 64 * 1024;
904 connection_in = packet_get_connection_in();
905 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100906 max_fd = MAX(connection_in, connection_out);
907
908 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000909 /* enable nonblocking unless tty */
910 if (!isatty(fileno(stdin)))
911 set_nonblock(fileno(stdin));
912 if (!isatty(fileno(stdout)))
913 set_nonblock(fileno(stdout));
914 if (!isatty(fileno(stderr)))
915 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +1100916 max_fd = MAX(max_fd, fileno(stdin));
917 max_fd = MAX(max_fd, fileno(stdout));
918 max_fd = MAX(max_fd, fileno(stderr));
919 }
Damien Miller95def091999-11-25 00:26:21 +1100920 stdin_bytes = 0;
921 stdout_bytes = 0;
922 stderr_bytes = 0;
923 quit_pending = 0;
924 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925
Damien Miller95def091999-11-25 00:26:21 +1100926 /* Initialize buffers. */
927 buffer_init(&stdin_buffer);
928 buffer_init(&stdout_buffer);
929 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930
Damien Millerb38eff82000-04-01 11:09:21 +1000931 client_init_dispatch();
932
Ben Lindstromf49dbff2002-12-23 02:01:55 +0000933 /*
934 * Set signal handlers, (e.g. to restore non-blocking mode)
935 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
936 */
937 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
938 signal(SIGINT, signal_handler);
939 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
940 signal(SIGQUIT, signal_handler);
941 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
942 signal(SIGTERM, signal_handler);
Damien Miller95def091999-11-25 00:26:21 +1100943 if (have_pty)
944 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945
Damien Miller95def091999-11-25 00:26:21 +1100946 if (have_pty)
947 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000948
Ben Lindstrom5b828322001-02-09 01:34:36 +0000949 if (compat20) {
950 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000951 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +0000952 channel_register_filter(session_ident,
953 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000954 if (session_ident != -1)
955 channel_register_cleanup(session_ident,
956 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +0000957 } else {
958 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000959 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +0000960 }
Damien Millerad833b32000-08-23 10:46:23 +1000961
Damien Miller95def091999-11-25 00:26:21 +1100962 /* Main loop of the client for the interactive session mode. */
963 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964
Damien Miller5428f641999-11-25 11:54:57 +1100965 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100966 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000968 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +1000969 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000970
971 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +1000972
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000973 if (rekeying) {
974 debug("rekeying in progress");
975 } else {
976 /*
977 * Make packets of buffered stdin data, and buffer
978 * them for sending to the server.
979 */
980 if (!compat20)
981 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000983 /*
984 * Make packets from buffered channel data, and
985 * enqueue them for sending to the server.
986 */
987 if (packet_not_very_much_data_to_write())
988 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000989
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000990 /*
991 * Check if the window size has changed, and buffer a
992 * message about it to the server if so.
993 */
994 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000996 if (quit_pending)
997 break;
998 }
Damien Miller5428f641999-11-25 11:54:57 +1100999 /*
1000 * Wait until we have something to do (something becomes
1001 * available on one of the descriptors).
1002 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001003 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001004 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001005 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001006
Damien Miller95def091999-11-25 00:26:21 +11001007 if (quit_pending)
1008 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001010 /* Do channel operations unless rekeying in progress. */
1011 if (!rekeying) {
1012 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001013 if (need_rekeying || packet_need_rekeying()) {
1014 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001015 xxx_kex->done = 0;
1016 kex_send_kexinit(xxx_kex);
1017 need_rekeying = 0;
1018 }
1019 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020
Damien Miller1383bd82000-04-06 12:32:37 +10001021 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001022 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023
Damien Miller1383bd82000-04-06 12:32:37 +10001024 if (quit_pending)
1025 break;
1026
1027 if (!compat20) {
1028 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001029 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001030 /*
1031 * Process output to stdout and stderr. Output to
1032 * the connection is processed elsewhere (above).
1033 */
Damien Miller5e953212001-01-30 09:14:00 +11001034 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001035 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036
Damien Miller5428f641999-11-25 11:54:57 +11001037 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001038 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001039 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040 }
Damien Miller5e953212001-01-30 09:14:00 +11001041 if (readset)
1042 xfree(readset);
1043 if (writeset)
1044 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001045
Damien Miller95def091999-11-25 00:26:21 +11001046 /* Terminate the session. */
1047
1048 /* Stop watching for window change. */
1049 if (have_pty)
1050 signal(SIGWINCH, SIG_DFL);
1051
Ben Lindstrom601e4362001-06-21 03:19:23 +00001052 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001053
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001054 if (have_pty)
1055 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001056
1057 /* restore blocking io */
1058 if (!isatty(fileno(stdin)))
1059 unset_nonblock(fileno(stdin));
1060 if (!isatty(fileno(stdout)))
1061 unset_nonblock(fileno(stdout));
1062 if (!isatty(fileno(stderr)))
1063 unset_nonblock(fileno(stderr));
1064
Damien Millerd6965512003-12-17 16:31:53 +11001065 /*
1066 * If there was no shell or command requested, there will be no remote
1067 * exit status to be returned. In that case, clear error code if the
1068 * connection was deliberately terminated at this end.
1069 */
1070 if (no_shell_flag && received_signal == SIGTERM) {
1071 received_signal = 0;
1072 exit_status = 0;
1073 }
1074
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001075 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001076 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001077
1078 /*
1079 * In interactive mode (with pseudo tty) display a message indicating
1080 * that the connection has been closed.
1081 */
1082 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1083 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1084 buffer_append(&stderr_buffer, buf, strlen(buf));
1085 }
1086
Damien Miller95def091999-11-25 00:26:21 +11001087 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001088 while (buffer_len(&stdout_buffer) > 0) {
1089 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001090 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001091 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001092 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001093 break;
1094 }
Damien Miller95def091999-11-25 00:26:21 +11001095 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001096 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001097 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098
Damien Miller95def091999-11-25 00:26:21 +11001099 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001100 while (buffer_len(&stderr_buffer) > 0) {
1101 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001102 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001103 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001104 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001105 break;
1106 }
Damien Miller95def091999-11-25 00:26:21 +11001107 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001108 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001109 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001110
Damien Miller95def091999-11-25 00:26:21 +11001111 /* Clear and free any buffers. */
1112 memset(buf, 0, sizeof(buf));
1113 buffer_free(&stdin_buffer);
1114 buffer_free(&stdout_buffer);
1115 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001116
Damien Miller95def091999-11-25 00:26:21 +11001117 /* Report bytes transferred, and transfer rates. */
1118 total_time = get_current_time() - start_time;
1119 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001120 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001121 if (total_time > 0)
1122 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001123 stdin_bytes / total_time, stdout_bytes / total_time,
1124 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001125
1126 /* Return the exit status of the program. */
1127 debug("Exit status %d", exit_status);
1128 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001129}
Damien Millerb38eff82000-04-01 11:09:21 +10001130
1131/*********/
1132
Ben Lindstrombba81212001-06-25 05:01:22 +00001133static void
Damien Miller630d6f42002-01-22 23:17:30 +11001134client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001135{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001136 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001137 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001138 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001139 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001140 memset(data, 0, data_len);
1141 xfree(data);
1142}
Ben Lindstrombba81212001-06-25 05:01:22 +00001143static void
Damien Miller630d6f42002-01-22 23:17:30 +11001144client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001145{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001146 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001147 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001148 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001149 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001150 memset(data, 0, data_len);
1151 xfree(data);
1152}
Ben Lindstrombba81212001-06-25 05:01:22 +00001153static void
Damien Miller630d6f42002-01-22 23:17:30 +11001154client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001155{
Damien Millerb38eff82000-04-01 11:09:21 +10001156 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001157 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001158 /* Acknowledge the exit. */
1159 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1160 packet_send();
1161 /*
1162 * Must wait for packet to be sent since we are
1163 * exiting the loop.
1164 */
1165 packet_write_wait();
1166 /* Flag that we want to exit. */
1167 quit_pending = 1;
1168}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001169static void
1170client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1171{
1172 Channel *c = NULL;
1173 int remote_id, sock;
1174
1175 /* Read the remote channel number from the message. */
1176 remote_id = packet_get_int();
1177 packet_check_eom();
1178
1179 /*
1180 * Get a connection to the local authentication agent (this may again
1181 * get forwarded).
1182 */
1183 sock = ssh_get_authentication_socket();
1184
1185 /*
1186 * If we could not connect the agent, send an error message back to
1187 * the server. This should never happen unless the agent dies,
1188 * because authentication forwarding is only enabled if we have an
1189 * agent.
1190 */
1191 if (sock >= 0) {
1192 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1193 -1, 0, 0, 0, "authentication agent connection", 1);
1194 c->remote_id = remote_id;
1195 c->force_drain = 1;
1196 }
1197 if (c == NULL) {
1198 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1199 packet_put_int(remote_id);
1200 } else {
1201 /* Send a confirmation to the remote host. */
1202 debug("Forwarding authentication connection.");
1203 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1204 packet_put_int(remote_id);
1205 packet_put_int(c->self);
1206 }
1207 packet_send();
1208}
Damien Millerb38eff82000-04-01 11:09:21 +10001209
Ben Lindstrombba81212001-06-25 05:01:22 +00001210static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001211client_request_forwarded_tcpip(const char *request_type, int rchan)
1212{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001213 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001214 char *listen_address, *originator_address;
1215 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001216 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001217
1218 /* Get rest of the packet */
1219 listen_address = packet_get_string(NULL);
1220 listen_port = packet_get_int();
1221 originator_address = packet_get_string(NULL);
1222 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001223 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001224
1225 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1226 listen_address, listen_port, originator_address, originator_port);
1227
Ben Lindstrom173e6462001-07-04 05:15:15 +00001228 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001229 if (sock < 0) {
1230 xfree(originator_address);
1231 xfree(listen_address);
1232 return NULL;
1233 }
1234 c = channel_new("forwarded-tcpip",
1235 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1236 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001237 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001238 xfree(originator_address);
1239 xfree(listen_address);
1240 return c;
1241}
1242
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001243static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001244client_request_x11(const char *request_type, int rchan)
1245{
1246 Channel *c = NULL;
1247 char *originator;
1248 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001249 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001250
1251 if (!options.forward_x11) {
1252 error("Warning: ssh server tried X11 forwarding.");
1253 error("Warning: this is probably a break in attempt by a malicious server.");
1254 return NULL;
1255 }
1256 originator = packet_get_string(NULL);
1257 if (datafellows & SSH_BUG_X11FWD) {
1258 debug2("buggy server: x11 request w/o originator_port");
1259 originator_port = 0;
1260 } else {
1261 originator_port = packet_get_int();
1262 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001263 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001264 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001265 debug("client_request_x11: request from %s %d", originator,
1266 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001267 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001268 sock = x11_connect_display();
1269 if (sock < 0)
1270 return NULL;
1271 c = channel_new("x11",
1272 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001273 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001274 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001275 return c;
1276}
1277
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001278static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001279client_request_agent(const char *request_type, int rchan)
1280{
1281 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001282 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001283
1284 if (!options.forward_agent) {
1285 error("Warning: ssh server tried agent forwarding.");
1286 error("Warning: this is probably a break in attempt by a malicious server.");
1287 return NULL;
1288 }
1289 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001290 if (sock < 0)
1291 return NULL;
1292 c = channel_new("authentication agent connection",
1293 SSH_CHANNEL_OPEN, sock, sock, -1,
1294 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001295 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001296 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001297 return c;
1298}
1299
Damien Millerbd483e72000-04-30 10:00:53 +10001300/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001301static void
Damien Miller630d6f42002-01-22 23:17:30 +11001302client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001303{
1304 Channel *c = NULL;
1305 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001306 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001307 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001308
1309 ctype = packet_get_string(&len);
1310 rchan = packet_get_int();
1311 rwindow = packet_get_int();
1312 rmaxpack = packet_get_int();
1313
Damien Millere247cc42000-05-07 12:03:14 +10001314 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001315 ctype, rchan, rwindow, rmaxpack);
1316
Damien Miller0bc1bd82000-11-13 22:57:25 +11001317 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1318 c = client_request_forwarded_tcpip(ctype, rchan);
1319 } else if (strcmp(ctype, "x11") == 0) {
1320 c = client_request_x11(ctype, rchan);
1321 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1322 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001323 }
1324/* XXX duplicate : */
1325 if (c != NULL) {
1326 debug("confirm %s", ctype);
1327 c->remote_id = rchan;
1328 c->remote_window = rwindow;
1329 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001330 if (c->type != SSH_CHANNEL_CONNECTING) {
1331 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1332 packet_put_int(c->remote_id);
1333 packet_put_int(c->self);
1334 packet_put_int(c->local_window);
1335 packet_put_int(c->local_maxpacket);
1336 packet_send();
1337 }
Damien Millerbd483e72000-04-30 10:00:53 +10001338 } else {
1339 debug("failure %s", ctype);
1340 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1341 packet_put_int(rchan);
1342 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001343 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001344 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001345 packet_put_cstring("");
1346 }
Damien Millerbd483e72000-04-30 10:00:53 +10001347 packet_send();
1348 }
1349 xfree(ctype);
1350}
Ben Lindstrombba81212001-06-25 05:01:22 +00001351static void
Damien Miller630d6f42002-01-22 23:17:30 +11001352client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001353{
1354 Channel *c = NULL;
1355 int id, reply, success = 0;
1356 char *rtype;
1357
1358 id = packet_get_int();
1359 rtype = packet_get_string(NULL);
1360 reply = packet_get_char();
1361
1362 debug("client_input_channel_req: channel %d rtype %s reply %d",
1363 id, rtype, reply);
1364
1365 if (session_ident == -1) {
1366 error("client_input_channel_req: no channel %d", session_ident);
1367 } else if (id != session_ident) {
1368 error("client_input_channel_req: channel %d: wrong channel: %d",
1369 session_ident, id);
1370 }
1371 c = channel_lookup(id);
1372 if (c == NULL) {
1373 error("client_input_channel_req: channel %d: unknown channel", id);
1374 } else if (strcmp(rtype, "exit-status") == 0) {
1375 success = 1;
1376 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001377 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001378 }
1379 if (reply) {
1380 packet_start(success ?
1381 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1382 packet_put_int(c->remote_id);
1383 packet_send();
1384 }
1385 xfree(rtype);
1386}
Damien Millerc3fa4072002-01-22 23:21:58 +11001387static void
1388client_input_global_request(int type, u_int32_t seq, void *ctxt)
1389{
1390 char *rtype;
1391 int want_reply;
1392 int success = 0;
1393
1394 rtype = packet_get_string(NULL);
1395 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001396 debug("client_input_global_request: rtype %s want_reply %d",
1397 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001398 if (want_reply) {
1399 packet_start(success ?
1400 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1401 packet_send();
1402 packet_write_wait();
1403 }
1404 xfree(rtype);
1405}
Damien Millerbd483e72000-04-30 10:00:53 +10001406
Ben Lindstrombba81212001-06-25 05:01:22 +00001407static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001408client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001409{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001410 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001411
Damien Miller1383bd82000-04-06 12:32:37 +10001412 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1413 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1414 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1415 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001416 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001417 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1418 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001419 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001420 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001421 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001422
1423 /* rekeying */
1424 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001425
1426 /* global request reply messages */
1427 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1428 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001429}
Ben Lindstrombba81212001-06-25 05:01:22 +00001430static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001431client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001432{
1433 dispatch_init(NULL);
1434 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1435 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1436 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001437 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1438 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1439 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001440 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1441 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1442 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001443
1444 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001445 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001446 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1447 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001448}
Ben Lindstrombba81212001-06-25 05:01:22 +00001449static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001450client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001451{
1452 client_init_dispatch_13();
1453 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1454 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1455}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001456static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001457client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001458{
Damien Miller1383bd82000-04-06 12:32:37 +10001459 if (compat20)
1460 client_init_dispatch_20();
1461 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001462 client_init_dispatch_13();
1463 else
1464 client_init_dispatch_15();
1465}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001466
1467/* client specific fatal cleanup */
1468void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001469cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001470{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001471 leave_raw_mode();
1472 leave_non_blocking();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001473 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001474}