blob: 71eda80e6b8baeafb76c58c9fde51292485868db [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.
Damien Millere4340be2000-09-16 13:29:08 +110038 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
39 *
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"
Ben Lindstroma3700052001-04-05 23:26:32 +000062RCSID("$OpenBSD: clientloop.c,v 1.57 2001/04/05 10:42:49 markus 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"
71#include "channels.h"
72#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"
Damien Miller69b69aa2000-10-28 14:19:58 +110082
83/* import options */
84extern Options options;
85
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086/* Flag indicating that stdin should be redirected from /dev/null. */
87extern int stdin_null_flag;
88
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Name of the host we are connecting to. This is the name given on the
91 * command line, or the HostName specified for the user-supplied name in a
92 * configuration file.
93 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094extern char *host;
95
Damien Miller5428f641999-11-25 11:54:57 +110096/*
97 * Flag to indicate that we have received a window change signal which has
98 * not yet been processed. This will cause a message indicating the new
99 * window size to be sent to the server a little later. This is volatile
100 * because this is updated in a signal handler.
101 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102static volatile int received_window_change_signal = 0;
103
104/* Terminal modes, as saved by enter_raw_mode. */
105static struct termios saved_tio;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Flag indicating whether we are in raw mode. This is used by
109 * enter_raw_mode and leave_raw_mode.
110 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111static int in_raw_mode = 0;
112
113/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
114static int in_non_blocking_mode = 0;
115
116/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000117static int quit_pending; /* Set to non-zero to quit the client loop. */
118static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100119static int escape_pending; /* Last character was the escape character */
120static int last_was_cr; /* Last character was a newline. */
121static int exit_status; /* Used to store the exit status of the command. */
122static int stdin_eof; /* EOF has been encountered on standard error. */
123static Buffer stdin_buffer; /* Buffer for stdin data. */
124static Buffer stdout_buffer; /* Buffer for stdout data. */
125static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000126static u_long stdin_bytes, stdout_bytes, stderr_bytes;
127static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100128static int connection_in; /* Connection to server (input). */
129static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000130static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller1383bd82000-04-06 12:32:37 +1000132void client_init_dispatch(void);
133int session_ident = -1;
134
Ben Lindstromf28f6342001-04-04 02:03:04 +0000135/*XXX*/
136extern Kex *xxx_kex;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/* Returns the user\'s terminal to normal mode if it had been put in raw mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller4af51302000-04-16 11:18:38 +1000140void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000141leave_raw_mode(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142{
Damien Miller95def091999-11-25 00:26:21 +1100143 if (!in_raw_mode)
144 return;
145 in_raw_mode = 0;
146 if (tcsetattr(fileno(stdin), TCSADRAIN, &saved_tio) < 0)
147 perror("tcsetattr");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller95def091999-11-25 00:26:21 +1100149 fatal_remove_cleanup((void (*) (void *)) leave_raw_mode, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150}
151
152/* Puts the user\'s terminal in raw mode. */
153
Damien Miller4af51302000-04-16 11:18:38 +1000154void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000155enter_raw_mode(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156{
Damien Miller95def091999-11-25 00:26:21 +1100157 struct termios tio;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Damien Miller95def091999-11-25 00:26:21 +1100159 if (tcgetattr(fileno(stdin), &tio) < 0)
160 perror("tcgetattr");
161 saved_tio = tio;
162 tio.c_iflag |= IGNPAR;
163 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
164 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#ifdef IEXTEN
Damien Miller95def091999-11-25 00:26:21 +1100166 tio.c_lflag &= ~IEXTEN;
167#endif /* IEXTEN */
168 tio.c_oflag &= ~OPOST;
169 tio.c_cc[VMIN] = 1;
170 tio.c_cc[VTIME] = 0;
171 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) < 0)
172 perror("tcsetattr");
173 in_raw_mode = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller95def091999-11-25 00:26:21 +1100175 fatal_add_cleanup((void (*) (void *)) leave_raw_mode, NULL);
176}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
178/* Restores stdin to blocking mode. */
179
Damien Miller4af51302000-04-16 11:18:38 +1000180void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000181leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182{
Damien Miller95def091999-11-25 00:26:21 +1100183 if (in_non_blocking_mode) {
184 (void) fcntl(fileno(stdin), F_SETFL, 0);
185 in_non_blocking_mode = 0;
186 fatal_remove_cleanup((void (*) (void *)) leave_non_blocking, NULL);
187 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188}
189
Damien Miller95def091999-11-25 00:26:21 +1100190/* Puts stdin terminal in non-blocking mode. */
191
Damien Miller4af51302000-04-16 11:18:38 +1000192void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000193enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194{
Damien Miller95def091999-11-25 00:26:21 +1100195 in_non_blocking_mode = 1;
196 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
197 fatal_add_cleanup((void (*) (void *)) leave_non_blocking, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198}
199
Damien Miller5428f641999-11-25 11:54:57 +1100200/*
201 * Signal handler for the window change signal (SIGWINCH). This just sets a
202 * flag indicating that the window has changed.
203 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Damien Miller4af51302000-04-16 11:18:38 +1000205void
Damien Miller95def091999-11-25 00:26:21 +1100206window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207{
Damien Miller95def091999-11-25 00:26:21 +1100208 received_window_change_signal = 1;
209 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210}
211
Damien Miller5428f641999-11-25 11:54:57 +1100212/*
213 * Signal handler for signals that cause the program to terminate. These
214 * signals must be trapped to restore terminal modes.
215 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Damien Miller4af51302000-04-16 11:18:38 +1000217void
Damien Miller95def091999-11-25 00:26:21 +1100218signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219{
Damien Miller95def091999-11-25 00:26:21 +1100220 if (in_raw_mode)
221 leave_raw_mode();
222 if (in_non_blocking_mode)
223 leave_non_blocking();
224 channel_stop_listening();
225 packet_close();
226 fatal("Killed by signal %d.", sig);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Miller5428f641999-11-25 11:54:57 +1100229/*
230 * Returns current time in seconds from Jan 1, 1970 with the maximum
231 * available resolution.
232 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller4af51302000-04-16 11:18:38 +1000234double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000235get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Damien Miller95def091999-11-25 00:26:21 +1100237 struct timeval tv;
238 gettimeofday(&tv, NULL);
239 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240}
241
Damien Miller5428f641999-11-25 11:54:57 +1100242/*
243 * This is called when the interactive is entered. This checks if there is
244 * an EOF coming on stdin. We must check this explicitly, as select() does
245 * not appear to wake up when redirecting from /dev/null.
246 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Damien Miller4af51302000-04-16 11:18:38 +1000248void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000249client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250{
Damien Miller95def091999-11-25 00:26:21 +1100251 int len;
252 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253
Damien Miller5428f641999-11-25 11:54:57 +1100254 /*
255 * If standard input is to be "redirected from /dev/null", we simply
256 * mark that we have seen an EOF and send an EOF message to the
257 * server. Otherwise, we try to read a single character; it appears
258 * that for some files, such /dev/null, select() never wakes up for
259 * read for this descriptor, which means that we never get EOF. This
260 * way we will get the EOF if stdin comes from /dev/null or similar.
261 */
Damien Miller95def091999-11-25 00:26:21 +1100262 if (stdin_null_flag) {
263 /* Fake EOF on stdin. */
264 debug("Sending eof.");
265 stdin_eof = 1;
266 packet_start(SSH_CMSG_EOF);
267 packet_send();
268 } else {
Damien Miller95def091999-11-25 00:26:21 +1100269 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller95def091999-11-25 00:26:21 +1100271 /* Check for immediate EOF on stdin. */
272 len = read(fileno(stdin), buf, 1);
273 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100274 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100275 debug("Sending eof.");
276 stdin_eof = 1;
277 packet_start(SSH_CMSG_EOF);
278 packet_send();
279 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100280 /*
281 * Got data. We must store the data in the buffer,
282 * and also process it as an escape character if
283 * appropriate.
284 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000285 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100286 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000287 else
Damien Miller95def091999-11-25 00:26:21 +1100288 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100289 }
Damien Miller95def091999-11-25 00:26:21 +1100290 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292}
293
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294
Damien Miller5428f641999-11-25 11:54:57 +1100295/*
296 * Make packets from buffered stdin data, and buffer them for sending to the
297 * connection.
298 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller4af51302000-04-16 11:18:38 +1000300void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000301client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000303 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304
Damien Miller95def091999-11-25 00:26:21 +1100305 /* Send buffered stdin data to the server. */
306 while (buffer_len(&stdin_buffer) > 0 &&
307 packet_not_very_much_data_to_write()) {
308 len = buffer_len(&stdin_buffer);
309 /* Keep the packets at reasonable size. */
310 if (len > packet_get_maxsize())
311 len = packet_get_maxsize();
312 packet_start(SSH_CMSG_STDIN_DATA);
313 packet_put_string(buffer_ptr(&stdin_buffer), len);
314 packet_send();
315 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000316 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100317 /* If we have a pending EOF, send it now. */
318 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
319 packet_start(SSH_CMSG_EOF);
320 packet_send();
321 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323}
324
Damien Miller5428f641999-11-25 11:54:57 +1100325/*
326 * Checks if the client window has changed, and sends a packet about it to
327 * the server if so. The actual change is detected elsewhere (by a software
328 * interrupt on Unix); this just checks the flag and sends a message if
329 * appropriate.
330 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Damien Miller4af51302000-04-16 11:18:38 +1000332void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000333client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334{
Damien Miller1383bd82000-04-06 12:32:37 +1000335 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336
Damien Miller1383bd82000-04-06 12:32:37 +1000337 if (! received_window_change_signal)
338 return;
339 /** XXX race */
340 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341
Damien Miller1383bd82000-04-06 12:32:37 +1000342 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
343 return;
344
Damien Millerd3444942000-09-30 14:20:03 +1100345 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000346
347 if (compat20) {
348 channel_request_start(session_ident, "window-change", 0);
349 packet_put_int(ws.ws_col);
350 packet_put_int(ws.ws_row);
351 packet_put_int(ws.ws_xpixel);
352 packet_put_int(ws.ws_ypixel);
353 packet_send();
354 } else {
355 packet_start(SSH_CMSG_WINDOW_SIZE);
356 packet_put_int(ws.ws_row);
357 packet_put_int(ws.ws_col);
358 packet_put_int(ws.ws_xpixel);
359 packet_put_int(ws.ws_ypixel);
360 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000362}
363
Damien Miller5428f641999-11-25 11:54:57 +1100364/*
365 * Waits until the client can do something (some data becomes available on
366 * one of the file descriptors).
367 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Damien Miller4af51302000-04-16 11:18:38 +1000369void
Damien Miller5e953212001-01-30 09:14:00 +1100370client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000371 int *maxfdp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372{
Damien Miller5e953212001-01-30 09:14:00 +1100373 /* Add any selections by the channel mechanism. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000374 channel_prepare_select(readsetp, writesetp, maxfdp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Damien Miller1383bd82000-04-06 12:32:37 +1000376 if (!compat20) {
377 /* Read from the connection, unless our buffers are full. */
378 if (buffer_len(&stdout_buffer) < buffer_high &&
379 buffer_len(&stderr_buffer) < buffer_high &&
380 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100381 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000382 /*
383 * Read from stdin, unless we have seen EOF or have very much
384 * buffered data to send to the server.
385 */
386 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100387 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000388
389 /* Select stdout/stderr if have data in buffer. */
390 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100391 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000392 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100393 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000394 } else {
Damien Miller5e953212001-01-30 09:14:00 +1100395 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000396 }
397
Damien Miller95def091999-11-25 00:26:21 +1100398 /* Select server connection if have data to write to the server. */
399 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100400 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100401
Damien Miller5428f641999-11-25 11:54:57 +1100402 /*
403 * Wait for something to happen. This will suspend the process until
404 * some selected descriptor can be read, written, or has some other
405 * event pending. Note: if you want to implement SSH_MSG_IGNORE
406 * messages to fool traffic analysis, this might be the place to do
407 * it: just have a random timeout for the select, and send a random
408 * SSH_MSG_IGNORE packet when the timeout expires.
409 */
Damien Miller95def091999-11-25 00:26:21 +1100410
Damien Miller5e953212001-01-30 09:14:00 +1100411 if (select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100412 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000413
414 /*
415 * We have to clear the select masks, because we return.
416 * We have to return, because the mainloop checks for the flags
417 * set by the signal handlers.
418 */
419 memset(*readsetp, 0, *maxfdp);
420 memset(*writesetp, 0, *maxfdp);
421
Damien Miller95def091999-11-25 00:26:21 +1100422 if (errno == EINTR)
423 return;
424 /* Note: we might still have data in the buffers. */
425 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
426 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100427 quit_pending = 1;
428 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429}
430
Damien Miller4af51302000-04-16 11:18:38 +1000431void
Damien Millerad833b32000-08-23 10:46:23 +1000432client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433{
Damien Miller95def091999-11-25 00:26:21 +1100434 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435
Damien Miller95def091999-11-25 00:26:21 +1100436 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000437 if (buffer_len(bout) > 0)
438 atomicio(write, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
439 if (buffer_len(berr) > 0)
440 atomicio(write, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Damien Miller95def091999-11-25 00:26:21 +1100442 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000443
Damien Miller5428f641999-11-25 11:54:57 +1100444 /*
445 * Free (and clear) the buffer to reduce the amount of data that gets
446 * written to swap.
447 */
Damien Millerad833b32000-08-23 10:46:23 +1000448 buffer_free(bin);
449 buffer_free(bout);
450 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451
Damien Miller95def091999-11-25 00:26:21 +1100452 /* Save old window size. */
453 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454
Damien Miller95def091999-11-25 00:26:21 +1100455 /* Send the suspend signal to the program itself. */
456 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457
Damien Miller95def091999-11-25 00:26:21 +1100458 /* Check if the window size has changed. */
459 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
460 (oldws.ws_row != newws.ws_row ||
461 oldws.ws_col != newws.ws_col ||
462 oldws.ws_xpixel != newws.ws_xpixel ||
463 oldws.ws_ypixel != newws.ws_ypixel))
464 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465
Damien Miller95def091999-11-25 00:26:21 +1100466 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000467 buffer_init(bin);
468 buffer_init(bout);
469 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000470
Damien Miller95def091999-11-25 00:26:21 +1100471 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472}
473
Damien Miller4af51302000-04-16 11:18:38 +1000474void
Damien Miller1383bd82000-04-06 12:32:37 +1000475client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000476{
Damien Miller1383bd82000-04-06 12:32:37 +1000477 int len;
478 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479
Damien Miller5428f641999-11-25 11:54:57 +1100480 /*
481 * Read input from the server, and add any such data to the buffer of
482 * the packet subsystem.
483 */
Damien Miller95def091999-11-25 00:26:21 +1100484 if (FD_ISSET(connection_in, readset)) {
485 /* Read as much as possible. */
486 len = read(connection_in, buf, sizeof(buf));
487 if (len == 0) {
488 /* Received EOF. The remote host has closed the connection. */
489 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
490 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492 quit_pending = 1;
493 return;
Damien Miller95def091999-11-25 00:26:21 +1100494 }
Damien Miller5428f641999-11-25 11:54:57 +1100495 /*
496 * There is a kernel bug on Solaris that causes select to
497 * sometimes wake up even though there is no data available.
498 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000499 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100500 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller95def091999-11-25 00:26:21 +1100502 if (len < 0) {
503 /* An error has encountered. Perhaps there is a network problem. */
504 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
505 host, strerror(errno));
506 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100507 quit_pending = 1;
508 return;
509 }
510 packet_process_incoming(buf, len);
511 }
Damien Miller1383bd82000-04-06 12:32:37 +1000512}
513
Damien Millerad833b32000-08-23 10:46:23 +1000514/* process the characters one by one */
515int
516process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
517{
518 char string[1024];
519 pid_t pid;
520 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000521 u_int i;
522 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000523 char *s;
524
525 for (i = 0; i < len; i++) {
526 /* Get one character at a time. */
527 ch = buf[i];
528
529 if (escape_pending) {
530 /* We have previously seen an escape character. */
531 /* Clear the flag now. */
532 escape_pending = 0;
533
534 /* Process the escaped character. */
535 switch (ch) {
536 case '.':
537 /* Terminate the connection. */
538 snprintf(string, sizeof string, "%c.\r\n", escape_char);
539 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000540
541 quit_pending = 1;
542 return -1;
543
544 case 'Z' - 64:
545 /* Suspend the program. */
546 /* Print a message to that effect to the user. */
547 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
548 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000549
550 /* Restore terminal modes and suspend. */
551 client_suspend_self(bin, bout, berr);
552
553 /* We have been continued. */
554 continue;
555
Ben Lindstromf28f6342001-04-04 02:03:04 +0000556 case 'R':
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000557 if (compat20)
558 need_rekeying = 1;
Ben Lindstromf28f6342001-04-04 02:03:04 +0000559 continue;
560
Damien Millerad833b32000-08-23 10:46:23 +1000561 case '&':
562 /* XXX does not work yet with proto 2 */
563 if (compat20)
564 continue;
565 /*
566 * Detach the program (continue to serve connections,
567 * but put in background and no more new connections).
568 */
569 if (!stdin_eof) {
570 /*
571 * Sending SSH_CMSG_EOF alone does not always appear
572 * to be enough. So we try to send an EOF character
573 * first.
574 */
575 packet_start(SSH_CMSG_STDIN_DATA);
576 packet_put_string("\004", 1);
577 packet_send();
578 /* Close stdin. */
579 stdin_eof = 1;
580 if (buffer_len(bin) == 0) {
581 packet_start(SSH_CMSG_EOF);
582 packet_send();
583 }
584 }
585 /* Restore tty modes. */
586 leave_raw_mode();
587
588 /* Stop listening for new connections. */
589 channel_stop_listening();
590
591 printf("%c& [backgrounded]\n", escape_char);
592
593 /* Fork into background. */
594 pid = fork();
595 if (pid < 0) {
596 error("fork: %.100s", strerror(errno));
597 continue;
598 }
599 if (pid != 0) { /* This is the parent. */
600 /* The parent just exits. */
601 exit(0);
602 }
603 /* The child continues serving connections. */
604 continue; /*XXX ? */
605
606 case '?':
607 snprintf(string, sizeof string,
608"%c?\r\n\
609Supported escape sequences:\r\n\
610~. - terminate connection\r\n\
611~^Z - suspend ssh\r\n\
612~# - list forwarded connections\r\n\
613~& - background ssh (when waiting for connections to terminate)\r\n\
614~? - this message\r\n\
615~~ - send the escape character by typing it twice\r\n\
616(Note that escapes are only recognized immediately after newline.)\r\n",
617 escape_char);
618 buffer_append(berr, string, strlen(string));
619 continue;
620
621 case '#':
622 snprintf(string, sizeof string, "%c#\r\n", escape_char);
623 buffer_append(berr, string, strlen(string));
624 s = channel_open_message();
625 buffer_append(berr, s, strlen(s));
626 xfree(s);
627 continue;
628
629 default:
630 if (ch != escape_char) {
631 buffer_put_char(bin, escape_char);
632 bytes++;
633 }
634 /* Escaped characters fall through here */
635 break;
636 }
637 } else {
638 /*
639 * The previous character was not an escape char. Check if this
640 * is an escape.
641 */
642 if (last_was_cr && ch == escape_char) {
643 /* It is. Set the flag and continue to next character. */
644 escape_pending = 1;
645 continue;
646 }
647 }
648
649 /*
650 * Normal character. Record whether it was a newline,
651 * and append it to the buffer.
652 */
653 last_was_cr = (ch == '\r' || ch == '\n');
654 buffer_put_char(bin, ch);
655 bytes++;
656 }
657 return bytes;
658}
659
Damien Miller4af51302000-04-16 11:18:38 +1000660void
Damien Miller1383bd82000-04-06 12:32:37 +1000661client_process_input(fd_set * readset)
662{
Damien Miller166fca82000-04-20 07:42:21 +1000663 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000664 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000665
Damien Miller95def091999-11-25 00:26:21 +1100666 /* Read input from stdin. */
667 if (FD_ISSET(fileno(stdin), readset)) {
668 /* Read as much as possible. */
669 len = read(fileno(stdin), buf, sizeof(buf));
670 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100671 /*
672 * Received EOF or error. They are treated
673 * similarly, except that an error message is printed
674 * if it was an error condition.
675 */
Damien Miller95def091999-11-25 00:26:21 +1100676 if (len < 0) {
677 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
678 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100679 }
680 /* Mark that we have seen EOF. */
681 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100682 /*
683 * Send an EOF message to the server unless there is
684 * data in the buffer. If there is data in the
685 * buffer, no message will be sent now. Code
686 * elsewhere will send the EOF when the buffer
687 * becomes empty if stdin_eof is set.
688 */
Damien Miller95def091999-11-25 00:26:21 +1100689 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000690 packet_start(SSH_CMSG_EOF);
691 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100692 }
693 } else if (escape_char == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100694 /*
695 * Normal successful read, and no escape character.
696 * Just append the data to buffer.
697 */
Damien Miller95def091999-11-25 00:26:21 +1100698 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100699 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100700 /*
701 * Normal, successful read. But we have an escape character
702 * and have to process the characters one by one.
703 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000704 if (process_escapes(&stdin_buffer, &stdout_buffer,
705 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +1000706 return;
Damien Miller95def091999-11-25 00:26:21 +1100707 }
708 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709}
710
Damien Miller4af51302000-04-16 11:18:38 +1000711void
Damien Miller95def091999-11-25 00:26:21 +1100712client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713{
Damien Miller95def091999-11-25 00:26:21 +1100714 int len;
715 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716
Damien Miller95def091999-11-25 00:26:21 +1100717 /* Write buffered output to stdout. */
718 if (FD_ISSET(fileno(stdout), writeset)) {
719 /* Write as much data as possible. */
720 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100721 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100722 if (len <= 0) {
723 if (errno == EAGAIN)
724 len = 0;
725 else {
Damien Miller5428f641999-11-25 11:54:57 +1100726 /*
727 * An error or EOF was encountered. Put an
728 * error message to stderr buffer.
729 */
Damien Miller95def091999-11-25 00:26:21 +1100730 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
731 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100732 quit_pending = 1;
733 return;
734 }
735 }
736 /* Consume printed data from the buffer. */
737 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000738 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739 }
Damien Miller95def091999-11-25 00:26:21 +1100740 /* Write buffered output to stderr. */
741 if (FD_ISSET(fileno(stderr), writeset)) {
742 /* Write as much data as possible. */
743 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100744 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100745 if (len <= 0) {
746 if (errno == EAGAIN)
747 len = 0;
748 else {
Damien Miller5428f641999-11-25 11:54:57 +1100749 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100750 quit_pending = 1;
751 return;
752 }
753 }
754 /* Consume printed characters from the buffer. */
755 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000756 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100757 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000758}
759
Damien Miller5428f641999-11-25 11:54:57 +1100760/*
Damien Millerb38eff82000-04-01 11:09:21 +1000761 * Get packets from the connection input buffer, and process them as long as
762 * there are packets available.
763 *
764 * Any unknown packets received during the actual
765 * session cause the session to terminate. This is
766 * intended to make debugging easier since no
767 * confirmations are sent. Any compatible protocol
768 * extensions must be negotiated during the
769 * preparatory phase.
770 */
771
Damien Miller4af51302000-04-16 11:18:38 +1000772void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000773client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000774{
Ben Lindstromf28f6342001-04-04 02:03:04 +0000775 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000776}
777
Damien Millerad833b32000-08-23 10:46:23 +1000778/* scan buf[] for '~' before sending data to the peer */
779
780int
781simple_escape_filter(Channel *c, char *buf, int len)
782{
783 /* XXX we assume c->extended is writeable */
784 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
785}
786
Damien Millerb38eff82000-04-01 11:09:21 +1000787/*
Damien Miller5428f641999-11-25 11:54:57 +1100788 * Implements the interactive session with the server. This is called after
789 * the user has been authenticated, and a command has been started on the
790 * remote host. If escape_char != -1, it is the character used as an escape
791 * character for terminating or suspending the session.
792 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793
Damien Miller4af51302000-04-16 11:18:38 +1000794int
Damien Millerad833b32000-08-23 10:46:23 +1000795client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796{
Damien Miller5e953212001-01-30 09:14:00 +1100797 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100798 double start_time, total_time;
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000799 int max_fd = 0, len, rekeying = 0;
Damien Miller95def091999-11-25 00:26:21 +1100800 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000801
Damien Miller95def091999-11-25 00:26:21 +1100802 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000803
Damien Miller95def091999-11-25 00:26:21 +1100804 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805
Damien Miller95def091999-11-25 00:26:21 +1100806 /* Initialize variables. */
807 escape_pending = 0;
808 last_was_cr = 1;
809 exit_status = -1;
810 stdin_eof = 0;
811 buffer_high = 64 * 1024;
812 connection_in = packet_get_connection_in();
813 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100814 max_fd = MAX(connection_in, connection_out);
815
816 if (!compat20) {
817 max_fd = MAX(max_fd, fileno(stdin));
818 max_fd = MAX(max_fd, fileno(stdout));
819 max_fd = MAX(max_fd, fileno(stderr));
820 }
Damien Miller95def091999-11-25 00:26:21 +1100821 stdin_bytes = 0;
822 stdout_bytes = 0;
823 stderr_bytes = 0;
824 quit_pending = 0;
825 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000826
Damien Miller95def091999-11-25 00:26:21 +1100827 /* Initialize buffers. */
828 buffer_init(&stdin_buffer);
829 buffer_init(&stdout_buffer);
830 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000831
Damien Millerb38eff82000-04-01 11:09:21 +1000832 client_init_dispatch();
833
Damien Miller95def091999-11-25 00:26:21 +1100834 /* Set signal handlers to restore non-blocking mode. */
835 signal(SIGINT, signal_handler);
836 signal(SIGQUIT, signal_handler);
837 signal(SIGTERM, signal_handler);
838 signal(SIGPIPE, SIG_IGN);
839 if (have_pty)
840 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000841
Damien Miller95def091999-11-25 00:26:21 +1100842 if (have_pty)
843 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000844
Ben Lindstrom5b828322001-02-09 01:34:36 +0000845 if (compat20) {
846 session_ident = ssh2_chan_id;
847 if (escape_char != -1)
848 channel_register_filter(session_ident,
849 simple_escape_filter);
850 } else {
851 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000852 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +0000853 }
Damien Millerad833b32000-08-23 10:46:23 +1000854
Damien Miller95def091999-11-25 00:26:21 +1100855 /* Main loop of the client for the interactive session mode. */
856 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000857
Damien Miller5428f641999-11-25 11:54:57 +1100858 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100859 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000860
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000861 rekeying = (xxx_kex != NULL && !xxx_kex->done);
862
Damien Miller1383bd82000-04-06 12:32:37 +1000863 if (compat20 && !channel_still_open()) {
Damien Millerd3444942000-09-30 14:20:03 +1100864 debug2("!channel_still_open.");
Damien Miller1383bd82000-04-06 12:32:37 +1000865 break;
866 }
867
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000868 if (rekeying) {
869 debug("rekeying in progress");
870 } else {
871 /*
872 * Make packets of buffered stdin data, and buffer
873 * them for sending to the server.
874 */
875 if (!compat20)
876 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000877
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000878 /*
879 * Make packets from buffered channel data, and
880 * enqueue them for sending to the server.
881 */
882 if (packet_not_very_much_data_to_write())
883 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000884
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000885 /*
886 * Check if the window size has changed, and buffer a
887 * message about it to the server if so.
888 */
889 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000890
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000891 if (quit_pending)
892 break;
893 }
Damien Miller5428f641999-11-25 11:54:57 +1100894 /*
895 * Wait until we have something to do (something becomes
896 * available on one of the descriptors).
897 */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000898 client_wait_until_can_do_something(&readset, &writeset,
899 &max_fd, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000900
Damien Miller95def091999-11-25 00:26:21 +1100901 if (quit_pending)
902 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000903
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000904 /* Do channel operations unless rekeying in progress. */
905 if (!rekeying) {
906 channel_after_select(readset, writeset);
907
908 if (need_rekeying) {
909 debug("user requests rekeying");
910 xxx_kex->done = 0;
911 kex_send_kexinit(xxx_kex);
912 need_rekeying = 0;
913 }
914 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000915
Damien Miller1383bd82000-04-06 12:32:37 +1000916 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +1100917 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918
Damien Miller1383bd82000-04-06 12:32:37 +1000919 if (quit_pending)
920 break;
921
922 if (!compat20) {
923 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +1100924 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +1000925 /*
926 * Process output to stdout and stderr. Output to
927 * the connection is processed elsewhere (above).
928 */
Damien Miller5e953212001-01-30 09:14:00 +1100929 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +1000930 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000931
Damien Miller5428f641999-11-25 11:54:57 +1100932 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +1100933 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +1100934 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935 }
Damien Miller5e953212001-01-30 09:14:00 +1100936 if (readset)
937 xfree(readset);
938 if (writeset)
939 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940
Damien Miller95def091999-11-25 00:26:21 +1100941 /* Terminate the session. */
942
943 /* Stop watching for window change. */
944 if (have_pty)
945 signal(SIGWINCH, SIG_DFL);
946
947 /* Stop listening for connections. */
948 channel_stop_listening();
949
Damien Miller5428f641999-11-25 11:54:57 +1100950 /*
951 * In interactive mode (with pseudo tty) display a message indicating
952 * that the connection has been closed.
953 */
Damien Miller95def091999-11-25 00:26:21 +1100954 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
955 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
956 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957 }
Damien Miller95def091999-11-25 00:26:21 +1100958 /* Output any buffered data for stdout. */
959 while (buffer_len(&stdout_buffer) > 0) {
960 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100961 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100962 if (len <= 0) {
963 error("Write failed flushing stdout buffer.");
964 break;
965 }
966 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000967 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100968 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000969
Damien Miller95def091999-11-25 00:26:21 +1100970 /* Output any buffered data for stderr. */
971 while (buffer_len(&stderr_buffer) > 0) {
972 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100973 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100974 if (len <= 0) {
975 error("Write failed flushing stderr buffer.");
976 break;
977 }
978 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000979 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100980 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000981
Damien Miller95def091999-11-25 00:26:21 +1100982 if (have_pty)
983 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Damien Miller95def091999-11-25 00:26:21 +1100985 /* Clear and free any buffers. */
986 memset(buf, 0, sizeof(buf));
987 buffer_free(&stdin_buffer);
988 buffer_free(&stdout_buffer);
989 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 /* Report bytes transferred, and transfer rates. */
992 total_time = get_current_time() - start_time;
993 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
994 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
995 if (total_time > 0)
996 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
997 stdin_bytes / total_time, stdout_bytes / total_time,
998 stderr_bytes / total_time);
999
1000 /* Return the exit status of the program. */
1001 debug("Exit status %d", exit_status);
1002 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003}
Damien Millerb38eff82000-04-01 11:09:21 +10001004
1005/*********/
1006
1007void
Damien Miller62cee002000-09-23 17:15:56 +11001008client_input_stdout_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001009{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001010 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001011 char *data = packet_get_string(&data_len);
1012 packet_integrity_check(plen, 4 + data_len, type);
1013 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001014 memset(data, 0, data_len);
1015 xfree(data);
1016}
1017void
Damien Miller62cee002000-09-23 17:15:56 +11001018client_input_stderr_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001019{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001020 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001021 char *data = packet_get_string(&data_len);
1022 packet_integrity_check(plen, 4 + data_len, type);
1023 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001024 memset(data, 0, data_len);
1025 xfree(data);
1026}
1027void
Damien Miller62cee002000-09-23 17:15:56 +11001028client_input_exit_status(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001029{
1030 packet_integrity_check(plen, 4, type);
1031 exit_status = packet_get_int();
1032 /* Acknowledge the exit. */
1033 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1034 packet_send();
1035 /*
1036 * Must wait for packet to be sent since we are
1037 * exiting the loop.
1038 */
1039 packet_write_wait();
1040 /* Flag that we want to exit. */
1041 quit_pending = 1;
1042}
1043
Damien Miller0bc1bd82000-11-13 22:57:25 +11001044Channel *
1045client_request_forwarded_tcpip(const char *request_type, int rchan)
1046{
1047 Channel* c = NULL;
1048 char *listen_address, *originator_address;
1049 int listen_port, originator_port;
1050 int sock, newch;
1051
1052 /* Get rest of the packet */
1053 listen_address = packet_get_string(NULL);
1054 listen_port = packet_get_int();
1055 originator_address = packet_get_string(NULL);
1056 originator_port = packet_get_int();
1057 packet_done();
1058
1059 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1060 listen_address, listen_port, originator_address, originator_port);
1061
1062 sock = channel_connect_by_listen_adress(listen_port);
1063 if (sock >= 0) {
1064 newch = channel_new("forwarded-tcpip",
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001065 SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001066 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1067 xstrdup(originator_address), 1);
1068 c = channel_lookup(newch);
1069 }
1070 xfree(originator_address);
1071 xfree(listen_address);
1072 return c;
1073}
1074
1075Channel*
1076client_request_x11(const char *request_type, int rchan)
1077{
1078 Channel *c = NULL;
1079 char *originator;
1080 int originator_port;
1081 int sock, newch;
1082
1083 if (!options.forward_x11) {
1084 error("Warning: ssh server tried X11 forwarding.");
1085 error("Warning: this is probably a break in attempt by a malicious server.");
1086 return NULL;
1087 }
1088 originator = packet_get_string(NULL);
1089 if (datafellows & SSH_BUG_X11FWD) {
1090 debug2("buggy server: x11 request w/o originator_port");
1091 originator_port = 0;
1092 } else {
1093 originator_port = packet_get_int();
1094 }
1095 packet_done();
1096 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001097 debug("client_request_x11: request from %s %d", originator,
1098 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001099 sock = x11_connect_display();
1100 if (sock >= 0) {
1101 newch = channel_new("x11",
1102 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1103 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0,
1104 xstrdup("x11"), 1);
1105 c = channel_lookup(newch);
1106 }
1107 xfree(originator);
1108 return c;
1109}
1110
1111Channel*
1112client_request_agent(const char *request_type, int rchan)
1113{
1114 Channel *c = NULL;
1115 int sock, newch;
1116
1117 if (!options.forward_agent) {
1118 error("Warning: ssh server tried agent forwarding.");
1119 error("Warning: this is probably a break in attempt by a malicious server.");
1120 return NULL;
1121 }
1122 sock = ssh_get_authentication_socket();
1123 if (sock >= 0) {
1124 newch = channel_new("authentication agent connection",
1125 SSH_CHANNEL_OPEN, sock, sock, -1,
1126 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1127 xstrdup("authentication agent connection"), 1);
1128 c = channel_lookup(newch);
1129 }
1130 return c;
1131}
1132
Damien Millerbd483e72000-04-30 10:00:53 +10001133/* XXXX move to generic input handler */
1134void
Damien Miller62cee002000-09-23 17:15:56 +11001135client_input_channel_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001136{
1137 Channel *c = NULL;
1138 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001139 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001140 int rchan;
1141 int rmaxpack;
1142 int rwindow;
1143
1144 ctype = packet_get_string(&len);
1145 rchan = packet_get_int();
1146 rwindow = packet_get_int();
1147 rmaxpack = packet_get_int();
1148
Damien Millere247cc42000-05-07 12:03:14 +10001149 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001150 ctype, rchan, rwindow, rmaxpack);
1151
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1153 c = client_request_forwarded_tcpip(ctype, rchan);
1154 } else if (strcmp(ctype, "x11") == 0) {
1155 c = client_request_x11(ctype, rchan);
1156 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1157 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001158 }
1159/* XXX duplicate : */
1160 if (c != NULL) {
1161 debug("confirm %s", ctype);
1162 c->remote_id = rchan;
1163 c->remote_window = rwindow;
1164 c->remote_maxpacket = rmaxpack;
1165
1166 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1167 packet_put_int(c->remote_id);
1168 packet_put_int(c->self);
1169 packet_put_int(c->local_window);
1170 packet_put_int(c->local_maxpacket);
1171 packet_send();
1172 } else {
1173 debug("failure %s", ctype);
1174 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1175 packet_put_int(rchan);
1176 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1177 packet_put_cstring("bla bla");
1178 packet_put_cstring("");
1179 packet_send();
1180 }
1181 xfree(ctype);
1182}
Ben Lindstrom5b828322001-02-09 01:34:36 +00001183void
1184client_input_channel_req(int type, int plen, void *ctxt)
1185{
1186 Channel *c = NULL;
1187 int id, reply, success = 0;
1188 char *rtype;
1189
1190 id = packet_get_int();
1191 rtype = packet_get_string(NULL);
1192 reply = packet_get_char();
1193
1194 debug("client_input_channel_req: channel %d rtype %s reply %d",
1195 id, rtype, reply);
1196
1197 if (session_ident == -1) {
1198 error("client_input_channel_req: no channel %d", session_ident);
1199 } else if (id != session_ident) {
1200 error("client_input_channel_req: channel %d: wrong channel: %d",
1201 session_ident, id);
1202 }
1203 c = channel_lookup(id);
1204 if (c == NULL) {
1205 error("client_input_channel_req: channel %d: unknown channel", id);
1206 } else if (strcmp(rtype, "exit-status") == 0) {
1207 success = 1;
1208 exit_status = packet_get_int();
1209 packet_done();
1210 }
1211 if (reply) {
1212 packet_start(success ?
1213 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1214 packet_put_int(c->remote_id);
1215 packet_send();
1216 }
1217 xfree(rtype);
1218}
Damien Millerbd483e72000-04-30 10:00:53 +10001219
Damien Miller4af51302000-04-16 11:18:38 +10001220void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001221client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001222{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001223 dispatch_init(&dispatch_protocol_error);
Damien Miller1383bd82000-04-06 12:32:37 +10001224 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1225 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1226 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1227 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001228 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001229 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1230 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001231 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001232 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001233
1234 /* rekeying */
1235 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller1383bd82000-04-06 12:32:37 +10001236}
Damien Miller4af51302000-04-16 11:18:38 +10001237void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001238client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001239{
1240 dispatch_init(NULL);
1241 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1242 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1243 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001244 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1245 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1246 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001247 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1248 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1249 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001250
1251 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
1252 &auth_input_open_request : &deny_input_open);
1253 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1254 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001255}
Damien Miller4af51302000-04-16 11:18:38 +10001256void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001257client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001258{
1259 client_init_dispatch_13();
1260 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1261 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1262}
Damien Miller4af51302000-04-16 11:18:38 +10001263void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001264client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001265{
Damien Miller1383bd82000-04-06 12:32:37 +10001266 if (compat20)
1267 client_init_dispatch_20();
1268 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001269 client_init_dispatch_13();
1270 else
1271 client_init_dispatch_15();
1272}