blob: b2b7debc8f4c03ddfbd2c6e7b9645f9656681df9 [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 Lindstroma69d89b2001-05-09 00:01:18 +000062RCSID("$OpenBSD: clientloop.c,v 1.69 2001/05/08 19:17:31 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"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000082#include "sshtty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000083#include "misc.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110084
85/* import options */
86extern Options options;
87
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088/* Flag indicating that stdin should be redirected from /dev/null. */
89extern int stdin_null_flag;
90
Damien Miller5428f641999-11-25 11:54:57 +110091/*
92 * Name of the host we are connecting to. This is the name given on the
93 * command line, or the HostName specified for the user-supplied name in a
94 * configuration file.
95 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096extern char *host;
97
Damien Miller5428f641999-11-25 11:54:57 +110098/*
99 * Flag to indicate that we have received a window change signal which has
100 * not yet been processed. This will cause a message indicating the new
101 * window size to be sent to the server a little later. This is volatile
102 * because this is updated in a signal handler.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104static volatile int received_window_change_signal = 0;
105
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
107static int in_non_blocking_mode = 0;
108
109/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000110static int quit_pending; /* Set to non-zero to quit the client loop. */
111static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100112static int escape_pending; /* Last character was the escape character */
113static int last_was_cr; /* Last character was a newline. */
114static int exit_status; /* Used to store the exit status of the command. */
115static int stdin_eof; /* EOF has been encountered on standard error. */
116static Buffer stdin_buffer; /* Buffer for stdin data. */
117static Buffer stdout_buffer; /* Buffer for stdout data. */
118static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000119static u_long stdin_bytes, stdout_bytes, stderr_bytes;
120static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100121static int connection_in; /* Connection to server (input). */
122static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000123static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000124static int session_closed = 0; /* In SSH2: login session closed. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Damien Miller1383bd82000-04-06 12:32:37 +1000126void client_init_dispatch(void);
127int session_ident = -1;
128
Ben Lindstromf28f6342001-04-04 02:03:04 +0000129/*XXX*/
130extern Kex *xxx_kex;
131
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132/* Restores stdin to blocking mode. */
133
Damien Miller4af51302000-04-16 11:18:38 +1000134void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000135leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136{
Damien Miller95def091999-11-25 00:26:21 +1100137 if (in_non_blocking_mode) {
138 (void) fcntl(fileno(stdin), F_SETFL, 0);
139 in_non_blocking_mode = 0;
140 fatal_remove_cleanup((void (*) (void *)) leave_non_blocking, NULL);
141 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142}
143
Damien Miller95def091999-11-25 00:26:21 +1100144/* Puts stdin terminal in non-blocking mode. */
145
Damien Miller4af51302000-04-16 11:18:38 +1000146void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000147enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148{
Damien Miller95def091999-11-25 00:26:21 +1100149 in_non_blocking_mode = 1;
150 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
151 fatal_add_cleanup((void (*) (void *)) leave_non_blocking, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152}
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * Signal handler for the window change signal (SIGWINCH). This just sets a
156 * flag indicating that the window has changed.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Damien Miller4af51302000-04-16 11:18:38 +1000159void
Damien Miller95def091999-11-25 00:26:21 +1100160window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161{
Damien Miller95def091999-11-25 00:26:21 +1100162 received_window_change_signal = 1;
163 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164}
165
Damien Miller5428f641999-11-25 11:54:57 +1100166/*
167 * Signal handler for signals that cause the program to terminate. These
168 * signals must be trapped to restore terminal modes.
169 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
Damien Miller4af51302000-04-16 11:18:38 +1000171void
Damien Miller95def091999-11-25 00:26:21 +1100172signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173{
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000174 if (in_raw_mode())
Damien Miller95def091999-11-25 00:26:21 +1100175 leave_raw_mode();
176 if (in_non_blocking_mode)
177 leave_non_blocking();
178 channel_stop_listening();
179 packet_close();
180 fatal("Killed by signal %d.", sig);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181}
182
Damien Miller5428f641999-11-25 11:54:57 +1100183/*
184 * Returns current time in seconds from Jan 1, 1970 with the maximum
185 * available resolution.
186 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187
Damien Miller4af51302000-04-16 11:18:38 +1000188double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000189get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller95def091999-11-25 00:26:21 +1100191 struct timeval tv;
192 gettimeofday(&tv, NULL);
193 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194}
195
Damien Miller5428f641999-11-25 11:54:57 +1100196/*
197 * This is called when the interactive is entered. This checks if there is
198 * an EOF coming on stdin. We must check this explicitly, as select() does
199 * not appear to wake up when redirecting from /dev/null.
200 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201
Damien Miller4af51302000-04-16 11:18:38 +1000202void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000203client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller95def091999-11-25 00:26:21 +1100205 int len;
206 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Damien Miller5428f641999-11-25 11:54:57 +1100208 /*
209 * If standard input is to be "redirected from /dev/null", we simply
210 * mark that we have seen an EOF and send an EOF message to the
211 * server. Otherwise, we try to read a single character; it appears
212 * that for some files, such /dev/null, select() never wakes up for
213 * read for this descriptor, which means that we never get EOF. This
214 * way we will get the EOF if stdin comes from /dev/null or similar.
215 */
Damien Miller95def091999-11-25 00:26:21 +1100216 if (stdin_null_flag) {
217 /* Fake EOF on stdin. */
218 debug("Sending eof.");
219 stdin_eof = 1;
220 packet_start(SSH_CMSG_EOF);
221 packet_send();
222 } else {
Damien Miller95def091999-11-25 00:26:21 +1100223 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224
Damien Miller95def091999-11-25 00:26:21 +1100225 /* Check for immediate EOF on stdin. */
226 len = read(fileno(stdin), buf, 1);
227 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100228 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100229 debug("Sending eof.");
230 stdin_eof = 1;
231 packet_start(SSH_CMSG_EOF);
232 packet_send();
233 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100234 /*
235 * Got data. We must store the data in the buffer,
236 * and also process it as an escape character if
237 * appropriate.
238 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000239 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100240 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000241 else
Damien Miller95def091999-11-25 00:26:21 +1100242 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100243 }
Damien Miller95def091999-11-25 00:26:21 +1100244 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248
Damien Miller5428f641999-11-25 11:54:57 +1100249/*
250 * Make packets from buffered stdin data, and buffer them for sending to the
251 * connection.
252 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253
Damien Miller4af51302000-04-16 11:18:38 +1000254void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000255client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000257 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258
Damien Miller95def091999-11-25 00:26:21 +1100259 /* Send buffered stdin data to the server. */
260 while (buffer_len(&stdin_buffer) > 0 &&
261 packet_not_very_much_data_to_write()) {
262 len = buffer_len(&stdin_buffer);
263 /* Keep the packets at reasonable size. */
264 if (len > packet_get_maxsize())
265 len = packet_get_maxsize();
266 packet_start(SSH_CMSG_STDIN_DATA);
267 packet_put_string(buffer_ptr(&stdin_buffer), len);
268 packet_send();
269 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000270 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100271 /* If we have a pending EOF, send it now. */
272 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
273 packet_start(SSH_CMSG_EOF);
274 packet_send();
275 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277}
278
Damien Miller5428f641999-11-25 11:54:57 +1100279/*
280 * Checks if the client window has changed, and sends a packet about it to
281 * the server if so. The actual change is detected elsewhere (by a software
282 * interrupt on Unix); this just checks the flag and sends a message if
283 * appropriate.
284 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller4af51302000-04-16 11:18:38 +1000286void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000287client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288{
Damien Miller1383bd82000-04-06 12:32:37 +1000289 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290
Damien Miller1383bd82000-04-06 12:32:37 +1000291 if (! received_window_change_signal)
292 return;
293 /** XXX race */
294 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000295
Damien Miller1383bd82000-04-06 12:32:37 +1000296 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
297 return;
298
Damien Millerd3444942000-09-30 14:20:03 +1100299 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000300
301 if (compat20) {
302 channel_request_start(session_ident, "window-change", 0);
303 packet_put_int(ws.ws_col);
304 packet_put_int(ws.ws_row);
305 packet_put_int(ws.ws_xpixel);
306 packet_put_int(ws.ws_ypixel);
307 packet_send();
308 } else {
309 packet_start(SSH_CMSG_WINDOW_SIZE);
310 packet_put_int(ws.ws_row);
311 packet_put_int(ws.ws_col);
312 packet_put_int(ws.ws_xpixel);
313 packet_put_int(ws.ws_ypixel);
314 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316}
317
Damien Miller5428f641999-11-25 11:54:57 +1100318/*
319 * Waits until the client can do something (some data becomes available on
320 * one of the file descriptors).
321 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Miller4af51302000-04-16 11:18:38 +1000323void
Damien Miller5e953212001-01-30 09:14:00 +1100324client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000325 int *maxfdp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326{
Damien Miller5e953212001-01-30 09:14:00 +1100327 /* Add any selections by the channel mechanism. */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000328 channel_prepare_select(readsetp, writesetp, maxfdp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
Damien Miller1383bd82000-04-06 12:32:37 +1000330 if (!compat20) {
331 /* Read from the connection, unless our buffers are full. */
332 if (buffer_len(&stdout_buffer) < buffer_high &&
333 buffer_len(&stderr_buffer) < buffer_high &&
334 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100335 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000336 /*
337 * Read from stdin, unless we have seen EOF or have very much
338 * buffered data to send to the server.
339 */
340 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100341 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000342
343 /* Select stdout/stderr if have data in buffer. */
344 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100345 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000346 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100347 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000348 } else {
Damien Miller5e953212001-01-30 09:14:00 +1100349 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000350 }
351
Damien Miller95def091999-11-25 00:26:21 +1100352 /* Select server connection if have data to write to the server. */
353 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100354 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100355
Damien Miller5428f641999-11-25 11:54:57 +1100356 /*
357 * Wait for something to happen. This will suspend the process until
358 * some selected descriptor can be read, written, or has some other
359 * event pending. Note: if you want to implement SSH_MSG_IGNORE
360 * messages to fool traffic analysis, this might be the place to do
361 * it: just have a random timeout for the select, and send a random
362 * SSH_MSG_IGNORE packet when the timeout expires.
363 */
Damien Miller95def091999-11-25 00:26:21 +1100364
Damien Miller5e953212001-01-30 09:14:00 +1100365 if (select((*maxfdp)+1, *readsetp, *writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100366 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000367
368 /*
369 * We have to clear the select masks, because we return.
370 * We have to return, because the mainloop checks for the flags
371 * set by the signal handlers.
372 */
373 memset(*readsetp, 0, *maxfdp);
374 memset(*writesetp, 0, *maxfdp);
375
Damien Miller95def091999-11-25 00:26:21 +1100376 if (errno == EINTR)
377 return;
378 /* Note: we might still have data in the buffers. */
379 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
380 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100381 quit_pending = 1;
382 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383}
384
Damien Miller4af51302000-04-16 11:18:38 +1000385void
Damien Millerad833b32000-08-23 10:46:23 +1000386client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387{
Damien Miller95def091999-11-25 00:26:21 +1100388 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389
Damien Miller95def091999-11-25 00:26:21 +1100390 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000391 if (buffer_len(bout) > 0)
392 atomicio(write, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
393 if (buffer_len(berr) > 0)
394 atomicio(write, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395
Damien Miller95def091999-11-25 00:26:21 +1100396 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397
Damien Miller5428f641999-11-25 11:54:57 +1100398 /*
399 * Free (and clear) the buffer to reduce the amount of data that gets
400 * written to swap.
401 */
Damien Millerad833b32000-08-23 10:46:23 +1000402 buffer_free(bin);
403 buffer_free(bout);
404 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405
Damien Miller95def091999-11-25 00:26:21 +1100406 /* Save old window size. */
407 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408
Damien Miller95def091999-11-25 00:26:21 +1100409 /* Send the suspend signal to the program itself. */
410 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411
Damien Miller95def091999-11-25 00:26:21 +1100412 /* Check if the window size has changed. */
413 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
414 (oldws.ws_row != newws.ws_row ||
415 oldws.ws_col != newws.ws_col ||
416 oldws.ws_xpixel != newws.ws_xpixel ||
417 oldws.ws_ypixel != newws.ws_ypixel))
418 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
Damien Miller95def091999-11-25 00:26:21 +1100420 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000421 buffer_init(bin);
422 buffer_init(bout);
423 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426}
427
Damien Miller4af51302000-04-16 11:18:38 +1000428void
Damien Miller1383bd82000-04-06 12:32:37 +1000429client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430{
Damien Miller1383bd82000-04-06 12:32:37 +1000431 int len;
432 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433
Damien Miller5428f641999-11-25 11:54:57 +1100434 /*
435 * Read input from the server, and add any such data to the buffer of
436 * the packet subsystem.
437 */
Damien Miller95def091999-11-25 00:26:21 +1100438 if (FD_ISSET(connection_in, readset)) {
439 /* Read as much as possible. */
440 len = read(connection_in, buf, sizeof(buf));
441 if (len == 0) {
442 /* Received EOF. The remote host has closed the connection. */
443 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
444 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446 quit_pending = 1;
447 return;
Damien Miller95def091999-11-25 00:26:21 +1100448 }
Damien Miller5428f641999-11-25 11:54:57 +1100449 /*
450 * There is a kernel bug on Solaris that causes select to
451 * sometimes wake up even though there is no data available.
452 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000453 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100454 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455
Damien Miller95def091999-11-25 00:26:21 +1100456 if (len < 0) {
457 /* An error has encountered. Perhaps there is a network problem. */
458 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
459 host, strerror(errno));
460 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100461 quit_pending = 1;
462 return;
463 }
464 packet_process_incoming(buf, len);
465 }
Damien Miller1383bd82000-04-06 12:32:37 +1000466}
467
Damien Millerad833b32000-08-23 10:46:23 +1000468/* process the characters one by one */
469int
470process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
471{
472 char string[1024];
473 pid_t pid;
474 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000475 u_int i;
476 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000477 char *s;
478
479 for (i = 0; i < len; i++) {
480 /* Get one character at a time. */
481 ch = buf[i];
482
483 if (escape_pending) {
484 /* We have previously seen an escape character. */
485 /* Clear the flag now. */
486 escape_pending = 0;
487
488 /* Process the escaped character. */
489 switch (ch) {
490 case '.':
491 /* Terminate the connection. */
492 snprintf(string, sizeof string, "%c.\r\n", escape_char);
493 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000494
495 quit_pending = 1;
496 return -1;
497
498 case 'Z' - 64:
499 /* Suspend the program. */
500 /* Print a message to that effect to the user. */
501 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
502 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000503
504 /* Restore terminal modes and suspend. */
505 client_suspend_self(bin, bout, berr);
506
507 /* We have been continued. */
508 continue;
509
Ben Lindstromf28f6342001-04-04 02:03:04 +0000510 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000511 if (compat20) {
512 if (datafellows & SSH_BUG_NOREKEY)
513 log("Server does not support re-keying");
514 else
515 need_rekeying = 1;
516 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000517 continue;
518
Damien Millerad833b32000-08-23 10:46:23 +1000519 case '&':
520 /* XXX does not work yet with proto 2 */
521 if (compat20)
522 continue;
523 /*
524 * Detach the program (continue to serve connections,
525 * but put in background and no more new connections).
526 */
527 if (!stdin_eof) {
528 /*
529 * Sending SSH_CMSG_EOF alone does not always appear
530 * to be enough. So we try to send an EOF character
531 * first.
532 */
533 packet_start(SSH_CMSG_STDIN_DATA);
534 packet_put_string("\004", 1);
535 packet_send();
536 /* Close stdin. */
537 stdin_eof = 1;
538 if (buffer_len(bin) == 0) {
539 packet_start(SSH_CMSG_EOF);
540 packet_send();
541 }
542 }
543 /* Restore tty modes. */
544 leave_raw_mode();
545
546 /* Stop listening for new connections. */
547 channel_stop_listening();
548
549 printf("%c& [backgrounded]\n", escape_char);
550
551 /* Fork into background. */
552 pid = fork();
553 if (pid < 0) {
554 error("fork: %.100s", strerror(errno));
555 continue;
556 }
557 if (pid != 0) { /* This is the parent. */
558 /* The parent just exits. */
559 exit(0);
560 }
561 /* The child continues serving connections. */
562 continue; /*XXX ? */
563
564 case '?':
565 snprintf(string, sizeof string,
566"%c?\r\n\
567Supported escape sequences:\r\n\
568~. - terminate connection\r\n\
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000569~R - Request rekey (SSH protocol 2 only)\r\n\
Damien Millerad833b32000-08-23 10:46:23 +1000570~^Z - suspend ssh\r\n\
571~# - list forwarded connections\r\n\
572~& - background ssh (when waiting for connections to terminate)\r\n\
573~? - this message\r\n\
574~~ - send the escape character by typing it twice\r\n\
575(Note that escapes are only recognized immediately after newline.)\r\n",
576 escape_char);
577 buffer_append(berr, string, strlen(string));
578 continue;
579
580 case '#':
581 snprintf(string, sizeof string, "%c#\r\n", escape_char);
582 buffer_append(berr, string, strlen(string));
583 s = channel_open_message();
584 buffer_append(berr, s, strlen(s));
585 xfree(s);
586 continue;
587
588 default:
589 if (ch != escape_char) {
590 buffer_put_char(bin, escape_char);
591 bytes++;
592 }
593 /* Escaped characters fall through here */
594 break;
595 }
596 } else {
597 /*
598 * The previous character was not an escape char. Check if this
599 * is an escape.
600 */
601 if (last_was_cr && ch == escape_char) {
602 /* It is. Set the flag and continue to next character. */
603 escape_pending = 1;
604 continue;
605 }
606 }
607
608 /*
609 * Normal character. Record whether it was a newline,
610 * and append it to the buffer.
611 */
612 last_was_cr = (ch == '\r' || ch == '\n');
613 buffer_put_char(bin, ch);
614 bytes++;
615 }
616 return bytes;
617}
618
Damien Miller4af51302000-04-16 11:18:38 +1000619void
Damien Miller1383bd82000-04-06 12:32:37 +1000620client_process_input(fd_set * readset)
621{
Damien Miller166fca82000-04-20 07:42:21 +1000622 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000623 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000624
Damien Miller95def091999-11-25 00:26:21 +1100625 /* Read input from stdin. */
626 if (FD_ISSET(fileno(stdin), readset)) {
627 /* Read as much as possible. */
628 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000629 if (len < 0 && (errno == EAGAIN || errno == EINTR))
630 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +1100631 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100632 /*
633 * Received EOF or error. They are treated
634 * similarly, except that an error message is printed
635 * if it was an error condition.
636 */
Damien Miller95def091999-11-25 00:26:21 +1100637 if (len < 0) {
638 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
639 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100640 }
641 /* Mark that we have seen EOF. */
642 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100643 /*
644 * Send an EOF message to the server unless there is
645 * data in the buffer. If there is data in the
646 * buffer, no message will be sent now. Code
647 * elsewhere will send the EOF when the buffer
648 * becomes empty if stdin_eof is set.
649 */
Damien Miller95def091999-11-25 00:26:21 +1100650 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651 packet_start(SSH_CMSG_EOF);
652 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100653 }
654 } else if (escape_char == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100655 /*
656 * Normal successful read, and no escape character.
657 * Just append the data to buffer.
658 */
Damien Miller95def091999-11-25 00:26:21 +1100659 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100660 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100661 /*
662 * Normal, successful read. But we have an escape character
663 * and have to process the characters one by one.
664 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000665 if (process_escapes(&stdin_buffer, &stdout_buffer,
666 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +1000667 return;
Damien Miller95def091999-11-25 00:26:21 +1100668 }
669 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000670}
671
Damien Miller4af51302000-04-16 11:18:38 +1000672void
Damien Miller95def091999-11-25 00:26:21 +1100673client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674{
Damien Miller95def091999-11-25 00:26:21 +1100675 int len;
676 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Write buffered output to stdout. */
679 if (FD_ISSET(fileno(stdout), writeset)) {
680 /* Write as much data as possible. */
681 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100682 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100683 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000684 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100685 len = 0;
686 else {
Damien Miller5428f641999-11-25 11:54:57 +1100687 /*
688 * An error or EOF was encountered. Put an
689 * error message to stderr buffer.
690 */
Damien Miller95def091999-11-25 00:26:21 +1100691 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
692 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100693 quit_pending = 1;
694 return;
695 }
696 }
697 /* Consume printed data from the buffer. */
698 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000699 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700 }
Damien Miller95def091999-11-25 00:26:21 +1100701 /* Write buffered output to stderr. */
702 if (FD_ISSET(fileno(stderr), writeset)) {
703 /* Write as much data as possible. */
704 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100705 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100706 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000707 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100708 len = 0;
709 else {
Damien Miller5428f641999-11-25 11:54:57 +1100710 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100711 quit_pending = 1;
712 return;
713 }
714 }
715 /* Consume printed characters from the buffer. */
716 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000717 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100718 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000719}
720
Damien Miller5428f641999-11-25 11:54:57 +1100721/*
Damien Millerb38eff82000-04-01 11:09:21 +1000722 * Get packets from the connection input buffer, and process them as long as
723 * there are packets available.
724 *
725 * Any unknown packets received during the actual
726 * session cause the session to terminate. This is
727 * intended to make debugging easier since no
728 * confirmations are sent. Any compatible protocol
729 * extensions must be negotiated during the
730 * preparatory phase.
731 */
732
Damien Miller4af51302000-04-16 11:18:38 +1000733void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000734client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000735{
Ben Lindstromf28f6342001-04-04 02:03:04 +0000736 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000737}
738
Damien Millerad833b32000-08-23 10:46:23 +1000739/* scan buf[] for '~' before sending data to the peer */
740
741int
742simple_escape_filter(Channel *c, char *buf, int len)
743{
744 /* XXX we assume c->extended is writeable */
745 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
746}
747
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000748void
749client_channel_closed(int id, void *arg)
750{
751 if (id != session_ident)
752 error("client_channel_closed: id %d != session_ident %d",
753 id, session_ident);
754 session_closed = 1;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000755 if (in_raw_mode())
Ben Lindstromd3447632001-04-08 18:07:22 +0000756 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000757}
758
Damien Millerb38eff82000-04-01 11:09:21 +1000759/*
Damien Miller5428f641999-11-25 11:54:57 +1100760 * Implements the interactive session with the server. This is called after
761 * the user has been authenticated, and a command has been started on the
762 * remote host. If escape_char != -1, it is the character used as an escape
763 * character for terminating or suspending the session.
764 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000765
Damien Miller4af51302000-04-16 11:18:38 +1000766int
Damien Millerad833b32000-08-23 10:46:23 +1000767client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000768{
Damien Miller5e953212001-01-30 09:14:00 +1100769 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100770 double start_time, total_time;
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000771 int max_fd = 0, len, rekeying = 0;
Damien Miller95def091999-11-25 00:26:21 +1100772 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773
Damien Miller95def091999-11-25 00:26:21 +1100774 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775
Damien Miller95def091999-11-25 00:26:21 +1100776 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000777
Damien Miller95def091999-11-25 00:26:21 +1100778 /* Initialize variables. */
779 escape_pending = 0;
780 last_was_cr = 1;
781 exit_status = -1;
782 stdin_eof = 0;
783 buffer_high = 64 * 1024;
784 connection_in = packet_get_connection_in();
785 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100786 max_fd = MAX(connection_in, connection_out);
787
788 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000789 /* enable nonblocking unless tty */
790 if (!isatty(fileno(stdin)))
791 set_nonblock(fileno(stdin));
792 if (!isatty(fileno(stdout)))
793 set_nonblock(fileno(stdout));
794 if (!isatty(fileno(stderr)))
795 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +1100796 max_fd = MAX(max_fd, fileno(stdin));
797 max_fd = MAX(max_fd, fileno(stdout));
798 max_fd = MAX(max_fd, fileno(stderr));
799 }
Damien Miller95def091999-11-25 00:26:21 +1100800 stdin_bytes = 0;
801 stdout_bytes = 0;
802 stderr_bytes = 0;
803 quit_pending = 0;
804 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805
Damien Miller95def091999-11-25 00:26:21 +1100806 /* Initialize buffers. */
807 buffer_init(&stdin_buffer);
808 buffer_init(&stdout_buffer);
809 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000810
Damien Millerb38eff82000-04-01 11:09:21 +1000811 client_init_dispatch();
812
Damien Miller95def091999-11-25 00:26:21 +1100813 /* Set signal handlers to restore non-blocking mode. */
814 signal(SIGINT, signal_handler);
815 signal(SIGQUIT, signal_handler);
816 signal(SIGTERM, signal_handler);
817 signal(SIGPIPE, SIG_IGN);
818 if (have_pty)
819 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000820
Damien Miller95def091999-11-25 00:26:21 +1100821 if (have_pty)
822 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000823
Ben Lindstrom5b828322001-02-09 01:34:36 +0000824 if (compat20) {
825 session_ident = ssh2_chan_id;
826 if (escape_char != -1)
827 channel_register_filter(session_ident,
828 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000829 if (session_ident != -1)
830 channel_register_cleanup(session_ident,
831 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +0000832 } else {
833 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000834 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +0000835 }
Damien Millerad833b32000-08-23 10:46:23 +1000836
Damien Miller95def091999-11-25 00:26:21 +1100837 /* Main loop of the client for the interactive session mode. */
838 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839
Damien Miller5428f641999-11-25 11:54:57 +1100840 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100841 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000842
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000843 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +1000844 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000845
846 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +1000847
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000848 if (rekeying) {
849 debug("rekeying in progress");
850 } else {
851 /*
852 * Make packets of buffered stdin data, and buffer
853 * them for sending to the server.
854 */
855 if (!compat20)
856 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000857
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000858 /*
859 * Make packets from buffered channel data, and
860 * enqueue them for sending to the server.
861 */
862 if (packet_not_very_much_data_to_write())
863 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000865 /*
866 * Check if the window size has changed, and buffer a
867 * message about it to the server if so.
868 */
869 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000871 if (quit_pending)
872 break;
873 }
Damien Miller5428f641999-11-25 11:54:57 +1100874 /*
875 * Wait until we have something to do (something becomes
876 * available on one of the descriptors).
877 */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000878 client_wait_until_can_do_something(&readset, &writeset,
879 &max_fd, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880
Damien Miller95def091999-11-25 00:26:21 +1100881 if (quit_pending)
882 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000884 /* Do channel operations unless rekeying in progress. */
885 if (!rekeying) {
886 channel_after_select(readset, writeset);
887
888 if (need_rekeying) {
889 debug("user requests rekeying");
890 xxx_kex->done = 0;
891 kex_send_kexinit(xxx_kex);
892 need_rekeying = 0;
893 }
894 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895
Damien Miller1383bd82000-04-06 12:32:37 +1000896 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +1100897 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000898
Damien Miller1383bd82000-04-06 12:32:37 +1000899 if (quit_pending)
900 break;
901
902 if (!compat20) {
903 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +1100904 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +1000905 /*
906 * Process output to stdout and stderr. Output to
907 * the connection is processed elsewhere (above).
908 */
Damien Miller5e953212001-01-30 09:14:00 +1100909 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +1000910 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000911
Damien Miller5428f641999-11-25 11:54:57 +1100912 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +1100913 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +1100914 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000915 }
Damien Miller5e953212001-01-30 09:14:00 +1100916 if (readset)
917 xfree(readset);
918 if (writeset)
919 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920
Damien Miller95def091999-11-25 00:26:21 +1100921 /* Terminate the session. */
922
923 /* Stop watching for window change. */
924 if (have_pty)
925 signal(SIGWINCH, SIG_DFL);
926
927 /* Stop listening for connections. */
928 channel_stop_listening();
929
Damien Miller5428f641999-11-25 11:54:57 +1100930 /*
931 * In interactive mode (with pseudo tty) display a message indicating
932 * that the connection has been closed.
933 */
Damien Miller95def091999-11-25 00:26:21 +1100934 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
935 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
936 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937 }
Damien Miller95def091999-11-25 00:26:21 +1100938 /* Output any buffered data for stdout. */
Ben Lindstrom23fedf52001-05-08 23:58:37 +0000939 if (buffer_len(&stdout_buffer) > 0) {
940 len = atomicio(write, fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100941 buffer_len(&stdout_buffer));
Ben Lindstrom23fedf52001-05-08 23:58:37 +0000942 if (len != buffer_len(&stdout_buffer))
Damien Miller95def091999-11-25 00:26:21 +1100943 error("Write failed flushing stdout buffer.");
Damien Miller95def091999-11-25 00:26:21 +1100944 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000945 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100946 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947
Damien Miller95def091999-11-25 00:26:21 +1100948 /* Output any buffered data for stderr. */
Ben Lindstrom23fedf52001-05-08 23:58:37 +0000949 if (buffer_len(&stderr_buffer) > 0) {
950 len = atomicio(write, fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100951 buffer_len(&stderr_buffer));
Ben Lindstrom23fedf52001-05-08 23:58:37 +0000952 if (len != buffer_len(&stderr_buffer))
Damien Miller95def091999-11-25 00:26:21 +1100953 error("Write failed flushing stderr buffer.");
Damien Miller95def091999-11-25 00:26:21 +1100954 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000955 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100956 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller95def091999-11-25 00:26:21 +1100958 if (have_pty)
959 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960
Damien Miller95def091999-11-25 00:26:21 +1100961 /* Clear and free any buffers. */
962 memset(buf, 0, sizeof(buf));
963 buffer_free(&stdin_buffer);
964 buffer_free(&stdout_buffer);
965 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000966
Damien Miller95def091999-11-25 00:26:21 +1100967 /* Report bytes transferred, and transfer rates. */
968 total_time = get_current_time() - start_time;
969 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
970 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
971 if (total_time > 0)
972 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
973 stdin_bytes / total_time, stdout_bytes / total_time,
974 stderr_bytes / total_time);
975
976 /* Return the exit status of the program. */
977 debug("Exit status %d", exit_status);
978 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979}
Damien Millerb38eff82000-04-01 11:09:21 +1000980
981/*********/
982
983void
Damien Miller62cee002000-09-23 17:15:56 +1100984client_input_stdout_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000985{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000986 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000987 char *data = packet_get_string(&data_len);
988 packet_integrity_check(plen, 4 + data_len, type);
989 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000990 memset(data, 0, data_len);
991 xfree(data);
992}
993void
Damien Miller62cee002000-09-23 17:15:56 +1100994client_input_stderr_data(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000995{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000996 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000997 char *data = packet_get_string(&data_len);
998 packet_integrity_check(plen, 4 + data_len, type);
999 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001000 memset(data, 0, data_len);
1001 xfree(data);
1002}
1003void
Damien Miller62cee002000-09-23 17:15:56 +11001004client_input_exit_status(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001005{
1006 packet_integrity_check(plen, 4, type);
1007 exit_status = packet_get_int();
1008 /* Acknowledge the exit. */
1009 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1010 packet_send();
1011 /*
1012 * Must wait for packet to be sent since we are
1013 * exiting the loop.
1014 */
1015 packet_write_wait();
1016 /* Flag that we want to exit. */
1017 quit_pending = 1;
1018}
1019
Damien Miller0bc1bd82000-11-13 22:57:25 +11001020Channel *
1021client_request_forwarded_tcpip(const char *request_type, int rchan)
1022{
1023 Channel* c = NULL;
1024 char *listen_address, *originator_address;
1025 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001026 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001027
1028 /* Get rest of the packet */
1029 listen_address = packet_get_string(NULL);
1030 listen_port = packet_get_int();
1031 originator_address = packet_get_string(NULL);
1032 originator_port = packet_get_int();
1033 packet_done();
1034
1035 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1036 listen_address, listen_port, originator_address, originator_port);
1037
1038 sock = channel_connect_by_listen_adress(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001039 if (sock < 0) {
1040 xfree(originator_address);
1041 xfree(listen_address);
1042 return NULL;
1043 }
1044 c = channel_new("forwarded-tcpip",
1045 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1046 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1047 xstrdup(originator_address), 1);
1048 if (c == NULL) {
1049 error("client_request_forwarded_tcpip: channel_new failed");
1050 close(sock);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001051 }
1052 xfree(originator_address);
1053 xfree(listen_address);
1054 return c;
1055}
1056
1057Channel*
1058client_request_x11(const char *request_type, int rchan)
1059{
1060 Channel *c = NULL;
1061 char *originator;
1062 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001063 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001064
1065 if (!options.forward_x11) {
1066 error("Warning: ssh server tried X11 forwarding.");
1067 error("Warning: this is probably a break in attempt by a malicious server.");
1068 return NULL;
1069 }
1070 originator = packet_get_string(NULL);
1071 if (datafellows & SSH_BUG_X11FWD) {
1072 debug2("buggy server: x11 request w/o originator_port");
1073 originator_port = 0;
1074 } else {
1075 originator_port = packet_get_int();
1076 }
1077 packet_done();
1078 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001079 debug("client_request_x11: request from %s %d", originator,
1080 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001081 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001082 sock = x11_connect_display();
1083 if (sock < 0)
1084 return NULL;
1085 c = channel_new("x11",
1086 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
1087 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0,
1088 xstrdup("x11"), 1);
1089 if (c == NULL) {
1090 error("client_request_x11: channel_new failed");
1091 close(sock);
1092 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001093 return c;
1094}
1095
1096Channel*
1097client_request_agent(const char *request_type, int rchan)
1098{
1099 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001100 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001101
1102 if (!options.forward_agent) {
1103 error("Warning: ssh server tried agent forwarding.");
1104 error("Warning: this is probably a break in attempt by a malicious server.");
1105 return NULL;
1106 }
1107 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001108 if (sock < 0)
1109 return NULL;
1110 c = channel_new("authentication agent connection",
1111 SSH_CHANNEL_OPEN, sock, sock, -1,
1112 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
1113 xstrdup("authentication agent connection"), 1);
1114 if (c == NULL) {
1115 error("client_request_agent: channel_new failed");
1116 close(sock);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001117 }
1118 return c;
1119}
1120
Damien Millerbd483e72000-04-30 10:00:53 +10001121/* XXXX move to generic input handler */
1122void
Damien Miller62cee002000-09-23 17:15:56 +11001123client_input_channel_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001124{
1125 Channel *c = NULL;
1126 char *ctype;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001127 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001128 int rchan;
1129 int rmaxpack;
1130 int rwindow;
1131
1132 ctype = packet_get_string(&len);
1133 rchan = packet_get_int();
1134 rwindow = packet_get_int();
1135 rmaxpack = packet_get_int();
1136
Damien Millere247cc42000-05-07 12:03:14 +10001137 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001138 ctype, rchan, rwindow, rmaxpack);
1139
Damien Miller0bc1bd82000-11-13 22:57:25 +11001140 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1141 c = client_request_forwarded_tcpip(ctype, rchan);
1142 } else if (strcmp(ctype, "x11") == 0) {
1143 c = client_request_x11(ctype, rchan);
1144 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1145 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001146 }
1147/* XXX duplicate : */
1148 if (c != NULL) {
1149 debug("confirm %s", ctype);
1150 c->remote_id = rchan;
1151 c->remote_window = rwindow;
1152 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001153 if (c->type != SSH_CHANNEL_CONNECTING) {
1154 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1155 packet_put_int(c->remote_id);
1156 packet_put_int(c->self);
1157 packet_put_int(c->local_window);
1158 packet_put_int(c->local_maxpacket);
1159 packet_send();
1160 }
Damien Millerbd483e72000-04-30 10:00:53 +10001161 } else {
1162 debug("failure %s", ctype);
1163 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1164 packet_put_int(rchan);
1165 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001166 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001167 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001168 packet_put_cstring("");
1169 }
Damien Millerbd483e72000-04-30 10:00:53 +10001170 packet_send();
1171 }
1172 xfree(ctype);
1173}
Ben Lindstrom5b828322001-02-09 01:34:36 +00001174void
1175client_input_channel_req(int type, int plen, void *ctxt)
1176{
1177 Channel *c = NULL;
1178 int id, reply, success = 0;
1179 char *rtype;
1180
1181 id = packet_get_int();
1182 rtype = packet_get_string(NULL);
1183 reply = packet_get_char();
1184
1185 debug("client_input_channel_req: channel %d rtype %s reply %d",
1186 id, rtype, reply);
1187
1188 if (session_ident == -1) {
1189 error("client_input_channel_req: no channel %d", session_ident);
1190 } else if (id != session_ident) {
1191 error("client_input_channel_req: channel %d: wrong channel: %d",
1192 session_ident, id);
1193 }
1194 c = channel_lookup(id);
1195 if (c == NULL) {
1196 error("client_input_channel_req: channel %d: unknown channel", id);
1197 } else if (strcmp(rtype, "exit-status") == 0) {
1198 success = 1;
1199 exit_status = packet_get_int();
1200 packet_done();
1201 }
1202 if (reply) {
1203 packet_start(success ?
1204 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1205 packet_put_int(c->remote_id);
1206 packet_send();
1207 }
1208 xfree(rtype);
1209}
Damien Millerbd483e72000-04-30 10:00:53 +10001210
Damien Miller4af51302000-04-16 11:18:38 +10001211void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001212client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001213{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001214 dispatch_init(&dispatch_protocol_error);
Damien Miller1383bd82000-04-06 12:32:37 +10001215 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1216 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1217 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1218 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001219 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001220 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1221 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001222 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001223 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001224
1225 /* rekeying */
1226 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller1383bd82000-04-06 12:32:37 +10001227}
Damien Miller4af51302000-04-16 11:18:38 +10001228void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001229client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001230{
1231 dispatch_init(NULL);
1232 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1233 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1234 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001235 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1236 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1237 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001238 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1239 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1240 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001241
1242 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
1243 &auth_input_open_request : &deny_input_open);
1244 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1245 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001246}
Damien Miller4af51302000-04-16 11:18:38 +10001247void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001248client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001249{
1250 client_init_dispatch_13();
1251 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1252 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1253}
Damien Miller4af51302000-04-16 11:18:38 +10001254void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001255client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001256{
Damien Miller1383bd82000-04-06 12:32:37 +10001257 if (compat20)
1258 client_init_dispatch_20();
1259 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001260 client_init_dispatch_13();
1261 else
1262 client_init_dispatch_15();
1263}