blob: 721c27905ae03f7bc79bfe10216d584f4793602e [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"
Damien Millerd83ff352001-01-30 09:19:34 +110062RCSID("$OpenBSD: clientloop.c,v 1.47 2001/01/29 19:42:35 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 Lindstrom226cfa02001-01-22 05:34:40 +000076#include "log.h"
77#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000078#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000079#include "authfd.h"
80#include "atomicio.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110081
82/* import options */
83extern Options options;
84
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085/* Flag indicating that stdin should be redirected from /dev/null. */
86extern int stdin_null_flag;
87
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Name of the host we are connecting to. This is the name given on the
90 * command line, or the HostName specified for the user-supplied name in a
91 * configuration file.
92 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093extern char *host;
94
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Flag to indicate that we have received a window change signal which has
97 * not yet been processed. This will cause a message indicating the new
98 * window size to be sent to the server a little later. This is volatile
99 * because this is updated in a signal handler.
100 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101static volatile int received_window_change_signal = 0;
102
103/* Terminal modes, as saved by enter_raw_mode. */
104static struct termios saved_tio;
105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * Flag indicating whether we are in raw mode. This is used by
108 * enter_raw_mode and leave_raw_mode.
109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110static int in_raw_mode = 0;
111
112/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
113static int in_non_blocking_mode = 0;
114
115/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000116static int quit_pending; /* Set to non-zero to quit the client loop. */
117static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100118static int escape_pending; /* Last character was the escape character */
119static int last_was_cr; /* Last character was a newline. */
120static int exit_status; /* Used to store the exit status of the command. */
121static int stdin_eof; /* EOF has been encountered on standard error. */
122static Buffer stdin_buffer; /* Buffer for stdin data. */
123static Buffer stdout_buffer; /* Buffer for stdout data. */
124static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000125static u_long stdin_bytes, stdout_bytes, stderr_bytes;
126static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100127static int connection_in; /* Connection to server (input). */
128static int connection_out; /* Connection to server (output). */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Damien Miller1383bd82000-04-06 12:32:37 +1000130
131void client_init_dispatch(void);
132int session_ident = -1;
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/* Returns the user\'s terminal to normal mode if it had been put in raw mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller4af51302000-04-16 11:18:38 +1000136void
Damien Miller95def091999-11-25 00:26:21 +1100137leave_raw_mode()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138{
Damien Miller95def091999-11-25 00:26:21 +1100139 if (!in_raw_mode)
140 return;
141 in_raw_mode = 0;
142 if (tcsetattr(fileno(stdin), TCSADRAIN, &saved_tio) < 0)
143 perror("tcsetattr");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller95def091999-11-25 00:26:21 +1100145 fatal_remove_cleanup((void (*) (void *)) leave_raw_mode, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146}
147
148/* Puts the user\'s terminal in raw mode. */
149
Damien Miller4af51302000-04-16 11:18:38 +1000150void
Damien Miller95def091999-11-25 00:26:21 +1100151enter_raw_mode()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152{
Damien Miller95def091999-11-25 00:26:21 +1100153 struct termios tio;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller95def091999-11-25 00:26:21 +1100155 if (tcgetattr(fileno(stdin), &tio) < 0)
156 perror("tcgetattr");
157 saved_tio = tio;
158 tio.c_iflag |= IGNPAR;
159 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
160 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161#ifdef IEXTEN
Damien Miller95def091999-11-25 00:26:21 +1100162 tio.c_lflag &= ~IEXTEN;
163#endif /* IEXTEN */
164 tio.c_oflag &= ~OPOST;
165 tio.c_cc[VMIN] = 1;
166 tio.c_cc[VTIME] = 0;
167 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) < 0)
168 perror("tcsetattr");
169 in_raw_mode = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
Damien Miller95def091999-11-25 00:26:21 +1100171 fatal_add_cleanup((void (*) (void *)) leave_raw_mode, NULL);
172}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
174/* Restores stdin to blocking mode. */
175
Damien Miller4af51302000-04-16 11:18:38 +1000176void
Damien Miller95def091999-11-25 00:26:21 +1100177leave_non_blocking()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178{
Damien Miller95def091999-11-25 00:26:21 +1100179 if (in_non_blocking_mode) {
180 (void) fcntl(fileno(stdin), F_SETFL, 0);
181 in_non_blocking_mode = 0;
182 fatal_remove_cleanup((void (*) (void *)) leave_non_blocking, NULL);
183 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184}
185
Damien Miller95def091999-11-25 00:26:21 +1100186/* Puts stdin terminal in non-blocking mode. */
187
Damien Miller4af51302000-04-16 11:18:38 +1000188void
Damien Miller95def091999-11-25 00:26:21 +1100189enter_non_blocking()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller95def091999-11-25 00:26:21 +1100191 in_non_blocking_mode = 1;
192 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
193 fatal_add_cleanup((void (*) (void *)) leave_non_blocking, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194}
195
Damien Miller5428f641999-11-25 11:54:57 +1100196/*
197 * Signal handler for the window change signal (SIGWINCH). This just sets a
198 * flag indicating that the window has changed.
199 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Damien Miller4af51302000-04-16 11:18:38 +1000201void
Damien Miller95def091999-11-25 00:26:21 +1100202window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203{
Damien Miller95def091999-11-25 00:26:21 +1100204 received_window_change_signal = 1;
205 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206}
207
Damien Miller5428f641999-11-25 11:54:57 +1100208/*
209 * Signal handler for signals that cause the program to terminate. These
210 * signals must be trapped to restore terminal modes.
211 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212
Damien Miller4af51302000-04-16 11:18:38 +1000213void
Damien Miller95def091999-11-25 00:26:21 +1100214signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215{
Damien Miller95def091999-11-25 00:26:21 +1100216 if (in_raw_mode)
217 leave_raw_mode();
218 if (in_non_blocking_mode)
219 leave_non_blocking();
220 channel_stop_listening();
221 packet_close();
222 fatal("Killed by signal %d.", sig);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller5428f641999-11-25 11:54:57 +1100225/*
226 * Returns current time in seconds from Jan 1, 1970 with the maximum
227 * available resolution.
228 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229
Damien Miller4af51302000-04-16 11:18:38 +1000230double
Damien Miller95def091999-11-25 00:26:21 +1100231get_current_time()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 struct timeval tv;
234 gettimeofday(&tv, NULL);
235 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller5428f641999-11-25 11:54:57 +1100238/*
239 * This is called when the interactive is entered. This checks if there is
240 * an EOF coming on stdin. We must check this explicitly, as select() does
241 * not appear to wake up when redirecting from /dev/null.
242 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243
Damien Miller4af51302000-04-16 11:18:38 +1000244void
Damien Miller95def091999-11-25 00:26:21 +1100245client_check_initial_eof_on_stdin()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246{
Damien Miller95def091999-11-25 00:26:21 +1100247 int len;
248 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249
Damien Miller5428f641999-11-25 11:54:57 +1100250 /*
251 * If standard input is to be "redirected from /dev/null", we simply
252 * mark that we have seen an EOF and send an EOF message to the
253 * server. Otherwise, we try to read a single character; it appears
254 * that for some files, such /dev/null, select() never wakes up for
255 * read for this descriptor, which means that we never get EOF. This
256 * way we will get the EOF if stdin comes from /dev/null or similar.
257 */
Damien Miller95def091999-11-25 00:26:21 +1100258 if (stdin_null_flag) {
259 /* Fake EOF on stdin. */
260 debug("Sending eof.");
261 stdin_eof = 1;
262 packet_start(SSH_CMSG_EOF);
263 packet_send();
264 } else {
Damien Miller95def091999-11-25 00:26:21 +1100265 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Check for immediate EOF on stdin. */
268 len = read(fileno(stdin), buf, 1);
269 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100270 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100271 debug("Sending eof.");
272 stdin_eof = 1;
273 packet_start(SSH_CMSG_EOF);
274 packet_send();
275 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100276 /*
277 * Got data. We must store the data in the buffer,
278 * and also process it as an escape character if
279 * appropriate.
280 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000281 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100282 escape_pending = 1;
283 else {
284 buffer_append(&stdin_buffer, buf, 1);
285 stdin_bytes += 1;
286 }
287 }
Damien Miller95def091999-11-25 00:26:21 +1100288 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290}
291
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller5428f641999-11-25 11:54:57 +1100293/*
294 * Make packets from buffered stdin data, and buffer them for sending to the
295 * connection.
296 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
Damien Miller4af51302000-04-16 11:18:38 +1000298void
Damien Miller95def091999-11-25 00:26:21 +1100299client_make_packets_from_stdin_data()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000301 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Miller95def091999-11-25 00:26:21 +1100303 /* Send buffered stdin data to the server. */
304 while (buffer_len(&stdin_buffer) > 0 &&
305 packet_not_very_much_data_to_write()) {
306 len = buffer_len(&stdin_buffer);
307 /* Keep the packets at reasonable size. */
308 if (len > packet_get_maxsize())
309 len = packet_get_maxsize();
310 packet_start(SSH_CMSG_STDIN_DATA);
311 packet_put_string(buffer_ptr(&stdin_buffer), len);
312 packet_send();
313 buffer_consume(&stdin_buffer, len);
314 /* If we have a pending EOF, send it now. */
315 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
316 packet_start(SSH_CMSG_EOF);
317 packet_send();
318 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320}
321
Damien Miller5428f641999-11-25 11:54:57 +1100322/*
323 * Checks if the client window has changed, and sends a packet about it to
324 * the server if so. The actual change is detected elsewhere (by a software
325 * interrupt on Unix); this just checks the flag and sends a message if
326 * appropriate.
327 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328
Damien Miller4af51302000-04-16 11:18:38 +1000329void
Damien Miller95def091999-11-25 00:26:21 +1100330client_check_window_change()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331{
Damien Miller1383bd82000-04-06 12:32:37 +1000332 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333
Damien Miller1383bd82000-04-06 12:32:37 +1000334 if (! received_window_change_signal)
335 return;
336 /** XXX race */
337 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338
Damien Miller1383bd82000-04-06 12:32:37 +1000339 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
340 return;
341
Damien Millerd3444942000-09-30 14:20:03 +1100342 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000343
344 if (compat20) {
345 channel_request_start(session_ident, "window-change", 0);
346 packet_put_int(ws.ws_col);
347 packet_put_int(ws.ws_row);
348 packet_put_int(ws.ws_xpixel);
349 packet_put_int(ws.ws_ypixel);
350 packet_send();
351 } else {
352 packet_start(SSH_CMSG_WINDOW_SIZE);
353 packet_put_int(ws.ws_row);
354 packet_put_int(ws.ws_col);
355 packet_put_int(ws.ws_xpixel);
356 packet_put_int(ws.ws_ypixel);
357 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359}
360
Damien Miller5428f641999-11-25 11:54:57 +1100361/*
362 * Waits until the client can do something (some data becomes available on
363 * one of the file descriptors).
364 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365
Damien Miller4af51302000-04-16 11:18:38 +1000366void
Damien Miller5e953212001-01-30 09:14:00 +1100367client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
368 int *maxfdp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369{
Damien Miller5e953212001-01-30 09:14:00 +1100370 /* Add any selections by the channel mechanism. */
371 channel_prepare_select(readsetp, writesetp, maxfdp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Damien Miller1383bd82000-04-06 12:32:37 +1000373 if (!compat20) {
374 /* Read from the connection, unless our buffers are full. */
375 if (buffer_len(&stdout_buffer) < buffer_high &&
376 buffer_len(&stderr_buffer) < buffer_high &&
377 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100378 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000379 /*
380 * Read from stdin, unless we have seen EOF or have very much
381 * buffered data to send to the server.
382 */
383 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100384 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000385
386 /* Select stdout/stderr if have data in buffer. */
387 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100388 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000389 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100390 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000391 } else {
Damien Miller5e953212001-01-30 09:14:00 +1100392 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000393 }
394
Damien Miller95def091999-11-25 00:26:21 +1100395 /* Select server connection if have data to write to the server. */
396 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100397 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100398
Damien Miller5428f641999-11-25 11:54:57 +1100399 /*
400 * Wait for something to happen. This will suspend the process until
401 * some selected descriptor can be read, written, or has some other
402 * event pending. Note: if you want to implement SSH_MSG_IGNORE
403 * messages to fool traffic analysis, this might be the place to do
404 * it: just have a random timeout for the select, and send a random
405 * SSH_MSG_IGNORE packet when the timeout expires.
406 */
Damien Miller95def091999-11-25 00:26:21 +1100407
Damien Miller5e953212001-01-30 09:14:00 +1100408 if (select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100409 char buf[100];
Damien Miller95def091999-11-25 00:26:21 +1100410 if (errno == EINTR)
411 return;
412 /* Note: we might still have data in the buffers. */
413 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
414 buffer_append(&stderr_buffer, buf, strlen(buf));
415 stderr_bytes += strlen(buf);
416 quit_pending = 1;
417 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418}
419
Damien Miller4af51302000-04-16 11:18:38 +1000420void
Damien Millerad833b32000-08-23 10:46:23 +1000421client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422{
Damien Miller95def091999-11-25 00:26:21 +1100423 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000426 if (buffer_len(bout) > 0)
427 atomicio(write, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
428 if (buffer_len(berr) > 0)
429 atomicio(write, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Damien Miller95def091999-11-25 00:26:21 +1100431 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller5428f641999-11-25 11:54:57 +1100433 /*
434 * Free (and clear) the buffer to reduce the amount of data that gets
435 * written to swap.
436 */
Damien Millerad833b32000-08-23 10:46:23 +1000437 buffer_free(bin);
438 buffer_free(bout);
439 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Damien Miller95def091999-11-25 00:26:21 +1100441 /* Save old window size. */
442 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000443
Damien Miller95def091999-11-25 00:26:21 +1100444 /* Send the suspend signal to the program itself. */
445 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Miller95def091999-11-25 00:26:21 +1100447 /* Check if the window size has changed. */
448 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
449 (oldws.ws_row != newws.ws_row ||
450 oldws.ws_col != newws.ws_col ||
451 oldws.ws_xpixel != newws.ws_xpixel ||
452 oldws.ws_ypixel != newws.ws_ypixel))
453 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454
Damien Miller95def091999-11-25 00:26:21 +1100455 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000456 buffer_init(bin);
457 buffer_init(bout);
458 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000459
Damien Miller95def091999-11-25 00:26:21 +1100460 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461}
462
Damien Miller4af51302000-04-16 11:18:38 +1000463void
Damien Miller1383bd82000-04-06 12:32:37 +1000464client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465{
Damien Miller1383bd82000-04-06 12:32:37 +1000466 int len;
467 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468
Damien Miller5428f641999-11-25 11:54:57 +1100469 /*
470 * Read input from the server, and add any such data to the buffer of
471 * the packet subsystem.
472 */
Damien Miller95def091999-11-25 00:26:21 +1100473 if (FD_ISSET(connection_in, readset)) {
474 /* Read as much as possible. */
475 len = read(connection_in, buf, sizeof(buf));
476 if (len == 0) {
477 /* Received EOF. The remote host has closed the connection. */
478 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
479 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480 buffer_append(&stderr_buffer, buf, strlen(buf));
481 stderr_bytes += strlen(buf);
482 quit_pending = 1;
483 return;
Damien Miller95def091999-11-25 00:26:21 +1100484 }
Damien Miller5428f641999-11-25 11:54:57 +1100485 /*
486 * There is a kernel bug on Solaris that causes select to
487 * sometimes wake up even though there is no data available.
488 */
Damien Miller95def091999-11-25 00:26:21 +1100489 if (len < 0 && errno == EAGAIN)
490 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
Damien Miller95def091999-11-25 00:26:21 +1100492 if (len < 0) {
493 /* An error has encountered. Perhaps there is a network problem. */
494 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
495 host, strerror(errno));
496 buffer_append(&stderr_buffer, buf, strlen(buf));
497 stderr_bytes += strlen(buf);
498 quit_pending = 1;
499 return;
500 }
501 packet_process_incoming(buf, len);
502 }
Damien Miller1383bd82000-04-06 12:32:37 +1000503}
504
Damien Millerad833b32000-08-23 10:46:23 +1000505/* process the characters one by one */
506int
507process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
508{
509 char string[1024];
510 pid_t pid;
511 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000512 u_int i;
513 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000514 char *s;
515
516 for (i = 0; i < len; i++) {
517 /* Get one character at a time. */
518 ch = buf[i];
519
520 if (escape_pending) {
521 /* We have previously seen an escape character. */
522 /* Clear the flag now. */
523 escape_pending = 0;
524
525 /* Process the escaped character. */
526 switch (ch) {
527 case '.':
528 /* Terminate the connection. */
529 snprintf(string, sizeof string, "%c.\r\n", escape_char);
530 buffer_append(berr, string, strlen(string));
531 /*stderr_bytes += strlen(string); XXX*/
532
533 quit_pending = 1;
534 return -1;
535
536 case 'Z' - 64:
537 /* Suspend the program. */
538 /* Print a message to that effect to the user. */
539 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
540 buffer_append(berr, string, strlen(string));
541 /*stderr_bytes += strlen(string); XXX*/
542
543 /* Restore terminal modes and suspend. */
544 client_suspend_self(bin, bout, berr);
545
546 /* We have been continued. */
547 continue;
548
549 case '&':
550 /* XXX does not work yet with proto 2 */
551 if (compat20)
552 continue;
553 /*
554 * Detach the program (continue to serve connections,
555 * but put in background and no more new connections).
556 */
557 if (!stdin_eof) {
558 /*
559 * Sending SSH_CMSG_EOF alone does not always appear
560 * to be enough. So we try to send an EOF character
561 * first.
562 */
563 packet_start(SSH_CMSG_STDIN_DATA);
564 packet_put_string("\004", 1);
565 packet_send();
566 /* Close stdin. */
567 stdin_eof = 1;
568 if (buffer_len(bin) == 0) {
569 packet_start(SSH_CMSG_EOF);
570 packet_send();
571 }
572 }
573 /* Restore tty modes. */
574 leave_raw_mode();
575
576 /* Stop listening for new connections. */
577 channel_stop_listening();
578
579 printf("%c& [backgrounded]\n", escape_char);
580
581 /* Fork into background. */
582 pid = fork();
583 if (pid < 0) {
584 error("fork: %.100s", strerror(errno));
585 continue;
586 }
587 if (pid != 0) { /* This is the parent. */
588 /* The parent just exits. */
589 exit(0);
590 }
591 /* The child continues serving connections. */
592 continue; /*XXX ? */
593
594 case '?':
595 snprintf(string, sizeof string,
596"%c?\r\n\
597Supported escape sequences:\r\n\
598~. - terminate connection\r\n\
599~^Z - suspend ssh\r\n\
600~# - list forwarded connections\r\n\
601~& - background ssh (when waiting for connections to terminate)\r\n\
602~? - this message\r\n\
603~~ - send the escape character by typing it twice\r\n\
604(Note that escapes are only recognized immediately after newline.)\r\n",
605 escape_char);
606 buffer_append(berr, string, strlen(string));
607 continue;
608
609 case '#':
610 snprintf(string, sizeof string, "%c#\r\n", escape_char);
611 buffer_append(berr, string, strlen(string));
612 s = channel_open_message();
613 buffer_append(berr, s, strlen(s));
614 xfree(s);
615 continue;
616
617 default:
618 if (ch != escape_char) {
619 buffer_put_char(bin, escape_char);
620 bytes++;
621 }
622 /* Escaped characters fall through here */
623 break;
624 }
625 } else {
626 /*
627 * The previous character was not an escape char. Check if this
628 * is an escape.
629 */
630 if (last_was_cr && ch == escape_char) {
631 /* It is. Set the flag and continue to next character. */
632 escape_pending = 1;
633 continue;
634 }
635 }
636
637 /*
638 * Normal character. Record whether it was a newline,
639 * and append it to the buffer.
640 */
641 last_was_cr = (ch == '\r' || ch == '\n');
642 buffer_put_char(bin, ch);
643 bytes++;
644 }
645 return bytes;
646}
647
Damien Miller4af51302000-04-16 11:18:38 +1000648void
Damien Miller1383bd82000-04-06 12:32:37 +1000649client_process_input(fd_set * readset)
650{
Damien Millerad833b32000-08-23 10:46:23 +1000651 int ret;
Damien Miller166fca82000-04-20 07:42:21 +1000652 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000653 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000654
Damien Miller95def091999-11-25 00:26:21 +1100655 /* Read input from stdin. */
656 if (FD_ISSET(fileno(stdin), readset)) {
657 /* Read as much as possible. */
658 len = read(fileno(stdin), buf, sizeof(buf));
659 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100660 /*
661 * Received EOF or error. They are treated
662 * similarly, except that an error message is printed
663 * if it was an error condition.
664 */
Damien Miller95def091999-11-25 00:26:21 +1100665 if (len < 0) {
666 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
667 buffer_append(&stderr_buffer, buf, strlen(buf));
668 stderr_bytes += strlen(buf);
669 }
670 /* Mark that we have seen EOF. */
671 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100672 /*
673 * Send an EOF message to the server unless there is
674 * data in the buffer. If there is data in the
675 * buffer, no message will be sent now. Code
676 * elsewhere will send the EOF when the buffer
677 * becomes empty if stdin_eof is set.
678 */
Damien Miller95def091999-11-25 00:26:21 +1100679 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680 packet_start(SSH_CMSG_EOF);
681 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100682 }
683 } else if (escape_char == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100684 /*
685 * Normal successful read, and no escape character.
686 * Just append the data to buffer.
687 */
Damien Miller95def091999-11-25 00:26:21 +1100688 buffer_append(&stdin_buffer, buf, len);
689 stdin_bytes += len;
690 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100691 /*
692 * Normal, successful read. But we have an escape character
693 * and have to process the characters one by one.
694 */
Damien Millerad833b32000-08-23 10:46:23 +1000695 ret = process_escapes(&stdin_buffer, &stdout_buffer, &stderr_buffer, buf, len);
696 if (ret == -1)
697 return;
698 stdout_bytes += ret;
Damien Miller95def091999-11-25 00:26:21 +1100699 }
700 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000701}
702
Damien Miller4af51302000-04-16 11:18:38 +1000703void
Damien Miller95def091999-11-25 00:26:21 +1100704client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000705{
Damien Miller95def091999-11-25 00:26:21 +1100706 int len;
707 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708
Damien Miller95def091999-11-25 00:26:21 +1100709 /* Write buffered output to stdout. */
710 if (FD_ISSET(fileno(stdout), writeset)) {
711 /* Write as much data as possible. */
712 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100713 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100714 if (len <= 0) {
715 if (errno == EAGAIN)
716 len = 0;
717 else {
Damien Miller5428f641999-11-25 11:54:57 +1100718 /*
719 * An error or EOF was encountered. Put an
720 * error message to stderr buffer.
721 */
Damien Miller95def091999-11-25 00:26:21 +1100722 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
723 buffer_append(&stderr_buffer, buf, strlen(buf));
724 stderr_bytes += strlen(buf);
725 quit_pending = 1;
726 return;
727 }
728 }
729 /* Consume printed data from the buffer. */
730 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000731 }
Damien Miller95def091999-11-25 00:26:21 +1100732 /* Write buffered output to stderr. */
733 if (FD_ISSET(fileno(stderr), writeset)) {
734 /* Write as much data as possible. */
735 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100736 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100737 if (len <= 0) {
738 if (errno == EAGAIN)
739 len = 0;
740 else {
Damien Miller5428f641999-11-25 11:54:57 +1100741 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100742 quit_pending = 1;
743 return;
744 }
745 }
746 /* Consume printed characters from the buffer. */
747 buffer_consume(&stderr_buffer, len);
748 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749}
750
Damien Miller5428f641999-11-25 11:54:57 +1100751/*
Damien Millerb38eff82000-04-01 11:09:21 +1000752 * Get packets from the connection input buffer, and process them as long as
753 * there are packets available.
754 *
755 * Any unknown packets received during the actual
756 * session cause the session to terminate. This is
757 * intended to make debugging easier since no
758 * confirmations are sent. Any compatible protocol
759 * extensions must be negotiated during the
760 * preparatory phase.
761 */
762
Damien Miller4af51302000-04-16 11:18:38 +1000763void
Damien Millerb38eff82000-04-01 11:09:21 +1000764client_process_buffered_input_packets()
765{
Damien Miller62cee002000-09-23 17:15:56 +1100766 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000767}
768
Damien Millerad833b32000-08-23 10:46:23 +1000769/* scan buf[] for '~' before sending data to the peer */
770
771int
772simple_escape_filter(Channel *c, char *buf, int len)
773{
774 /* XXX we assume c->extended is writeable */
775 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
776}
777
Damien Millerb38eff82000-04-01 11:09:21 +1000778/*
Damien Miller5428f641999-11-25 11:54:57 +1100779 * Implements the interactive session with the server. This is called after
780 * the user has been authenticated, and a command has been started on the
781 * remote host. If escape_char != -1, it is the character used as an escape
782 * character for terminating or suspending the session.
783 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784
Damien Miller4af51302000-04-16 11:18:38 +1000785int
Damien Millerad833b32000-08-23 10:46:23 +1000786client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787{
Damien Miller5e953212001-01-30 09:14:00 +1100788 fd_set *readset = NULL, *writeset = NULL;
789 int max_fd = 0;
Damien Miller95def091999-11-25 00:26:21 +1100790 double start_time, total_time;
791 int len;
792 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793
Damien Miller95def091999-11-25 00:26:21 +1100794 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000795
Damien Miller95def091999-11-25 00:26:21 +1100796 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000797
Damien Miller95def091999-11-25 00:26:21 +1100798 /* Initialize variables. */
799 escape_pending = 0;
800 last_was_cr = 1;
801 exit_status = -1;
802 stdin_eof = 0;
803 buffer_high = 64 * 1024;
804 connection_in = packet_get_connection_in();
805 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100806 max_fd = MAX(connection_in, connection_out);
807
808 if (!compat20) {
809 max_fd = MAX(max_fd, fileno(stdin));
810 max_fd = MAX(max_fd, fileno(stdout));
811 max_fd = MAX(max_fd, fileno(stderr));
812 }
Damien Miller95def091999-11-25 00:26:21 +1100813 stdin_bytes = 0;
814 stdout_bytes = 0;
815 stderr_bytes = 0;
816 quit_pending = 0;
817 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818
Damien Miller95def091999-11-25 00:26:21 +1100819 /* Initialize buffers. */
820 buffer_init(&stdin_buffer);
821 buffer_init(&stdout_buffer);
822 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000823
Damien Millerb38eff82000-04-01 11:09:21 +1000824 client_init_dispatch();
825
Damien Miller95def091999-11-25 00:26:21 +1100826 /* Set signal handlers to restore non-blocking mode. */
827 signal(SIGINT, signal_handler);
828 signal(SIGQUIT, signal_handler);
829 signal(SIGTERM, signal_handler);
830 signal(SIGPIPE, SIG_IGN);
831 if (have_pty)
832 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000833
Damien Miller95def091999-11-25 00:26:21 +1100834 if (have_pty)
835 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000836
Damien Millerbe484b52000-07-15 14:14:16 +1000837 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000838 if (!compat20)
839 client_check_initial_eof_on_stdin();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000840
Damien Millerad833b32000-08-23 10:46:23 +1000841 if (compat20 && escape_char != -1)
842 channel_register_filter(ssh2_chan_id, simple_escape_filter);
843
Damien Miller95def091999-11-25 00:26:21 +1100844 /* Main loop of the client for the interactive session mode. */
845 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846
Damien Miller5428f641999-11-25 11:54:57 +1100847 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100848 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000849
Damien Miller1383bd82000-04-06 12:32:37 +1000850 if (compat20 && !channel_still_open()) {
Damien Millerd3444942000-09-30 14:20:03 +1100851 debug2("!channel_still_open.");
Damien Miller1383bd82000-04-06 12:32:37 +1000852 break;
853 }
854
Damien Miller5428f641999-11-25 11:54:57 +1100855 /*
856 * Make packets of buffered stdin data, and buffer them for
857 * sending to the server.
858 */
Damien Miller1383bd82000-04-06 12:32:37 +1000859 if (!compat20)
860 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861
Damien Miller5428f641999-11-25 11:54:57 +1100862 /*
Damien Miller5e953212001-01-30 09:14:00 +1100863 * Make packets from buffered channel data, and enqueue them
Damien Miller5428f641999-11-25 11:54:57 +1100864 * for sending to the server.
865 */
Damien Miller95def091999-11-25 00:26:21 +1100866 if (packet_not_very_much_data_to_write())
867 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000868
Damien Miller5428f641999-11-25 11:54:57 +1100869 /*
870 * Check if the window size has changed, and buffer a message
871 * about it to the server if so.
872 */
Damien Miller95def091999-11-25 00:26:21 +1100873 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874
Damien Miller95def091999-11-25 00:26:21 +1100875 if (quit_pending)
876 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000877
Damien Miller5428f641999-11-25 11:54:57 +1100878 /*
879 * Wait until we have something to do (something becomes
880 * available on one of the descriptors).
881 */
Damien Miller5e953212001-01-30 09:14:00 +1100882 client_wait_until_can_do_something(&readset, &writeset, &max_fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883
Damien Miller95def091999-11-25 00:26:21 +1100884 if (quit_pending)
885 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000886
Damien Miller95def091999-11-25 00:26:21 +1100887 /* Do channel operations. */
Damien Miller5e953212001-01-30 09:14:00 +1100888 channel_after_select(readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000889
Damien Miller1383bd82000-04-06 12:32:37 +1000890 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +1100891 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000892
Damien Miller1383bd82000-04-06 12:32:37 +1000893 if (quit_pending)
894 break;
895
896 if (!compat20) {
897 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +1100898 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +1000899 /*
900 * Process output to stdout and stderr. Output to
901 * the connection is processed elsewhere (above).
902 */
Damien Miller5e953212001-01-30 09:14:00 +1100903 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +1000904 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000905
Damien Miller5428f641999-11-25 11:54:57 +1100906 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +1100907 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +1100908 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000909 }
Damien Miller5e953212001-01-30 09:14:00 +1100910 if (readset)
911 xfree(readset);
912 if (writeset)
913 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000914
Damien Miller95def091999-11-25 00:26:21 +1100915 /* Terminate the session. */
916
917 /* Stop watching for window change. */
918 if (have_pty)
919 signal(SIGWINCH, SIG_DFL);
920
921 /* Stop listening for connections. */
922 channel_stop_listening();
923
Damien Miller5428f641999-11-25 11:54:57 +1100924 /*
925 * In interactive mode (with pseudo tty) display a message indicating
926 * that the connection has been closed.
927 */
Damien Miller95def091999-11-25 00:26:21 +1100928 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
929 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
930 buffer_append(&stderr_buffer, buf, strlen(buf));
931 stderr_bytes += strlen(buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000932 }
Damien Miller95def091999-11-25 00:26:21 +1100933 /* Output any buffered data for stdout. */
934 while (buffer_len(&stdout_buffer) > 0) {
935 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100936 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100937 if (len <= 0) {
938 error("Write failed flushing stdout buffer.");
939 break;
940 }
941 buffer_consume(&stdout_buffer, len);
942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller95def091999-11-25 00:26:21 +1100944 /* Output any buffered data for stderr. */
945 while (buffer_len(&stderr_buffer) > 0) {
946 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100947 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100948 if (len <= 0) {
949 error("Write failed flushing stderr buffer.");
950 break;
951 }
952 buffer_consume(&stderr_buffer, len);
953 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954
Damien Miller95def091999-11-25 00:26:21 +1100955 if (have_pty)
956 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller95def091999-11-25 00:26:21 +1100958 /* Clear and free any buffers. */
959 memset(buf, 0, sizeof(buf));
960 buffer_free(&stdin_buffer);
961 buffer_free(&stdout_buffer);
962 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller95def091999-11-25 00:26:21 +1100964 /* Report bytes transferred, and transfer rates. */
965 total_time = get_current_time() - start_time;
966 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
967 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
968 if (total_time > 0)
969 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
970 stdin_bytes / total_time, stdout_bytes / total_time,
971 stderr_bytes / total_time);
972
973 /* Return the exit status of the program. */
974 debug("Exit status %d", exit_status);
975 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000976}
Damien Millerb38eff82000-04-01 11:09:21 +1000977
978/*********/
979
980void
Damien Miller62cee002000-09-23 17:15:56 +1100981client_input_stdout_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000982{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000983 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000984 char *data = packet_get_string(&data_len);
985 packet_integrity_check(plen, 4 + data_len, type);
986 buffer_append(&stdout_buffer, data, data_len);
987 stdout_bytes += data_len;
988 memset(data, 0, data_len);
989 xfree(data);
990}
991void
Damien Miller62cee002000-09-23 17:15:56 +1100992client_input_stderr_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000993{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000994 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000995 char *data = packet_get_string(&data_len);
996 packet_integrity_check(plen, 4 + data_len, type);
997 buffer_append(&stderr_buffer, data, data_len);
998 stdout_bytes += data_len;
999 memset(data, 0, data_len);
1000 xfree(data);
1001}
1002void
Damien Miller62cee002000-09-23 17:15:56 +11001003client_input_exit_status(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001004{
1005 packet_integrity_check(plen, 4, type);
1006 exit_status = packet_get_int();
1007 /* Acknowledge the exit. */
1008 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1009 packet_send();
1010 /*
1011 * Must wait for packet to be sent since we are
1012 * exiting the loop.
1013 */
1014 packet_write_wait();
1015 /* Flag that we want to exit. */
1016 quit_pending = 1;
1017}
1018
Damien Miller0bc1bd82000-11-13 22:57:25 +11001019Channel *
1020client_request_forwarded_tcpip(const char *request_type, int rchan)
1021{
1022 Channel* c = NULL;
1023 char *listen_address, *originator_address;
1024 int listen_port, originator_port;
1025 int sock, newch;
1026
1027 /* Get rest of the packet */
1028 listen_address = packet_get_string(NULL);
1029 listen_port = packet_get_int();
1030 originator_address = packet_get_string(NULL);
1031 originator_port = packet_get_int();
1032 packet_done();
1033
1034 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1035 listen_address, listen_port, originator_address, originator_port);
1036
1037 sock = channel_connect_by_listen_adress(listen_port);
1038 if (sock >= 0) {
1039 newch = channel_new("forwarded-tcpip",
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001040 SSH_CHANNEL_CONNECTING, sock, sock, -1,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001041 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1042 xstrdup(originator_address), 1);
1043 c = channel_lookup(newch);
1044 }
1045 xfree(originator_address);
1046 xfree(listen_address);
1047 return c;
1048}
1049
1050Channel*
1051client_request_x11(const char *request_type, int rchan)
1052{
1053 Channel *c = NULL;
1054 char *originator;
1055 int originator_port;
1056 int sock, newch;
1057
1058 if (!options.forward_x11) {
1059 error("Warning: ssh server tried X11 forwarding.");
1060 error("Warning: this is probably a break in attempt by a malicious server.");
1061 return NULL;
1062 }
1063 originator = packet_get_string(NULL);
1064 if (datafellows & SSH_BUG_X11FWD) {
1065 debug2("buggy server: x11 request w/o originator_port");
1066 originator_port = 0;
1067 } else {
1068 originator_port = packet_get_int();
1069 }
1070 packet_done();
1071 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001072 debug("client_request_x11: request from %s %d", originator,
1073 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001074 sock = x11_connect_display();
1075 if (sock >= 0) {
1076 newch = channel_new("x11",
1077 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1078 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0,
1079 xstrdup("x11"), 1);
1080 c = channel_lookup(newch);
1081 }
1082 xfree(originator);
1083 return c;
1084}
1085
1086Channel*
1087client_request_agent(const char *request_type, int rchan)
1088{
1089 Channel *c = NULL;
1090 int sock, newch;
1091
1092 if (!options.forward_agent) {
1093 error("Warning: ssh server tried agent forwarding.");
1094 error("Warning: this is probably a break in attempt by a malicious server.");
1095 return NULL;
1096 }
1097 sock = ssh_get_authentication_socket();
1098 if (sock >= 0) {
1099 newch = channel_new("authentication agent connection",
1100 SSH_CHANNEL_OPEN, sock, sock, -1,
1101 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1102 xstrdup("authentication agent connection"), 1);
1103 c = channel_lookup(newch);
1104 }
1105 return c;
1106}
1107
Damien Millerbd483e72000-04-30 10:00:53 +10001108/* XXXX move to generic input handler */
1109void
Damien Miller62cee002000-09-23 17:15:56 +11001110client_input_channel_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001111{
1112 Channel *c = NULL;
1113 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001114 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001115 int rchan;
1116 int rmaxpack;
1117 int rwindow;
1118
1119 ctype = packet_get_string(&len);
1120 rchan = packet_get_int();
1121 rwindow = packet_get_int();
1122 rmaxpack = packet_get_int();
1123
Damien Millere247cc42000-05-07 12:03:14 +10001124 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001125 ctype, rchan, rwindow, rmaxpack);
1126
Damien Miller0bc1bd82000-11-13 22:57:25 +11001127 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1128 c = client_request_forwarded_tcpip(ctype, rchan);
1129 } else if (strcmp(ctype, "x11") == 0) {
1130 c = client_request_x11(ctype, rchan);
1131 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1132 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001133 }
1134/* XXX duplicate : */
1135 if (c != NULL) {
1136 debug("confirm %s", ctype);
1137 c->remote_id = rchan;
1138 c->remote_window = rwindow;
1139 c->remote_maxpacket = rmaxpack;
1140
1141 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1142 packet_put_int(c->remote_id);
1143 packet_put_int(c->self);
1144 packet_put_int(c->local_window);
1145 packet_put_int(c->local_maxpacket);
1146 packet_send();
1147 } else {
1148 debug("failure %s", ctype);
1149 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1150 packet_put_int(rchan);
1151 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
1152 packet_put_cstring("bla bla");
1153 packet_put_cstring("");
1154 packet_send();
1155 }
1156 xfree(ctype);
1157}
1158
Damien Miller4af51302000-04-16 11:18:38 +10001159void
Damien Miller1383bd82000-04-06 12:32:37 +10001160client_init_dispatch_20()
1161{
1162 dispatch_init(&dispatch_protocol_error);
1163 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1164 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1165 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1166 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001167 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001168 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1169 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1170 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &channel_input_channel_request);
1171 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
1172}
Damien Miller4af51302000-04-16 11:18:38 +10001173void
Damien Millerb38eff82000-04-01 11:09:21 +10001174client_init_dispatch_13()
1175{
1176 dispatch_init(NULL);
1177 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1178 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1179 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001180 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1181 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1182 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001183 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1184 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1185 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001186
1187 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
1188 &auth_input_open_request : &deny_input_open);
1189 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1190 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001191}
Damien Miller4af51302000-04-16 11:18:38 +10001192void
Damien Millerb38eff82000-04-01 11:09:21 +10001193client_init_dispatch_15()
1194{
1195 client_init_dispatch_13();
1196 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1197 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1198}
Damien Miller4af51302000-04-16 11:18:38 +10001199void
Damien Millerb38eff82000-04-01 11:09:21 +10001200client_init_dispatch()
1201{
Damien Miller1383bd82000-04-06 12:32:37 +10001202 if (compat20)
1203 client_init_dispatch_20();
1204 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001205 client_init_dispatch_13();
1206 else
1207 client_init_dispatch_15();
1208}
Damien Miller1383bd82000-04-06 12:32:37 +10001209
1210void
1211client_input_channel_req(int id, void *arg)
1212{
1213 Channel *c = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001214 u_int len;
Damien Miller1383bd82000-04-06 12:32:37 +10001215 int success = 0;
1216 int reply;
1217 char *rtype;
1218
1219 rtype = packet_get_string(&len);
1220 reply = packet_get_char();
1221
Damien Millere247cc42000-05-07 12:03:14 +10001222 debug("client_input_channel_req: rtype %s reply %d", rtype, reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001223
1224 c = channel_lookup(id);
1225 if (c == NULL)
Damien Millere4340be2000-09-16 13:29:08 +11001226 fatal("client_input_channel_req: channel %d: bad channel", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001227
1228 if (session_ident == -1) {
1229 error("client_input_channel_req: no channel %d", id);
1230 } else if (id != session_ident) {
1231 error("client_input_channel_req: bad channel %d != %d",
1232 id, session_ident);
1233 } else if (strcmp(rtype, "exit-status") == 0) {
1234 success = 1;
1235 exit_status = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001236 packet_done();
Damien Miller1383bd82000-04-06 12:32:37 +10001237 }
1238 if (reply) {
1239 packet_start(success ?
1240 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1241 packet_put_int(c->remote_id);
1242 packet_send();
1243 }
1244 xfree(rtype);
1245}
1246
1247void
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001248clientloop_set_session_ident(int id)
Damien Miller1383bd82000-04-06 12:32:37 +10001249{
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001250 debug2("clientloop_set_session_ident: id %d", id);
Damien Miller1383bd82000-04-06 12:32:37 +10001251 session_ident = id;
1252 channel_register_callback(id, SSH2_MSG_CHANNEL_REQUEST,
1253 client_input_channel_req, (void *)0);
1254}