blob: 009480ea1879dafbc27bdec2ef5ab0551a50c74c [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 Tucker5d78de62004-11-05 20:35:44 +110062RCSID("$OpenBSD: clientloop.c,v 1.132 2004/10/29 21:47:15 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,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000351 int *maxfdp, u_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;
Darren Tuckerfc959702004-07-17 16:12:08 +1000405 else {
Damien Miller509b0102003-12-17 16:33:10 +1100406 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 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000436 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000437 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000438 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000439 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440
Damien Miller95def091999-11-25 00:26:21 +1100441 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442
Damien Miller5428f641999-11-25 11:54:57 +1100443 /*
444 * Free (and clear) the buffer to reduce the amount of data that gets
445 * written to swap.
446 */
Damien Millerad833b32000-08-23 10:46:23 +1000447 buffer_free(bin);
448 buffer_free(bout);
449 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000450
Damien Miller95def091999-11-25 00:26:21 +1100451 /* Send the suspend signal to the program itself. */
452 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453
Darren Tucker5d78de62004-11-05 20:35:44 +1100454 /* Reset window sizes in case they have changed */
455 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456
Damien Miller95def091999-11-25 00:26:21 +1100457 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000458 buffer_init(bin);
459 buffer_init(bout);
460 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461
Damien Miller95def091999-11-25 00:26:21 +1100462 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463}
464
Ben Lindstrombba81212001-06-25 05:01:22 +0000465static void
Damien Miller1383bd82000-04-06 12:32:37 +1000466client_process_net_input(fd_set * readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467{
Damien Miller1383bd82000-04-06 12:32:37 +1000468 int len;
469 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000470
Damien Miller5428f641999-11-25 11:54:57 +1100471 /*
472 * Read input from the server, and add any such data to the buffer of
473 * the packet subsystem.
474 */
Damien Miller95def091999-11-25 00:26:21 +1100475 if (FD_ISSET(connection_in, readset)) {
476 /* Read as much as possible. */
477 len = read(connection_in, buf, sizeof(buf));
478 if (len == 0) {
479 /* Received EOF. The remote host has closed the connection. */
480 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
481 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000482 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000483 quit_pending = 1;
484 return;
Damien Miller95def091999-11-25 00:26:21 +1100485 }
Damien Miller5428f641999-11-25 11:54:57 +1100486 /*
487 * There is a kernel bug on Solaris that causes select to
488 * sometimes wake up even though there is no data available.
489 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000490 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100491 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
Damien Miller95def091999-11-25 00:26:21 +1100493 if (len < 0) {
494 /* An error has encountered. Perhaps there is a network problem. */
495 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
496 host, strerror(errno));
497 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100498 quit_pending = 1;
499 return;
500 }
501 packet_process_incoming(buf, len);
502 }
Damien Miller1383bd82000-04-06 12:32:37 +1000503}
504
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000505static void
Damien Miller0e220db2004-06-15 10:34:08 +1000506client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
507{
508 int id;
509 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000510
Damien Miller0e220db2004-06-15 10:34:08 +1000511 id = packet_get_int();
512 packet_check_eom();
513
514 if ((c = channel_lookup(id)) == NULL) {
515 error("%s: no channel for id %d", __func__, id);
516 return;
517 }
518
519 if (type == SSH2_MSG_CHANNEL_SUCCESS)
520 debug2("Request suceeded on channel %d", id);
521 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
522 error("Request failed on channel %d", id);
523 channel_free(c);
524 }
525}
526
527static void
528client_extra_session2_setup(int id, void *arg)
529{
530 struct confirm_ctx *cctx = arg;
531 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000532 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000533
Damien Miller0e220db2004-06-15 10:34:08 +1000534 if (cctx == NULL)
535 fatal("%s: cctx == NULL", __func__);
536 if ((c = channel_lookup(id)) == NULL)
537 fatal("%s: no channel for id %d", __func__, id);
538
Darren Tuckerfc959702004-07-17 16:12:08 +1000539 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000540 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000541 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000542
Damien Miller0e220db2004-06-15 10:34:08 +1000543 c->confirm_ctx = NULL;
544 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000545 xfree(cctx->term);
546 if (cctx->env != NULL) {
547 for (i = 0; cctx->env[i] != NULL; i++)
548 xfree(cctx->env[i]);
549 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000550 }
Damien Miller3756dce2004-06-18 01:17:29 +1000551 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000552}
553
554static void
555client_process_control(fd_set * readset)
556{
557 Buffer m;
558 Channel *c;
Damien Miller23f07702004-06-18 01:19:03 +1000559 int client_fd, new_fd[3], ver, i, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000560 socklen_t addrlen;
561 struct sockaddr_storage addr;
562 struct confirm_ctx *cctx;
563 char *cmd;
Damien Miller3756dce2004-06-18 01:17:29 +1000564 u_int len, env_len;
Damien Miller0e220db2004-06-15 10:34:08 +1000565 uid_t euid;
566 gid_t egid;
567
568 /*
569 * Accept connection on control socket
570 */
571 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
572 return;
573
574 memset(&addr, 0, sizeof(addr));
575 addrlen = sizeof(addr);
576 if ((client_fd = accept(control_fd,
577 (struct sockaddr*)&addr, &addrlen)) == -1) {
578 error("%s accept: %s", __func__, strerror(errno));
579 return;
580 }
581
582 if (getpeereid(client_fd, &euid, &egid) < 0) {
583 error("%s getpeereid failed: %s", __func__, strerror(errno));
584 close(client_fd);
585 return;
586 }
587 if ((euid != 0) && (getuid() != euid)) {
588 error("control mode uid mismatch: peer euid %u != uid %u",
589 (u_int) euid, (u_int) getuid());
590 close(client_fd);
591 return;
592 }
Damien Miller23f07702004-06-18 01:19:03 +1000593
594 allowed = 1;
595 if (options.control_master == 2) {
596 char *p, prompt[1024];
597
598 allowed = 0;
599 snprintf(prompt, sizeof(prompt),
600 "Allow shared connection to %s? ", host);
601 p = read_passphrase(prompt, RP_USE_ASKPASS|RP_ALLOW_EOF);
602 if (p != NULL) {
603 /*
604 * Accept empty responses and responses consisting
605 * of the word "yes" as affirmative.
606 */
Darren Tuckerfc959702004-07-17 16:12:08 +1000607 if (*p == '\0' || *p == '\n' ||
Damien Miller23f07702004-06-18 01:19:03 +1000608 strcasecmp(p, "yes") == 0)
609 allowed = 1;
610 xfree(p);
611 }
612 }
Damien Miller0e220db2004-06-15 10:34:08 +1000613
614 unset_nonblock(client_fd);
615
616 buffer_init(&m);
617
Damien Miller23f07702004-06-18 01:19:03 +1000618 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000619 buffer_put_int(&m, getpid());
620 if (ssh_msg_send(client_fd, /* version */0, &m) == -1) {
621 error("%s: client msg_send failed", __func__);
622 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000623 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000624 return;
625 }
626 buffer_clear(&m);
627
Damien Miller23f07702004-06-18 01:19:03 +1000628 if (!allowed) {
629 error("Refused control connection");
630 close(client_fd);
631 buffer_free(&m);
632 return;
633 }
634
Damien Miller0e220db2004-06-15 10:34:08 +1000635 if (ssh_msg_recv(client_fd, &m) == -1) {
636 error("%s: client msg_recv failed", __func__);
637 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000638 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000639 return;
640 }
641
642 if ((ver = buffer_get_char(&m)) != 0) {
643 error("%s: wrong client version %d", __func__, ver);
644 buffer_free(&m);
645 close(client_fd);
646 return;
647 }
648
649 cctx = xmalloc(sizeof(*cctx));
650 memset(cctx, 0, sizeof(*cctx));
651
652 cctx->want_tty = buffer_get_int(&m);
653 cctx->want_subsys = buffer_get_int(&m);
654 cctx->term = buffer_get_string(&m, &len);
655
656 cmd = buffer_get_string(&m, &len);
657 buffer_init(&cctx->cmd);
658 buffer_append(&cctx->cmd, cmd, strlen(cmd));
659
Damien Miller3756dce2004-06-18 01:17:29 +1000660 env_len = buffer_get_int(&m);
661 env_len = MIN(env_len, 4096);
662 debug3("%s: receiving %d env vars", __func__, env_len);
663 if (env_len != 0) {
664 cctx->env = xmalloc(sizeof(*cctx->env) * (env_len + 1));
665 for (i = 0; i < env_len; i++)
666 cctx->env[i] = buffer_get_string(&m, &len);
667 cctx->env[i] = NULL;
668 }
669
Damien Miller0e220db2004-06-15 10:34:08 +1000670 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
671 cctx->want_tty, cctx->want_subsys, cmd);
672
673 /* Gather fds from client */
674 new_fd[0] = mm_receive_fd(client_fd);
675 new_fd[1] = mm_receive_fd(client_fd);
676 new_fd[2] = mm_receive_fd(client_fd);
677
678 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
679 new_fd[0], new_fd[1], new_fd[2]);
680
681 /* Try to pick up ttymodes from client before it goes raw */
682 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
683 error("%s: tcgetattr: %s", __func__, strerror(errno));
684
685 buffer_clear(&m);
686 if (ssh_msg_send(client_fd, /* version */0, &m) == -1) {
687 error("%s: client msg_send failed", __func__);
688 close(client_fd);
689 close(new_fd[0]);
690 close(new_fd[1]);
691 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000692 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000693 return;
694 }
695 buffer_free(&m);
696
697 /* enable nonblocking unless tty */
698 if (!isatty(new_fd[0]))
699 set_nonblock(new_fd[0]);
700 if (!isatty(new_fd[1]))
701 set_nonblock(new_fd[1]);
702 if (!isatty(new_fd[2]))
703 set_nonblock(new_fd[2]);
704
705 set_nonblock(client_fd);
706
Darren Tuckerfc959702004-07-17 16:12:08 +1000707 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000708 new_fd[0], new_fd[1], new_fd[2],
709 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
710 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
711
712 /* XXX */
713 c->ctl_fd = client_fd;
714
715 debug3("%s: channel_new: %d", __func__, c->self);
716
717 channel_send_open(c->self);
718 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
719}
720
721static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000722process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000723{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000724 void (*handler)(int);
725 char *s, *cmd;
726 u_short fwd_port, fwd_host_port;
727 char buf[1024], sfwd_port[6], sfwd_host_port[6];
Darren Tuckere7066df2004-05-24 10:18:05 +1000728 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000729 int local = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000730
731 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000732 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000733 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000734 if (s == NULL)
735 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000736 while (*s && isspace(*s))
737 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000738 if (*s == '-')
739 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000740 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000741 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000742
Darren Tucker1973c882004-05-24 10:34:36 +1000743 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000744 logit("Commands:");
745 logit(" -Lport:host:hostport Request local forward");
746 logit(" -Rport:host:hostport Request remote forward");
747 logit(" -KRhostport Cancel remote forward");
748 goto out;
749 }
750
751 if (*s == 'K') {
752 delete = 1;
753 s++;
754 }
755 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000756 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000757 goto out;
758 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000759 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000760 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000761 if (local && delete) {
762 logit("Not supported.");
763 goto out;
764 }
765 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000766 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000767 goto out;
768 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000769
770 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000771 while (*s && isspace(*s))
772 s++;
773
Darren Tuckere7066df2004-05-24 10:18:05 +1000774 if (delete) {
775 if (sscanf(s, "%5[0-9]", sfwd_host_port) != 1) {
776 logit("Bad forwarding specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000777 goto out;
778 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000779 if ((fwd_host_port = a2port(sfwd_host_port)) == 0) {
780 logit("Bad forwarding port(s).");
781 goto out;
782 }
783 channel_request_rforward_cancel(fwd_host_port);
784 } else {
785 if (sscanf(s, "%5[0-9]:%255[^:]:%5[0-9]",
786 sfwd_port, buf, sfwd_host_port) != 3 &&
787 sscanf(s, "%5[0-9]/%255[^/]/%5[0-9]",
788 sfwd_port, buf, sfwd_host_port) != 3) {
789 logit("Bad forwarding specification.");
790 goto out;
791 }
792 if ((fwd_port = a2port(sfwd_port)) == 0 ||
793 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
794 logit("Bad forwarding port(s).");
795 goto out;
796 }
797 if (local) {
798 if (channel_setup_local_fwd_listener(fwd_port, buf,
799 fwd_host_port, options.gateway_ports) < 0) {
800 logit("Port forwarding failed.");
801 goto out;
802 }
803 } else
804 channel_request_remote_forwarding(fwd_port, buf,
805 fwd_host_port);
806 logit("Forwarding port.");
807 }
808
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000809out:
810 signal(SIGINT, handler);
811 enter_raw_mode();
812 if (cmd)
813 xfree(cmd);
814}
815
Damien Millerad833b32000-08-23 10:46:23 +1000816/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static int
Damien Millerad833b32000-08-23 10:46:23 +1000818process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
819{
820 char string[1024];
821 pid_t pid;
822 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000823 u_int i;
824 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000825 char *s;
826
827 for (i = 0; i < len; i++) {
828 /* Get one character at a time. */
829 ch = buf[i];
830
831 if (escape_pending) {
832 /* We have previously seen an escape character. */
833 /* Clear the flag now. */
834 escape_pending = 0;
835
836 /* Process the escaped character. */
837 switch (ch) {
838 case '.':
839 /* Terminate the connection. */
840 snprintf(string, sizeof string, "%c.\r\n", escape_char);
841 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000842
843 quit_pending = 1;
844 return -1;
845
846 case 'Z' - 64:
847 /* Suspend the program. */
848 /* Print a message to that effect to the user. */
849 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
850 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000851
852 /* Restore terminal modes and suspend. */
853 client_suspend_self(bin, bout, berr);
854
855 /* We have been continued. */
856 continue;
857
Damien Miller54c45982003-05-15 10:20:13 +1000858 case 'B':
859 if (compat20) {
860 snprintf(string, sizeof string,
861 "%cB\r\n", escape_char);
862 buffer_append(berr, string,
863 strlen(string));
864 channel_request_start(session_ident,
865 "break", 0);
866 packet_put_int(1000);
867 packet_send();
868 }
869 continue;
870
Ben Lindstromf28f6342001-04-04 02:03:04 +0000871 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000872 if (compat20) {
873 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +1000874 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000875 else
876 need_rekeying = 1;
877 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000878 continue;
879
Damien Millerad833b32000-08-23 10:46:23 +1000880 case '&':
Damien Millerad833b32000-08-23 10:46:23 +1000881 /*
882 * Detach the program (continue to serve connections,
883 * but put in background and no more new connections).
884 */
Damien Miller96507ef2001-11-12 10:52:25 +1100885 /* Restore tty modes. */
886 leave_raw_mode();
887
888 /* Stop listening for new connections. */
889 channel_stop_listening();
890
891 snprintf(string, sizeof string,
892 "%c& [backgrounded]\n", escape_char);
893 buffer_append(berr, string, strlen(string));
894
895 /* Fork into background. */
896 pid = fork();
897 if (pid < 0) {
898 error("fork: %.100s", strerror(errno));
899 continue;
900 }
901 if (pid != 0) { /* This is the parent. */
902 /* The parent just exits. */
903 exit(0);
904 }
905 /* The child continues serving connections. */
906 if (compat20) {
907 buffer_append(bin, "\004", 1);
908 /* fake EOF on stdin */
909 return -1;
910 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +1000911 /*
912 * Sending SSH_CMSG_EOF alone does not always appear
913 * to be enough. So we try to send an EOF character
914 * first.
915 */
916 packet_start(SSH_CMSG_STDIN_DATA);
917 packet_put_string("\004", 1);
918 packet_send();
919 /* Close stdin. */
920 stdin_eof = 1;
921 if (buffer_len(bin) == 0) {
922 packet_start(SSH_CMSG_EOF);
923 packet_send();
924 }
925 }
Damien Miller96507ef2001-11-12 10:52:25 +1100926 continue;
Damien Millerad833b32000-08-23 10:46:23 +1000927
928 case '?':
929 snprintf(string, sizeof string,
930"%c?\r\n\
931Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000932%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +1000933%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +1000934%cC - open a command line\r\n\
935%cR - Request rekey (SSH protocol 2 only)\r\n\
936%c^Z - suspend ssh\r\n\
937%c# - list forwarded connections\r\n\
938%c& - background ssh (when waiting for connections to terminate)\r\n\
939%c? - this message\r\n\
940%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +1000941(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +1000942 escape_char, escape_char, escape_char, escape_char,
943 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +1000944 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000945 buffer_append(berr, string, strlen(string));
946 continue;
947
948 case '#':
949 snprintf(string, sizeof string, "%c#\r\n", escape_char);
950 buffer_append(berr, string, strlen(string));
951 s = channel_open_message();
952 buffer_append(berr, s, strlen(s));
953 xfree(s);
954 continue;
955
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000956 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +0000957 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000958 continue;
959
Damien Millerad833b32000-08-23 10:46:23 +1000960 default:
961 if (ch != escape_char) {
962 buffer_put_char(bin, escape_char);
963 bytes++;
964 }
965 /* Escaped characters fall through here */
966 break;
967 }
968 } else {
969 /*
970 * The previous character was not an escape char. Check if this
971 * is an escape.
972 */
973 if (last_was_cr && ch == escape_char) {
974 /* It is. Set the flag and continue to next character. */
975 escape_pending = 1;
976 continue;
977 }
978 }
979
980 /*
981 * Normal character. Record whether it was a newline,
982 * and append it to the buffer.
983 */
984 last_was_cr = (ch == '\r' || ch == '\n');
985 buffer_put_char(bin, ch);
986 bytes++;
987 }
988 return bytes;
989}
990
Ben Lindstrombba81212001-06-25 05:01:22 +0000991static void
Damien Miller1383bd82000-04-06 12:32:37 +1000992client_process_input(fd_set * readset)
993{
Damien Miller166fca82000-04-20 07:42:21 +1000994 int len;
Damien Millerad833b32000-08-23 10:46:23 +1000995 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +1000996
Damien Miller95def091999-11-25 00:26:21 +1100997 /* Read input from stdin. */
998 if (FD_ISSET(fileno(stdin), readset)) {
999 /* Read as much as possible. */
1000 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001001 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1002 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001003 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001004 /*
1005 * Received EOF or error. They are treated
1006 * similarly, except that an error message is printed
1007 * if it was an error condition.
1008 */
Damien Miller95def091999-11-25 00:26:21 +11001009 if (len < 0) {
1010 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1011 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001012 }
1013 /* Mark that we have seen EOF. */
1014 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001015 /*
1016 * Send an EOF message to the server unless there is
1017 * data in the buffer. If there is data in the
1018 * buffer, no message will be sent now. Code
1019 * elsewhere will send the EOF when the buffer
1020 * becomes empty if stdin_eof is set.
1021 */
Damien Miller95def091999-11-25 00:26:21 +11001022 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023 packet_start(SSH_CMSG_EOF);
1024 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001025 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001026 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001027 /*
1028 * Normal successful read, and no escape character.
1029 * Just append the data to buffer.
1030 */
Damien Miller95def091999-11-25 00:26:21 +11001031 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001032 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001033 /*
1034 * Normal, successful read. But we have an escape character
1035 * and have to process the characters one by one.
1036 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001037 if (process_escapes(&stdin_buffer, &stdout_buffer,
1038 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001039 return;
Damien Miller95def091999-11-25 00:26:21 +11001040 }
1041 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042}
1043
Ben Lindstrombba81212001-06-25 05:01:22 +00001044static void
Damien Miller95def091999-11-25 00:26:21 +11001045client_process_output(fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001046{
Damien Miller95def091999-11-25 00:26:21 +11001047 int len;
1048 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001049
Damien Miller95def091999-11-25 00:26:21 +11001050 /* Write buffered output to stdout. */
1051 if (FD_ISSET(fileno(stdout), writeset)) {
1052 /* Write as much data as possible. */
1053 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001054 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001055 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001056 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001057 len = 0;
1058 else {
Damien Miller5428f641999-11-25 11:54:57 +11001059 /*
1060 * An error or EOF was encountered. Put an
1061 * error message to stderr buffer.
1062 */
Damien Miller95def091999-11-25 00:26:21 +11001063 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1064 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001065 quit_pending = 1;
1066 return;
1067 }
1068 }
1069 /* Consume printed data from the buffer. */
1070 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001071 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001072 }
Damien Miller95def091999-11-25 00:26:21 +11001073 /* Write buffered output to stderr. */
1074 if (FD_ISSET(fileno(stderr), writeset)) {
1075 /* Write as much data as possible. */
1076 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001077 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001078 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001079 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001080 len = 0;
1081 else {
Damien Miller5428f641999-11-25 11:54:57 +11001082 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001083 quit_pending = 1;
1084 return;
1085 }
1086 }
1087 /* Consume printed characters from the buffer. */
1088 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001089 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001090 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001091}
1092
Damien Miller5428f641999-11-25 11:54:57 +11001093/*
Damien Millerb38eff82000-04-01 11:09:21 +10001094 * Get packets from the connection input buffer, and process them as long as
1095 * there are packets available.
1096 *
1097 * Any unknown packets received during the actual
1098 * session cause the session to terminate. This is
1099 * intended to make debugging easier since no
1100 * confirmations are sent. Any compatible protocol
1101 * extensions must be negotiated during the
1102 * preparatory phase.
1103 */
1104
Ben Lindstrombba81212001-06-25 05:01:22 +00001105static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001106client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001107{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001108 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001109}
1110
Damien Millerad833b32000-08-23 10:46:23 +10001111/* scan buf[] for '~' before sending data to the peer */
1112
Ben Lindstrombba81212001-06-25 05:01:22 +00001113static int
Damien Millerad833b32000-08-23 10:46:23 +10001114simple_escape_filter(Channel *c, char *buf, int len)
1115{
1116 /* XXX we assume c->extended is writeable */
1117 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1118}
1119
Ben Lindstrombba81212001-06-25 05:01:22 +00001120static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001121client_channel_closed(int id, void *arg)
1122{
Damien Miller3ec27592001-10-12 11:35:04 +10001123 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001124 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001125 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001126}
1127
Damien Millerb38eff82000-04-01 11:09:21 +10001128/*
Damien Miller5428f641999-11-25 11:54:57 +11001129 * Implements the interactive session with the server. This is called after
1130 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001131 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1132 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001133 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001134
Damien Miller4af51302000-04-16 11:18:38 +10001135int
Damien Millerad833b32000-08-23 10:46:23 +10001136client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001137{
Damien Miller5e953212001-01-30 09:14:00 +11001138 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001139 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001140 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1141 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001142 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001143
Damien Miller95def091999-11-25 00:26:21 +11001144 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001145
Damien Miller95def091999-11-25 00:26:21 +11001146 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001147
Damien Miller95def091999-11-25 00:26:21 +11001148 /* Initialize variables. */
1149 escape_pending = 0;
1150 last_was_cr = 1;
1151 exit_status = -1;
1152 stdin_eof = 0;
1153 buffer_high = 64 * 1024;
1154 connection_in = packet_get_connection_in();
1155 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001156 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001157 if (control_fd != -1)
1158 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001159
1160 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001161 /* enable nonblocking unless tty */
1162 if (!isatty(fileno(stdin)))
1163 set_nonblock(fileno(stdin));
1164 if (!isatty(fileno(stdout)))
1165 set_nonblock(fileno(stdout));
1166 if (!isatty(fileno(stderr)))
1167 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001168 max_fd = MAX(max_fd, fileno(stdin));
1169 max_fd = MAX(max_fd, fileno(stdout));
1170 max_fd = MAX(max_fd, fileno(stderr));
1171 }
Damien Miller95def091999-11-25 00:26:21 +11001172 stdin_bytes = 0;
1173 stdout_bytes = 0;
1174 stderr_bytes = 0;
1175 quit_pending = 0;
1176 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177
Damien Miller95def091999-11-25 00:26:21 +11001178 /* Initialize buffers. */
1179 buffer_init(&stdin_buffer);
1180 buffer_init(&stdout_buffer);
1181 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001182
Damien Millerb38eff82000-04-01 11:09:21 +10001183 client_init_dispatch();
1184
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001185 /*
1186 * Set signal handlers, (e.g. to restore non-blocking mode)
1187 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1188 */
Darren Tucker07336da2004-11-05 20:02:16 +11001189 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1190 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001191 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1192 signal(SIGINT, signal_handler);
1193 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1194 signal(SIGQUIT, signal_handler);
1195 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1196 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001197 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001198
Damien Miller95def091999-11-25 00:26:21 +11001199 if (have_pty)
1200 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201
Ben Lindstrom5b828322001-02-09 01:34:36 +00001202 if (compat20) {
1203 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001204 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001205 channel_register_filter(session_ident,
1206 simple_escape_filter);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001207 if (session_ident != -1)
1208 channel_register_cleanup(session_ident,
1209 client_channel_closed);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001210 } else {
1211 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001212 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001213 }
Damien Millerad833b32000-08-23 10:46:23 +10001214
Damien Miller95def091999-11-25 00:26:21 +11001215 /* Main loop of the client for the interactive session mode. */
1216 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001217
Damien Miller5428f641999-11-25 11:54:57 +11001218 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001219 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001220
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001221 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001222 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001223
1224 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001225
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001226 if (rekeying) {
1227 debug("rekeying in progress");
1228 } else {
1229 /*
1230 * Make packets of buffered stdin data, and buffer
1231 * them for sending to the server.
1232 */
1233 if (!compat20)
1234 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001235
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001236 /*
1237 * Make packets from buffered channel data, and
1238 * enqueue them for sending to the server.
1239 */
1240 if (packet_not_very_much_data_to_write())
1241 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001242
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001243 /*
1244 * Check if the window size has changed, and buffer a
1245 * message about it to the server if so.
1246 */
1247 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001248
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001249 if (quit_pending)
1250 break;
1251 }
Damien Miller5428f641999-11-25 11:54:57 +11001252 /*
1253 * Wait until we have something to do (something becomes
1254 * available on one of the descriptors).
1255 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001256 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001257 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001258 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001259
Damien Miller95def091999-11-25 00:26:21 +11001260 if (quit_pending)
1261 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001262
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001263 /* Do channel operations unless rekeying in progress. */
1264 if (!rekeying) {
1265 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001266 if (need_rekeying || packet_need_rekeying()) {
1267 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001268 xxx_kex->done = 0;
1269 kex_send_kexinit(xxx_kex);
1270 need_rekeying = 0;
1271 }
1272 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Damien Miller1383bd82000-04-06 12:32:37 +10001274 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001275 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276
Damien Miller0e220db2004-06-15 10:34:08 +10001277 /* Accept control connections. */
1278 client_process_control(readset);
1279
Damien Miller1383bd82000-04-06 12:32:37 +10001280 if (quit_pending)
1281 break;
1282
1283 if (!compat20) {
1284 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001285 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001286 /*
1287 * Process output to stdout and stderr. Output to
1288 * the connection is processed elsewhere (above).
1289 */
Damien Miller5e953212001-01-30 09:14:00 +11001290 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001291 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller5428f641999-11-25 11:54:57 +11001293 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001294 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001295 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296 }
Damien Miller5e953212001-01-30 09:14:00 +11001297 if (readset)
1298 xfree(readset);
1299 if (writeset)
1300 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001301
Damien Miller95def091999-11-25 00:26:21 +11001302 /* Terminate the session. */
1303
1304 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001305 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001306
Ben Lindstrom601e4362001-06-21 03:19:23 +00001307 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001308
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001309 if (have_pty)
1310 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001311
1312 /* restore blocking io */
1313 if (!isatty(fileno(stdin)))
1314 unset_nonblock(fileno(stdin));
1315 if (!isatty(fileno(stdout)))
1316 unset_nonblock(fileno(stdout));
1317 if (!isatty(fileno(stderr)))
1318 unset_nonblock(fileno(stderr));
1319
Damien Millerd6965512003-12-17 16:31:53 +11001320 /*
1321 * If there was no shell or command requested, there will be no remote
1322 * exit status to be returned. In that case, clear error code if the
1323 * connection was deliberately terminated at this end.
1324 */
1325 if (no_shell_flag && received_signal == SIGTERM) {
1326 received_signal = 0;
1327 exit_status = 0;
1328 }
1329
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001330 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001331 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001332
1333 /*
1334 * In interactive mode (with pseudo tty) display a message indicating
1335 * that the connection has been closed.
1336 */
1337 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1338 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1339 buffer_append(&stderr_buffer, buf, strlen(buf));
1340 }
1341
Damien Miller95def091999-11-25 00:26:21 +11001342 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001343 while (buffer_len(&stdout_buffer) > 0) {
1344 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001345 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001346 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001347 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001348 break;
1349 }
Damien Miller95def091999-11-25 00:26:21 +11001350 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001351 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001352 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001353
Damien Miller95def091999-11-25 00:26:21 +11001354 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001355 while (buffer_len(&stderr_buffer) > 0) {
1356 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001357 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001358 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001359 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001360 break;
1361 }
Damien Miller95def091999-11-25 00:26:21 +11001362 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001363 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001364 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001365
Damien Miller95def091999-11-25 00:26:21 +11001366 /* Clear and free any buffers. */
1367 memset(buf, 0, sizeof(buf));
1368 buffer_free(&stdin_buffer);
1369 buffer_free(&stdout_buffer);
1370 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001371
Damien Miller95def091999-11-25 00:26:21 +11001372 /* Report bytes transferred, and transfer rates. */
1373 total_time = get_current_time() - start_time;
1374 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001375 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001376 if (total_time > 0)
1377 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001378 stdin_bytes / total_time, stdout_bytes / total_time,
1379 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001380
1381 /* Return the exit status of the program. */
1382 debug("Exit status %d", exit_status);
1383 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384}
Damien Millerb38eff82000-04-01 11:09:21 +10001385
1386/*********/
1387
Ben Lindstrombba81212001-06-25 05:01:22 +00001388static void
Damien Miller630d6f42002-01-22 23:17:30 +11001389client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001390{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001391 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001392 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001393 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001394 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001395 memset(data, 0, data_len);
1396 xfree(data);
1397}
Ben Lindstrombba81212001-06-25 05:01:22 +00001398static void
Damien Miller630d6f42002-01-22 23:17:30 +11001399client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001400{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001401 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001402 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001403 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001404 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001405 memset(data, 0, data_len);
1406 xfree(data);
1407}
Ben Lindstrombba81212001-06-25 05:01:22 +00001408static void
Damien Miller630d6f42002-01-22 23:17:30 +11001409client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001410{
Damien Millerb38eff82000-04-01 11:09:21 +10001411 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001412 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001413 /* Acknowledge the exit. */
1414 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1415 packet_send();
1416 /*
1417 * Must wait for packet to be sent since we are
1418 * exiting the loop.
1419 */
1420 packet_write_wait();
1421 /* Flag that we want to exit. */
1422 quit_pending = 1;
1423}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001424static void
1425client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1426{
1427 Channel *c = NULL;
1428 int remote_id, sock;
1429
1430 /* Read the remote channel number from the message. */
1431 remote_id = packet_get_int();
1432 packet_check_eom();
1433
1434 /*
1435 * Get a connection to the local authentication agent (this may again
1436 * get forwarded).
1437 */
1438 sock = ssh_get_authentication_socket();
1439
1440 /*
1441 * If we could not connect the agent, send an error message back to
1442 * the server. This should never happen unless the agent dies,
1443 * because authentication forwarding is only enabled if we have an
1444 * agent.
1445 */
1446 if (sock >= 0) {
1447 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1448 -1, 0, 0, 0, "authentication agent connection", 1);
1449 c->remote_id = remote_id;
1450 c->force_drain = 1;
1451 }
1452 if (c == NULL) {
1453 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1454 packet_put_int(remote_id);
1455 } else {
1456 /* Send a confirmation to the remote host. */
1457 debug("Forwarding authentication connection.");
1458 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1459 packet_put_int(remote_id);
1460 packet_put_int(c->self);
1461 }
1462 packet_send();
1463}
Damien Millerb38eff82000-04-01 11:09:21 +10001464
Ben Lindstrombba81212001-06-25 05:01:22 +00001465static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001466client_request_forwarded_tcpip(const char *request_type, int rchan)
1467{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001468 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001469 char *listen_address, *originator_address;
1470 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001471 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001472
1473 /* Get rest of the packet */
1474 listen_address = packet_get_string(NULL);
1475 listen_port = packet_get_int();
1476 originator_address = packet_get_string(NULL);
1477 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001478 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001479
1480 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1481 listen_address, listen_port, originator_address, originator_port);
1482
Ben Lindstrom173e6462001-07-04 05:15:15 +00001483 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001484 if (sock < 0) {
1485 xfree(originator_address);
1486 xfree(listen_address);
1487 return NULL;
1488 }
1489 c = channel_new("forwarded-tcpip",
1490 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1491 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001492 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001493 xfree(originator_address);
1494 xfree(listen_address);
1495 return c;
1496}
1497
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001498static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001499client_request_x11(const char *request_type, int rchan)
1500{
1501 Channel *c = NULL;
1502 char *originator;
1503 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001504 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001505
1506 if (!options.forward_x11) {
1507 error("Warning: ssh server tried X11 forwarding.");
1508 error("Warning: this is probably a break in attempt by a malicious server.");
1509 return NULL;
1510 }
1511 originator = packet_get_string(NULL);
1512 if (datafellows & SSH_BUG_X11FWD) {
1513 debug2("buggy server: x11 request w/o originator_port");
1514 originator_port = 0;
1515 } else {
1516 originator_port = packet_get_int();
1517 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001518 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001519 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001520 debug("client_request_x11: request from %s %d", originator,
1521 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001522 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001523 sock = x11_connect_display();
1524 if (sock < 0)
1525 return NULL;
1526 c = channel_new("x11",
1527 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001528 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001529 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001530 return c;
1531}
1532
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001533static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001534client_request_agent(const char *request_type, int rchan)
1535{
1536 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001537 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001538
1539 if (!options.forward_agent) {
1540 error("Warning: ssh server tried agent forwarding.");
1541 error("Warning: this is probably a break in attempt by a malicious server.");
1542 return NULL;
1543 }
1544 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001545 if (sock < 0)
1546 return NULL;
1547 c = channel_new("authentication agent connection",
1548 SSH_CHANNEL_OPEN, sock, sock, -1,
1549 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001550 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001551 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001552 return c;
1553}
1554
Damien Millerbd483e72000-04-30 10:00:53 +10001555/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001556static void
Damien Miller630d6f42002-01-22 23:17:30 +11001557client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001558{
1559 Channel *c = NULL;
1560 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001561 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001562 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001563
1564 ctype = packet_get_string(&len);
1565 rchan = packet_get_int();
1566 rwindow = packet_get_int();
1567 rmaxpack = packet_get_int();
1568
Damien Millere247cc42000-05-07 12:03:14 +10001569 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001570 ctype, rchan, rwindow, rmaxpack);
1571
Damien Miller0bc1bd82000-11-13 22:57:25 +11001572 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1573 c = client_request_forwarded_tcpip(ctype, rchan);
1574 } else if (strcmp(ctype, "x11") == 0) {
1575 c = client_request_x11(ctype, rchan);
1576 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1577 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001578 }
1579/* XXX duplicate : */
1580 if (c != NULL) {
1581 debug("confirm %s", ctype);
1582 c->remote_id = rchan;
1583 c->remote_window = rwindow;
1584 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001585 if (c->type != SSH_CHANNEL_CONNECTING) {
1586 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1587 packet_put_int(c->remote_id);
1588 packet_put_int(c->self);
1589 packet_put_int(c->local_window);
1590 packet_put_int(c->local_maxpacket);
1591 packet_send();
1592 }
Damien Millerbd483e72000-04-30 10:00:53 +10001593 } else {
1594 debug("failure %s", ctype);
1595 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1596 packet_put_int(rchan);
1597 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001598 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001599 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001600 packet_put_cstring("");
1601 }
Damien Millerbd483e72000-04-30 10:00:53 +10001602 packet_send();
1603 }
1604 xfree(ctype);
1605}
Ben Lindstrombba81212001-06-25 05:01:22 +00001606static void
Damien Miller630d6f42002-01-22 23:17:30 +11001607client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001608{
1609 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001610 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001611 char *rtype;
1612
1613 id = packet_get_int();
1614 rtype = packet_get_string(NULL);
1615 reply = packet_get_char();
1616
1617 debug("client_input_channel_req: channel %d rtype %s reply %d",
1618 id, rtype, reply);
1619
Damien Miller3bbd8782004-06-18 22:23:22 +10001620 if (id == -1) {
1621 error("client_input_channel_req: request for channel -1");
1622 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001623 error("client_input_channel_req: channel %d: unknown channel", id);
1624 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001625 exitval = packet_get_int();
1626 if (id == session_ident) {
1627 success = 1;
1628 exit_status = exitval;
1629 } else if (c->ctl_fd == -1) {
1630 error("client_input_channel_req: unexpected channel %d",
1631 session_ident);
1632 } else {
1633 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1634 success = 1;
1635 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001636 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001637 }
1638 if (reply) {
1639 packet_start(success ?
1640 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001641 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001642 packet_send();
1643 }
1644 xfree(rtype);
1645}
Damien Millerc3fa4072002-01-22 23:21:58 +11001646static void
1647client_input_global_request(int type, u_int32_t seq, void *ctxt)
1648{
1649 char *rtype;
1650 int want_reply;
1651 int success = 0;
1652
1653 rtype = packet_get_string(NULL);
1654 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001655 debug("client_input_global_request: rtype %s want_reply %d",
1656 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001657 if (want_reply) {
1658 packet_start(success ?
1659 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1660 packet_send();
1661 packet_write_wait();
1662 }
1663 xfree(rtype);
1664}
Damien Millerbd483e72000-04-30 10:00:53 +10001665
Damien Miller0e220db2004-06-15 10:34:08 +10001666void
Darren Tuckerfc959702004-07-17 16:12:08 +10001667client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001668 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001669 dispatch_fn *subsys_repl)
1670{
1671 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001672 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001673
1674 debug2("%s: id %d", __func__, id);
1675
Darren Tucker5d78de62004-11-05 20:35:44 +11001676 if ((c = channel_lookup(id)) == NULL)
1677 fatal("client_session2_setup: channel %d: unknown channel", id);
1678
Damien Miller0e220db2004-06-15 10:34:08 +10001679 if (want_tty) {
1680 struct winsize ws;
1681 struct termios tio;
1682
1683 /* Store window size in the packet. */
1684 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1685 memset(&ws, 0, sizeof(ws));
1686
1687 channel_request_start(id, "pty-req", 0);
1688 packet_put_cstring(term != NULL ? term : "");
1689 packet_put_int(ws.ws_col);
1690 packet_put_int(ws.ws_row);
1691 packet_put_int(ws.ws_xpixel);
1692 packet_put_int(ws.ws_ypixel);
1693 tio = get_saved_tio();
1694 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1695 packet_send();
1696 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001697 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001698 }
1699
1700 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001701 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001702 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001703 char *name, *val;
1704
1705 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001706 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001707 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001708 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001709 if ((val = strchr(name, '=')) == NULL) {
1710 free(name);
1711 continue;
1712 }
1713 *val++ = '\0';
1714
1715 matched = 0;
1716 for (j = 0; j < options.num_send_env; j++) {
1717 if (match_pattern(name, options.send_env[j])) {
1718 matched = 1;
1719 break;
1720 }
1721 }
1722 if (!matched) {
1723 debug3("Ignored env %s", name);
1724 free(name);
1725 continue;
1726 }
1727
1728 debug("Sending env %s = %s", name, val);
1729 channel_request_start(id, "env", 0);
1730 packet_put_cstring(name);
1731 packet_put_cstring(val);
1732 packet_send();
1733 free(name);
1734 }
1735 }
1736
1737 len = buffer_len(cmd);
1738 if (len > 0) {
1739 if (len > 900)
1740 len = 900;
1741 if (want_subsystem) {
1742 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1743 channel_request_start(id, "subsystem", subsys_repl != NULL);
1744 if (subsys_repl != NULL) {
1745 /* register callback for reply */
1746 /* XXX we assume that client_loop has already been called */
1747 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1748 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1749 }
1750 } else {
1751 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1752 channel_request_start(id, "exec", 0);
1753 }
1754 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1755 packet_send();
1756 } else {
1757 channel_request_start(id, "shell", 0);
1758 packet_send();
1759 }
1760}
1761
Ben Lindstrombba81212001-06-25 05:01:22 +00001762static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001763client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001764{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001765 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001766
Damien Miller1383bd82000-04-06 12:32:37 +10001767 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1768 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1769 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1770 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001771 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001772 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1773 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001774 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001775 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001776 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001777
1778 /* rekeying */
1779 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001780
1781 /* global request reply messages */
1782 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1783 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001784}
Ben Lindstrombba81212001-06-25 05:01:22 +00001785static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001786client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001787{
1788 dispatch_init(NULL);
1789 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1790 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1791 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001792 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1793 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
1794 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001795 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
1796 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
1797 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11001798
1799 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10001800 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11001801 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
1802 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10001803}
Ben Lindstrombba81212001-06-25 05:01:22 +00001804static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001805client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001806{
1807 client_init_dispatch_13();
1808 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
1809 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
1810}
Ben Lindstromdb47f382001-07-04 05:10:27 +00001811static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001812client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001813{
Damien Miller1383bd82000-04-06 12:32:37 +10001814 if (compat20)
1815 client_init_dispatch_20();
1816 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001817 client_init_dispatch_13();
1818 else
1819 client_init_dispatch_15();
1820}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001821
1822/* client specific fatal cleanup */
1823void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001824cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001825{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001826 leave_raw_mode();
1827 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10001828 if (options.control_path != NULL && control_fd != -1)
1829 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001830 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001831}