blob: 0c700dbd43fb87eec1db1954a46e570646045280 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: clientloop.c,v 1.170 2006/07/22 20:48:22 stevesk Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
15 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 *
Damien Miller1383bd82000-04-06 12:32:37 +100038 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000039 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110040 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110060 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
62#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110063
Damien Millerf17883e2006-03-15 11:45:54 +110064#include <sys/types.h>
65#ifdef HAVE_SYS_STAT_H
66# include <sys/stat.h>
67#endif
Damien Millere3b60b52006-07-10 21:08:03 +100068#include <sys/socket.h>
Damien Miller17e91c02006-03-15 11:28:34 +110069#include <sys/ioctl.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110070
Damien Millerc7b06362006-03-15 11:53:45 +110071#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100072#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110073#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110074#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110075#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110076#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100077#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110078#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100079#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "ssh1.h"
83#include "ssh2.h"
84#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085#include "packet.h"
86#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100087#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000088#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100089#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100090#include "buffer.h"
91#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110092#include "key.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +000093#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000094#include "log.h"
95#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000096#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +110097#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "authfd.h"
99#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000100#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000101#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000102#include "monitor_fdpass.h"
103#include "match.h"
104#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100105
106/* import options */
107extern Options options;
108
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109/* Flag indicating that stdin should be redirected from /dev/null. */
110extern int stdin_null_flag;
111
Damien Millerd6965512003-12-17 16:31:53 +1100112/* Flag indicating that no shell has been requested */
113extern int no_shell_flag;
114
Damien Miller0e220db2004-06-15 10:34:08 +1000115/* Control socket */
116extern int control_fd;
117
Damien Miller5428f641999-11-25 11:54:57 +1100118/*
119 * Name of the host we are connecting to. This is the name given on the
120 * command line, or the HostName specified for the user-supplied name in a
121 * configuration file.
122 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123extern char *host;
124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Flag to indicate that we have received a window change signal which has
127 * not yet been processed. This will cause a message indicating the new
128 * window size to be sent to the server a little later. This is volatile
129 * because this is updated in a signal handler.
130 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000131static volatile sig_atomic_t received_window_change_signal = 0;
132static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Damien Miller788f2122005-11-05 15:14:59 +1100134/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135static int in_non_blocking_mode = 0;
136
137/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000138static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Damien Millerad833b32000-08-23 10:46:23 +1000139static int escape_char; /* Escape character. */
Damien Miller95def091999-11-25 00:26:21 +1100140static int escape_pending; /* Last character was the escape character */
141static int last_was_cr; /* Last character was a newline. */
142static int exit_status; /* Used to store the exit status of the command. */
143static int stdin_eof; /* EOF has been encountered on standard error. */
144static Buffer stdin_buffer; /* Buffer for stdin data. */
145static Buffer stdout_buffer; /* Buffer for stdout data. */
146static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000147static u_long stdin_bytes, stdout_bytes, stderr_bytes;
148static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100149static int connection_in; /* Connection to server (input). */
150static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000151static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000152static int session_closed = 0; /* In SSH2: login session closed. */
Damien Miller509b0102003-12-17 16:33:10 +1100153static int server_alive_timeouts = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Ben Lindstrombba81212001-06-25 05:01:22 +0000155static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000156int session_ident = -1;
157
Damien Miller0e220db2004-06-15 10:34:08 +1000158struct confirm_ctx {
159 int want_tty;
160 int want_subsys;
Damien Miller13390022005-07-06 09:44:19 +1000161 int want_x_fwd;
162 int want_agent_fwd;
Damien Miller0e220db2004-06-15 10:34:08 +1000163 Buffer cmd;
164 char *term;
165 struct termios tio;
Damien Miller3756dce2004-06-18 01:17:29 +1000166 char **env;
Damien Miller0e220db2004-06-15 10:34:08 +1000167};
168
Ben Lindstromf28f6342001-04-04 02:03:04 +0000169/*XXX*/
170extern Kex *xxx_kex;
171
Damien Miller0e220db2004-06-15 10:34:08 +1000172void ssh_process_session2_setup(int, int, int, Buffer *);
173
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174/* Restores stdin to blocking mode. */
175
Ben Lindstrombba81212001-06-25 05:01:22 +0000176static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000177leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178{
Damien Miller95def091999-11-25 00:26:21 +1100179 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000180 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100181 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100182 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183}
184
Damien Miller95def091999-11-25 00:26:21 +1100185/* Puts stdin terminal in non-blocking mode. */
186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000188enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189{
Damien Miller95def091999-11-25 00:26:21 +1100190 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000191 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192}
193
Damien Miller5428f641999-11-25 11:54:57 +1100194/*
195 * Signal handler for the window change signal (SIGWINCH). This just sets a
196 * flag indicating that the window has changed.
197 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100198/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Damien Miller95def091999-11-25 00:26:21 +1100200window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Damien Miller95def091999-11-25 00:26:21 +1100202 received_window_change_signal = 1;
203 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204}
205
Damien Miller5428f641999-11-25 11:54:57 +1100206/*
207 * Signal handler for signals that cause the program to terminate. These
208 * signals must be trapped to restore terminal modes.
209 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100210/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000211static void
Damien Miller95def091999-11-25 00:26:21 +1100212signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000214 received_signal = sig;
215 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216}
217
Damien Miller5428f641999-11-25 11:54:57 +1100218/*
219 * Returns current time in seconds from Jan 1, 1970 with the maximum
220 * available resolution.
221 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Ben Lindstrombba81212001-06-25 05:01:22 +0000223static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000224get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225{
Damien Miller95def091999-11-25 00:26:21 +1100226 struct timeval tv;
227 gettimeofday(&tv, NULL);
228 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229}
230
Damien Miller17e7ed02005-06-17 12:54:33 +1000231#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
232void
233client_x11_get_proto(const char *display, const char *xauth_path,
234 u_int trusted, char **_proto, char **_data)
235{
236 char cmd[1024];
237 char line[512];
238 char xdisplay[512];
239 static char proto[512], data[512];
240 FILE *f;
241 int got_data = 0, generated = 0, do_unlink = 0, i;
242 char *xauthdir, *xauthfile;
243 struct stat st;
244
245 xauthdir = xauthfile = NULL;
246 *_proto = proto;
247 *_data = data;
248 proto[0] = data[0] = '\0';
249
250 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
251 debug("No xauth program.");
252 } else {
253 if (display == NULL) {
254 debug("x11_get_proto: DISPLAY not set");
255 return;
256 }
257 /*
258 * Handle FamilyLocal case where $DISPLAY does
259 * not match an authorization entry. For this we
260 * just try "xauth list unix:displaynum.screennum".
261 * XXX: "localhost" match to determine FamilyLocal
262 * is not perfect.
263 */
264 if (strncmp(display, "localhost:", 10) == 0) {
265 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
266 display + 10);
267 display = xdisplay;
268 }
269 if (trusted == 0) {
270 xauthdir = xmalloc(MAXPATHLEN);
271 xauthfile = xmalloc(MAXPATHLEN);
272 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
273 if (mkdtemp(xauthdir) != NULL) {
274 do_unlink = 1;
275 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
276 xauthdir);
277 snprintf(cmd, sizeof(cmd),
278 "%s -f %s generate %s " SSH_X11_PROTO
279 " untrusted timeout 1200 2>" _PATH_DEVNULL,
280 xauth_path, xauthfile, display);
281 debug2("x11_get_proto: %s", cmd);
282 if (system(cmd) == 0)
283 generated = 1;
284 }
285 }
286 snprintf(cmd, sizeof(cmd),
Darren Tuckerd89dbf22005-10-03 18:05:26 +1000287 "%s %s%s list %s 2>" _PATH_DEVNULL,
Damien Miller17e7ed02005-06-17 12:54:33 +1000288 xauth_path,
289 generated ? "-f " : "" ,
290 generated ? xauthfile : "",
291 display);
292 debug2("x11_get_proto: %s", cmd);
293 f = popen(cmd, "r");
294 if (f && fgets(line, sizeof(line), f) &&
295 sscanf(line, "%*s %511s %511s", proto, data) == 2)
296 got_data = 1;
297 if (f)
298 pclose(f);
299 }
300
301 if (do_unlink) {
302 unlink(xauthfile);
303 rmdir(xauthdir);
304 }
305 if (xauthdir)
306 xfree(xauthdir);
307 if (xauthfile)
308 xfree(xauthfile);
309
310 /*
311 * If we didn't get authentication data, just make up some
312 * data. The forwarding code will check the validity of the
313 * response anyway, and substitute this data. The X11
314 * server, however, will ignore this fake data and use
315 * whatever authentication mechanisms it was using otherwise
316 * for the local connection.
317 */
318 if (!got_data) {
319 u_int32_t rnd = 0;
320
321 logit("Warning: No xauth data; "
322 "using fake authentication data for X11 forwarding.");
323 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
324 for (i = 0; i < 16; i++) {
325 if (i % 4 == 0)
326 rnd = arc4random();
327 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
328 rnd & 0xff);
329 rnd >>= 8;
330 }
331 }
332}
333
Damien Miller5428f641999-11-25 11:54:57 +1100334/*
335 * This is called when the interactive is entered. This checks if there is
336 * an EOF coming on stdin. We must check this explicitly, as select() does
337 * not appear to wake up when redirecting from /dev/null.
338 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Ben Lindstrombba81212001-06-25 05:01:22 +0000340static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000341client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342{
Damien Miller95def091999-11-25 00:26:21 +1100343 int len;
344 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Damien Miller5428f641999-11-25 11:54:57 +1100346 /*
347 * If standard input is to be "redirected from /dev/null", we simply
348 * mark that we have seen an EOF and send an EOF message to the
349 * server. Otherwise, we try to read a single character; it appears
350 * that for some files, such /dev/null, select() never wakes up for
351 * read for this descriptor, which means that we never get EOF. This
352 * way we will get the EOF if stdin comes from /dev/null or similar.
353 */
Damien Miller95def091999-11-25 00:26:21 +1100354 if (stdin_null_flag) {
355 /* Fake EOF on stdin. */
356 debug("Sending eof.");
357 stdin_eof = 1;
358 packet_start(SSH_CMSG_EOF);
359 packet_send();
360 } else {
Damien Miller95def091999-11-25 00:26:21 +1100361 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000362
Damien Miller95def091999-11-25 00:26:21 +1100363 /* Check for immediate EOF on stdin. */
364 len = read(fileno(stdin), buf, 1);
365 if (len == 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100366 /* EOF. Record that we have seen it and send EOF to server. */
Damien Miller95def091999-11-25 00:26:21 +1100367 debug("Sending eof.");
368 stdin_eof = 1;
369 packet_start(SSH_CMSG_EOF);
370 packet_send();
371 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100372 /*
373 * Got data. We must store the data in the buffer,
374 * and also process it as an escape character if
375 * appropriate.
376 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000377 if ((u_char) buf[0] == escape_char)
Damien Miller95def091999-11-25 00:26:21 +1100378 escape_pending = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000379 else
Damien Miller95def091999-11-25 00:26:21 +1100380 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100381 }
Damien Miller95def091999-11-25 00:26:21 +1100382 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000384}
385
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386
Damien Miller5428f641999-11-25 11:54:57 +1100387/*
388 * Make packets from buffered stdin data, and buffer them for sending to the
389 * connection.
390 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Ben Lindstrombba81212001-06-25 05:01:22 +0000392static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000393client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000395 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396
Damien Miller95def091999-11-25 00:26:21 +1100397 /* Send buffered stdin data to the server. */
398 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100399 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100400 len = buffer_len(&stdin_buffer);
401 /* Keep the packets at reasonable size. */
402 if (len > packet_get_maxsize())
403 len = packet_get_maxsize();
404 packet_start(SSH_CMSG_STDIN_DATA);
405 packet_put_string(buffer_ptr(&stdin_buffer), len);
406 packet_send();
407 buffer_consume(&stdin_buffer, len);
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000408 stdin_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +1100409 /* If we have a pending EOF, send it now. */
410 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
411 packet_start(SSH_CMSG_EOF);
412 packet_send();
413 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415}
416
Damien Miller5428f641999-11-25 11:54:57 +1100417/*
418 * Checks if the client window has changed, and sends a packet about it to
419 * the server if so. The actual change is detected elsewhere (by a software
420 * interrupt on Unix); this just checks the flag and sends a message if
421 * appropriate.
422 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Ben Lindstrombba81212001-06-25 05:01:22 +0000424static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000425client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426{
Damien Miller1383bd82000-04-06 12:32:37 +1000427 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428
Damien Miller1383bd82000-04-06 12:32:37 +1000429 if (! received_window_change_signal)
430 return;
431 /** XXX race */
432 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433
Damien Millerd3444942000-09-30 14:20:03 +1100434 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000435
436 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000437 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000438 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000439 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
440 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000441 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100442 packet_put_int((u_int)ws.ws_row);
443 packet_put_int((u_int)ws.ws_col);
444 packet_put_int((u_int)ws.ws_xpixel);
445 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000446 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448}
449
Damien Miller509b0102003-12-17 16:33:10 +1100450static void
451client_global_request_reply(int type, u_int32_t seq, void *ctxt)
452{
453 server_alive_timeouts = 0;
454 client_global_request_reply_fwd(type, seq, ctxt);
455}
456
457static void
458server_alive_check(void)
459{
460 if (++server_alive_timeouts > options.server_alive_count_max)
461 packet_disconnect("Timeout, server not responding.");
462 packet_start(SSH2_MSG_GLOBAL_REQUEST);
463 packet_put_cstring("keepalive@openssh.com");
464 packet_put_char(1); /* boolean: want reply */
465 packet_send();
466}
467
Damien Miller5428f641999-11-25 11:54:57 +1100468/*
469 * Waits until the client can do something (some data becomes available on
470 * one of the file descriptors).
471 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000472static void
Damien Miller5e953212001-01-30 09:14:00 +1100473client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000474 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475{
Damien Miller509b0102003-12-17 16:33:10 +1100476 struct timeval tv, *tvp;
477 int ret;
478
Damien Miller5e953212001-01-30 09:14:00 +1100479 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000480 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481
Damien Miller1383bd82000-04-06 12:32:37 +1000482 if (!compat20) {
483 /* Read from the connection, unless our buffers are full. */
484 if (buffer_len(&stdout_buffer) < buffer_high &&
485 buffer_len(&stderr_buffer) < buffer_high &&
486 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100487 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000488 /*
489 * Read from stdin, unless we have seen EOF or have very much
490 * buffered data to send to the server.
491 */
492 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100493 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000494
495 /* Select stdout/stderr if have data in buffer. */
496 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100497 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000498 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100499 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000500 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000501 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000502 if (session_closed && !channel_still_open() &&
503 !packet_have_data_to_write()) {
504 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100505 memset(*readsetp, 0, *nallocp);
506 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000507 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000508 } else {
509 FD_SET(connection_in, *readsetp);
510 }
Damien Miller1383bd82000-04-06 12:32:37 +1000511 }
512
Damien Miller95def091999-11-25 00:26:21 +1100513 /* Select server connection if have data to write to the server. */
514 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100515 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100516
Damien Miller0e220db2004-06-15 10:34:08 +1000517 if (control_fd != -1)
518 FD_SET(control_fd, *readsetp);
519
Damien Miller5428f641999-11-25 11:54:57 +1100520 /*
521 * Wait for something to happen. This will suspend the process until
522 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100523 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100524 */
Damien Miller95def091999-11-25 00:26:21 +1100525
Damien Miller509b0102003-12-17 16:33:10 +1100526 if (options.server_alive_interval == 0 || !compat20)
527 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000528 else {
Damien Miller509b0102003-12-17 16:33:10 +1100529 tv.tv_sec = options.server_alive_interval;
530 tv.tv_usec = 0;
531 tvp = &tv;
532 }
533 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
534 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100535 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000536
537 /*
538 * We have to clear the select masks, because we return.
539 * We have to return, because the mainloop checks for the flags
540 * set by the signal handlers.
541 */
Damien Miller79faeff2001-11-12 11:06:32 +1100542 memset(*readsetp, 0, *nallocp);
543 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000544
Damien Miller95def091999-11-25 00:26:21 +1100545 if (errno == EINTR)
546 return;
547 /* Note: we might still have data in the buffers. */
548 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
549 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100550 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100551 } else if (ret == 0)
552 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553}
554
Ben Lindstrombba81212001-06-25 05:01:22 +0000555static void
Damien Millerad833b32000-08-23 10:46:23 +1000556client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557{
Damien Miller95def091999-11-25 00:26:21 +1100558 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000559 if (buffer_len(bout) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000560 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000561 if (buffer_len(berr) > 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000562 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Miller95def091999-11-25 00:26:21 +1100564 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565
Damien Miller5428f641999-11-25 11:54:57 +1100566 /*
567 * Free (and clear) the buffer to reduce the amount of data that gets
568 * written to swap.
569 */
Damien Millerad833b32000-08-23 10:46:23 +1000570 buffer_free(bin);
571 buffer_free(bout);
572 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Damien Miller95def091999-11-25 00:26:21 +1100574 /* Send the suspend signal to the program itself. */
575 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Darren Tucker5d78de62004-11-05 20:35:44 +1100577 /* Reset window sizes in case they have changed */
578 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000581 buffer_init(bin);
582 buffer_init(bout);
583 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584
Damien Miller95def091999-11-25 00:26:21 +1100585 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586}
587
Ben Lindstrombba81212001-06-25 05:01:22 +0000588static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100589client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590{
Damien Miller1383bd82000-04-06 12:32:37 +1000591 int len;
592 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Damien Miller5428f641999-11-25 11:54:57 +1100594 /*
595 * Read input from the server, and add any such data to the buffer of
596 * the packet subsystem.
597 */
Damien Miller95def091999-11-25 00:26:21 +1100598 if (FD_ISSET(connection_in, readset)) {
599 /* Read as much as possible. */
600 len = read(connection_in, buf, sizeof(buf));
601 if (len == 0) {
602 /* Received EOF. The remote host has closed the connection. */
603 snprintf(buf, sizeof buf, "Connection to %.300s closed by remote host.\r\n",
604 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606 quit_pending = 1;
607 return;
Damien Miller95def091999-11-25 00:26:21 +1100608 }
Damien Miller5428f641999-11-25 11:54:57 +1100609 /*
610 * There is a kernel bug on Solaris that causes select to
611 * sometimes wake up even though there is no data available.
612 */
Ben Lindstromebc88272001-03-06 03:34:40 +0000613 if (len < 0 && (errno == EAGAIN || errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100614 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller95def091999-11-25 00:26:21 +1100616 if (len < 0) {
617 /* An error has encountered. Perhaps there is a network problem. */
618 snprintf(buf, sizeof buf, "Read from remote host %.300s: %.100s\r\n",
619 host, strerror(errno));
620 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100621 quit_pending = 1;
622 return;
623 }
624 packet_process_incoming(buf, len);
625 }
Damien Miller1383bd82000-04-06 12:32:37 +1000626}
627
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000628static void
Damien Miller0e220db2004-06-15 10:34:08 +1000629client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
630{
631 int id;
632 Channel *c;
Darren Tuckerfc959702004-07-17 16:12:08 +1000633
Damien Miller0e220db2004-06-15 10:34:08 +1000634 id = packet_get_int();
635 packet_check_eom();
636
637 if ((c = channel_lookup(id)) == NULL) {
638 error("%s: no channel for id %d", __func__, id);
639 return;
640 }
641
642 if (type == SSH2_MSG_CHANNEL_SUCCESS)
643 debug2("Request suceeded on channel %d", id);
644 else if (type == SSH2_MSG_CHANNEL_FAILURE) {
645 error("Request failed on channel %d", id);
646 channel_free(c);
647 }
648}
649
650static void
651client_extra_session2_setup(int id, void *arg)
652{
653 struct confirm_ctx *cctx = arg;
Damien Miller13390022005-07-06 09:44:19 +1000654 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +1000655 Channel *c;
Damien Miller3756dce2004-06-18 01:17:29 +1000656 int i;
Darren Tuckerfc959702004-07-17 16:12:08 +1000657
Damien Miller0e220db2004-06-15 10:34:08 +1000658 if (cctx == NULL)
659 fatal("%s: cctx == NULL", __func__);
660 if ((c = channel_lookup(id)) == NULL)
661 fatal("%s: no channel for id %d", __func__, id);
662
Damien Miller46d38de2005-07-17 17:02:09 +1000663 display = getenv("DISPLAY");
Damien Miller13390022005-07-06 09:44:19 +1000664 if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
665 char *proto, *data;
666 /* Get reasonable local authentication information. */
667 client_x11_get_proto(display, options.xauth_location,
668 options.forward_x11_trusted, &proto, &data);
669 /* Request forwarding with authentication spoofing. */
670 debug("Requesting X11 forwarding with authentication spoofing.");
671 x11_request_forwarding_with_spoofing(id, display, proto, data);
672 /* XXX wait for reply */
673 }
674
675 if (cctx->want_agent_fwd && options.forward_agent) {
676 debug("Requesting authentication agent forwarding.");
677 channel_request_start(id, "auth-agent-req@openssh.com", 0);
678 packet_send();
679 }
680
Darren Tuckerfc959702004-07-17 16:12:08 +1000681 client_session2_setup(id, cctx->want_tty, cctx->want_subsys,
Damien Miller3756dce2004-06-18 01:17:29 +1000682 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env,
Damien Miller0e220db2004-06-15 10:34:08 +1000683 client_subsystem_reply);
Damien Miller23f07702004-06-18 01:19:03 +1000684
Damien Miller0e220db2004-06-15 10:34:08 +1000685 c->confirm_ctx = NULL;
686 buffer_free(&cctx->cmd);
Damien Miller3756dce2004-06-18 01:17:29 +1000687 xfree(cctx->term);
688 if (cctx->env != NULL) {
689 for (i = 0; cctx->env[i] != NULL; i++)
690 xfree(cctx->env[i]);
691 xfree(cctx->env);
Darren Tuckerfc959702004-07-17 16:12:08 +1000692 }
Damien Miller3756dce2004-06-18 01:17:29 +1000693 xfree(cctx);
Damien Miller0e220db2004-06-15 10:34:08 +1000694}
695
696static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100697client_process_control(fd_set *readset)
Damien Miller0e220db2004-06-15 10:34:08 +1000698{
699 Buffer m;
700 Channel *c;
Damien Millereccb9de2005-06-17 12:59:34 +1000701 int client_fd, new_fd[3], ver, allowed;
Damien Miller0e220db2004-06-15 10:34:08 +1000702 socklen_t addrlen;
703 struct sockaddr_storage addr;
704 struct confirm_ctx *cctx;
705 char *cmd;
Damien Millereccb9de2005-06-17 12:59:34 +1000706 u_int i, len, env_len, command, flags;
Damien Miller0e220db2004-06-15 10:34:08 +1000707 uid_t euid;
708 gid_t egid;
709
710 /*
711 * Accept connection on control socket
712 */
713 if (control_fd == -1 || !FD_ISSET(control_fd, readset))
714 return;
715
716 memset(&addr, 0, sizeof(addr));
717 addrlen = sizeof(addr);
718 if ((client_fd = accept(control_fd,
719 (struct sockaddr*)&addr, &addrlen)) == -1) {
720 error("%s accept: %s", __func__, strerror(errno));
721 return;
722 }
723
724 if (getpeereid(client_fd, &euid, &egid) < 0) {
725 error("%s getpeereid failed: %s", __func__, strerror(errno));
726 close(client_fd);
727 return;
728 }
729 if ((euid != 0) && (getuid() != euid)) {
730 error("control mode uid mismatch: peer euid %u != uid %u",
731 (u_int) euid, (u_int) getuid());
732 close(client_fd);
733 return;
734 }
Damien Miller23f07702004-06-18 01:19:03 +1000735
Damien Miller0e220db2004-06-15 10:34:08 +1000736 unset_nonblock(client_fd);
737
Darren Tucker7ebfc102004-11-07 20:06:19 +1100738 /* Read command */
Damien Miller0e220db2004-06-15 10:34:08 +1000739 buffer_init(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100740 if (ssh_msg_recv(client_fd, &m) == -1) {
741 error("%s: client msg_recv failed", __func__);
742 close(client_fd);
743 buffer_free(&m);
744 return;
745 }
Damien Miller13390022005-07-06 09:44:19 +1000746 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100747 error("%s: wrong client version %d", __func__, ver);
748 buffer_free(&m);
749 close(client_fd);
750 return;
751 }
Damien Miller0e220db2004-06-15 10:34:08 +1000752
Darren Tucker7ebfc102004-11-07 20:06:19 +1100753 allowed = 1;
754 command = buffer_get_int(&m);
755 flags = buffer_get_int(&m);
756
757 buffer_clear(&m);
758
759 switch (command) {
760 case SSHMUX_COMMAND_OPEN:
Damien Millerd14b1e72005-06-16 13:19:41 +1000761 if (options.control_master == SSHCTL_MASTER_ASK ||
762 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100763 allowed = ask_permission("Allow shared connection "
764 "to %s? ", host);
765 /* continue below */
766 break;
767 case SSHMUX_COMMAND_TERMINATE:
Damien Millerd14b1e72005-06-16 13:19:41 +1000768 if (options.control_master == SSHCTL_MASTER_ASK ||
769 options.control_master == SSHCTL_MASTER_AUTO_ASK)
Darren Tucker7ebfc102004-11-07 20:06:19 +1100770 allowed = ask_permission("Terminate shared connection "
771 "to %s? ", host);
772 if (allowed)
773 quit_pending = 1;
Darren Tucker47eede72005-03-14 23:08:12 +1100774 /* FALLTHROUGH */
Darren Tucker7ebfc102004-11-07 20:06:19 +1100775 case SSHMUX_COMMAND_ALIVE_CHECK:
776 /* Reply for SSHMUX_COMMAND_TERMINATE and ALIVE_CHECK */
777 buffer_clear(&m);
778 buffer_put_int(&m, allowed);
779 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000780 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Darren Tucker7ebfc102004-11-07 20:06:19 +1100781 error("%s: client msg_send failed", __func__);
782 close(client_fd);
783 buffer_free(&m);
784 return;
785 }
786 buffer_free(&m);
787 close(client_fd);
788 return;
789 default:
790 error("Unsupported command %d", command);
791 buffer_free(&m);
792 close(client_fd);
793 return;
794 }
795
796 /* Reply for SSHMUX_COMMAND_OPEN */
797 buffer_clear(&m);
Damien Miller23f07702004-06-18 01:19:03 +1000798 buffer_put_int(&m, allowed);
Damien Miller0e220db2004-06-15 10:34:08 +1000799 buffer_put_int(&m, getpid());
Damien Miller13390022005-07-06 09:44:19 +1000800 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000801 error("%s: client msg_send failed", __func__);
802 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000803 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000804 return;
805 }
Damien Miller0e220db2004-06-15 10:34:08 +1000806
Damien Miller23f07702004-06-18 01:19:03 +1000807 if (!allowed) {
808 error("Refused control connection");
809 close(client_fd);
810 buffer_free(&m);
811 return;
812 }
813
Darren Tucker7ebfc102004-11-07 20:06:19 +1100814 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000815 if (ssh_msg_recv(client_fd, &m) == -1) {
816 error("%s: client msg_recv failed", __func__);
817 close(client_fd);
Damien Miller23f07702004-06-18 01:19:03 +1000818 buffer_free(&m);
Damien Miller0e220db2004-06-15 10:34:08 +1000819 return;
820 }
Damien Miller13390022005-07-06 09:44:19 +1000821 if ((ver = buffer_get_char(&m)) != SSHMUX_VER) {
Damien Miller0e220db2004-06-15 10:34:08 +1000822 error("%s: wrong client version %d", __func__, ver);
823 buffer_free(&m);
824 close(client_fd);
825 return;
826 }
827
Damien Miller07d86be2006-03-26 14:19:21 +1100828 cctx = xcalloc(1, sizeof(*cctx));
Darren Tucker7ebfc102004-11-07 20:06:19 +1100829 cctx->want_tty = (flags & SSHMUX_FLAG_TTY) != 0;
830 cctx->want_subsys = (flags & SSHMUX_FLAG_SUBSYS) != 0;
Damien Miller13390022005-07-06 09:44:19 +1000831 cctx->want_x_fwd = (flags & SSHMUX_FLAG_X11_FWD) != 0;
832 cctx->want_agent_fwd = (flags & SSHMUX_FLAG_AGENT_FWD) != 0;
Damien Miller0e220db2004-06-15 10:34:08 +1000833 cctx->term = buffer_get_string(&m, &len);
834
835 cmd = buffer_get_string(&m, &len);
836 buffer_init(&cctx->cmd);
837 buffer_append(&cctx->cmd, cmd, strlen(cmd));
838
Damien Miller3756dce2004-06-18 01:17:29 +1000839 env_len = buffer_get_int(&m);
840 env_len = MIN(env_len, 4096);
841 debug3("%s: receiving %d env vars", __func__, env_len);
842 if (env_len != 0) {
Damien Miller07d86be2006-03-26 14:19:21 +1100843 cctx->env = xcalloc(env_len + 1, sizeof(*cctx->env));
Damien Miller3756dce2004-06-18 01:17:29 +1000844 for (i = 0; i < env_len; i++)
845 cctx->env[i] = buffer_get_string(&m, &len);
846 cctx->env[i] = NULL;
847 }
848
Damien Miller0e220db2004-06-15 10:34:08 +1000849 debug2("%s: accepted tty %d, subsys %d, cmd %s", __func__,
850 cctx->want_tty, cctx->want_subsys, cmd);
Damien Miller24fd8dd2006-06-13 13:00:09 +1000851 xfree(cmd);
Damien Miller0e220db2004-06-15 10:34:08 +1000852
853 /* Gather fds from client */
854 new_fd[0] = mm_receive_fd(client_fd);
855 new_fd[1] = mm_receive_fd(client_fd);
856 new_fd[2] = mm_receive_fd(client_fd);
857
858 debug2("%s: got fds stdin %d, stdout %d, stderr %d", __func__,
859 new_fd[0], new_fd[1], new_fd[2]);
860
861 /* Try to pick up ttymodes from client before it goes raw */
862 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
863 error("%s: tcgetattr: %s", __func__, strerror(errno));
864
Darren Tucker7ebfc102004-11-07 20:06:19 +1100865 /* This roundtrip is just for synchronisation of ttymodes */
Damien Miller0e220db2004-06-15 10:34:08 +1000866 buffer_clear(&m);
Damien Miller13390022005-07-06 09:44:19 +1000867 if (ssh_msg_send(client_fd, SSHMUX_VER, &m) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +1000868 error("%s: client msg_send failed", __func__);
869 close(client_fd);
870 close(new_fd[0]);
871 close(new_fd[1]);
872 close(new_fd[2]);
Damien Miller23f07702004-06-18 01:19:03 +1000873 buffer_free(&m);
Darren Tucker7ebfc102004-11-07 20:06:19 +1100874 xfree(cctx->term);
875 if (env_len != 0) {
876 for (i = 0; i < env_len; i++)
877 xfree(cctx->env[i]);
878 xfree(cctx->env);
879 }
Damien Miller0e220db2004-06-15 10:34:08 +1000880 return;
881 }
882 buffer_free(&m);
883
884 /* enable nonblocking unless tty */
885 if (!isatty(new_fd[0]))
886 set_nonblock(new_fd[0]);
887 if (!isatty(new_fd[1]))
888 set_nonblock(new_fd[1]);
889 if (!isatty(new_fd[2]))
890 set_nonblock(new_fd[2]);
891
892 set_nonblock(client_fd);
893
Darren Tuckerfc959702004-07-17 16:12:08 +1000894 c = channel_new("session", SSH_CHANNEL_OPENING,
Damien Miller0e220db2004-06-15 10:34:08 +1000895 new_fd[0], new_fd[1], new_fd[2],
896 CHAN_SES_WINDOW_DEFAULT, CHAN_SES_PACKET_DEFAULT,
897 CHAN_EXTENDED_WRITE, "client-session", /*nonblock*/0);
898
899 /* XXX */
900 c->ctl_fd = client_fd;
901
902 debug3("%s: channel_new: %d", __func__, c->self);
903
904 channel_send_open(c->self);
905 channel_register_confirm(c->self, client_extra_session2_setup, cctx);
906}
907
908static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000909process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000910{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000911 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100912 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000913 int delete = 0;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000914 int local = 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100915 u_short cancel_port;
916 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000917
918 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000919 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000920 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000921 if (s == NULL)
922 goto out;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000923 while (*s && isspace(*s))
924 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000925 if (*s == '-')
926 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000927 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000928 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000929
Darren Tucker1973c882004-05-24 10:34:36 +1000930 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000931 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000932 logit(" -L[bind_address:]port:host:hostport "
933 "Request local forward");
934 logit(" -R[bind_address:]port:host:hostport "
935 "Request remote forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000936 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000937 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100938 if (!options.permit_local_command)
939 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000940 logit(" !args "
941 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100942 goto out;
943 }
944
945 if (*s == '!' && options.permit_local_command) {
946 s++;
947 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000948 goto out;
949 }
950
951 if (*s == 'K') {
952 delete = 1;
953 s++;
954 }
955 if (*s != 'L' && *s != 'R') {
Damien Miller996acd22003-04-09 20:59:48 +1000956 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000957 goto out;
958 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000959 if (*s == 'L')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000960 local = 1;
Darren Tuckere7066df2004-05-24 10:18:05 +1000961 if (local && delete) {
962 logit("Not supported.");
963 goto out;
964 }
965 if ((!local || delete) && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000966 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000967 goto out;
968 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000969
970 s++;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000971 while (*s && isspace(*s))
972 s++;
973
Darren Tuckere7066df2004-05-24 10:18:05 +1000974 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100975 cancel_port = 0;
976 cancel_host = hpdelim(&s); /* may be NULL */
977 if (s != NULL) {
978 cancel_port = a2port(s);
979 cancel_host = cleanhostname(cancel_host);
980 } else {
981 cancel_port = a2port(cancel_host);
982 cancel_host = NULL;
983 }
984 if (cancel_port == 0) {
985 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000986 goto out;
987 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100988 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000989 } else {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100990 if (!parse_forward(&fwd, s)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000991 logit("Bad forwarding specification.");
992 goto out;
993 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000994 if (local) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100995 if (channel_setup_local_fwd_listener(fwd.listen_host,
996 fwd.listen_port, fwd.connect_host,
997 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000998 logit("Port forwarding failed.");
999 goto out;
1000 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001001 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001002 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001003 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001004 fwd.connect_port) < 0) {
1005 logit("Port forwarding failed.");
1006 goto out;
1007 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001008 }
1009
Darren Tuckere7066df2004-05-24 10:18:05 +10001010 logit("Forwarding port.");
1011 }
1012
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001013out:
1014 signal(SIGINT, handler);
1015 enter_raw_mode();
1016 if (cmd)
1017 xfree(cmd);
1018}
1019
Damien Millerad833b32000-08-23 10:46:23 +10001020/* process the characters one by one */
Ben Lindstrombba81212001-06-25 05:01:22 +00001021static int
Damien Millerad833b32000-08-23 10:46:23 +10001022process_escapes(Buffer *bin, Buffer *bout, Buffer *berr, char *buf, int len)
1023{
1024 char string[1024];
1025 pid_t pid;
1026 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001027 u_int i;
1028 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001029 char *s;
1030
Damien Millereccb9de2005-06-17 12:59:34 +10001031 if (len <= 0)
1032 return (0);
1033
1034 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001035 /* Get one character at a time. */
1036 ch = buf[i];
1037
1038 if (escape_pending) {
1039 /* We have previously seen an escape character. */
1040 /* Clear the flag now. */
1041 escape_pending = 0;
1042
1043 /* Process the escaped character. */
1044 switch (ch) {
1045 case '.':
1046 /* Terminate the connection. */
1047 snprintf(string, sizeof string, "%c.\r\n", escape_char);
1048 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001049
1050 quit_pending = 1;
1051 return -1;
1052
1053 case 'Z' - 64:
1054 /* Suspend the program. */
1055 /* Print a message to that effect to the user. */
1056 snprintf(string, sizeof string, "%c^Z [suspend ssh]\r\n", escape_char);
1057 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001058
1059 /* Restore terminal modes and suspend. */
1060 client_suspend_self(bin, bout, berr);
1061
1062 /* We have been continued. */
1063 continue;
1064
Damien Miller54c45982003-05-15 10:20:13 +10001065 case 'B':
1066 if (compat20) {
1067 snprintf(string, sizeof string,
1068 "%cB\r\n", escape_char);
1069 buffer_append(berr, string,
1070 strlen(string));
1071 channel_request_start(session_ident,
1072 "break", 0);
1073 packet_put_int(1000);
1074 packet_send();
1075 }
1076 continue;
1077
Ben Lindstromf28f6342001-04-04 02:03:04 +00001078 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001079 if (compat20) {
1080 if (datafellows & SSH_BUG_NOREKEY)
Damien Miller996acd22003-04-09 20:59:48 +10001081 logit("Server does not support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001082 else
1083 need_rekeying = 1;
1084 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001085 continue;
1086
Damien Millerad833b32000-08-23 10:46:23 +10001087 case '&':
Damien Millerad833b32000-08-23 10:46:23 +10001088 /*
1089 * Detach the program (continue to serve connections,
1090 * but put in background and no more new connections).
1091 */
Damien Miller96507ef2001-11-12 10:52:25 +11001092 /* Restore tty modes. */
1093 leave_raw_mode();
1094
1095 /* Stop listening for new connections. */
1096 channel_stop_listening();
1097
1098 snprintf(string, sizeof string,
1099 "%c& [backgrounded]\n", escape_char);
1100 buffer_append(berr, string, strlen(string));
1101
1102 /* Fork into background. */
1103 pid = fork();
1104 if (pid < 0) {
1105 error("fork: %.100s", strerror(errno));
1106 continue;
1107 }
1108 if (pid != 0) { /* This is the parent. */
1109 /* The parent just exits. */
1110 exit(0);
1111 }
1112 /* The child continues serving connections. */
1113 if (compat20) {
1114 buffer_append(bin, "\004", 1);
1115 /* fake EOF on stdin */
1116 return -1;
1117 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001118 /*
1119 * Sending SSH_CMSG_EOF alone does not always appear
1120 * to be enough. So we try to send an EOF character
1121 * first.
1122 */
1123 packet_start(SSH_CMSG_STDIN_DATA);
1124 packet_put_string("\004", 1);
1125 packet_send();
1126 /* Close stdin. */
1127 stdin_eof = 1;
1128 if (buffer_len(bin) == 0) {
1129 packet_start(SSH_CMSG_EOF);
1130 packet_send();
1131 }
1132 }
Damien Miller96507ef2001-11-12 10:52:25 +11001133 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001134
1135 case '?':
1136 snprintf(string, sizeof string,
1137"%c?\r\n\
1138Supported escape sequences:\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001139%c. - terminate connection\r\n\
Damien Miller54c45982003-05-15 10:20:13 +10001140%cB - send a BREAK to the remote system\r\n\
Damien Miller06692862002-09-04 16:32:10 +10001141%cC - open a command line\r\n\
1142%cR - Request rekey (SSH protocol 2 only)\r\n\
1143%c^Z - suspend ssh\r\n\
1144%c# - list forwarded connections\r\n\
1145%c& - background ssh (when waiting for connections to terminate)\r\n\
1146%c? - this message\r\n\
1147%c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001148(Note that escapes are only recognized immediately after newline.)\r\n",
Damien Miller06692862002-09-04 16:32:10 +10001149 escape_char, escape_char, escape_char, escape_char,
1150 escape_char, escape_char, escape_char, escape_char,
Damien Miller54c45982003-05-15 10:20:13 +10001151 escape_char, escape_char, escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001152 buffer_append(berr, string, strlen(string));
1153 continue;
1154
1155 case '#':
1156 snprintf(string, sizeof string, "%c#\r\n", escape_char);
1157 buffer_append(berr, string, strlen(string));
1158 s = channel_open_message();
1159 buffer_append(berr, s, strlen(s));
1160 xfree(s);
1161 continue;
1162
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001163 case 'C':
Ben Lindstrom681d9322002-03-22 03:53:00 +00001164 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001165 continue;
1166
Damien Millerad833b32000-08-23 10:46:23 +10001167 default:
1168 if (ch != escape_char) {
1169 buffer_put_char(bin, escape_char);
1170 bytes++;
1171 }
1172 /* Escaped characters fall through here */
1173 break;
1174 }
1175 } else {
1176 /*
1177 * The previous character was not an escape char. Check if this
1178 * is an escape.
1179 */
1180 if (last_was_cr && ch == escape_char) {
1181 /* It is. Set the flag and continue to next character. */
1182 escape_pending = 1;
1183 continue;
1184 }
1185 }
1186
1187 /*
1188 * Normal character. Record whether it was a newline,
1189 * and append it to the buffer.
1190 */
1191 last_was_cr = (ch == '\r' || ch == '\n');
1192 buffer_put_char(bin, ch);
1193 bytes++;
1194 }
1195 return bytes;
1196}
1197
Ben Lindstrombba81212001-06-25 05:01:22 +00001198static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001199client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001200{
Damien Miller166fca82000-04-20 07:42:21 +10001201 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001202 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001203
Damien Miller95def091999-11-25 00:26:21 +11001204 /* Read input from stdin. */
1205 if (FD_ISSET(fileno(stdin), readset)) {
1206 /* Read as much as possible. */
1207 len = read(fileno(stdin), buf, sizeof(buf));
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001208 if (len < 0 && (errno == EAGAIN || errno == EINTR))
1209 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001210 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001211 /*
1212 * Received EOF or error. They are treated
1213 * similarly, except that an error message is printed
1214 * if it was an error condition.
1215 */
Damien Miller95def091999-11-25 00:26:21 +11001216 if (len < 0) {
1217 snprintf(buf, sizeof buf, "read: %.100s\r\n", strerror(errno));
1218 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001219 }
1220 /* Mark that we have seen EOF. */
1221 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001222 /*
1223 * Send an EOF message to the server unless there is
1224 * data in the buffer. If there is data in the
1225 * buffer, no message will be sent now. Code
1226 * elsewhere will send the EOF when the buffer
1227 * becomes empty if stdin_eof is set.
1228 */
Damien Miller95def091999-11-25 00:26:21 +11001229 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001230 packet_start(SSH_CMSG_EOF);
1231 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001232 }
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001233 } else if (escape_char == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001234 /*
1235 * Normal successful read, and no escape character.
1236 * Just append the data to buffer.
1237 */
Damien Miller95def091999-11-25 00:26:21 +11001238 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001239 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001240 /*
1241 * Normal, successful read. But we have an escape character
1242 * and have to process the characters one by one.
1243 */
Ben Lindstrome9613cf2001-03-05 06:14:02 +00001244 if (process_escapes(&stdin_buffer, &stdout_buffer,
1245 &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001246 return;
Damien Miller95def091999-11-25 00:26:21 +11001247 }
1248 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001249}
1250
Ben Lindstrombba81212001-06-25 05:01:22 +00001251static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001252client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001253{
Damien Miller95def091999-11-25 00:26:21 +11001254 int len;
1255 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001256
Damien Miller95def091999-11-25 00:26:21 +11001257 /* Write buffered output to stdout. */
1258 if (FD_ISSET(fileno(stdout), writeset)) {
1259 /* Write as much data as possible. */
1260 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001261 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001262 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001263 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001264 len = 0;
1265 else {
Damien Miller5428f641999-11-25 11:54:57 +11001266 /*
1267 * An error or EOF was encountered. Put an
1268 * error message to stderr buffer.
1269 */
Damien Miller95def091999-11-25 00:26:21 +11001270 snprintf(buf, sizeof buf, "write stdout: %.50s\r\n", strerror(errno));
1271 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001272 quit_pending = 1;
1273 return;
1274 }
1275 }
1276 /* Consume printed data from the buffer. */
1277 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001278 stdout_bytes += len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001279 }
Damien Miller95def091999-11-25 00:26:21 +11001280 /* Write buffered output to stderr. */
1281 if (FD_ISSET(fileno(stderr), writeset)) {
1282 /* Write as much data as possible. */
1283 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001284 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001285 if (len <= 0) {
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001286 if (errno == EINTR || errno == EAGAIN)
Damien Miller95def091999-11-25 00:26:21 +11001287 len = 0;
1288 else {
Damien Miller5428f641999-11-25 11:54:57 +11001289 /* EOF or error, but can't even print error message. */
Damien Miller95def091999-11-25 00:26:21 +11001290 quit_pending = 1;
1291 return;
1292 }
1293 }
1294 /* Consume printed characters from the buffer. */
1295 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001296 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001297 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298}
1299
Damien Miller5428f641999-11-25 11:54:57 +11001300/*
Damien Millerb38eff82000-04-01 11:09:21 +10001301 * Get packets from the connection input buffer, and process them as long as
1302 * there are packets available.
1303 *
1304 * Any unknown packets received during the actual
1305 * session cause the session to terminate. This is
1306 * intended to make debugging easier since no
1307 * confirmations are sent. Any compatible protocol
1308 * extensions must be negotiated during the
1309 * preparatory phase.
1310 */
1311
Ben Lindstrombba81212001-06-25 05:01:22 +00001312static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001313client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001314{
Ben Lindstromf28f6342001-04-04 02:03:04 +00001315 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001316}
1317
Damien Millerad833b32000-08-23 10:46:23 +10001318/* scan buf[] for '~' before sending data to the peer */
1319
Ben Lindstrombba81212001-06-25 05:01:22 +00001320static int
Damien Millerad833b32000-08-23 10:46:23 +10001321simple_escape_filter(Channel *c, char *buf, int len)
1322{
1323 /* XXX we assume c->extended is writeable */
1324 return process_escapes(&c->input, &c->output, &c->extended, buf, len);
1325}
1326
Ben Lindstrombba81212001-06-25 05:01:22 +00001327static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001328client_channel_closed(int id, void *arg)
1329{
Damien Miller3ec27592001-10-12 11:35:04 +10001330 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001331 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001332 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001333}
1334
Damien Millerb38eff82000-04-01 11:09:21 +10001335/*
Damien Miller5428f641999-11-25 11:54:57 +11001336 * Implements the interactive session with the server. This is called after
1337 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001338 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1339 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001340 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341
Damien Miller4af51302000-04-16 11:18:38 +10001342int
Damien Millerad833b32000-08-23 10:46:23 +10001343client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001344{
Damien Miller5e953212001-01-30 09:14:00 +11001345 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001346 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001347 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
1348 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001349 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001350
Damien Miller95def091999-11-25 00:26:21 +11001351 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001352
Damien Miller95def091999-11-25 00:26:21 +11001353 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001354
Damien Miller95def091999-11-25 00:26:21 +11001355 /* Initialize variables. */
1356 escape_pending = 0;
1357 last_was_cr = 1;
1358 exit_status = -1;
1359 stdin_eof = 0;
1360 buffer_high = 64 * 1024;
1361 connection_in = packet_get_connection_in();
1362 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001363 max_fd = MAX(connection_in, connection_out);
Damien Miller0e220db2004-06-15 10:34:08 +10001364 if (control_fd != -1)
1365 max_fd = MAX(max_fd, control_fd);
Damien Miller5e953212001-01-30 09:14:00 +11001366
1367 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001368 /* enable nonblocking unless tty */
1369 if (!isatty(fileno(stdin)))
1370 set_nonblock(fileno(stdin));
1371 if (!isatty(fileno(stdout)))
1372 set_nonblock(fileno(stdout));
1373 if (!isatty(fileno(stderr)))
1374 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001375 max_fd = MAX(max_fd, fileno(stdin));
1376 max_fd = MAX(max_fd, fileno(stdout));
1377 max_fd = MAX(max_fd, fileno(stderr));
1378 }
Damien Miller95def091999-11-25 00:26:21 +11001379 stdin_bytes = 0;
1380 stdout_bytes = 0;
1381 stderr_bytes = 0;
1382 quit_pending = 0;
1383 escape_char = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384
Damien Miller95def091999-11-25 00:26:21 +11001385 /* Initialize buffers. */
1386 buffer_init(&stdin_buffer);
1387 buffer_init(&stdout_buffer);
1388 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389
Damien Millerb38eff82000-04-01 11:09:21 +10001390 client_init_dispatch();
1391
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001392 /*
1393 * Set signal handlers, (e.g. to restore non-blocking mode)
1394 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1395 */
Darren Tucker07336da2004-11-05 20:02:16 +11001396 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1397 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001398 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1399 signal(SIGINT, signal_handler);
1400 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1401 signal(SIGQUIT, signal_handler);
1402 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1403 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001404 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001405
Damien Miller95def091999-11-25 00:26:21 +11001406 if (have_pty)
1407 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001408
Ben Lindstrom5b828322001-02-09 01:34:36 +00001409 if (compat20) {
1410 session_ident = ssh2_chan_id;
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001411 if (escape_char != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001412 channel_register_filter(session_ident,
Damien Miller077b2382005-12-31 16:22:32 +11001413 simple_escape_filter, NULL);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001414 if (session_ident != -1)
1415 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001416 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001417 } else {
1418 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001419 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001420 }
Damien Millerad833b32000-08-23 10:46:23 +10001421
Damien Miller95def091999-11-25 00:26:21 +11001422 /* Main loop of the client for the interactive session mode. */
1423 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001424
Damien Miller5428f641999-11-25 11:54:57 +11001425 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001426 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001427
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001428 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001429 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001430
1431 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001432
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001433 if (rekeying) {
1434 debug("rekeying in progress");
1435 } else {
1436 /*
1437 * Make packets of buffered stdin data, and buffer
1438 * them for sending to the server.
1439 */
1440 if (!compat20)
1441 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001442
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001443 /*
1444 * Make packets from buffered channel data, and
1445 * enqueue them for sending to the server.
1446 */
1447 if (packet_not_very_much_data_to_write())
1448 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001449
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001450 /*
1451 * Check if the window size has changed, and buffer a
1452 * message about it to the server if so.
1453 */
1454 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001455
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001456 if (quit_pending)
1457 break;
1458 }
Damien Miller5428f641999-11-25 11:54:57 +11001459 /*
1460 * Wait until we have something to do (something becomes
1461 * available on one of the descriptors).
1462 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001463 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001464 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001465 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001466
Damien Miller95def091999-11-25 00:26:21 +11001467 if (quit_pending)
1468 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001469
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001470 /* Do channel operations unless rekeying in progress. */
1471 if (!rekeying) {
1472 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001473 if (need_rekeying || packet_need_rekeying()) {
1474 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001475 xxx_kex->done = 0;
1476 kex_send_kexinit(xxx_kex);
1477 need_rekeying = 0;
1478 }
1479 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Damien Miller1383bd82000-04-06 12:32:37 +10001481 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001482 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001483
Damien Miller0e220db2004-06-15 10:34:08 +10001484 /* Accept control connections. */
1485 client_process_control(readset);
1486
Damien Miller1383bd82000-04-06 12:32:37 +10001487 if (quit_pending)
1488 break;
1489
1490 if (!compat20) {
1491 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001492 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001493 /*
1494 * Process output to stdout and stderr. Output to
1495 * the connection is processed elsewhere (above).
1496 */
Damien Miller5e953212001-01-30 09:14:00 +11001497 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001498 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001499
Damien Miller5428f641999-11-25 11:54:57 +11001500 /* Send as much buffered packet data as possible to the sender. */
Damien Miller5e953212001-01-30 09:14:00 +11001501 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001502 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503 }
Damien Miller5e953212001-01-30 09:14:00 +11001504 if (readset)
1505 xfree(readset);
1506 if (writeset)
1507 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001508
Damien Miller95def091999-11-25 00:26:21 +11001509 /* Terminate the session. */
1510
1511 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001512 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001513
Ben Lindstrom601e4362001-06-21 03:19:23 +00001514 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001515
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001516 if (have_pty)
1517 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001518
1519 /* restore blocking io */
1520 if (!isatty(fileno(stdin)))
1521 unset_nonblock(fileno(stdin));
1522 if (!isatty(fileno(stdout)))
1523 unset_nonblock(fileno(stdout));
1524 if (!isatty(fileno(stderr)))
1525 unset_nonblock(fileno(stderr));
1526
Damien Millerd6965512003-12-17 16:31:53 +11001527 /*
1528 * If there was no shell or command requested, there will be no remote
1529 * exit status to be returned. In that case, clear error code if the
1530 * connection was deliberately terminated at this end.
1531 */
1532 if (no_shell_flag && received_signal == SIGTERM) {
1533 received_signal = 0;
1534 exit_status = 0;
1535 }
1536
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001537 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001538 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001539
1540 /*
1541 * In interactive mode (with pseudo tty) display a message indicating
1542 * that the connection has been closed.
1543 */
1544 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
1545 snprintf(buf, sizeof buf, "Connection to %.64s closed.\r\n", host);
1546 buffer_append(&stderr_buffer, buf, strlen(buf));
1547 }
1548
Damien Miller95def091999-11-25 00:26:21 +11001549 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001550 while (buffer_len(&stdout_buffer) > 0) {
1551 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001552 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001553 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001554 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001555 break;
1556 }
Damien Miller95def091999-11-25 00:26:21 +11001557 buffer_consume(&stdout_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001558 stdout_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001559 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001560
Damien Miller95def091999-11-25 00:26:21 +11001561 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001562 while (buffer_len(&stderr_buffer) > 0) {
1563 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001564 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001565 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001566 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001567 break;
1568 }
Damien Miller95def091999-11-25 00:26:21 +11001569 buffer_consume(&stderr_buffer, len);
Ben Lindstroma3700052001-04-05 23:26:32 +00001570 stderr_bytes += len;
Damien Miller95def091999-11-25 00:26:21 +11001571 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001572
Damien Miller95def091999-11-25 00:26:21 +11001573 /* Clear and free any buffers. */
1574 memset(buf, 0, sizeof(buf));
1575 buffer_free(&stdin_buffer);
1576 buffer_free(&stdout_buffer);
1577 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001578
Damien Miller95def091999-11-25 00:26:21 +11001579 /* Report bytes transferred, and transfer rates. */
1580 total_time = get_current_time() - start_time;
1581 debug("Transferred: stdin %lu, stdout %lu, stderr %lu bytes in %.1f seconds",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001582 stdin_bytes, stdout_bytes, stderr_bytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001583 if (total_time > 0)
1584 debug("Bytes per second: stdin %.1f, stdout %.1f, stderr %.1f",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001585 stdin_bytes / total_time, stdout_bytes / total_time,
1586 stderr_bytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001587
1588 /* Return the exit status of the program. */
1589 debug("Exit status %d", exit_status);
1590 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001591}
Damien Millerb38eff82000-04-01 11:09:21 +10001592
1593/*********/
1594
Ben Lindstrombba81212001-06-25 05:01:22 +00001595static void
Damien Miller630d6f42002-01-22 23:17:30 +11001596client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001597{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001598 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001599 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001600 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001601 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001602 memset(data, 0, data_len);
1603 xfree(data);
1604}
Ben Lindstrombba81212001-06-25 05:01:22 +00001605static void
Damien Miller630d6f42002-01-22 23:17:30 +11001606client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001607{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001608 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001609 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001610 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001611 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001612 memset(data, 0, data_len);
1613 xfree(data);
1614}
Ben Lindstrombba81212001-06-25 05:01:22 +00001615static void
Damien Miller630d6f42002-01-22 23:17:30 +11001616client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001617{
Damien Millerb38eff82000-04-01 11:09:21 +10001618 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001619 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001620 /* Acknowledge the exit. */
1621 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1622 packet_send();
1623 /*
1624 * Must wait for packet to be sent since we are
1625 * exiting the loop.
1626 */
1627 packet_write_wait();
1628 /* Flag that we want to exit. */
1629 quit_pending = 1;
1630}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001631static void
1632client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1633{
1634 Channel *c = NULL;
1635 int remote_id, sock;
1636
1637 /* Read the remote channel number from the message. */
1638 remote_id = packet_get_int();
1639 packet_check_eom();
1640
1641 /*
1642 * Get a connection to the local authentication agent (this may again
1643 * get forwarded).
1644 */
1645 sock = ssh_get_authentication_socket();
1646
1647 /*
1648 * If we could not connect the agent, send an error message back to
1649 * the server. This should never happen unless the agent dies,
1650 * because authentication forwarding is only enabled if we have an
1651 * agent.
1652 */
1653 if (sock >= 0) {
1654 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1655 -1, 0, 0, 0, "authentication agent connection", 1);
1656 c->remote_id = remote_id;
1657 c->force_drain = 1;
1658 }
1659 if (c == NULL) {
1660 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1661 packet_put_int(remote_id);
1662 } else {
1663 /* Send a confirmation to the remote host. */
1664 debug("Forwarding authentication connection.");
1665 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1666 packet_put_int(remote_id);
1667 packet_put_int(c->self);
1668 }
1669 packet_send();
1670}
Damien Millerb38eff82000-04-01 11:09:21 +10001671
Ben Lindstrombba81212001-06-25 05:01:22 +00001672static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001673client_request_forwarded_tcpip(const char *request_type, int rchan)
1674{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001675 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001676 char *listen_address, *originator_address;
1677 int listen_port, originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001678 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001679
1680 /* Get rest of the packet */
1681 listen_address = packet_get_string(NULL);
1682 listen_port = packet_get_int();
1683 originator_address = packet_get_string(NULL);
1684 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001685 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001686
1687 debug("client_request_forwarded_tcpip: listen %s port %d, originator %s port %d",
1688 listen_address, listen_port, originator_address, originator_port);
1689
Ben Lindstrom173e6462001-07-04 05:15:15 +00001690 sock = channel_connect_by_listen_address(listen_port);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001691 if (sock < 0) {
1692 xfree(originator_address);
1693 xfree(listen_address);
1694 return NULL;
1695 }
1696 c = channel_new("forwarded-tcpip",
1697 SSH_CHANNEL_CONNECTING, sock, sock, -1,
1698 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001699 originator_address, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001700 xfree(originator_address);
1701 xfree(listen_address);
1702 return c;
1703}
1704
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001705static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001706client_request_x11(const char *request_type, int rchan)
1707{
1708 Channel *c = NULL;
1709 char *originator;
1710 int originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001711 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001712
1713 if (!options.forward_x11) {
1714 error("Warning: ssh server tried X11 forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001715 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001716 return NULL;
1717 }
1718 originator = packet_get_string(NULL);
1719 if (datafellows & SSH_BUG_X11FWD) {
1720 debug2("buggy server: x11 request w/o originator_port");
1721 originator_port = 0;
1722 } else {
1723 originator_port = packet_get_int();
1724 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001725 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001726 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001727 debug("client_request_x11: request from %s %d", originator,
1728 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001729 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001730 sock = x11_connect_display();
1731 if (sock < 0)
1732 return NULL;
1733 c = channel_new("x11",
1734 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001735 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001736 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001737 return c;
1738}
1739
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001740static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001741client_request_agent(const char *request_type, int rchan)
1742{
1743 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001744 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001745
1746 if (!options.forward_agent) {
1747 error("Warning: ssh server tried agent forwarding.");
Damien Miller5eb137c2005-12-31 16:19:53 +11001748 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001749 return NULL;
1750 }
1751 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001752 if (sock < 0)
1753 return NULL;
1754 c = channel_new("authentication agent connection",
1755 SSH_CHANNEL_OPEN, sock, sock, -1,
1756 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001757 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001758 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001759 return c;
1760}
1761
Damien Millerbd483e72000-04-30 10:00:53 +10001762/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001763static void
Damien Miller630d6f42002-01-22 23:17:30 +11001764client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001765{
1766 Channel *c = NULL;
1767 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001768 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001769 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001770
1771 ctype = packet_get_string(&len);
1772 rchan = packet_get_int();
1773 rwindow = packet_get_int();
1774 rmaxpack = packet_get_int();
1775
Damien Millere247cc42000-05-07 12:03:14 +10001776 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001777 ctype, rchan, rwindow, rmaxpack);
1778
Damien Miller0bc1bd82000-11-13 22:57:25 +11001779 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1780 c = client_request_forwarded_tcpip(ctype, rchan);
1781 } else if (strcmp(ctype, "x11") == 0) {
1782 c = client_request_x11(ctype, rchan);
1783 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1784 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001785 }
1786/* XXX duplicate : */
1787 if (c != NULL) {
1788 debug("confirm %s", ctype);
1789 c->remote_id = rchan;
1790 c->remote_window = rwindow;
1791 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001792 if (c->type != SSH_CHANNEL_CONNECTING) {
1793 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1794 packet_put_int(c->remote_id);
1795 packet_put_int(c->self);
1796 packet_put_int(c->local_window);
1797 packet_put_int(c->local_maxpacket);
1798 packet_send();
1799 }
Damien Millerbd483e72000-04-30 10:00:53 +10001800 } else {
1801 debug("failure %s", ctype);
1802 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1803 packet_put_int(rchan);
1804 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001805 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001806 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001807 packet_put_cstring("");
1808 }
Damien Millerbd483e72000-04-30 10:00:53 +10001809 packet_send();
1810 }
1811 xfree(ctype);
1812}
Ben Lindstrombba81212001-06-25 05:01:22 +00001813static void
Damien Miller630d6f42002-01-22 23:17:30 +11001814client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001815{
1816 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001817 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001818 char *rtype;
1819
1820 id = packet_get_int();
1821 rtype = packet_get_string(NULL);
1822 reply = packet_get_char();
1823
1824 debug("client_input_channel_req: channel %d rtype %s reply %d",
1825 id, rtype, reply);
1826
Damien Miller3bbd8782004-06-18 22:23:22 +10001827 if (id == -1) {
1828 error("client_input_channel_req: request for channel -1");
1829 } else if ((c = channel_lookup(id)) == NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001830 error("client_input_channel_req: channel %d: unknown channel", id);
1831 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001832 exitval = packet_get_int();
1833 if (id == session_ident) {
1834 success = 1;
1835 exit_status = exitval;
1836 } else if (c->ctl_fd == -1) {
1837 error("client_input_channel_req: unexpected channel %d",
1838 session_ident);
1839 } else {
1840 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1841 success = 1;
1842 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001843 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001844 }
1845 if (reply) {
1846 packet_start(success ?
1847 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller3bbd8782004-06-18 22:23:22 +10001848 packet_put_int(id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001849 packet_send();
1850 }
1851 xfree(rtype);
1852}
Damien Millerc3fa4072002-01-22 23:21:58 +11001853static void
1854client_input_global_request(int type, u_int32_t seq, void *ctxt)
1855{
1856 char *rtype;
1857 int want_reply;
1858 int success = 0;
1859
1860 rtype = packet_get_string(NULL);
1861 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001862 debug("client_input_global_request: rtype %s want_reply %d",
1863 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001864 if (want_reply) {
1865 packet_start(success ?
1866 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1867 packet_send();
1868 packet_write_wait();
1869 }
1870 xfree(rtype);
1871}
Damien Millerbd483e72000-04-30 10:00:53 +10001872
Damien Miller0e220db2004-06-15 10:34:08 +10001873void
Darren Tuckerfc959702004-07-17 16:12:08 +10001874client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller3756dce2004-06-18 01:17:29 +10001875 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env,
Damien Miller0e220db2004-06-15 10:34:08 +10001876 dispatch_fn *subsys_repl)
1877{
1878 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001879 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001880
1881 debug2("%s: id %d", __func__, id);
1882
Darren Tucker5d78de62004-11-05 20:35:44 +11001883 if ((c = channel_lookup(id)) == NULL)
1884 fatal("client_session2_setup: channel %d: unknown channel", id);
1885
Damien Miller0e220db2004-06-15 10:34:08 +10001886 if (want_tty) {
1887 struct winsize ws;
1888 struct termios tio;
1889
1890 /* Store window size in the packet. */
1891 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1892 memset(&ws, 0, sizeof(ws));
1893
1894 channel_request_start(id, "pty-req", 0);
1895 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001896 packet_put_int((u_int)ws.ws_col);
1897 packet_put_int((u_int)ws.ws_row);
1898 packet_put_int((u_int)ws.ws_xpixel);
1899 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10001900 tio = get_saved_tio();
1901 tty_make_modes(-1, tiop != NULL ? tiop : &tio);
1902 packet_send();
1903 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001904 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001905 }
1906
1907 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001908 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001909 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001910 char *name, *val;
1911
1912 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001913 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001914 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001915 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001916 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001917 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001918 continue;
1919 }
1920 *val++ = '\0';
1921
1922 matched = 0;
1923 for (j = 0; j < options.num_send_env; j++) {
1924 if (match_pattern(name, options.send_env[j])) {
1925 matched = 1;
1926 break;
1927 }
1928 }
1929 if (!matched) {
1930 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001931 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001932 continue;
1933 }
1934
1935 debug("Sending env %s = %s", name, val);
1936 channel_request_start(id, "env", 0);
1937 packet_put_cstring(name);
1938 packet_put_cstring(val);
1939 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001940 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001941 }
1942 }
1943
1944 len = buffer_len(cmd);
1945 if (len > 0) {
1946 if (len > 900)
1947 len = 900;
1948 if (want_subsystem) {
1949 debug("Sending subsystem: %.*s", len, (u_char*)buffer_ptr(cmd));
1950 channel_request_start(id, "subsystem", subsys_repl != NULL);
1951 if (subsys_repl != NULL) {
1952 /* register callback for reply */
1953 /* XXX we assume that client_loop has already been called */
1954 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, subsys_repl);
1955 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, subsys_repl);
1956 }
1957 } else {
1958 debug("Sending command: %.*s", len, (u_char*)buffer_ptr(cmd));
1959 channel_request_start(id, "exec", 0);
1960 }
1961 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1962 packet_send();
1963 } else {
1964 channel_request_start(id, "shell", 0);
1965 packet_send();
1966 }
1967}
1968
Ben Lindstrombba81212001-06-25 05:01:22 +00001969static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001970client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001971{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001972 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001973
Damien Miller1383bd82000-04-06 12:32:37 +10001974 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1975 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1976 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1977 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001978 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001979 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1980 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001981 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001982 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerc3fa4072002-01-22 23:21:58 +11001983 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001984
1985 /* rekeying */
1986 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001987
1988 /* global request reply messages */
1989 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1990 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001991}
Ben Lindstrombba81212001-06-25 05:01:22 +00001992static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001993client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001994{
1995 dispatch_init(NULL);
1996 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
1997 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
1998 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10001999 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2000 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2001 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002002 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2003 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2004 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002005
2006 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002007 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002008 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2009 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002010}
Ben Lindstrombba81212001-06-25 05:01:22 +00002011static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002012client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002013{
2014 client_init_dispatch_13();
2015 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2016 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2017}
Ben Lindstromdb47f382001-07-04 05:10:27 +00002018static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002019client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002020{
Damien Miller1383bd82000-04-06 12:32:37 +10002021 if (compat20)
2022 client_init_dispatch_20();
2023 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002024 client_init_dispatch_13();
2025 else
2026 client_init_dispatch_15();
2027}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002028
2029/* client specific fatal cleanup */
2030void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002031cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002032{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002033 leave_raw_mode();
2034 leave_non_blocking();
Damien Miller0e220db2004-06-15 10:34:08 +10002035 if (options.control_path != NULL && control_fd != -1)
2036 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002037 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002038}