blob: 31e604180a6a409dacd632740f0ee29353f2690a [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
13 *
14 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 *
Damien Miller1383bd82000-04-06 12:32:37 +100037 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000038 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110039 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110059 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61#include "includes.h"
Darren Tucker1973c882004-05-24 10:34:36 +100062RCSID("$OpenBSD: clientloop.c,v 1.122 2004/05/22 06:32:12 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "ssh1.h"
66#include "ssh2.h"
67#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#include "packet.h"
69#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100070#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000071#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100072#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100073#include "buffer.h"
74#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110075#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000076#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000079#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "authfd.h"
81#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100082#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +000083#include "misc.h"
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 Millerd6965512003-12-17 16:31:53 +110091/* Flag indicating that no shell has been requested */
92extern int no_shell_flag;
93
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Name of the host we are connecting to. This is the name given on the
96 * command line, or the HostName specified for the user-supplied name in a
97 * configuration file.
98 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099extern char *host;
100
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * Flag to indicate that we have received a window change signal which has
103 * not yet been processed. This will cause a message indicating the new
104 * window size to be sent to the server a little later. This is volatile
105 * because this is updated in a signal handler.
106 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000107static volatile sig_atomic_t received_window_change_signal = 0;
108static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
111static int in_non_blocking_mode = 0;
112
113/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000114static int quit_pending; /* Set to non-zero to quit the client loop. */
115static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100116static int escape_pending; /* Last character was the escape character */
117static int last_was_cr; /* Last character was a newline. */
118static int exit_status; /* Used to store the exit status of the command. */
119static int stdin_eof; /* EOF has been encountered on standard error. */
120static Buffer stdin_buffer; /* Buffer for stdin data. */
121static Buffer stdout_buffer; /* Buffer for stdout data. */
122static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000123static u_long stdin_bytes, stdout_bytes, stderr_bytes;
124static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100125static int connection_in; /* Connection to server (input). */
126static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000127static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000128static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100129static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Ben Lindstrombba81212001-06-25 05:01:22 +0000131static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000132int session_ident = -1;
133
Ben Lindstromf28f6342001-04-04 02:03:04 +0000134/*XXX*/
135extern Kex *xxx_kex;
136
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137/* Restores stdin to blocking mode. */
138
Ben Lindstrombba81212001-06-25 05:01:22 +0000139static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000140leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141{
Damien Miller95def091999-11-25 00:26:21 +1100142 if (in_non_blocking_mode) {
143 (void) fcntl(fileno(stdin), F_SETFL, 0);
144 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100145 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146}
147
Damien Miller95def091999-11-25 00:26:21 +1100148/* Puts stdin terminal in non-blocking mode. */
149
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000151enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152{
Damien Miller95def091999-11-25 00:26:21 +1100153 in_non_blocking_mode = 1;
154 (void) fcntl(fileno(stdin), F_SETFL, O_NONBLOCK);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155}
156
Damien Miller5428f641999-11-25 11:54:57 +1100157/*
158 * Signal handler for the window change signal (SIGWINCH). This just sets a
159 * flag indicating that the window has changed.
160 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Damien Miller95def091999-11-25 00:26:21 +1100163window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 received_window_change_signal = 1;
166 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167}
168
Damien Miller5428f641999-11-25 11:54:57 +1100169/*
170 * Signal handler for signals that cause the program to terminate. These
171 * signals must be trapped to restore terminal modes.
172 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static void
Damien Miller95def091999-11-25 00:26:21 +1100175signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000177 received_signal = sig;
178 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179}
180
Damien Miller5428f641999-11-25 11:54:57 +1100181/*
182 * Returns current time in seconds from Jan 1, 1970 with the maximum
183 * available resolution.
184 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Ben Lindstrombba81212001-06-25 05:01:22 +0000186static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000187get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188{
Damien Miller95def091999-11-25 00:26:21 +1100189 struct timeval tv;
190 gettimeofday(&tv, NULL);
191 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192}
193
Damien Miller5428f641999-11-25 11:54:57 +1100194/*
195 * This is called when the interactive is entered. This checks if there is
196 * an EOF coming on stdin. We must check this explicitly, as select() does
197 * not appear to wake up when redirecting from /dev/null.
198 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Ben Lindstrombba81212001-06-25 05:01:22 +0000200static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000201client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller95def091999-11-25 00:26:21 +1100203 int len;
204 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205
Damien Miller5428f641999-11-25 11:54:57 +1100206 /*
207 * If standard input is to be "redirected from /dev/null", we simply
208 * mark that we have seen an EOF and send an EOF message to the
209 * server. Otherwise, we try to read a single character; it appears
210 * that for some files, such /dev/null, select() never wakes up for
211 * read for this descriptor, which means that we never get EOF. This
212 * way we will get the EOF if stdin comes from /dev/null or similar.
213 */
Damien Miller95def091999-11-25 00:26:21 +1100214 if (stdin_null_flag) {
215 /* Fake EOF on stdin. */
216 debug("Sending eof.");
217 stdin_eof = 1;
218 packet_start(SSH_CMSG_EOF);
219 packet_send();
220 } else {
Damien Miller95def091999-11-25 00:26:21 +1100221 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Damien Miller95def091999-11-25 00:26:21 +1100223 /* Check for immediate EOF on stdin. */
224 len = read(fileno(stdin), buf, 1);
225 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100226 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100227 debug("Sending eof.");
228 stdin_eof = 1;
229 packet_start(SSH_CMSG_EOF);
230 packet_send();
231 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100232 /*
233 * Got data. We must store the data in the buffer,
234 * and also process it as an escape character if
235 * appropriate.
236 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000237 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100238 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000239 else
Damien Miller95def091999-11-25 00:26:21 +1100240 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100241 }
Damien Miller95def091999-11-25 00:26:21 +1100242 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244}
245
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246
Damien Miller5428f641999-11-25 11:54:57 +1100247/*
248 * Make packets from buffered stdin data, and buffer them for sending to the
249 * connection.
250 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Ben Lindstrombba81212001-06-25 05:01:22 +0000252static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000253client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000255 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Miller95def091999-11-25 00:26:21 +1100257 /* Send buffered stdin data to the server. */
258 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100259 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100260 len = buffer_len(&stdin_buffer);
261 /* Keep the packets at reasonable size. */
262 if (len > packet_get_maxsize())
263 len = packet_get_maxsize();
264 packet_start(SSH_CMSG_STDIN_DATA);
265 packet_put_string(buffer_ptr(&stdin_buffer), len);
266 packet_send();
267 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000268 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100269 /* If we have a pending EOF, send it now. */
270 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
271 packet_start(SSH_CMSG_EOF);
272 packet_send();
273 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275}
276
Damien Miller5428f641999-11-25 11:54:57 +1100277/*
278 * Checks if the client window has changed, and sends a packet about it to
279 * the server if so. The actual change is detected elsewhere (by a software
280 * interrupt on Unix); this just checks the flag and sends a message if
281 * appropriate.
282 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Ben Lindstrombba81212001-06-25 05:01:22 +0000284static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000285client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286{
Damien Miller1383bd82000-04-06 12:32:37 +1000287 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288
Damien Miller1383bd82000-04-06 12:32:37 +1000289 if (! received_window_change_signal)
290 return;
291 /** XXX race */
292 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller1383bd82000-04-06 12:32:37 +1000294 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
295 return;
296
Damien Millerd3444942000-09-30 14:20:03 +1100297 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000298
299 if (compat20) {
300 channel_request_start(session_ident, "window-change", 0);
301 packet_put_int(ws.ws_col);
302 packet_put_int(ws.ws_row);
303 packet_put_int(ws.ws_xpixel);
304 packet_put_int(ws.ws_ypixel);
305 packet_send();
306 } else {
307 packet_start(SSH_CMSG_WINDOW_SIZE);
308 packet_put_int(ws.ws_row);
309 packet_put_int(ws.ws_col);
310 packet_put_int(ws.ws_xpixel);
311 packet_put_int(ws.ws_ypixel);
312 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314}
315
Damien Miller509b0102003-12-17 16:33:10 +1100316static void
317client_global_request_reply(int type, u_int32_t seq, void *ctxt)
318{
319 server_alive_timeouts = 0;
320 client_global_request_reply_fwd(type, seq, ctxt);
321}
322
323static void
324server_alive_check(void)
325{
326 if (++server_alive_timeouts > options.server_alive_count_max)
327 packet_disconnect("Timeout, server not responding.");
328 packet_start(SSH2_MSG_GLOBAL_REQUEST);
329 packet_put_cstring("keepalive@openssh.com");
330 packet_put_char(1); /* boolean: want reply */
331 packet_send();
332}
333
Damien Miller5428f641999-11-25 11:54:57 +1100334/*
335 * Waits until the client can do something (some data becomes available on
336 * one of the file descriptors).
337 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338
Ben Lindstrombba81212001-06-25 05:01:22 +0000339static void
Damien Miller5e953212001-01-30 09:14:00 +1100340client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000341 int *maxfdp, int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342{
Damien Miller509b0102003-12-17 16:33:10 +1100343 struct timeval tv, *tvp;
344 int ret;
345
Damien Miller5e953212001-01-30 09:14:00 +1100346 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000347 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348
Damien Miller1383bd82000-04-06 12:32:37 +1000349 if (!compat20) {
350 /* Read from the connection, unless our buffers are full. */
351 if (buffer_len(&stdout_buffer) < buffer_high &&
352 buffer_len(&stderr_buffer) < buffer_high &&
353 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100354 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000355 /*
356 * Read from stdin, unless we have seen EOF or have very much
357 * buffered data to send to the server.
358 */
359 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100360 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000361
362 /* Select stdout/stderr if have data in buffer. */
363 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100364 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000365 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100366 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000367 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000368 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000369 if (session_closed && !channel_still_open() &&
370 !packet_have_data_to_write()) {
371 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100372 memset(*readsetp, 0, *nallocp);
373 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000374 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000375 } else {
376 FD_SET(connection_in, *readsetp);
377 }
Damien Miller1383bd82000-04-06 12:32:37 +1000378 }
379
Damien Miller95def091999-11-25 00:26:21 +1100380 /* Select server connection if have data to write to the server. */
381 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100382 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100383
Damien Miller5428f641999-11-25 11:54:57 +1100384 /*
385 * Wait for something to happen. This will suspend the process until
386 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100387 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100388 */
Damien Miller95def091999-11-25 00:26:21 +1100389
Damien Miller509b0102003-12-17 16:33:10 +1100390 if (options.server_alive_interval == 0 || !compat20)
391 tvp = NULL;
392 else {
393 tv.tv_sec = options.server_alive_interval;
394 tv.tv_usec = 0;
395 tvp = &tv;
396 }
397 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
398 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100399 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000400
401 /*
402 * We have to clear the select masks, because we return.
403 * We have to return, because the mainloop checks for the flags
404 * set by the signal handlers.
405 */
Damien Miller79faeff2001-11-12 11:06:32 +1100406 memset(*readsetp, 0, *nallocp);
407 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000408
Damien Miller95def091999-11-25 00:26:21 +1100409 if (errno == EINTR)
410 return;
411 /* Note: we might still have data in the buffers. */
412 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
413 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100414 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100415 } else if (ret == 0)
416 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417}
418
Ben Lindstrombba81212001-06-25 05:01:22 +0000419static void
Damien Millerad833b32000-08-23 10:46:23 +1000420client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421{
Damien Miller95def091999-11-25 00:26:21 +1100422 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Damien Miller95def091999-11-25 00:26:21 +1100424 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000425 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000426 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000427 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000428 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Damien Miller95def091999-11-25 00:26:21 +1100430 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431
Damien Miller5428f641999-11-25 11:54:57 +1100432 /*
433 * Free (and clear) the buffer to reduce the amount of data that gets
434 * written to swap.
435 */
Damien Millerad833b32000-08-23 10:46:23 +1000436 buffer_free(bin);
437 buffer_free(bout);
438 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439
Damien Miller95def091999-11-25 00:26:21 +1100440 /* Save old window size. */
441 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442
Damien Miller95def091999-11-25 00:26:21 +1100443 /* Send the suspend signal to the program itself. */
444 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445
Damien Miller95def091999-11-25 00:26:21 +1100446 /* Check if the window size has changed. */
447 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
448 (oldws.ws_row != newws.ws_row ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100449 oldws.ws_col != newws.ws_col ||
450 oldws.ws_xpixel != newws.ws_xpixel ||
451 oldws.ws_ypixel != newws.ws_ypixel))
Damien Miller95def091999-11-25 00:26:21 +1100452 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453
Damien Miller95def091999-11-25 00:26:21 +1100454 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000455 buffer_init(bin);
456 buffer_init(bout);
457 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458
Damien Miller95def091999-11-25 00:26:21 +1100459 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460}
461
Ben Lindstrombba81212001-06-25 05:01:22 +0000462static void
Damien Miller1383bd82000-04-06 12:32:37 +1000463client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000464{
Damien Miller1383bd82000-04-06 12:32:37 +1000465 int len;
466 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467
Damien Miller5428f641999-11-25 11:54:57 +1100468 /*
469 * Read input from the server, and add any such data to the buffer of
470 * the packet subsystem.
471 */
Damien Miller95def091999-11-25 00:26:21 +1100472 if (FD_ISSET(connection_in, readset)) {
473 /* Read as much as possible. */
474 len = read(connection_in, buf, sizeof(buf));
475 if (len == 0) {
476 /* Received EOF. The remote host has closed the connection. */
477 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
478 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480 quit_pending = 1;
481 return;
Damien Miller95def091999-11-25 00:26:21 +1100482 }
Damien Miller5428f641999-11-25 11:54:57 +1100483 /*
484 * There is a kernel bug on Solaris that causes select to
485 * sometimes wake up even though there is no data available.
486 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000487 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100488 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Miller95def091999-11-25 00:26:21 +1100490 if (len < 0) {
491 /* An error has encountered. Perhaps there is a network problem. */
492 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
493 host, strerror(errno));
494 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100495 quit_pending = 1;
496 return;
497 }
498 packet_process_incoming(buf, len);
499 }
Damien Miller1383bd82000-04-06 12:32:37 +1000500}
501
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000502static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000503process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000504{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000505 void (*handler)(int);
506 char *s, *cmd;
507 u_short fwd_port, fwd_host_port;
508 char buf[1024], sfwd_port[6], sfwd_host_port[6];
Darren Tuckere7066df2004-05-24 10:18:05 +1000509 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000510 int local = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000511
512 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000513 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000514 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000515 if (s == NULL)
516 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000517 while (*s && isspace(*s))
518 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000519 if (*s == '-')
520 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000521 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000522 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000523
Darren Tucker1973c882004-05-24 10:34:36 +1000524 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000525 logit("Commands:");
526 logit(" -Lport:host:hostport Request local forward");
527 logit(" -Rport:host:hostport Request remote forward");
528 logit(" -KRhostport Cancel remote forward");
529 goto out;
530 }
531
532 if (*s == 'K') {
533 delete = 1;
534 s++;
535 }
536 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000537 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000538 goto out;
539 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000540 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000541 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000542 if (local && delete) {
543 logit("Not supported.");
544 goto out;
545 }
546 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000547 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000548 goto out;
549 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000550
551 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000552 while (*s && isspace(*s))
553 s++;
554
Darren Tuckere7066df2004-05-24 10:18:05 +1000555 if (delete) {
556 if (sscanf(s, "%5[0-9]", sfwd_host_port) != 1) {
557 logit("Bad forwarding specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000558 goto out;
559 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000560 if ((fwd_host_port = a2port(sfwd_host_port)) == 0) {
561 logit("Bad forwarding port(s).");
562 goto out;
563 }
564 channel_request_rforward_cancel(fwd_host_port);
565 } else {
566 if (sscanf(s, "%5[0-9]:%255[^:]:%5[0-9]",
567 sfwd_port, buf, sfwd_host_port) != 3 &&
568 sscanf(s, "%5[0-9]/%255[^/]/%5[0-9]",
569 sfwd_port, buf, sfwd_host_port) != 3) {
570 logit("Bad forwarding specification.");
571 goto out;
572 }
573 if ((fwd_port = a2port(sfwd_port)) == 0 ||
574 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
575 logit("Bad forwarding port(s).");
576 goto out;
577 }
578 if (local) {
579 if (channel_setup_local_fwd_listener(fwd_port, buf,
580 fwd_host_port, options.gateway_ports) < 0) {
581 logit("Port forwarding failed.");
582 goto out;
583 }
584 } else
585 channel_request_remote_forwarding(fwd_port, buf,
586 fwd_host_port);
587 logit("Forwarding port.");
588 }
589
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000590out:
591 signal(SIGINT, handler);
592 enter_raw_mode();
593 if (cmd)
594 xfree(cmd);
595}
596
Damien Millerad833b32000-08-23 10:46:23 +1000597/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +0000598static int
Damien Millerad833b32000-08-23 10:46:23 +1000599process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
600{
601 char string[1024];
602 pid_t pid;
603 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000604 u_int i;
605 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000606 char *s;
607
608 for (i = 0; i < len; i++) {
609 /* Get one character at a time. */
610 ch = buf[i];
611
612 if (escape_pending) {
613 /* We have previously seen an escape character. */
614 /* Clear the flag now. */
615 escape_pending = 0;
616
617 /* Process the escaped character. */
618 switch (ch) {
619 case '.':
620 /* Terminate the connection. */
621 snprintf(string, sizeof string, "%c.\r\n", escape_char);
622 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000623
624 quit_pending = 1;
625 return -1;
626
627 case 'Z' - 64:
628 /* Suspend the program. */
629 /* Print a message to that effect to the user. */
630 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
631 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000632
633 /* Restore terminal modes and suspend. */
634 client_suspend_self(bin, bout, berr);
635
636 /* We have been continued. */
637 continue;
638
Damien Miller54c45982003-05-15 10:20:13 +1000639 case 'B':
640 if (compat20) {
641 snprintf(string, sizeof string,
642 "%cB\r\n", escape_char);
643 buffer_append(berr, string,
644 strlen(string));
645 channel_request_start(session_ident,
646 "break", 0);
647 packet_put_int(1000);
648 packet_send();
649 }
650 continue;
651
Ben Lindstromf28f6342001-04-04 02:03:04 +0000652 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000653 if (compat20) {
654 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +1000655 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000656 else
657 need_rekeying = 1;
658 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000659 continue;
660
Damien Millerad833b32000-08-23 10:46:23 +1000661 case '&':
Damien Millerad833b32000-08-23 10:46:23 +1000662 /*
663 * Detach the program (continue to serve connections,
664 * but put in background and no more new connections).
665 */
Damien Miller96507ef2001-11-12 10:52:25 +1100666 /* Restore tty modes. */
667 leave_raw_mode();
668
669 /* Stop listening for new connections. */
670 channel_stop_listening();
671
672 snprintf(string, sizeof string,
673 "%c& [backgrounded]\n", escape_char);
674 buffer_append(berr, string, strlen(string));
675
676 /* Fork into background. */
677 pid = fork();
678 if (pid < 0) {
679 error("fork: %.100s", strerror(errno));
680 continue;
681 }
682 if (pid != 0) { /* This is the parent. */
683 /* The parent just exits. */
684 exit(0);
685 }
686 /* The child continues serving connections. */
687 if (compat20) {
688 buffer_append(bin, "\004", 1);
689 /* fake EOF on stdin */
690 return -1;
691 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +1000692 /*
693 * Sending SSH_CMSG_EOF alone does not always appear
694 * to be enough. So we try to send an EOF character
695 * first.
696 */
697 packet_start(SSH_CMSG_STDIN_DATA);
698 packet_put_string("\004", 1);
699 packet_send();
700 /* Close stdin. */
701 stdin_eof = 1;
702 if (buffer_len(bin) == 0) {
703 packet_start(SSH_CMSG_EOF);
704 packet_send();
705 }
706 }
Damien Miller96507ef2001-11-12 10:52:25 +1100707 continue;
Damien Millerad833b32000-08-23 10:46:23 +1000708
709 case '?':
710 snprintf(string, sizeof string,
711"%c?\r\n\
712Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000713%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +1000714%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000715%cC - open a command line\r\n\
716%cR - Request rekey (SSH protocol 2 only)\r\n\
717%c^Z - suspend ssh\r\n\
718%c# - list forwarded connections\r\n\
719%c& - background ssh (when waiting for connections to terminate)\r\n\
720%c? - this message\r\n\
721%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +1000722(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +1000723 escape_char, escape_char, escape_char, escape_char,
724 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +1000725 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000726 buffer_append(berr, string, strlen(string));
727 continue;
728
729 case '#':
730 snprintf(string, sizeof string, "%c#\r\n", escape_char);
731 buffer_append(berr, string, strlen(string));
732 s = channel_open_message();
733 buffer_append(berr, s, strlen(s));
734 xfree(s);
735 continue;
736
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000737 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +0000738 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000739 continue;
740
Damien Millerad833b32000-08-23 10:46:23 +1000741 default:
742 if (ch != escape_char) {
743 buffer_put_char(bin, escape_char);
744 bytes++;
745 }
746 /* Escaped characters fall through here */
747 break;
748 }
749 } else {
750 /*
751 * The previous character was not an escape char. Check if this
752 * is an escape.
753 */
754 if (last_was_cr && ch == escape_char) {
755 /* It is. Set the flag and continue to next character. */
756 escape_pending = 1;
757 continue;
758 }
759 }
760
761 /*
762 * Normal character. Record whether it was a newline,
763 * and append it to the buffer.
764 */
765 last_was_cr = (ch == '\r' || ch == '\n');
766 buffer_put_char(bin, ch);
767 bytes++;
768 }
769 return bytes;
770}
771
Ben Lindstrombba81212001-06-25 05:01:22 +0000772static void
Damien Miller1383bd82000-04-06 12:32:37 +1000773client_process_input(fd_set * readset)
774{
Damien Miller166fca82000-04-20 07:42:21 +1000775 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000776 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000777
Damien Miller95def091999-11-25 00:26:21 +1100778 /* Read input from stdin. */
779 if (FD_ISSET(fileno(stdin), readset)) {
780 /* Read as much as possible. */
781 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000782 if (len < 0 && (errno == EAGAIN || errno == EINTR))
783 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +1100784 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100785 /*
786 * Received EOF or error. They are treated
787 * similarly, except that an error message is printed
788 * if it was an error condition.
789 */
Damien Miller95def091999-11-25 00:26:21 +1100790 if (len < 0) {
791 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
792 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100793 }
794 /* Mark that we have seen EOF. */
795 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +1100796 /*
797 * Send an EOF message to the server unless there is
798 * data in the buffer. If there is data in the
799 * buffer, no message will be sent now. Code
800 * elsewhere will send the EOF when the buffer
801 * becomes empty if stdin_eof is set.
802 */
Damien Miller95def091999-11-25 00:26:21 +1100803 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804 packet_start(SSH_CMSG_EOF);
805 packet_send();
Damien Miller95def091999-11-25 00:26:21 +1100806 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000807 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +1100808 /*
809 * Normal successful read, and no escape character.
810 * Just append the data to buffer.
811 */
Damien Miller95def091999-11-25 00:26:21 +1100812 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100813 } else {
Damien Miller5428f641999-11-25 11:54:57 +1100814 /*
815 * Normal, successful read. But we have an escape character
816 * and have to process the characters one by one.
817 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000818 if (process_escapes(&stdin_buffer, &stdout_buffer,
819 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +1000820 return;
Damien Miller95def091999-11-25 00:26:21 +1100821 }
822 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000823}
824
Ben Lindstrombba81212001-06-25 05:01:22 +0000825static void
Damien Miller95def091999-11-25 00:26:21 +1100826client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000827{
Damien Miller95def091999-11-25 00:26:21 +1100828 int len;
829 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Damien Miller95def091999-11-25 00:26:21 +1100831 /* Write buffered output to stdout. */
832 if (FD_ISSET(fileno(stdout), writeset)) {
833 /* Write as much data as possible. */
834 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100835 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100836 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000837 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100838 len = 0;
839 else {
Damien Miller5428f641999-11-25 11:54:57 +1100840 /*
841 * An error or EOF was encountered. Put an
842 * error message to stderr buffer.
843 */
Damien Miller95def091999-11-25 00:26:21 +1100844 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
845 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100846 quit_pending = 1;
847 return;
848 }
849 }
850 /* Consume printed data from the buffer. */
851 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000852 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000853 }
Damien Miller95def091999-11-25 00:26:21 +1100854 /* Write buffered output to stderr. */
855 if (FD_ISSET(fileno(stderr), writeset)) {
856 /* Write as much data as possible. */
857 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +1100858 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100859 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +0000860 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +1100861 len = 0;
862 else {
Damien Miller5428f641999-11-25 11:54:57 +1100863 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +1100864 quit_pending = 1;
865 return;
866 }
867 }
868 /* Consume printed characters from the buffer. */
869 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +0000870 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100871 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000872}
873
Damien Miller5428f641999-11-25 11:54:57 +1100874/*
Damien Millerb38eff82000-04-01 11:09:21 +1000875 * Get packets from the connection input buffer, and process them as long as
876 * there are packets available.
877 *
878 * Any unknown packets received during the actual
879 * session cause the session to terminate. This is
880 * intended to make debugging easier since no
881 * confirmations are sent. Any compatible protocol
882 * extensions must be negotiated during the
883 * preparatory phase.
884 */
885
Ben Lindstrombba81212001-06-25 05:01:22 +0000886static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000887client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +1000888{
Ben Lindstromf28f6342001-04-04 02:03:04 +0000889 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000890}
891
Damien Millerad833b32000-08-23 10:46:23 +1000892/* scan buf[] for '~' before sending data to the peer */
893
Ben Lindstrombba81212001-06-25 05:01:22 +0000894static int
Damien Millerad833b32000-08-23 10:46:23 +1000895simple_escape_filter(Channel *c, char *buf, int len)
896{
897 /* XXX we assume c->extended is writeable */
898 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
899}
900
Ben Lindstrombba81212001-06-25 05:01:22 +0000901static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000902client_channel_closed(int id, void *arg)
903{
904 if (id != session_ident)
905 error("client_channel_closed: id %d != session_ident %d",
906 id, session_ident);
Damien Miller3ec27592001-10-12 11:35:04 +1000907 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000908 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +1000909 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000910}
911
Damien Millerb38eff82000-04-01 11:09:21 +1000912/*
Damien Miller5428f641999-11-25 11:54:57 +1100913 * Implements the interactive session with the server. This is called after
914 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000915 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
916 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +1100917 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918
Damien Miller4af51302000-04-16 11:18:38 +1000919int
Damien Millerad833b32000-08-23 10:46:23 +1000920client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921{
Damien Miller5e953212001-01-30 09:14:00 +1100922 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100923 double start_time, total_time;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000924 int max_fd = 0, max_fd2 = 0, len, rekeying = 0, nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +1100925 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926
Damien Miller95def091999-11-25 00:26:21 +1100927 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928
Damien Miller95def091999-11-25 00:26:21 +1100929 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930
Damien Miller95def091999-11-25 00:26:21 +1100931 /* Initialize variables. */
932 escape_pending = 0;
933 last_was_cr = 1;
934 exit_status = -1;
935 stdin_eof = 0;
936 buffer_high = 64 * 1024;
937 connection_in = packet_get_connection_in();
938 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +1100939 max_fd = MAX(connection_in, connection_out);
940
941 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000942 /* enable nonblocking unless tty */
943 if (!isatty(fileno(stdin)))
944 set_nonblock(fileno(stdin));
945 if (!isatty(fileno(stdout)))
946 set_nonblock(fileno(stdout));
947 if (!isatty(fileno(stderr)))
948 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +1100949 max_fd = MAX(max_fd, fileno(stdin));
950 max_fd = MAX(max_fd, fileno(stdout));
951 max_fd = MAX(max_fd, fileno(stderr));
952 }
Damien Miller95def091999-11-25 00:26:21 +1100953 stdin_bytes = 0;
954 stdout_bytes = 0;
955 stderr_bytes = 0;
956 quit_pending = 0;
957 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000958
Damien Miller95def091999-11-25 00:26:21 +1100959 /* Initialize buffers. */
960 buffer_init(&stdin_buffer);
961 buffer_init(&stdout_buffer);
962 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Millerb38eff82000-04-01 11:09:21 +1000964 client_init_dispatch();
965
Ben Lindstromf49dbff2002-12-23 02:01:55 +0000966 /*
967 * Set signal handlers, (e.g. to restore non-blocking mode)
968 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
969 */
970 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
971 signal(SIGINT, signal_handler);
972 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
973 signal(SIGQUIT, signal_handler);
974 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
975 signal(SIGTERM, signal_handler);
Damien Miller95def091999-11-25 00:26:21 +1100976 if (have_pty)
977 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000978
Damien Miller95def091999-11-25 00:26:21 +1100979 if (have_pty)
980 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000981
Ben Lindstrom5b828322001-02-09 01:34:36 +0000982 if (compat20) {
983 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000984 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +0000985 channel_register_filter(session_ident,
986 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000987 if (session_ident != -1)
988 channel_register_cleanup(session_ident,
989 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +0000990 } else {
991 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +1000992 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +0000993 }
Damien Millerad833b32000-08-23 10:46:23 +1000994
Damien Miller95def091999-11-25 00:26:21 +1100995 /* Main loop of the client for the interactive session mode. */
996 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000997
Damien Miller5428f641999-11-25 11:54:57 +1100998 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +1100999 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001000
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001001 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001002 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001003
1004 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001005
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001006 if (rekeying) {
1007 debug("rekeying in progress");
1008 } else {
1009 /*
1010 * Make packets of buffered stdin data, and buffer
1011 * them for sending to the server.
1012 */
1013 if (!compat20)
1014 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001015
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001016 /*
1017 * Make packets from buffered channel data, and
1018 * enqueue them for sending to the server.
1019 */
1020 if (packet_not_very_much_data_to_write())
1021 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001022
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001023 /*
1024 * Check if the window size has changed, and buffer a
1025 * message about it to the server if so.
1026 */
1027 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001028
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001029 if (quit_pending)
1030 break;
1031 }
Damien Miller5428f641999-11-25 11:54:57 +11001032 /*
1033 * Wait until we have something to do (something becomes
1034 * available on one of the descriptors).
1035 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001036 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001037 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001038 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001039
Damien Miller95def091999-11-25 00:26:21 +11001040 if (quit_pending)
1041 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001043 /* Do channel operations unless rekeying in progress. */
1044 if (!rekeying) {
1045 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001046 if (need_rekeying || packet_need_rekeying()) {
1047 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001048 xxx_kex->done = 0;
1049 kex_send_kexinit(xxx_kex);
1050 need_rekeying = 0;
1051 }
1052 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001053
Damien Miller1383bd82000-04-06 12:32:37 +10001054 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001055 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001056
Damien Miller1383bd82000-04-06 12:32:37 +10001057 if (quit_pending)
1058 break;
1059
1060 if (!compat20) {
1061 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001062 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001063 /*
1064 * Process output to stdout and stderr. Output to
1065 * the connection is processed elsewhere (above).
1066 */
Damien Miller5e953212001-01-30 09:14:00 +11001067 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001068 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069
Damien Miller5428f641999-11-25 11:54:57 +11001070 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001071 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001072 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001073 }
Damien Miller5e953212001-01-30 09:14:00 +11001074 if (readset)
1075 xfree(readset);
1076 if (writeset)
1077 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001078
Damien Miller95def091999-11-25 00:26:21 +11001079 /* Terminate the session. */
1080
1081 /* Stop watching for window change. */
1082 if (have_pty)
1083 signal(SIGWINCH, SIG_DFL);
1084
Ben Lindstrom601e4362001-06-21 03:19:23 +00001085 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001086
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001087 if (have_pty)
1088 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001089
1090 /* restore blocking io */
1091 if (!isatty(fileno(stdin)))
1092 unset_nonblock(fileno(stdin));
1093 if (!isatty(fileno(stdout)))
1094 unset_nonblock(fileno(stdout));
1095 if (!isatty(fileno(stderr)))
1096 unset_nonblock(fileno(stderr));
1097
Damien Millerd6965512003-12-17 16:31:53 +11001098 /*
1099 * If there was no shell or command requested, there will be no remote
1100 * exit status to be returned. In that case, clear error code if the
1101 * connection was deliberately terminated at this end.
1102 */
1103 if (no_shell_flag && received_signal == SIGTERM) {
1104 received_signal = 0;
1105 exit_status = 0;
1106 }
1107
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001108 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001109 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001110
1111 /*
1112 * In interactive mode (with pseudo tty) display a message indicating
1113 * that the connection has been closed.
1114 */
1115 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1116 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1117 buffer_append(&stderr_buffer, buf, strlen(buf));
1118 }
1119
Damien Miller95def091999-11-25 00:26:21 +11001120 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001121 while (buffer_len(&stdout_buffer) > 0) {
1122 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001123 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001124 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001125 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001126 break;
1127 }
Damien Miller95def091999-11-25 00:26:21 +11001128 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001129 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001130 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131
Damien Miller95def091999-11-25 00:26:21 +11001132 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001133 while (buffer_len(&stderr_buffer) > 0) {
1134 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001135 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001136 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001137 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001138 break;
1139 }
Damien Miller95def091999-11-25 00:26:21 +11001140 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001141 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001142 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001143
Damien Miller95def091999-11-25 00:26:21 +11001144 /* Clear and free any buffers. */
1145 memset(buf, 0, sizeof(buf));
1146 buffer_free(&stdin_buffer);
1147 buffer_free(&stdout_buffer);
1148 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001149
Damien Miller95def091999-11-25 00:26:21 +11001150 /* Report bytes transferred, and transfer rates. */
1151 total_time = get_current_time() - start_time;
1152 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001153 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001154 if (total_time > 0)
1155 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001156 stdin_bytes / total_time, stdout_bytes / total_time,
1157 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001158
1159 /* Return the exit status of the program. */
1160 debug("Exit status %d", exit_status);
1161 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001162}
Damien Millerb38eff82000-04-01 11:09:21 +10001163
1164/*********/
1165
Ben Lindstrombba81212001-06-25 05:01:22 +00001166static void
Damien Miller630d6f42002-01-22 23:17:30 +11001167client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001168{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001169 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001170 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001171 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001172 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001173 memset(data, 0, data_len);
1174 xfree(data);
1175}
Ben Lindstrombba81212001-06-25 05:01:22 +00001176static void
Damien Miller630d6f42002-01-22 23:17:30 +11001177client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001178{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001179 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001180 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001181 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001182 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001183 memset(data, 0, data_len);
1184 xfree(data);
1185}
Ben Lindstrombba81212001-06-25 05:01:22 +00001186static void
Damien Miller630d6f42002-01-22 23:17:30 +11001187client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001188{
Damien Millerb38eff82000-04-01 11:09:21 +10001189 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001190 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001191 /* Acknowledge the exit. */
1192 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1193 packet_send();
1194 /*
1195 * Must wait for packet to be sent since we are
1196 * exiting the loop.
1197 */
1198 packet_write_wait();
1199 /* Flag that we want to exit. */
1200 quit_pending = 1;
1201}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001202static void
1203client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1204{
1205 Channel *c = NULL;
1206 int remote_id, sock;
1207
1208 /* Read the remote channel number from the message. */
1209 remote_id = packet_get_int();
1210 packet_check_eom();
1211
1212 /*
1213 * Get a connection to the local authentication agent (this may again
1214 * get forwarded).
1215 */
1216 sock = ssh_get_authentication_socket();
1217
1218 /*
1219 * If we could not connect the agent, send an error message back to
1220 * the server. This should never happen unless the agent dies,
1221 * because authentication forwarding is only enabled if we have an
1222 * agent.
1223 */
1224 if (sock >= 0) {
1225 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1226 -1, 0, 0, 0, "authentication agent connection", 1);
1227 c->remote_id = remote_id;
1228 c->force_drain = 1;
1229 }
1230 if (c == NULL) {
1231 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1232 packet_put_int(remote_id);
1233 } else {
1234 /* Send a confirmation to the remote host. */
1235 debug("Forwarding authentication connection.");
1236 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1237 packet_put_int(remote_id);
1238 packet_put_int(c->self);
1239 }
1240 packet_send();
1241}
Damien Millerb38eff82000-04-01 11:09:21 +10001242
Ben Lindstrombba81212001-06-25 05:01:22 +00001243static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001244client_request_forwarded_tcpip(const char *request_type, int rchan)
1245{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001246 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001247 char *listen_address, *originator_address;
1248 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001249 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001250
1251 /* Get rest of the packet */
1252 listen_address = packet_get_string(NULL);
1253 listen_port = packet_get_int();
1254 originator_address = packet_get_string(NULL);
1255 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001256 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001257
1258 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1259 listen_address, listen_port, originator_address, originator_port);
1260
Ben Lindstrom173e6462001-07-04 05:15:15 +00001261 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001262 if (sock < 0) {
1263 xfree(originator_address);
1264 xfree(listen_address);
1265 return NULL;
1266 }
1267 c = channel_new("forwarded-tcpip",
1268 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1269 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001270 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001271 xfree(originator_address);
1272 xfree(listen_address);
1273 return c;
1274}
1275
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001276static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001277client_request_x11(const char *request_type, int rchan)
1278{
1279 Channel *c = NULL;
1280 char *originator;
1281 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001282 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001283
1284 if (!options.forward_x11) {
1285 error("Warning: ssh server tried X11 forwarding.");
1286 error("Warning: this is probably a break in attempt by a malicious server.");
1287 return NULL;
1288 }
1289 originator = packet_get_string(NULL);
1290 if (datafellows & SSH_BUG_X11FWD) {
1291 debug2("buggy server: x11 request w/o originator_port");
1292 originator_port = 0;
1293 } else {
1294 originator_port = packet_get_int();
1295 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001296 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001297 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001298 debug("client_request_x11: request from %s %d", originator,
1299 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001300 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001301 sock = x11_connect_display();
1302 if (sock < 0)
1303 return NULL;
1304 c = channel_new("x11",
1305 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001306 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001307 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001308 return c;
1309}
1310
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001311static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001312client_request_agent(const char *request_type, int rchan)
1313{
1314 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001315 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001316
1317 if (!options.forward_agent) {
1318 error("Warning: ssh server tried agent forwarding.");
1319 error("Warning: this is probably a break in attempt by a malicious server.");
1320 return NULL;
1321 }
1322 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001323 if (sock < 0)
1324 return NULL;
1325 c = channel_new("authentication agent connection",
1326 SSH_CHANNEL_OPEN, sock, sock, -1,
1327 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001328 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001329 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001330 return c;
1331}
1332
Damien Millerbd483e72000-04-30 10:00:53 +10001333/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001334static void
Damien Miller630d6f42002-01-22 23:17:30 +11001335client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001336{
1337 Channel *c = NULL;
1338 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001339 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001340 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001341
1342 ctype = packet_get_string(&len);
1343 rchan = packet_get_int();
1344 rwindow = packet_get_int();
1345 rmaxpack = packet_get_int();
1346
Damien Millere247cc42000-05-07 12:03:14 +10001347 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001348 ctype, rchan, rwindow, rmaxpack);
1349
Damien Miller0bc1bd82000-11-13 22:57:25 +11001350 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1351 c = client_request_forwarded_tcpip(ctype, rchan);
1352 } else if (strcmp(ctype, "x11") == 0) {
1353 c = client_request_x11(ctype, rchan);
1354 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1355 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001356 }
1357/* XXX duplicate : */
1358 if (c != NULL) {
1359 debug("confirm %s", ctype);
1360 c->remote_id = rchan;
1361 c->remote_window = rwindow;
1362 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001363 if (c->type != SSH_CHANNEL_CONNECTING) {
1364 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1365 packet_put_int(c->remote_id);
1366 packet_put_int(c->self);
1367 packet_put_int(c->local_window);
1368 packet_put_int(c->local_maxpacket);
1369 packet_send();
1370 }
Damien Millerbd483e72000-04-30 10:00:53 +10001371 } else {
1372 debug("failure %s", ctype);
1373 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1374 packet_put_int(rchan);
1375 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001376 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001377 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001378 packet_put_cstring("");
1379 }
Damien Millerbd483e72000-04-30 10:00:53 +10001380 packet_send();
1381 }
1382 xfree(ctype);
1383}
Ben Lindstrombba81212001-06-25 05:01:22 +00001384static void
Damien Miller630d6f42002-01-22 23:17:30 +11001385client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001386{
1387 Channel *c = NULL;
1388 int id, reply, success = 0;
1389 char *rtype;
1390
1391 id = packet_get_int();
1392 rtype = packet_get_string(NULL);
1393 reply = packet_get_char();
1394
1395 debug("client_input_channel_req: channel %d rtype %s reply %d",
1396 id, rtype, reply);
1397
1398 if (session_ident == -1) {
1399 error("client_input_channel_req: no channel %d", session_ident);
1400 } else if (id != session_ident) {
1401 error("client_input_channel_req: channel %d: wrong channel: %d",
1402 session_ident, id);
1403 }
1404 c = channel_lookup(id);
1405 if (c == NULL) {
1406 error("client_input_channel_req: channel %d: unknown channel", id);
1407 } else if (strcmp(rtype, "exit-status") == 0) {
1408 success = 1;
1409 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001410 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001411 }
1412 if (reply) {
1413 packet_start(success ?
1414 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1415 packet_put_int(c->remote_id);
1416 packet_send();
1417 }
1418 xfree(rtype);
1419}
Damien Millerc3fa4072002-01-22 23:21:58 +11001420static void
1421client_input_global_request(int type, u_int32_t seq, void *ctxt)
1422{
1423 char *rtype;
1424 int want_reply;
1425 int success = 0;
1426
1427 rtype = packet_get_string(NULL);
1428 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001429 debug("client_input_global_request: rtype %s want_reply %d",
1430 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001431 if (want_reply) {
1432 packet_start(success ?
1433 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1434 packet_send();
1435 packet_write_wait();
1436 }
1437 xfree(rtype);
1438}
Damien Millerbd483e72000-04-30 10:00:53 +10001439
Ben Lindstrombba81212001-06-25 05:01:22 +00001440static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001441client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001442{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001443 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001444
Damien Miller1383bd82000-04-06 12:32:37 +10001445 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1446 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1447 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1448 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001449 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001450 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1451 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001452 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001453 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001454 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001455
1456 /* rekeying */
1457 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001458
1459 /* global request reply messages */
1460 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1461 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001462}
Ben Lindstrombba81212001-06-25 05:01:22 +00001463static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001464client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001465{
1466 dispatch_init(NULL);
1467 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1468 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1469 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001470 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1471 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1472 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001473 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1474 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1475 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001476
1477 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001478 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001479 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1480 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001481}
Ben Lindstrombba81212001-06-25 05:01:22 +00001482static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001483client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001484{
1485 client_init_dispatch_13();
1486 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1487 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1488}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001489static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001490client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001491{
Damien Miller1383bd82000-04-06 12:32:37 +10001492 if (compat20)
1493 client_init_dispatch_20();
1494 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001495 client_init_dispatch_13();
1496 else
1497 client_init_dispatch_15();
1498}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001499
1500/* client specific fatal cleanup */
1501void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001502cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001503{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001504 leave_raw_mode();
1505 leave_non_blocking();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001506 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001507}