blob: 74610c6b188bae90b13de4b5de3abaf46a2e891c [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 Lindstrom11bd8992001-04-05 23:34:29 +000062RCSID("$OpenBSD: clientloop.c,v 1.59 2001/04/05 20:01:10 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 Lindstrom11bd8992001-04-05 23:34:29 +0000557 if (compat20) {
558 if (datafellows & SSH_BUG_NOREKEY)
559 log("Server does not support re-keying");
560 else
561 need_rekeying = 1;
562 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000563 continue;
564
Damien Millerad833b32000-08-23 10:46:23 +1000565 case '&':
566 /* XXX does not work yet with proto 2 */
567 if (compat20)
568 continue;
569 /*
570 * Detach the program (continue to serve connections,
571 * but put in background and no more new connections).
572 */
573 if (!stdin_eof) {
574 /*
575 * Sending SSH_CMSG_EOF alone does not always appear
576 * to be enough. So we try to send an EOF character
577 * first.
578 */
579 packet_start(SSH_CMSG_STDIN_DATA);
580 packet_put_string("\004", 1);
581 packet_send();
582 /* Close stdin. */
583 stdin_eof = 1;
584 if (buffer_len(bin) == 0) {
585 packet_start(SSH_CMSG_EOF);
586 packet_send();
587 }
588 }
589 /* Restore tty modes. */
590 leave_raw_mode();
591
592 /* Stop listening for new connections. */
593 channel_stop_listening();
594
595 printf("%c& [backgrounded]\n", escape_char);
596
597 /* Fork into background. */
598 pid = fork();
599 if (pid < 0) {
600 error("fork: %.100s", strerror(errno));
601 continue;
602 }
603 if (pid != 0) { /* This is the parent. */
604 /* The parent just exits. */
605 exit(0);
606 }
607 /* The child continues serving connections. */
608 continue; /*XXX ? */
609
610 case '?':
611 snprintf(string, sizeof string,
612"%c?\r\n\
613Supported escape sequences:\r\n\
614~. - terminate connection\r\n\
615~^Z - suspend ssh\r\n\
616~# - list forwarded connections\r\n\
617~& - background ssh (when waiting for connections to terminate)\r\n\
618~? - this message\r\n\
619~~ - send the escape character by typing it twice\r\n\
620(Note that escapes are only recognized immediately after newline.)\r\n",
621 escape_char);
622 buffer_append(berr, string, strlen(string));
623 continue;
624
625 case '#':
626 snprintf(string, sizeof string, "%c#\r\n", escape_char);
627 buffer_append(berr, string, strlen(string));
628 s = channel_open_message();
629 buffer_append(berr, s, strlen(s));
630 xfree(s);
631 continue;
632
633 default:
634 if (ch != escape_char) {
635 buffer_put_char(bin, escape_char);
636 bytes++;
637 }
638 /* Escaped characters fall through here */
639 break;
640 }
641 } else {
642 /*
643 * The previous character was not an escape char. Check if this
644 * is an escape.
645 */
646 if (last_was_cr && ch == escape_char) {
647 /* It is. Set the flag and continue to next character. */
648 escape_pending = 1;
649 continue;
650 }
651 }
652
653 /*
654 * Normal character. Record whether it was a newline,
655 * and append it to the buffer.
656 */
657 last_was_cr = (ch == '\r' || ch == '\n');
658 buffer_put_char(bin, ch);
659 bytes++;
660 }
661 return bytes;
662}
663
Damien Miller4af51302000-04-16 11:18:38 +1000664void
Damien Miller1383bd82000-04-06 12:32:37 +1000665client_process_input(fd_set * readset)
666{
Damien Miller166fca82000-04-20 07:42:21 +1000667 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000668 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000669
Damien Miller95def091999-11-25 00:26:21 +1100670 /* Read input from stdin. */
671 if (FD_ISSET(fileno(stdin), readset)) {
672 /* Read as much as possible. */
673 len = read(fileno(stdin), buf, sizeof(buf));
674 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100675 /*
676 * Received EOF or error. They are treated
677 * similarly, except that an error message is printed
678 * if it was an error condition.
679 */
Damien Miller95def091999-11-25 00:26:21 +1100680 if (len < 0) {
681 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
682 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100683 }
684 /* Mark that we have seen EOF. */
685 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100686 /*
687 * Send an EOF message to the server unless there is
688 * data in the buffer. If there is data in the
689 * buffer, no message will be sent now. Code
690 * elsewhere will send the EOF when the buffer
691 * becomes empty if stdin_eof is set.
692 */
Damien Miller95def091999-11-25 00:26:21 +1100693 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000694 packet_start(SSH_CMSG_EOF);
695 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100696 }
697 } else if (escape_char == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100698 /*
699 * Normal successful read, and no escape character.
700 * Just append the data to buffer.
701 */
Damien Miller95def091999-11-25 00:26:21 +1100702 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100703 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100704 /*
705 * Normal, successful read. But we have an escape character
706 * and have to process the characters one by one.
707 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000708 if (process_escapes(&stdin_buffer, &stdout_buffer,
709 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +1000710 return;
Damien Miller95def091999-11-25 00:26:21 +1100711 }
712 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713}
714
Damien Miller4af51302000-04-16 11:18:38 +1000715void
Damien Miller95def091999-11-25 00:26:21 +1100716client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717{
Damien Miller95def091999-11-25 00:26:21 +1100718 int len;
719 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller95def091999-11-25 00:26:21 +1100721 /* Write buffered output to stdout. */
722 if (FD_ISSET(fileno(stdout), writeset)) {
723 /* Write as much data as possible. */
724 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100725 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100726 if (len <= 0) {
727 if (errno == EAGAIN)
728 len = 0;
729 else {
Damien Miller5428f641999-11-25 11:54:57 +1100730 /*
731 * An error or EOF was encountered. Put an
732 * error message to stderr buffer.
733 */
Damien Miller95def091999-11-25 00:26:21 +1100734 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
735 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100736 quit_pending = 1;
737 return;
738 }
739 }
740 /* Consume printed data from the buffer. */
741 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000742 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000743 }
Damien Miller95def091999-11-25 00:26:21 +1100744 /* Write buffered output to stderr. */
745 if (FD_ISSET(fileno(stderr), writeset)) {
746 /* Write as much data as possible. */
747 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100748 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100749 if (len <= 0) {
750 if (errno == EAGAIN)
751 len = 0;
752 else {
Damien Miller5428f641999-11-25 11:54:57 +1100753 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100754 quit_pending = 1;
755 return;
756 }
757 }
758 /* Consume printed characters from the buffer. */
759 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000760 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100761 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000762}
763
Damien Miller5428f641999-11-25 11:54:57 +1100764/*
Damien Millerb38eff82000-04-01 11:09:21 +1000765 * Get packets from the connection input buffer, and process them as long as
766 * there are packets available.
767 *
768 * Any unknown packets received during the actual
769 * session cause the session to terminate. This is
770 * intended to make debugging easier since no
771 * confirmations are sent. Any compatible protocol
772 * extensions must be negotiated during the
773 * preparatory phase.
774 */
775
Damien Miller4af51302000-04-16 11:18:38 +1000776void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000777client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000778{
Ben Lindstromf28f6342001-04-04 02:03:04 +0000779 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000780}
781
Damien Millerad833b32000-08-23 10:46:23 +1000782/* scan buf[] for '~' before sending data to the peer */
783
784int
785simple_escape_filter(Channel *c, char *buf, int len)
786{
787 /* XXX we assume c->extended is writeable */
788 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
789}
790
Damien Millerb38eff82000-04-01 11:09:21 +1000791/*
Damien Miller5428f641999-11-25 11:54:57 +1100792 * Implements the interactive session with the server. This is called after
793 * the user has been authenticated, and a command has been started on the
794 * remote host. If escape_char != -1, it is the character used as an escape
795 * character for terminating or suspending the session.
796 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000797
Damien Miller4af51302000-04-16 11:18:38 +1000798int
Damien Millerad833b32000-08-23 10:46:23 +1000799client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000800{
Damien Miller5e953212001-01-30 09:14:00 +1100801 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100802 double start_time, total_time;
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000803 int max_fd = 0, len, rekeying = 0;
Damien Miller95def091999-11-25 00:26:21 +1100804 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805
Damien Miller95def091999-11-25 00:26:21 +1100806 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000807
Damien Miller95def091999-11-25 00:26:21 +1100808 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809
Damien Miller95def091999-11-25 00:26:21 +1100810 /* Initialize variables. */
811 escape_pending = 0;
812 last_was_cr = 1;
813 exit_status = -1;
814 stdin_eof = 0;
815 buffer_high = 64 * 1024;
816 connection_in = packet_get_connection_in();
817 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100818 max_fd = MAX(connection_in, connection_out);
819
820 if (!compat20) {
821 max_fd = MAX(max_fd, fileno(stdin));
822 max_fd = MAX(max_fd, fileno(stdout));
823 max_fd = MAX(max_fd, fileno(stderr));
824 }
Damien Miller95def091999-11-25 00:26:21 +1100825 stdin_bytes = 0;
826 stdout_bytes = 0;
827 stderr_bytes = 0;
828 quit_pending = 0;
829 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Damien Miller95def091999-11-25 00:26:21 +1100831 /* Initialize buffers. */
832 buffer_init(&stdin_buffer);
833 buffer_init(&stdout_buffer);
834 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000835
Damien Millerb38eff82000-04-01 11:09:21 +1000836 client_init_dispatch();
837
Damien Miller95def091999-11-25 00:26:21 +1100838 /* Set signal handlers to restore non-blocking mode. */
839 signal(SIGINT, signal_handler);
840 signal(SIGQUIT, signal_handler);
841 signal(SIGTERM, signal_handler);
842 signal(SIGPIPE, SIG_IGN);
843 if (have_pty)
844 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000845
Damien Miller95def091999-11-25 00:26:21 +1100846 if (have_pty)
847 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000848
Ben Lindstrom5b828322001-02-09 01:34:36 +0000849 if (compat20) {
850 session_ident = ssh2_chan_id;
851 if (escape_char != -1)
852 channel_register_filter(session_ident,
853 simple_escape_filter);
854 } else {
855 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000856 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +0000857 }
Damien Millerad833b32000-08-23 10:46:23 +1000858
Damien Miller95def091999-11-25 00:26:21 +1100859 /* Main loop of the client for the interactive session mode. */
860 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861
Damien Miller5428f641999-11-25 11:54:57 +1100862 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100863 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000865 rekeying = (xxx_kex != NULL && !xxx_kex->done);
866
Damien Miller1383bd82000-04-06 12:32:37 +1000867 if (compat20 && !channel_still_open()) {
Damien Millerd3444942000-09-30 14:20:03 +1100868 debug2("!channel_still_open.");
Damien Miller1383bd82000-04-06 12:32:37 +1000869 break;
870 }
871
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000872 if (rekeying) {
873 debug("rekeying in progress");
874 } else {
875 /*
876 * Make packets of buffered stdin data, and buffer
877 * them for sending to the server.
878 */
879 if (!compat20)
880 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000881
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000882 /*
883 * Make packets from buffered channel data, and
884 * enqueue them for sending to the server.
885 */
886 if (packet_not_very_much_data_to_write())
887 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000888
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000889 /*
890 * Check if the window size has changed, and buffer a
891 * message about it to the server if so.
892 */
893 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000894
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000895 if (quit_pending)
896 break;
897 }
Damien Miller5428f641999-11-25 11:54:57 +1100898 /*
899 * Wait until we have something to do (something becomes
900 * available on one of the descriptors).
901 */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000902 client_wait_until_can_do_something(&readset, &writeset,
903 &max_fd, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904
Damien Miller95def091999-11-25 00:26:21 +1100905 if (quit_pending)
906 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000908 /* Do channel operations unless rekeying in progress. */
909 if (!rekeying) {
910 channel_after_select(readset, writeset);
911
912 if (need_rekeying) {
913 debug("user requests rekeying");
914 xxx_kex->done = 0;
915 kex_send_kexinit(xxx_kex);
916 need_rekeying = 0;
917 }
918 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919
Damien Miller1383bd82000-04-06 12:32:37 +1000920 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +1100921 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000922
Damien Miller1383bd82000-04-06 12:32:37 +1000923 if (quit_pending)
924 break;
925
926 if (!compat20) {
927 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +1100928 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +1000929 /*
930 * Process output to stdout and stderr. Output to
931 * the connection is processed elsewhere (above).
932 */
Damien Miller5e953212001-01-30 09:14:00 +1100933 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +1000934 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935
Damien Miller5428f641999-11-25 11:54:57 +1100936 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +1100937 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +1100938 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000939 }
Damien Miller5e953212001-01-30 09:14:00 +1100940 if (readset)
941 xfree(readset);
942 if (writeset)
943 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944
Damien Miller95def091999-11-25 00:26:21 +1100945 /* Terminate the session. */
946
947 /* Stop watching for window change. */
948 if (have_pty)
949 signal(SIGWINCH, SIG_DFL);
950
951 /* Stop listening for connections. */
952 channel_stop_listening();
953
Damien Miller5428f641999-11-25 11:54:57 +1100954 /*
955 * In interactive mode (with pseudo tty) display a message indicating
956 * that the connection has been closed.
957 */
Damien Miller95def091999-11-25 00:26:21 +1100958 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
959 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
960 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000961 }
Damien Miller95def091999-11-25 00:26:21 +1100962 /* Output any buffered data for stdout. */
963 while (buffer_len(&stdout_buffer) > 0) {
964 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100965 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100966 if (len <= 0) {
967 error("Write failed flushing stdout buffer.");
968 break;
969 }
970 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000971 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100972 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller95def091999-11-25 00:26:21 +1100974 /* Output any buffered data for stderr. */
975 while (buffer_len(&stderr_buffer) > 0) {
976 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100977 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100978 if (len <= 0) {
979 error("Write failed flushing stderr buffer.");
980 break;
981 }
982 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000983 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100984 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller95def091999-11-25 00:26:21 +1100986 if (have_pty)
987 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller95def091999-11-25 00:26:21 +1100989 /* Clear and free any buffers. */
990 memset(buf, 0, sizeof(buf));
991 buffer_free(&stdin_buffer);
992 buffer_free(&stdout_buffer);
993 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994
Damien Miller95def091999-11-25 00:26:21 +1100995 /* Report bytes transferred, and transfer rates. */
996 total_time = get_current_time() - start_time;
997 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
998 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
999 if (total_time > 0)
1000 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
1001 stdin_bytes / total_time, stdout_bytes / total_time,
1002 stderr_bytes / total_time);
1003
1004 /* Return the exit status of the program. */
1005 debug("Exit status %d", exit_status);
1006 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001007}
Damien Millerb38eff82000-04-01 11:09:21 +10001008
1009/*********/
1010
1011void
Damien Miller62cee002000-09-23 17:15:56 +11001012client_input_stdout_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001013{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001014 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001015 char *data = packet_get_string(&data_len);
1016 packet_integrity_check(plen, 4 + data_len, type);
1017 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001018 memset(data, 0, data_len);
1019 xfree(data);
1020}
1021void
Damien Miller62cee002000-09-23 17:15:56 +11001022client_input_stderr_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001023{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001024 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001025 char *data = packet_get_string(&data_len);
1026 packet_integrity_check(plen, 4 + data_len, type);
1027 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001028 memset(data, 0, data_len);
1029 xfree(data);
1030}
1031void
Damien Miller62cee002000-09-23 17:15:56 +11001032client_input_exit_status(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001033{
1034 packet_integrity_check(plen, 4, type);
1035 exit_status = packet_get_int();
1036 /* Acknowledge the exit. */
1037 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1038 packet_send();
1039 /*
1040 * Must wait for packet to be sent since we are
1041 * exiting the loop.
1042 */
1043 packet_write_wait();
1044 /* Flag that we want to exit. */
1045 quit_pending = 1;
1046}
1047
Damien Miller0bc1bd82000-11-13 22:57:25 +11001048Channel *
1049client_request_forwarded_tcpip(const char *request_type, int rchan)
1050{
1051 Channel* c = NULL;
1052 char *listen_address, *originator_address;
1053 int listen_port, originator_port;
1054 int sock, newch;
1055
1056 /* Get rest of the packet */
1057 listen_address = packet_get_string(NULL);
1058 listen_port = packet_get_int();
1059 originator_address = packet_get_string(NULL);
1060 originator_port = packet_get_int();
1061 packet_done();
1062
1063 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1064 listen_address, listen_port, originator_address, originator_port);
1065
1066 sock = channel_connect_by_listen_adress(listen_port);
1067 if (sock >= 0) {
1068 newch = channel_new("forwarded-tcpip",
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001069 SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001070 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1071 xstrdup(originator_address), 1);
1072 c = channel_lookup(newch);
1073 }
1074 xfree(originator_address);
1075 xfree(listen_address);
1076 return c;
1077}
1078
1079Channel*
1080client_request_x11(const char *request_type, int rchan)
1081{
1082 Channel *c = NULL;
1083 char *originator;
1084 int originator_port;
1085 int sock, newch;
1086
1087 if (!options.forward_x11) {
1088 error("Warning: ssh server tried X11 forwarding.");
1089 error("Warning: this is probably a break in attempt by a malicious server.");
1090 return NULL;
1091 }
1092 originator = packet_get_string(NULL);
1093 if (datafellows & SSH_BUG_X11FWD) {
1094 debug2("buggy server: x11 request w/o originator_port");
1095 originator_port = 0;
1096 } else {
1097 originator_port = packet_get_int();
1098 }
1099 packet_done();
1100 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001101 debug("client_request_x11: request from %s %d", originator,
1102 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001103 sock = x11_connect_display();
1104 if (sock >= 0) {
1105 newch = channel_new("x11",
1106 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1107 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0,
1108 xstrdup("x11"), 1);
1109 c = channel_lookup(newch);
1110 }
1111 xfree(originator);
1112 return c;
1113}
1114
1115Channel*
1116client_request_agent(const char *request_type, int rchan)
1117{
1118 Channel *c = NULL;
1119 int sock, newch;
1120
1121 if (!options.forward_agent) {
1122 error("Warning: ssh server tried agent forwarding.");
1123 error("Warning: this is probably a break in attempt by a malicious server.");
1124 return NULL;
1125 }
1126 sock = ssh_get_authentication_socket();
1127 if (sock >= 0) {
1128 newch = channel_new("authentication agent connection",
1129 SSH_CHANNEL_OPEN, sock, sock, -1,
1130 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1131 xstrdup("authentication agent connection"), 1);
1132 c = channel_lookup(newch);
1133 }
1134 return c;
1135}
1136
Damien Millerbd483e72000-04-30 10:00:53 +10001137/* XXXX move to generic input handler */
1138void
Damien Miller62cee002000-09-23 17:15:56 +11001139client_input_channel_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001140{
1141 Channel *c = NULL;
1142 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001143 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001144 int rchan;
1145 int rmaxpack;
1146 int rwindow;
1147
1148 ctype = packet_get_string(&len);
1149 rchan = packet_get_int();
1150 rwindow = packet_get_int();
1151 rmaxpack = packet_get_int();
1152
Damien Millere247cc42000-05-07 12:03:14 +10001153 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001154 ctype, rchan, rwindow, rmaxpack);
1155
Damien Miller0bc1bd82000-11-13 22:57:25 +11001156 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1157 c = client_request_forwarded_tcpip(ctype, rchan);
1158 } else if (strcmp(ctype, "x11") == 0) {
1159 c = client_request_x11(ctype, rchan);
1160 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1161 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001162 }
1163/* XXX duplicate : */
1164 if (c != NULL) {
1165 debug("confirm %s", ctype);
1166 c->remote_id = rchan;
1167 c->remote_window = rwindow;
1168 c->remote_maxpacket = rmaxpack;
1169
1170 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1171 packet_put_int(c->remote_id);
1172 packet_put_int(c->self);
1173 packet_put_int(c->local_window);
1174 packet_put_int(c->local_maxpacket);
1175 packet_send();
1176 } else {
1177 debug("failure %s", ctype);
1178 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1179 packet_put_int(rchan);
1180 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1181 packet_put_cstring("bla bla");
1182 packet_put_cstring("");
1183 packet_send();
1184 }
1185 xfree(ctype);
1186}
Ben Lindstrom5b828322001-02-09 01:34:36 +00001187void
1188client_input_channel_req(int type, int plen, void *ctxt)
1189{
1190 Channel *c = NULL;
1191 int id, reply, success = 0;
1192 char *rtype;
1193
1194 id = packet_get_int();
1195 rtype = packet_get_string(NULL);
1196 reply = packet_get_char();
1197
1198 debug("client_input_channel_req: channel %d rtype %s reply %d",
1199 id, rtype, reply);
1200
1201 if (session_ident == -1) {
1202 error("client_input_channel_req: no channel %d", session_ident);
1203 } else if (id != session_ident) {
1204 error("client_input_channel_req: channel %d: wrong channel: %d",
1205 session_ident, id);
1206 }
1207 c = channel_lookup(id);
1208 if (c == NULL) {
1209 error("client_input_channel_req: channel %d: unknown channel", id);
1210 } else if (strcmp(rtype, "exit-status") == 0) {
1211 success = 1;
1212 exit_status = packet_get_int();
1213 packet_done();
1214 }
1215 if (reply) {
1216 packet_start(success ?
1217 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1218 packet_put_int(c->remote_id);
1219 packet_send();
1220 }
1221 xfree(rtype);
1222}
Damien Millerbd483e72000-04-30 10:00:53 +10001223
Damien Miller4af51302000-04-16 11:18:38 +10001224void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001225client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001226{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001227 dispatch_init(&dispatch_protocol_error);
Damien Miller1383bd82000-04-06 12:32:37 +10001228 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1229 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1230 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1231 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001232 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001233 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1234 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001235 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001236 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001237
1238 /* rekeying */
1239 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller1383bd82000-04-06 12:32:37 +10001240}
Damien Miller4af51302000-04-16 11:18:38 +10001241void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001242client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001243{
1244 dispatch_init(NULL);
1245 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1246 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1247 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001248 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1249 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1250 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001251 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1252 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1253 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001254
1255 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
1256 &auth_input_open_request : &deny_input_open);
1257 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1258 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001259}
Damien Miller4af51302000-04-16 11:18:38 +10001260void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001261client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001262{
1263 client_init_dispatch_13();
1264 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1265 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1266}
Damien Miller4af51302000-04-16 11:18:38 +10001267void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001268client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001269{
Damien Miller1383bd82000-04-06 12:32:37 +10001270 if (compat20)
1271 client_init_dispatch_20();
1272 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001273 client_init_dispatch_13();
1274 else
1275 client_init_dispatch_15();
1276}