blob: 8f2f270d7d91fe990f977b5df6114a1cdd67a9d9 [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"
Damien Miller23f07702004-06-18 01:19:03 +100062RCSID("$OpenBSD: clientloop.c,v 1.127 2004/06/17 15:10:13 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 Miller0e220db2004-06-15 10:34:08 +100084#include "monitor_fdpass.h"
85#include "match.h"
86#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +110087
88/* import options */
89extern Options options;
90
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091/* Flag indicating that stdin should be redirected from /dev/null. */
92extern int stdin_null_flag;
93
Damien Millerd6965512003-12-17 16:31:53 +110094/* Flag indicating that no shell has been requested */
95extern int no_shell_flag;
96
Damien Miller0e220db2004-06-15 10:34:08 +100097/* Control socket */
98extern int control_fd;
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Name of the host we are connecting to. This is the name given on the
102 * command line, or the HostName specified for the user-supplied name in a
103 * configuration file.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105extern char *host;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Flag to indicate that we have received a window change signal which has
109 * not yet been processed. This will cause a message indicating the new
110 * window size to be sent to the server a little later. This is volatile
111 * because this is updated in a signal handler.
112 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000113static volatile sig_atomic_t received_window_change_signal = 0;
114static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
117static int in_non_blocking_mode = 0;
118
119/* Common data for the client loop code. */
Damien Millerad833b32000-08-23 10:46:23 +1000120static int quit_pending; /* Set to non-zero to quit the client loop. */
121static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100122static int escape_pending; /* Last character was the escape character */
123static int last_was_cr; /* Last character was a newline. */
124static int exit_status; /* Used to store the exit status of the command. */
125static int stdin_eof; /* EOF has been encountered on standard error. */
126static Buffer stdin_buffer; /* Buffer for stdin data. */
127static Buffer stdout_buffer; /* Buffer for stdout data. */
128static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000129static u_long stdin_bytes, stdout_bytes, stderr_bytes;
130static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100131static int connection_in; /* Connection to server (input). */
132static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000133static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000134static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100135static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Ben Lindstrombba81212001-06-25 05:01:22 +0000137static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000138int session_ident = -1;
139
Damien Miller0e220db2004-06-15 10:34:08 +1000140struct confirm_ctx {
141 int want_tty;
142 int want_subsys;
143 Buffer cmd;
144 char *term;
145 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000146 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000147};
148
Ben Lindstromf28f6342001-04-04 02:03:04 +0000149/*XXX*/
150extern Kex *xxx_kex;
151
Damien Miller0e220db2004-06-15 10:34:08 +1000152void ssh_process_session2_setup(int, int, int, Buffer *);
153
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154/* Restores stdin to blocking mode. */
155
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller95def091999-11-25 00:26:21 +1100159 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000160 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100161 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100162 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163}
164
Damien Miller95def091999-11-25 00:26:21 +1100165/* Puts stdin terminal in non-blocking mode. */
166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000168enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000171 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172}
173
Damien Miller5428f641999-11-25 11:54:57 +1100174/*
175 * Signal handler for the window change signal (SIGWINCH). This just sets a
176 * flag indicating that the window has changed.
177 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178
Ben Lindstrombba81212001-06-25 05:01:22 +0000179static void
Damien Miller95def091999-11-25 00:26:21 +1100180window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181{
Damien Miller95def091999-11-25 00:26:21 +1100182 received_window_change_signal = 1;
183 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184}
185
Damien Miller5428f641999-11-25 11:54:57 +1100186/*
187 * Signal handler for signals that cause the program to terminate. These
188 * signals must be trapped to restore terminal modes.
189 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static void
Damien Miller95def091999-11-25 00:26:21 +1100192signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000194 received_signal = sig;
195 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196}
197
Damien Miller5428f641999-11-25 11:54:57 +1100198/*
199 * Returns current time in seconds from Jan 1, 1970 with the maximum
200 * available resolution.
201 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000204get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller95def091999-11-25 00:26:21 +1100206 struct timeval tv;
207 gettimeofday(&tv, NULL);
208 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller5428f641999-11-25 11:54:57 +1100211/*
212 * This is called when the interactive is entered. This checks if there is
213 * an EOF coming on stdin. We must check this explicitly, as select() does
214 * not appear to wake up when redirecting from /dev/null.
215 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Ben Lindstrombba81212001-06-25 05:01:22 +0000217static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000218client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219{
Damien Miller95def091999-11-25 00:26:21 +1100220 int len;
221 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Damien Miller5428f641999-11-25 11:54:57 +1100223 /*
224 * If standard input is to be "redirected from /dev/null", we simply
225 * mark that we have seen an EOF and send an EOF message to the
226 * server. Otherwise, we try to read a single character; it appears
227 * that for some files, such /dev/null, select() never wakes up for
228 * read for this descriptor, which means that we never get EOF. This
229 * way we will get the EOF if stdin comes from /dev/null or similar.
230 */
Damien Miller95def091999-11-25 00:26:21 +1100231 if (stdin_null_flag) {
232 /* Fake EOF on stdin. */
233 debug("Sending eof.");
234 stdin_eof = 1;
235 packet_start(SSH_CMSG_EOF);
236 packet_send();
237 } else {
Damien Miller95def091999-11-25 00:26:21 +1100238 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Damien Miller95def091999-11-25 00:26:21 +1100240 /* Check for immediate EOF on stdin. */
241 len = read(fileno(stdin), buf, 1);
242 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100243 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100244 debug("Sending eof.");
245 stdin_eof = 1;
246 packet_start(SSH_CMSG_EOF);
247 packet_send();
248 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100249 /*
250 * Got data. We must store the data in the buffer,
251 * and also process it as an escape character if
252 * appropriate.
253 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000254 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100255 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000256 else
Damien Miller95def091999-11-25 00:26:21 +1100257 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100258 }
Damien Miller95def091999-11-25 00:26:21 +1100259 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261}
262
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263
Damien Miller5428f641999-11-25 11:54:57 +1100264/*
265 * Make packets from buffered stdin data, and buffer them for sending to the
266 * connection.
267 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Ben Lindstrombba81212001-06-25 05:01:22 +0000269static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000270client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000272 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller95def091999-11-25 00:26:21 +1100274 /* Send buffered stdin data to the server. */
275 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100276 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100277 len = buffer_len(&stdin_buffer);
278 /* Keep the packets at reasonable size. */
279 if (len > packet_get_maxsize())
280 len = packet_get_maxsize();
281 packet_start(SSH_CMSG_STDIN_DATA);
282 packet_put_string(buffer_ptr(&stdin_buffer), len);
283 packet_send();
284 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000285 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100286 /* If we have a pending EOF, send it now. */
287 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
288 packet_start(SSH_CMSG_EOF);
289 packet_send();
290 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292}
293
Damien Miller5428f641999-11-25 11:54:57 +1100294/*
295 * Checks if the client window has changed, and sends a packet about it to
296 * the server if so. The actual change is detected elsewhere (by a software
297 * interrupt on Unix); this just checks the flag and sends a message if
298 * appropriate.
299 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300
Ben Lindstrombba81212001-06-25 05:01:22 +0000301static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000302client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303{
Damien Miller1383bd82000-04-06 12:32:37 +1000304 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller1383bd82000-04-06 12:32:37 +1000306 if (! received_window_change_signal)
307 return;
308 /** XXX race */
309 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
Damien Millerd3444942000-09-30 14:20:03 +1100311 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000312
313 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000314 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000315 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000316 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
317 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000318 packet_start(SSH_CMSG_WINDOW_SIZE);
319 packet_put_int(ws.ws_row);
320 packet_put_int(ws.ws_col);
321 packet_put_int(ws.ws_xpixel);
322 packet_put_int(ws.ws_ypixel);
323 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325}
326
Damien Miller509b0102003-12-17 16:33:10 +1100327static void
328client_global_request_reply(int type, u_int32_t seq, void *ctxt)
329{
330 server_alive_timeouts = 0;
331 client_global_request_reply_fwd(type, seq, ctxt);
332}
333
334static void
335server_alive_check(void)
336{
337 if (++server_alive_timeouts > options.server_alive_count_max)
338 packet_disconnect("Timeout, server not responding.");
339 packet_start(SSH2_MSG_GLOBAL_REQUEST);
340 packet_put_cstring("keepalive@openssh.com");
341 packet_put_char(1); /* boolean: want reply */
342 packet_send();
343}
344
Damien Miller5428f641999-11-25 11:54:57 +1100345/*
346 * Waits until the client can do something (some data becomes available on
347 * one of the file descriptors).
348 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000349static void
Damien Miller5e953212001-01-30 09:14:00 +1100350client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000351 int *maxfdp, int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352{
Damien Miller509b0102003-12-17 16:33:10 +1100353 struct timeval tv, *tvp;
354 int ret;
355
Damien Miller5e953212001-01-30 09:14:00 +1100356 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000357 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
Damien Miller1383bd82000-04-06 12:32:37 +1000359 if (!compat20) {
360 /* Read from the connection, unless our buffers are full. */
361 if (buffer_len(&stdout_buffer) < buffer_high &&
362 buffer_len(&stderr_buffer) < buffer_high &&
363 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100364 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000365 /*
366 * Read from stdin, unless we have seen EOF or have very much
367 * buffered data to send to the server.
368 */
369 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100370 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000371
372 /* Select stdout/stderr if have data in buffer. */
373 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100374 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000375 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100376 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000377 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000378 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000379 if (session_closed && !channel_still_open() &&
380 !packet_have_data_to_write()) {
381 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100382 memset(*readsetp, 0, *nallocp);
383 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000384 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000385 } else {
386 FD_SET(connection_in, *readsetp);
387 }
Damien Miller1383bd82000-04-06 12:32:37 +1000388 }
389
Damien Miller95def091999-11-25 00:26:21 +1100390 /* Select server connection if have data to write to the server. */
391 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100392 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100393
Damien Miller0e220db2004-06-15 10:34:08 +1000394 if (control_fd != -1)
395 FD_SET(control_fd, *readsetp);
396
Damien Miller5428f641999-11-25 11:54:57 +1100397 /*
398 * Wait for something to happen. This will suspend the process until
399 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100400 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100401 */
Damien Miller95def091999-11-25 00:26:21 +1100402
Damien Miller509b0102003-12-17 16:33:10 +1100403 if (options.server_alive_interval == 0 || !compat20)
404 tvp = NULL;
405 else {
406 tv.tv_sec = options.server_alive_interval;
407 tv.tv_usec = 0;
408 tvp = &tv;
409 }
410 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
411 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100412 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000413
414 /*
415 * We have to clear the select masks, because we return.
416 * We have to return, because the mainloop checks for the flags
417 * set by the signal handlers.
418 */
Damien Miller79faeff2001-11-12 11:06:32 +1100419 memset(*readsetp, 0, *nallocp);
420 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000421
Damien Miller95def091999-11-25 00:26:21 +1100422 if (errno == EINTR)
423 return;
424 /* Note: we might still have data in the buffers. */
425 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
426 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100427 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100428 } else if (ret == 0)
429 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430}
431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static void
Damien Millerad833b32000-08-23 10:46:23 +1000433client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434{
Damien Miller95def091999-11-25 00:26:21 +1100435 struct winsize oldws, newws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller95def091999-11-25 00:26:21 +1100437 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000438 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000439 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000440 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000441 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442
Damien Miller95def091999-11-25 00:26:21 +1100443 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444
Damien Miller5428f641999-11-25 11:54:57 +1100445 /*
446 * Free (and clear) the buffer to reduce the amount of data that gets
447 * written to swap.
448 */
Damien Millerad833b32000-08-23 10:46:23 +1000449 buffer_free(bin);
450 buffer_free(bout);
451 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452
Damien Miller95def091999-11-25 00:26:21 +1100453 /* Save old window size. */
454 ioctl(fileno(stdin), TIOCGWINSZ, &oldws);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455
Damien Miller95def091999-11-25 00:26:21 +1100456 /* Send the suspend signal to the program itself. */
457 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458
Damien Miller95def091999-11-25 00:26:21 +1100459 /* Check if the window size has changed. */
460 if (ioctl(fileno(stdin), TIOCGWINSZ, &newws) >= 0 &&
461 (oldws.ws_row != newws.ws_row ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100462 oldws.ws_col != newws.ws_col ||
463 oldws.ws_xpixel != newws.ws_xpixel ||
464 oldws.ws_ypixel != newws.ws_ypixel))
Damien Miller95def091999-11-25 00:26:21 +1100465 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466
Damien Miller95def091999-11-25 00:26:21 +1100467 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000468 buffer_init(bin);
469 buffer_init(bout);
470 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471
Damien Miller95def091999-11-25 00:26:21 +1100472 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473}
474
Ben Lindstrombba81212001-06-25 05:01:22 +0000475static void
Damien Miller1383bd82000-04-06 12:32:37 +1000476client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477{
Damien Miller1383bd82000-04-06 12:32:37 +1000478 int len;
479 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Damien Miller5428f641999-11-25 11:54:57 +1100481 /*
482 * Read input from the server, and add any such data to the buffer of
483 * the packet subsystem.
484 */
Damien Miller95def091999-11-25 00:26:21 +1100485 if (FD_ISSET(connection_in, readset)) {
486 /* Read as much as possible. */
487 len = read(connection_in, buf, sizeof(buf));
488 if (len == 0) {
489 /* Received EOF. The remote host has closed the connection. */
490 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
491 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493 quit_pending = 1;
494 return;
Damien Miller95def091999-11-25 00:26:21 +1100495 }
Damien Miller5428f641999-11-25 11:54:57 +1100496 /*
497 * There is a kernel bug on Solaris that causes select to
498 * sometimes wake up even though there is no data available.
499 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000500 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100501 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502
Damien Miller95def091999-11-25 00:26:21 +1100503 if (len < 0) {
504 /* An error has encountered. Perhaps there is a network problem. */
505 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
506 host, strerror(errno));
507 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100508 quit_pending = 1;
509 return;
510 }
511 packet_process_incoming(buf, len);
512 }
Damien Miller1383bd82000-04-06 12:32:37 +1000513}
514
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000515static void
Damien Miller0e220db2004-06-15 10:34:08 +1000516client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
517{
518 int id;
519 Channel *c;
520
521 id = packet_get_int();
522 packet_check_eom();
523
524 if ((c = channel_lookup(id)) == NULL) {
525 error("%s: no channel for id %d", __func__, id);
526 return;
527 }
528
529 if (type == SSH2_MSG_CHANNEL_SUCCESS)
530 debug2("Request suceeded on channel %d", id);
531 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
532 error("Request failed on channel %d", id);
533 channel_free(c);
534 }
535}
536
537static void
538client_extra_session2_setup(int id, void *arg)
539{
540 struct confirm_ctx *cctx = arg;
541 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000542 int i;
Damien Miller0e220db2004-06-15 10:34:08 +1000543
544 if (cctx == NULL)
545 fatal("%s: cctx == NULL", __func__);
546 if ((c = channel_lookup(id)) == NULL)
547 fatal("%s: no channel for id %d", __func__, id);
548
549 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000550 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000551 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000552
Damien Miller0e220db2004-06-15 10:34:08 +1000553 c->confirm_ctx = NULL;
554 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000555 xfree(cctx->term);
556 if (cctx->env != NULL) {
557 for (i = 0; cctx->env[i] != NULL; i++)
558 xfree(cctx->env[i]);
559 xfree(cctx->env);
560 }
561 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000562}
563
564static void
565client_process_control(fd_set * readset)
566{
567 Buffer m;
568 Channel *c;
Damien Miller23f07702004-06-18 01:19:03 +1000569 int client_fd, new_fd[3], ver, i, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000570 socklen_t addrlen;
571 struct sockaddr_storage addr;
572 struct confirm_ctx *cctx;
573 char *cmd;
Damien Miller3756dce2004-06-18 01:17:29 +1000574 u_int len, env_len;
Damien Miller0e220db2004-06-15 10:34:08 +1000575 uid_t euid;
576 gid_t egid;
577
578 /*
579 * Accept connection on control socket
580 */
581 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
582 return;
583
584 memset(&addr, 0, sizeof(addr));
585 addrlen = sizeof(addr);
586 if ((client_fd = accept(control_fd,
587 (struct sockaddr*)&addr, &addrlen)) == -1) {
588 error("%s accept: %s", __func__, strerror(errno));
589 return;
590 }
591
592 if (getpeereid(client_fd, &euid, &egid) < 0) {
593 error("%s getpeereid failed: %s", __func__, strerror(errno));
594 close(client_fd);
595 return;
596 }
597 if ((euid != 0) && (getuid() != euid)) {
598 error("control mode uid mismatch: peer euid %u != uid %u",
599 (u_int) euid, (u_int) getuid());
600 close(client_fd);
601 return;
602 }
Damien Miller23f07702004-06-18 01:19:03 +1000603
604 allowed = 1;
605 if (options.control_master == 2) {
606 char *p, prompt[1024];
607
608 allowed = 0;
609 snprintf(prompt, sizeof(prompt),
610 "Allow shared connection to %s? ", host);
611 p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
612 if (p != NULL) {
613 /*
614 * Accept empty responses and responses consisting
615 * of the word "yes" as affirmative.
616 */
617 if (*p == '\0' || *p == '\n' ||
618 strcasecmp(p, "yes") == 0)
619 allowed = 1;
620 xfree(p);
621 }
622 }
Damien Miller0e220db2004-06-15 10:34:08 +1000623
624 unset_nonblock(client_fd);
625
626 buffer_init(&m);
627
Damien Miller23f07702004-06-18 01:19:03 +1000628 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000629 buffer_put_int(&m, getpid());
630 if (ssh_msg_send(client_fd, /* version */0, &m) == -1) {
631 error("%s: client msg_send failed", __func__);
632 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000633 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000634 return;
635 }
636 buffer_clear(&m);
637
Damien Miller23f07702004-06-18 01:19:03 +1000638 if (!allowed) {
639 error("Refused control connection");
640 close(client_fd);
641 buffer_free(&m);
642 return;
643 }
644
Damien Miller0e220db2004-06-15 10:34:08 +1000645 if (ssh_msg_recv(client_fd, &m) == -1) {
646 error("%s: client msg_recv failed", __func__);
647 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000648 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000649 return;
650 }
651
652 if ((ver = buffer_get_char(&m)) != 0) {
653 error("%s: wrong client version %d", __func__, ver);
654 buffer_free(&m);
655 close(client_fd);
656 return;
657 }
658
659 cctx = xmalloc(sizeof(*cctx));
660 memset(cctx, 0, sizeof(*cctx));
661
662 cctx->want_tty = buffer_get_int(&m);
663 cctx->want_subsys = buffer_get_int(&m);
664 cctx->term = buffer_get_string(&m, &len);
665
666 cmd = buffer_get_string(&m, &len);
667 buffer_init(&cctx->cmd);
668 buffer_append(&cctx->cmd, cmd, strlen(cmd));
669
Damien Miller3756dce2004-06-18 01:17:29 +1000670 env_len = buffer_get_int(&m);
671 env_len = MIN(env_len, 4096);
672 debug3("%s: receiving %d env vars", __func__, env_len);
673 if (env_len != 0) {
674 cctx->env = xmalloc(sizeof(*cctx->env) * (env_len + 1));
675 for (i = 0; i < env_len; i++)
676 cctx->env[i] = buffer_get_string(&m, &len);
677 cctx->env[i] = NULL;
678 }
679
Damien Miller0e220db2004-06-15 10:34:08 +1000680 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
681 cctx->want_tty, cctx->want_subsys, cmd);
682
683 /* Gather fds from client */
684 new_fd[0] = mm_receive_fd(client_fd);
685 new_fd[1] = mm_receive_fd(client_fd);
686 new_fd[2] = mm_receive_fd(client_fd);
687
688 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
689 new_fd[0], new_fd[1], new_fd[2]);
690
691 /* Try to pick up ttymodes from client before it goes raw */
692 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
693 error("%s: tcgetattr: %s", __func__, strerror(errno));
694
695 buffer_clear(&m);
696 if (ssh_msg_send(client_fd, /* version */0, &m) == -1) {
697 error("%s: client msg_send failed", __func__);
698 close(client_fd);
699 close(new_fd[0]);
700 close(new_fd[1]);
701 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000702 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000703 return;
704 }
705 buffer_free(&m);
706
707 /* enable nonblocking unless tty */
708 if (!isatty(new_fd[0]))
709 set_nonblock(new_fd[0]);
710 if (!isatty(new_fd[1]))
711 set_nonblock(new_fd[1]);
712 if (!isatty(new_fd[2]))
713 set_nonblock(new_fd[2]);
714
715 set_nonblock(client_fd);
716
717 c = channel_new("session", SSH_CHANNEL_OPENING,
718 new_fd[0], new_fd[1], new_fd[2],
719 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
720 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
721
722 /* XXX */
723 c->ctl_fd = client_fd;
724
725 debug3("%s: channel_new: %d", __func__, c->self);
726
727 channel_send_open(c->self);
728 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
729}
730
731static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000732process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000733{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000734 void (*handler)(int);
735 char *s, *cmd;
736 u_short fwd_port, fwd_host_port;
737 char buf[1024], sfwd_port[6], sfwd_host_port[6];
Darren Tuckere7066df2004-05-24 10:18:05 +1000738 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000739 int local = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000740
741 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000742 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000743 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000744 if (s == NULL)
745 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000746 while (*s && isspace(*s))
747 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000748 if (*s == '-')
749 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000750 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000751 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000752
Darren Tucker1973c882004-05-24 10:34:36 +1000753 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000754 logit("Commands:");
755 logit(" -Lport:host:hostport Request local forward");
756 logit(" -Rport:host:hostport Request remote forward");
757 logit(" -KRhostport Cancel remote forward");
758 goto out;
759 }
760
761 if (*s == 'K') {
762 delete = 1;
763 s++;
764 }
765 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000766 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000767 goto out;
768 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000769 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000770 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000771 if (local && delete) {
772 logit("Not supported.");
773 goto out;
774 }
775 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000776 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000777 goto out;
778 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000779
780 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000781 while (*s && isspace(*s))
782 s++;
783
Darren Tuckere7066df2004-05-24 10:18:05 +1000784 if (delete) {
785 if (sscanf(s, "%5[0-9]", sfwd_host_port) != 1) {
786 logit("Bad forwarding specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000787 goto out;
788 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000789 if ((fwd_host_port = a2port(sfwd_host_port)) == 0) {
790 logit("Bad forwarding port(s).");
791 goto out;
792 }
793 channel_request_rforward_cancel(fwd_host_port);
794 } else {
795 if (sscanf(s, "%5[0-9]:%255[^:]:%5[0-9]",
796 sfwd_port, buf, sfwd_host_port) != 3 &&
797 sscanf(s, "%5[0-9]/%255[^/]/%5[0-9]",
798 sfwd_port, buf, sfwd_host_port) != 3) {
799 logit("Bad forwarding specification.");
800 goto out;
801 }
802 if ((fwd_port = a2port(sfwd_port)) == 0 ||
803 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
804 logit("Bad forwarding port(s).");
805 goto out;
806 }
807 if (local) {
808 if (channel_setup_local_fwd_listener(fwd_port, buf,
809 fwd_host_port, options.gateway_ports) < 0) {
810 logit("Port forwarding failed.");
811 goto out;
812 }
813 } else
814 channel_request_remote_forwarding(fwd_port, buf,
815 fwd_host_port);
816 logit("Forwarding port.");
817 }
818
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000819out:
820 signal(SIGINT, handler);
821 enter_raw_mode();
822 if (cmd)
823 xfree(cmd);
824}
825
Damien Millerad833b32000-08-23 10:46:23 +1000826/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +0000827static int
Damien Millerad833b32000-08-23 10:46:23 +1000828process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
829{
830 char string[1024];
831 pid_t pid;
832 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000833 u_int i;
834 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000835 char *s;
836
837 for (i = 0; i < len; i++) {
838 /* Get one character at a time. */
839 ch = buf[i];
840
841 if (escape_pending) {
842 /* We have previously seen an escape character. */
843 /* Clear the flag now. */
844 escape_pending = 0;
845
846 /* Process the escaped character. */
847 switch (ch) {
848 case '.':
849 /* Terminate the connection. */
850 snprintf(string, sizeof string, "%c.\r\n", escape_char);
851 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000852
853 quit_pending = 1;
854 return -1;
855
856 case 'Z' - 64:
857 /* Suspend the program. */
858 /* Print a message to that effect to the user. */
859 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
860 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000861
862 /* Restore terminal modes and suspend. */
863 client_suspend_self(bin, bout, berr);
864
865 /* We have been continued. */
866 continue;
867
Damien Miller54c45982003-05-15 10:20:13 +1000868 case 'B':
869 if (compat20) {
870 snprintf(string, sizeof string,
871 "%cB\r\n", escape_char);
872 buffer_append(berr, string,
873 strlen(string));
874 channel_request_start(session_ident,
875 "break", 0);
876 packet_put_int(1000);
877 packet_send();
878 }
879 continue;
880
Ben Lindstromf28f6342001-04-04 02:03:04 +0000881 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000882 if (compat20) {
883 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +1000884 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000885 else
886 need_rekeying = 1;
887 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000888 continue;
889
Damien Millerad833b32000-08-23 10:46:23 +1000890 case '&':
Damien Millerad833b32000-08-23 10:46:23 +1000891 /*
892 * Detach the program (continue to serve connections,
893 * but put in background and no more new connections).
894 */
Damien Miller96507ef2001-11-12 10:52:25 +1100895 /* Restore tty modes. */
896 leave_raw_mode();
897
898 /* Stop listening for new connections. */
899 channel_stop_listening();
900
901 snprintf(string, sizeof string,
902 "%c& [backgrounded]\n", escape_char);
903 buffer_append(berr, string, strlen(string));
904
905 /* Fork into background. */
906 pid = fork();
907 if (pid < 0) {
908 error("fork: %.100s", strerror(errno));
909 continue;
910 }
911 if (pid != 0) { /* This is the parent. */
912 /* The parent just exits. */
913 exit(0);
914 }
915 /* The child continues serving connections. */
916 if (compat20) {
917 buffer_append(bin, "\004", 1);
918 /* fake EOF on stdin */
919 return -1;
920 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +1000921 /*
922 * Sending SSH_CMSG_EOF alone does not always appear
923 * to be enough. So we try to send an EOF character
924 * first.
925 */
926 packet_start(SSH_CMSG_STDIN_DATA);
927 packet_put_string("\004", 1);
928 packet_send();
929 /* Close stdin. */
930 stdin_eof = 1;
931 if (buffer_len(bin) == 0) {
932 packet_start(SSH_CMSG_EOF);
933 packet_send();
934 }
935 }
Damien Miller96507ef2001-11-12 10:52:25 +1100936 continue;
Damien Millerad833b32000-08-23 10:46:23 +1000937
938 case '?':
939 snprintf(string, sizeof string,
940"%c?\r\n\
941Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000942%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +1000943%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000944%cC - open a command line\r\n\
945%cR - Request rekey (SSH protocol 2 only)\r\n\
946%c^Z - suspend ssh\r\n\
947%c# - list forwarded connections\r\n\
948%c& - background ssh (when waiting for connections to terminate)\r\n\
949%c? - this message\r\n\
950%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +1000951(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +1000952 escape_char, escape_char, escape_char, escape_char,
953 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +1000954 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000955 buffer_append(berr, string, strlen(string));
956 continue;
957
958 case '#':
959 snprintf(string, sizeof string, "%c#\r\n", escape_char);
960 buffer_append(berr, string, strlen(string));
961 s = channel_open_message();
962 buffer_append(berr, s, strlen(s));
963 xfree(s);
964 continue;
965
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000966 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +0000967 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000968 continue;
969
Damien Millerad833b32000-08-23 10:46:23 +1000970 default:
971 if (ch != escape_char) {
972 buffer_put_char(bin, escape_char);
973 bytes++;
974 }
975 /* Escaped characters fall through here */
976 break;
977 }
978 } else {
979 /*
980 * The previous character was not an escape char. Check if this
981 * is an escape.
982 */
983 if (last_was_cr && ch == escape_char) {
984 /* It is. Set the flag and continue to next character. */
985 escape_pending = 1;
986 continue;
987 }
988 }
989
990 /*
991 * Normal character. Record whether it was a newline,
992 * and append it to the buffer.
993 */
994 last_was_cr = (ch == '\r' || ch == '\n');
995 buffer_put_char(bin, ch);
996 bytes++;
997 }
998 return bytes;
999}
1000
Ben Lindstrombba81212001-06-25 05:01:22 +00001001static void
Damien Miller1383bd82000-04-06 12:32:37 +10001002client_process_input(fd_set * readset)
1003{
Damien Miller166fca82000-04-20 07:42:21 +10001004 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001005 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001006
Damien Miller95def091999-11-25 00:26:21 +11001007 /* Read input from stdin. */
1008 if (FD_ISSET(fileno(stdin), readset)) {
1009 /* Read as much as possible. */
1010 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001011 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1012 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001013 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001014 /*
1015 * Received EOF or error. They are treated
1016 * similarly, except that an error message is printed
1017 * if it was an error condition.
1018 */
Damien Miller95def091999-11-25 00:26:21 +11001019 if (len < 0) {
1020 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1021 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001022 }
1023 /* Mark that we have seen EOF. */
1024 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001025 /*
1026 * Send an EOF message to the server unless there is
1027 * data in the buffer. If there is data in the
1028 * buffer, no message will be sent now. Code
1029 * elsewhere will send the EOF when the buffer
1030 * becomes empty if stdin_eof is set.
1031 */
Damien Miller95def091999-11-25 00:26:21 +11001032 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001033 packet_start(SSH_CMSG_EOF);
1034 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001035 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001036 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001037 /*
1038 * Normal successful read, and no escape character.
1039 * Just append the data to buffer.
1040 */
Damien Miller95def091999-11-25 00:26:21 +11001041 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001042 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001043 /*
1044 * Normal, successful read. But we have an escape character
1045 * and have to process the characters one by one.
1046 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001047 if (process_escapes(&stdin_buffer, &stdout_buffer,
1048 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001049 return;
Damien Miller95def091999-11-25 00:26:21 +11001050 }
1051 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001052}
1053
Ben Lindstrombba81212001-06-25 05:01:22 +00001054static void
Damien Miller95def091999-11-25 00:26:21 +11001055client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001056{
Damien Miller95def091999-11-25 00:26:21 +11001057 int len;
1058 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001059
Damien Miller95def091999-11-25 00:26:21 +11001060 /* Write buffered output to stdout. */
1061 if (FD_ISSET(fileno(stdout), writeset)) {
1062 /* Write as much data as possible. */
1063 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001064 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001065 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001066 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001067 len = 0;
1068 else {
Damien Miller5428f641999-11-25 11:54:57 +11001069 /*
1070 * An error or EOF was encountered. Put an
1071 * error message to stderr buffer.
1072 */
Damien Miller95def091999-11-25 00:26:21 +11001073 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1074 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001075 quit_pending = 1;
1076 return;
1077 }
1078 }
1079 /* Consume printed data from the buffer. */
1080 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001081 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001082 }
Damien Miller95def091999-11-25 00:26:21 +11001083 /* Write buffered output to stderr. */
1084 if (FD_ISSET(fileno(stderr), writeset)) {
1085 /* Write as much data as possible. */
1086 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001087 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001088 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001089 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001090 len = 0;
1091 else {
Damien Miller5428f641999-11-25 11:54:57 +11001092 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001093 quit_pending = 1;
1094 return;
1095 }
1096 }
1097 /* Consume printed characters from the buffer. */
1098 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001099 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001100 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101}
1102
Damien Miller5428f641999-11-25 11:54:57 +11001103/*
Damien Millerb38eff82000-04-01 11:09:21 +10001104 * Get packets from the connection input buffer, and process them as long as
1105 * there are packets available.
1106 *
1107 * Any unknown packets received during the actual
1108 * session cause the session to terminate. This is
1109 * intended to make debugging easier since no
1110 * confirmations are sent. Any compatible protocol
1111 * extensions must be negotiated during the
1112 * preparatory phase.
1113 */
1114
Ben Lindstrombba81212001-06-25 05:01:22 +00001115static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001116client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001117{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001118 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001119}
1120
Damien Millerad833b32000-08-23 10:46:23 +10001121/* scan buf[] for '~' before sending data to the peer */
1122
Ben Lindstrombba81212001-06-25 05:01:22 +00001123static int
Damien Millerad833b32000-08-23 10:46:23 +10001124simple_escape_filter(Channel *c, char *buf, int len)
1125{
1126 /* XXX we assume c->extended is writeable */
1127 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1128}
1129
Ben Lindstrombba81212001-06-25 05:01:22 +00001130static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001131client_channel_closed(int id, void *arg)
1132{
Damien Miller3ec27592001-10-12 11:35:04 +10001133 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001134 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001135 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001136}
1137
Damien Millerb38eff82000-04-01 11:09:21 +10001138/*
Damien Miller5428f641999-11-25 11:54:57 +11001139 * Implements the interactive session with the server. This is called after
1140 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001141 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1142 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001144
Damien Miller4af51302000-04-16 11:18:38 +10001145int
Damien Millerad833b32000-08-23 10:46:23 +10001146client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001147{
Damien Miller5e953212001-01-30 09:14:00 +11001148 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001149 double start_time, total_time;
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001150 int max_fd = 0, max_fd2 = 0, len, rekeying = 0, nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001151 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001152
Damien Miller95def091999-11-25 00:26:21 +11001153 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001154
Damien Miller95def091999-11-25 00:26:21 +11001155 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156
Damien Miller95def091999-11-25 00:26:21 +11001157 /* Initialize variables. */
1158 escape_pending = 0;
1159 last_was_cr = 1;
1160 exit_status = -1;
1161 stdin_eof = 0;
1162 buffer_high = 64 * 1024;
1163 connection_in = packet_get_connection_in();
1164 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001165 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001166 if (control_fd != -1)
1167 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001168
1169 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001170 /* enable nonblocking unless tty */
1171 if (!isatty(fileno(stdin)))
1172 set_nonblock(fileno(stdin));
1173 if (!isatty(fileno(stdout)))
1174 set_nonblock(fileno(stdout));
1175 if (!isatty(fileno(stderr)))
1176 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001177 max_fd = MAX(max_fd, fileno(stdin));
1178 max_fd = MAX(max_fd, fileno(stdout));
1179 max_fd = MAX(max_fd, fileno(stderr));
1180 }
Damien Miller95def091999-11-25 00:26:21 +11001181 stdin_bytes = 0;
1182 stdout_bytes = 0;
1183 stderr_bytes = 0;
1184 quit_pending = 0;
1185 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001186
Damien Miller95def091999-11-25 00:26:21 +11001187 /* Initialize buffers. */
1188 buffer_init(&stdin_buffer);
1189 buffer_init(&stdout_buffer);
1190 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001191
Damien Millerb38eff82000-04-01 11:09:21 +10001192 client_init_dispatch();
1193
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001194 /*
1195 * Set signal handlers, (e.g. to restore non-blocking mode)
1196 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1197 */
1198 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1199 signal(SIGINT, signal_handler);
1200 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1201 signal(SIGQUIT, signal_handler);
1202 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1203 signal(SIGTERM, signal_handler);
Damien Miller95def091999-11-25 00:26:21 +11001204 if (have_pty)
1205 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001206
Damien Miller95def091999-11-25 00:26:21 +11001207 if (have_pty)
1208 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001209
Ben Lindstrom5b828322001-02-09 01:34:36 +00001210 if (compat20) {
1211 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001212 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001213 channel_register_filter(session_ident,
1214 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001215 if (session_ident != -1)
1216 channel_register_cleanup(session_ident,
1217 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001218 } else {
1219 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001220 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001221 }
Damien Millerad833b32000-08-23 10:46:23 +10001222
Damien Miller95def091999-11-25 00:26:21 +11001223 /* Main loop of the client for the interactive session mode. */
1224 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001225
Damien Miller5428f641999-11-25 11:54:57 +11001226 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001227 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001228
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001229 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001230 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001231
1232 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001233
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001234 if (rekeying) {
1235 debug("rekeying in progress");
1236 } else {
1237 /*
1238 * Make packets of buffered stdin data, and buffer
1239 * them for sending to the server.
1240 */
1241 if (!compat20)
1242 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001243
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001244 /*
1245 * Make packets from buffered channel data, and
1246 * enqueue them for sending to the server.
1247 */
1248 if (packet_not_very_much_data_to_write())
1249 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001250
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001251 /*
1252 * Check if the window size has changed, and buffer a
1253 * message about it to the server if so.
1254 */
1255 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001256
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001257 if (quit_pending)
1258 break;
1259 }
Damien Miller5428f641999-11-25 11:54:57 +11001260 /*
1261 * Wait until we have something to do (something becomes
1262 * available on one of the descriptors).
1263 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001264 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001265 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001266 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267
Damien Miller95def091999-11-25 00:26:21 +11001268 if (quit_pending)
1269 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001270
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001271 /* Do channel operations unless rekeying in progress. */
1272 if (!rekeying) {
1273 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001274 if (need_rekeying || packet_need_rekeying()) {
1275 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001276 xxx_kex->done = 0;
1277 kex_send_kexinit(xxx_kex);
1278 need_rekeying = 0;
1279 }
1280 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001281
Damien Miller1383bd82000-04-06 12:32:37 +10001282 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001283 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001284
Damien Miller0e220db2004-06-15 10:34:08 +10001285 /* Accept control connections. */
1286 client_process_control(readset);
1287
Damien Miller1383bd82000-04-06 12:32:37 +10001288 if (quit_pending)
1289 break;
1290
1291 if (!compat20) {
1292 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001293 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001294 /*
1295 * Process output to stdout and stderr. Output to
1296 * the connection is processed elsewhere (above).
1297 */
Damien Miller5e953212001-01-30 09:14:00 +11001298 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001299 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001300
Damien Miller5428f641999-11-25 11:54:57 +11001301 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001302 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001303 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001304 }
Damien Miller5e953212001-01-30 09:14:00 +11001305 if (readset)
1306 xfree(readset);
1307 if (writeset)
1308 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001309
Damien Miller95def091999-11-25 00:26:21 +11001310 /* Terminate the session. */
1311
1312 /* Stop watching for window change. */
1313 if (have_pty)
1314 signal(SIGWINCH, SIG_DFL);
1315
Ben Lindstrom601e4362001-06-21 03:19:23 +00001316 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001317
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001318 if (have_pty)
1319 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001320
1321 /* restore blocking io */
1322 if (!isatty(fileno(stdin)))
1323 unset_nonblock(fileno(stdin));
1324 if (!isatty(fileno(stdout)))
1325 unset_nonblock(fileno(stdout));
1326 if (!isatty(fileno(stderr)))
1327 unset_nonblock(fileno(stderr));
1328
Damien Millerd6965512003-12-17 16:31:53 +11001329 /*
1330 * If there was no shell or command requested, there will be no remote
1331 * exit status to be returned. In that case, clear error code if the
1332 * connection was deliberately terminated at this end.
1333 */
1334 if (no_shell_flag && received_signal == SIGTERM) {
1335 received_signal = 0;
1336 exit_status = 0;
1337 }
1338
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001339 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001340 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001341
1342 /*
1343 * In interactive mode (with pseudo tty) display a message indicating
1344 * that the connection has been closed.
1345 */
1346 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1347 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1348 buffer_append(&stderr_buffer, buf, strlen(buf));
1349 }
1350
Damien Miller95def091999-11-25 00:26:21 +11001351 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001352 while (buffer_len(&stdout_buffer) > 0) {
1353 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001354 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001355 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001356 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001357 break;
1358 }
Damien Miller95def091999-11-25 00:26:21 +11001359 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001360 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001361 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001362
Damien Miller95def091999-11-25 00:26:21 +11001363 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001364 while (buffer_len(&stderr_buffer) > 0) {
1365 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001366 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001367 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001368 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001369 break;
1370 }
Damien Miller95def091999-11-25 00:26:21 +11001371 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001372 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001373 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374
Damien Miller95def091999-11-25 00:26:21 +11001375 /* Clear and free any buffers. */
1376 memset(buf, 0, sizeof(buf));
1377 buffer_free(&stdin_buffer);
1378 buffer_free(&stdout_buffer);
1379 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001380
Damien Miller95def091999-11-25 00:26:21 +11001381 /* Report bytes transferred, and transfer rates. */
1382 total_time = get_current_time() - start_time;
1383 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001384 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001385 if (total_time > 0)
1386 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001387 stdin_bytes / total_time, stdout_bytes / total_time,
1388 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001389
1390 /* Return the exit status of the program. */
1391 debug("Exit status %d", exit_status);
1392 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393}
Damien Millerb38eff82000-04-01 11:09:21 +10001394
1395/*********/
1396
Ben Lindstrombba81212001-06-25 05:01:22 +00001397static void
Damien Miller630d6f42002-01-22 23:17:30 +11001398client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001399{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001400 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001401 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001402 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001403 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001404 memset(data, 0, data_len);
1405 xfree(data);
1406}
Ben Lindstrombba81212001-06-25 05:01:22 +00001407static void
Damien Miller630d6f42002-01-22 23:17:30 +11001408client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001409{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001410 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001411 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001412 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001413 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001414 memset(data, 0, data_len);
1415 xfree(data);
1416}
Ben Lindstrombba81212001-06-25 05:01:22 +00001417static void
Damien Miller630d6f42002-01-22 23:17:30 +11001418client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001419{
Damien Millerb38eff82000-04-01 11:09:21 +10001420 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001421 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001422 /* Acknowledge the exit. */
1423 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1424 packet_send();
1425 /*
1426 * Must wait for packet to be sent since we are
1427 * exiting the loop.
1428 */
1429 packet_write_wait();
1430 /* Flag that we want to exit. */
1431 quit_pending = 1;
1432}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001433static void
1434client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1435{
1436 Channel *c = NULL;
1437 int remote_id, sock;
1438
1439 /* Read the remote channel number from the message. */
1440 remote_id = packet_get_int();
1441 packet_check_eom();
1442
1443 /*
1444 * Get a connection to the local authentication agent (this may again
1445 * get forwarded).
1446 */
1447 sock = ssh_get_authentication_socket();
1448
1449 /*
1450 * If we could not connect the agent, send an error message back to
1451 * the server. This should never happen unless the agent dies,
1452 * because authentication forwarding is only enabled if we have an
1453 * agent.
1454 */
1455 if (sock >= 0) {
1456 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1457 -1, 0, 0, 0, "authentication agent connection", 1);
1458 c->remote_id = remote_id;
1459 c->force_drain = 1;
1460 }
1461 if (c == NULL) {
1462 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1463 packet_put_int(remote_id);
1464 } else {
1465 /* Send a confirmation to the remote host. */
1466 debug("Forwarding authentication connection.");
1467 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1468 packet_put_int(remote_id);
1469 packet_put_int(c->self);
1470 }
1471 packet_send();
1472}
Damien Millerb38eff82000-04-01 11:09:21 +10001473
Ben Lindstrombba81212001-06-25 05:01:22 +00001474static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001475client_request_forwarded_tcpip(const char *request_type, int rchan)
1476{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001477 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001478 char *listen_address, *originator_address;
1479 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001480 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001481
1482 /* Get rest of the packet */
1483 listen_address = packet_get_string(NULL);
1484 listen_port = packet_get_int();
1485 originator_address = packet_get_string(NULL);
1486 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001487 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001488
1489 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1490 listen_address, listen_port, originator_address, originator_port);
1491
Ben Lindstrom173e6462001-07-04 05:15:15 +00001492 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001493 if (sock < 0) {
1494 xfree(originator_address);
1495 xfree(listen_address);
1496 return NULL;
1497 }
1498 c = channel_new("forwarded-tcpip",
1499 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1500 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001501 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001502 xfree(originator_address);
1503 xfree(listen_address);
1504 return c;
1505}
1506
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001507static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001508client_request_x11(const char *request_type, int rchan)
1509{
1510 Channel *c = NULL;
1511 char *originator;
1512 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001513 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001514
1515 if (!options.forward_x11) {
1516 error("Warning: ssh server tried X11 forwarding.");
1517 error("Warning: this is probably a break in attempt by a malicious server.");
1518 return NULL;
1519 }
1520 originator = packet_get_string(NULL);
1521 if (datafellows & SSH_BUG_X11FWD) {
1522 debug2("buggy server: x11 request w/o originator_port");
1523 originator_port = 0;
1524 } else {
1525 originator_port = packet_get_int();
1526 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001527 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001528 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001529 debug("client_request_x11: request from %s %d", originator,
1530 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001531 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001532 sock = x11_connect_display();
1533 if (sock < 0)
1534 return NULL;
1535 c = channel_new("x11",
1536 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001537 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001538 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001539 return c;
1540}
1541
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001542static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001543client_request_agent(const char *request_type, int rchan)
1544{
1545 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001546 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001547
1548 if (!options.forward_agent) {
1549 error("Warning: ssh server tried agent forwarding.");
1550 error("Warning: this is probably a break in attempt by a malicious server.");
1551 return NULL;
1552 }
1553 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001554 if (sock < 0)
1555 return NULL;
1556 c = channel_new("authentication agent connection",
1557 SSH_CHANNEL_OPEN, sock, sock, -1,
1558 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001559 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001560 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001561 return c;
1562}
1563
Damien Millerbd483e72000-04-30 10:00:53 +10001564/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001565static void
Damien Miller630d6f42002-01-22 23:17:30 +11001566client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001567{
1568 Channel *c = NULL;
1569 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001570 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001571 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001572
1573 ctype = packet_get_string(&len);
1574 rchan = packet_get_int();
1575 rwindow = packet_get_int();
1576 rmaxpack = packet_get_int();
1577
Damien Millere247cc42000-05-07 12:03:14 +10001578 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001579 ctype, rchan, rwindow, rmaxpack);
1580
Damien Miller0bc1bd82000-11-13 22:57:25 +11001581 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1582 c = client_request_forwarded_tcpip(ctype, rchan);
1583 } else if (strcmp(ctype, "x11") == 0) {
1584 c = client_request_x11(ctype, rchan);
1585 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1586 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001587 }
1588/* XXX duplicate : */
1589 if (c != NULL) {
1590 debug("confirm %s", ctype);
1591 c->remote_id = rchan;
1592 c->remote_window = rwindow;
1593 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001594 if (c->type != SSH_CHANNEL_CONNECTING) {
1595 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1596 packet_put_int(c->remote_id);
1597 packet_put_int(c->self);
1598 packet_put_int(c->local_window);
1599 packet_put_int(c->local_maxpacket);
1600 packet_send();
1601 }
Damien Millerbd483e72000-04-30 10:00:53 +10001602 } else {
1603 debug("failure %s", ctype);
1604 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1605 packet_put_int(rchan);
1606 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001607 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001608 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001609 packet_put_cstring("");
1610 }
Damien Millerbd483e72000-04-30 10:00:53 +10001611 packet_send();
1612 }
1613 xfree(ctype);
1614}
Ben Lindstrombba81212001-06-25 05:01:22 +00001615static void
Damien Miller630d6f42002-01-22 23:17:30 +11001616client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001617{
1618 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001619 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001620 char *rtype;
1621
1622 id = packet_get_int();
1623 rtype = packet_get_string(NULL);
1624 reply = packet_get_char();
1625
1626 debug("client_input_channel_req: channel %d rtype %s reply %d",
1627 id, rtype, reply);
1628
Ben Lindstrom5b828322001-02-09 01:34:36 +00001629 c = channel_lookup(id);
1630 if (c == NULL) {
1631 error("client_input_channel_req: channel %d: unknown channel", id);
1632 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001633 exitval = packet_get_int();
1634 if (id == session_ident) {
1635 success = 1;
1636 exit_status = exitval;
1637 } else if (c->ctl_fd == -1) {
1638 error("client_input_channel_req: unexpected channel %d",
1639 session_ident);
1640 } else {
1641 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1642 success = 1;
1643 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001644 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001645 }
1646 if (reply) {
1647 packet_start(success ?
1648 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
1649 packet_put_int(c->remote_id);
1650 packet_send();
1651 }
1652 xfree(rtype);
1653}
Damien Millerc3fa4072002-01-22 23:21:58 +11001654static void
1655client_input_global_request(int type, u_int32_t seq, void *ctxt)
1656{
1657 char *rtype;
1658 int want_reply;
1659 int success = 0;
1660
1661 rtype = packet_get_string(NULL);
1662 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001663 debug("client_input_global_request: rtype %s want_reply %d",
1664 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001665 if (want_reply) {
1666 packet_start(success ?
1667 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1668 packet_send();
1669 packet_write_wait();
1670 }
1671 xfree(rtype);
1672}
Damien Millerbd483e72000-04-30 10:00:53 +10001673
Damien Miller0e220db2004-06-15 10:34:08 +10001674void
1675client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001676 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001677 dispatch_fn *subsys_repl)
1678{
1679 int len;
1680
1681 debug2("%s: id %d", __func__, id);
1682
1683 if (want_tty) {
1684 struct winsize ws;
1685 struct termios tio;
1686
1687 /* Store window size in the packet. */
1688 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1689 memset(&ws, 0, sizeof(ws));
1690
1691 channel_request_start(id, "pty-req", 0);
1692 packet_put_cstring(term != NULL ? term : "");
1693 packet_put_int(ws.ws_col);
1694 packet_put_int(ws.ws_row);
1695 packet_put_int(ws.ws_xpixel);
1696 packet_put_int(ws.ws_ypixel);
1697 tio = get_saved_tio();
1698 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1699 packet_send();
1700 /* XXX wait for reply */
1701 }
1702
1703 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001704 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001705 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001706 char *name, *val;
1707
1708 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001709 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001710 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001711 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001712 if ((val = strchr(name, '=')) == NULL) {
1713 free(name);
1714 continue;
1715 }
1716 *val++ = '\0';
1717
1718 matched = 0;
1719 for (j = 0; j < options.num_send_env; j++) {
1720 if (match_pattern(name, options.send_env[j])) {
1721 matched = 1;
1722 break;
1723 }
1724 }
1725 if (!matched) {
1726 debug3("Ignored env %s", name);
1727 free(name);
1728 continue;
1729 }
1730
1731 debug("Sending env %s = %s", name, val);
1732 channel_request_start(id, "env", 0);
1733 packet_put_cstring(name);
1734 packet_put_cstring(val);
1735 packet_send();
1736 free(name);
1737 }
1738 }
1739
1740 len = buffer_len(cmd);
1741 if (len > 0) {
1742 if (len > 900)
1743 len = 900;
1744 if (want_subsystem) {
1745 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1746 channel_request_start(id, "subsystem", subsys_repl != NULL);
1747 if (subsys_repl != NULL) {
1748 /* register callback for reply */
1749 /* XXX we assume that client_loop has already been called */
1750 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1751 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1752 }
1753 } else {
1754 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1755 channel_request_start(id, "exec", 0);
1756 }
1757 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1758 packet_send();
1759 } else {
1760 channel_request_start(id, "shell", 0);
1761 packet_send();
1762 }
1763}
1764
Ben Lindstrombba81212001-06-25 05:01:22 +00001765static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001766client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001767{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001768 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001769
Damien Miller1383bd82000-04-06 12:32:37 +10001770 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1771 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1772 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1773 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001774 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001775 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1776 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001777 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001778 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001779 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001780
1781 /* rekeying */
1782 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001783
1784 /* global request reply messages */
1785 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1786 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001787}
Ben Lindstrombba81212001-06-25 05:01:22 +00001788static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001789client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001790{
1791 dispatch_init(NULL);
1792 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1793 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1794 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001795 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1796 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1797 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001798 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1799 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1800 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001801
1802 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001803 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001804 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1805 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001806}
Ben Lindstrombba81212001-06-25 05:01:22 +00001807static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001808client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001809{
1810 client_init_dispatch_13();
1811 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1812 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1813}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001814static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001815client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001816{
Damien Miller1383bd82000-04-06 12:32:37 +10001817 if (compat20)
1818 client_init_dispatch_20();
1819 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001820 client_init_dispatch_13();
1821 else
1822 client_init_dispatch_15();
1823}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001824
1825/* client specific fatal cleanup */
1826void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001827cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001828{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001829 leave_raw_mode();
1830 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10001831 if (options.control_path != NULL && control_fd != -1)
1832 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001833 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001834}