blob: 3b9700aa43a5bd5281c5e2f160bc76b3b3d10b16 [file] [log] [blame]
markus@openbsd.org091c3022015-01-19 19:52:16 +00001/* $OpenBSD: clientloop.c,v 1.263 2015/01/19 19:52:16 markus 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>
Damien Miller9aec9192006-08-05 10:57:45 +100065#include <sys/ioctl.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100066#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110067#ifdef HAVE_SYS_STAT_H
68# include <sys/stat.h>
69#endif
Damien Miller9aec9192006-08-05 10:57:45 +100070#ifdef HAVE_SYS_TIME_H
71# include <sys/time.h>
72#endif
Damien Millere3b60b52006-07-10 21:08:03 +100073#include <sys/socket.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110074
Damien Millerc7b06362006-03-15 11:53:45 +110075#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100076#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110077#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110078#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110079#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110080#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100081#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100082#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100083#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100084#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110085#include <termios.h>
Damien Millerd7834352006-08-05 12:39:39 +100086#include <pwd.h>
Damien Millere6b3b612006-07-24 14:01:23 +100087#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Millerb84886b2008-05-19 15:05:07 +100089#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100090#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092#include "ssh1.h"
93#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094#include "packet.h"
95#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100096#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000097#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100098#include "dispatch.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110099#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +1000100#include "cipher.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +0000101#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000102#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +1000103#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000104#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000105#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100106#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000107#include "authfd.h"
108#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000109#include "sshpty.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000110#include "match.h"
111#include "msg.h"
Darren Tuckerc5564e12009-06-21 18:53:53 +1000112#include "roaming.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000113#include "ssherr.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100114
115/* import options */
116extern Options options;
117
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118/* Flag indicating that stdin should be redirected from /dev/null. */
119extern int stdin_null_flag;
120
Damien Millerd6965512003-12-17 16:31:53 +1100121/* Flag indicating that no shell has been requested */
122extern int no_shell_flag;
123
Damien Miller0e220db2004-06-15 10:34:08 +1000124/* Control socket */
Damien Millere1537f92010-01-26 13:26:22 +1100125extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
Damien Miller0e220db2004-06-15 10:34:08 +1000126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * Name of the host we are connecting to. This is the name given on the
129 * command line, or the HostName specified for the user-supplied name in a
130 * configuration file.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132extern char *host;
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * Flag to indicate that we have received a window change signal which has
136 * not yet been processed. This will cause a message indicating the new
137 * window size to be sent to the server a little later. This is volatile
138 * because this is updated in a signal handler.
139 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000140static volatile sig_atomic_t received_window_change_signal = 0;
141static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller788f2122005-11-05 15:14:59 +1100143/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144static int in_non_blocking_mode = 0;
145
Damien Millere11e1ea2010-08-03 16:04:46 +1000146/* Time when backgrounded control master using ControlPersist should exit */
147static time_t control_persist_exit_time = 0;
148
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149/* Common data for the client loop code. */
Damien Millere1537f92010-01-26 13:26:22 +1100150volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000151static int escape_char1; /* Escape character. (proto1 only) */
152static int escape_pending1; /* Last character was an escape (proto1 only) */
Damien Miller95def091999-11-25 00:26:21 +1100153static int last_was_cr; /* Last character was a newline. */
Darren Tucker4d5cd332008-06-13 04:51:14 +1000154static int exit_status; /* Used to store the command exit status. */
155static int stdin_eof; /* EOF has been encountered on stderr. */
Damien Miller95def091999-11-25 00:26:21 +1100156static Buffer stdin_buffer; /* Buffer for stdin data. */
157static Buffer stdout_buffer; /* Buffer for stdout data. */
158static Buffer stderr_buffer; /* Buffer for stderr data. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000159static u_int buffer_high; /* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100160static int connection_in; /* Connection to server (input). */
161static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000162static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000163static int session_closed; /* In SSH2: login session closed. */
164static int x11_refuse_time; /* If >0, refuse x11 opens after this time. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000167int session_ident = -1;
168
Darren Tuckere32cf432010-01-08 16:51:40 +1100169int session_resumed = 0;
170
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000171/* Track escape per proto2 channel */
172struct escape_filter_ctx {
173 int escape_pending;
174 int escape_char;
175};
176
177/* Context for channel confirmation replies */
Damien Miller5771ed72008-05-19 15:35:33 +1000178struct channel_reply_ctx {
179 const char *request_type;
Damien Miller555f3b82011-05-15 08:48:05 +1000180 int id;
181 enum confirm_action action;
Damien Miller5771ed72008-05-19 15:35:33 +1000182};
183
Darren Tucker9f407c42008-06-13 04:50:27 +1000184/* Global request success/failure callbacks */
185struct global_confirm {
186 TAILQ_ENTRY(global_confirm) entry;
187 global_confirm_cb *cb;
188 void *ctx;
189 int ref_count;
190};
191TAILQ_HEAD(global_confirms, global_confirm);
192static struct global_confirms global_confirms =
193 TAILQ_HEAD_INITIALIZER(global_confirms);
194
Damien Miller0e220db2004-06-15 10:34:08 +1000195void ssh_process_session2_setup(int, int, int, Buffer *);
196
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197/* Restores stdin to blocking mode. */
198
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000200leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Damien Miller95def091999-11-25 00:26:21 +1100202 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000203 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100204 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100205 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206}
207
Damien Miller95def091999-11-25 00:26:21 +1100208/* Puts stdin terminal in non-blocking mode. */
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000211enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Damien Miller95def091999-11-25 00:26:21 +1100213 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000214 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Signal handler for the window change signal (SIGWINCH). This just sets a
219 * flag indicating that the window has changed.
220 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100221/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static void
Damien Miller95def091999-11-25 00:26:21 +1100223window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224{
Damien Miller95def091999-11-25 00:26:21 +1100225 received_window_change_signal = 1;
226 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Miller5428f641999-11-25 11:54:57 +1100229/*
230 * Signal handler for signals that cause the program to terminate. These
231 * signals must be trapped to restore terminal modes.
232 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100233/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000234static void
Damien Miller95def091999-11-25 00:26:21 +1100235signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000237 received_signal = sig;
238 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239}
240
Damien Miller5428f641999-11-25 11:54:57 +1100241/*
242 * Returns current time in seconds from Jan 1, 1970 with the maximum
243 * available resolution.
244 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245
Ben Lindstrombba81212001-06-25 05:01:22 +0000246static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000247get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248{
Damien Miller95def091999-11-25 00:26:21 +1100249 struct timeval tv;
250 gettimeofday(&tv, NULL);
251 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252}
253
Damien Millere11e1ea2010-08-03 16:04:46 +1000254/*
255 * Sets control_persist_exit_time to the absolute time when the
256 * backgrounded control master should exit due to expiry of the
257 * ControlPersist timeout. Sets it to 0 if we are not a backgrounded
258 * control master process, or if there is no ControlPersist timeout.
259 */
260static void
261set_control_persist_exit_time(void)
262{
263 if (muxserver_sock == -1 || !options.control_persist
Damien Miller6c3eec72011-05-05 14:16:22 +1000264 || options.control_persist_timeout == 0) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000265 /* not using a ControlPersist timeout */
266 control_persist_exit_time = 0;
Damien Miller6c3eec72011-05-05 14:16:22 +1000267 } else if (channel_still_open()) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000268 /* some client connections are still open */
269 if (control_persist_exit_time > 0)
270 debug2("%s: cancel scheduled exit", __func__);
271 control_persist_exit_time = 0;
272 } else if (control_persist_exit_time <= 0) {
273 /* a client connection has recently closed */
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000274 control_persist_exit_time = monotime() +
Damien Millere11e1ea2010-08-03 16:04:46 +1000275 (time_t)options.control_persist_timeout;
276 debug2("%s: schedule exit in %d seconds", __func__,
277 options.control_persist_timeout);
278 }
279 /* else we are already counting down to the timeout */
280}
281
Damien Miller8d60be52012-02-11 08:18:17 +1100282#define SSH_X11_VALID_DISPLAY_CHARS ":/.-_"
283static int
284client_x11_display_valid(const char *display)
285{
286 size_t i, dlen;
287
288 dlen = strlen(display);
289 for (i = 0; i < dlen; i++) {
Damien Millerfdb23062013-11-21 13:57:15 +1100290 if (!isalnum((u_char)display[i]) &&
Damien Miller8d60be52012-02-11 08:18:17 +1100291 strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
292 debug("Invalid character '%c' in DISPLAY", display[i]);
293 return 0;
294 }
295 }
296 return 1;
297}
298
Damien Miller17e7ed02005-06-17 12:54:33 +1000299#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
300void
301client_x11_get_proto(const char *display, const char *xauth_path,
Damien Miller1ab6a512010-06-26 10:02:24 +1000302 u_int trusted, u_int timeout, char **_proto, char **_data)
Damien Miller17e7ed02005-06-17 12:54:33 +1000303{
304 char cmd[1024];
305 char line[512];
306 char xdisplay[512];
307 static char proto[512], data[512];
308 FILE *f;
309 int got_data = 0, generated = 0, do_unlink = 0, i;
310 char *xauthdir, *xauthfile;
311 struct stat st;
Damien Miller1ab6a512010-06-26 10:02:24 +1000312 u_int now;
Damien Miller17e7ed02005-06-17 12:54:33 +1000313
314 xauthdir = xauthfile = NULL;
315 *_proto = proto;
316 *_data = data;
317 proto[0] = data[0] = '\0';
318
319 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
320 debug("No xauth program.");
Damien Miller8d60be52012-02-11 08:18:17 +1100321 } else if (!client_x11_display_valid(display)) {
322 logit("DISPLAY '%s' invalid, falling back to fake xauth data",
323 display);
Damien Miller17e7ed02005-06-17 12:54:33 +1000324 } else {
325 if (display == NULL) {
326 debug("x11_get_proto: DISPLAY not set");
327 return;
328 }
329 /*
330 * Handle FamilyLocal case where $DISPLAY does
331 * not match an authorization entry. For this we
332 * just try "xauth list unix:displaynum.screennum".
333 * XXX: "localhost" match to determine FamilyLocal
334 * is not perfect.
335 */
336 if (strncmp(display, "localhost:", 10) == 0) {
337 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
338 display + 10);
339 display = xdisplay;
340 }
341 if (trusted == 0) {
342 xauthdir = xmalloc(MAXPATHLEN);
343 xauthfile = xmalloc(MAXPATHLEN);
Damien Miller2cd62932010-12-01 11:50:35 +1100344 mktemp_proto(xauthdir, MAXPATHLEN);
Damien Miller17e7ed02005-06-17 12:54:33 +1000345 if (mkdtemp(xauthdir) != NULL) {
346 do_unlink = 1;
347 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
348 xauthdir);
349 snprintf(cmd, sizeof(cmd),
350 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller1ab6a512010-06-26 10:02:24 +1000351 " untrusted timeout %u 2>" _PATH_DEVNULL,
352 xauth_path, xauthfile, display, timeout);
Damien Miller17e7ed02005-06-17 12:54:33 +1000353 debug2("x11_get_proto: %s", cmd);
354 if (system(cmd) == 0)
355 generated = 1;
Damien Miller1ab6a512010-06-26 10:02:24 +1000356 if (x11_refuse_time == 0) {
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000357 now = monotime() + 1;
Damien Miller1ab6a512010-06-26 10:02:24 +1000358 if (UINT_MAX - timeout < now)
359 x11_refuse_time = UINT_MAX;
360 else
361 x11_refuse_time = now + timeout;
362 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000363 }
364 }
Darren Tucker513d13a2007-08-15 19:13:41 +1000365
366 /*
367 * When in untrusted mode, we read the cookie only if it was
368 * successfully generated as an untrusted one in the step
369 * above.
370 */
371 if (trusted || generated) {
372 snprintf(cmd, sizeof(cmd),
373 "%s %s%s list %s 2>" _PATH_DEVNULL,
374 xauth_path,
375 generated ? "-f " : "" ,
376 generated ? xauthfile : "",
377 display);
378 debug2("x11_get_proto: %s", cmd);
379 f = popen(cmd, "r");
380 if (f && fgets(line, sizeof(line), f) &&
381 sscanf(line, "%*s %511s %511s", proto, data) == 2)
382 got_data = 1;
383 if (f)
384 pclose(f);
385 } else
386 error("Warning: untrusted X11 forwarding setup failed: "
387 "xauth key data not generated");
Damien Miller17e7ed02005-06-17 12:54:33 +1000388 }
389
390 if (do_unlink) {
391 unlink(xauthfile);
392 rmdir(xauthdir);
393 }
Darren Tuckera627d422013-06-02 07:31:17 +1000394 free(xauthdir);
395 free(xauthfile);
Damien Miller17e7ed02005-06-17 12:54:33 +1000396
397 /*
398 * If we didn't get authentication data, just make up some
399 * data. The forwarding code will check the validity of the
400 * response anyway, and substitute this data. The X11
401 * server, however, will ignore this fake data and use
402 * whatever authentication mechanisms it was using otherwise
403 * for the local connection.
404 */
405 if (!got_data) {
406 u_int32_t rnd = 0;
407
408 logit("Warning: No xauth data; "
409 "using fake authentication data for X11 forwarding.");
410 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
411 for (i = 0; i < 16; i++) {
412 if (i % 4 == 0)
413 rnd = arc4random();
414 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
415 rnd & 0xff);
416 rnd >>= 8;
417 }
418 }
419}
420
Damien Miller5428f641999-11-25 11:54:57 +1100421/*
422 * This is called when the interactive is entered. This checks if there is
423 * an EOF coming on stdin. We must check this explicitly, as select() does
424 * not appear to wake up when redirecting from /dev/null.
425 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426
Ben Lindstrombba81212001-06-25 05:01:22 +0000427static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000428client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429{
Damien Miller95def091999-11-25 00:26:21 +1100430 int len;
431 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller5428f641999-11-25 11:54:57 +1100433 /*
434 * If standard input is to be "redirected from /dev/null", we simply
435 * mark that we have seen an EOF and send an EOF message to the
436 * server. Otherwise, we try to read a single character; it appears
437 * that for some files, such /dev/null, select() never wakes up for
438 * read for this descriptor, which means that we never get EOF. This
439 * way we will get the EOF if stdin comes from /dev/null or similar.
440 */
Damien Miller95def091999-11-25 00:26:21 +1100441 if (stdin_null_flag) {
442 /* Fake EOF on stdin. */
443 debug("Sending eof.");
444 stdin_eof = 1;
445 packet_start(SSH_CMSG_EOF);
446 packet_send();
447 } else {
Damien Miller95def091999-11-25 00:26:21 +1100448 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000449
Damien Miller95def091999-11-25 00:26:21 +1100450 /* Check for immediate EOF on stdin. */
451 len = read(fileno(stdin), buf, 1);
452 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000453 /*
454 * EOF. Record that we have seen it and send
455 * EOF to server.
456 */
Damien Miller95def091999-11-25 00:26:21 +1100457 debug("Sending eof.");
458 stdin_eof = 1;
459 packet_start(SSH_CMSG_EOF);
460 packet_send();
461 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100462 /*
463 * Got data. We must store the data in the buffer,
464 * and also process it as an escape character if
465 * appropriate.
466 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000467 if ((u_char) buf[0] == escape_char1)
468 escape_pending1 = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000469 else
Damien Miller95def091999-11-25 00:26:21 +1100470 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100471 }
Damien Miller95def091999-11-25 00:26:21 +1100472 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474}
475
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000476
Damien Miller5428f641999-11-25 11:54:57 +1100477/*
478 * Make packets from buffered stdin data, and buffer them for sending to the
479 * connection.
480 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481
Ben Lindstrombba81212001-06-25 05:01:22 +0000482static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000483client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000485 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486
Damien Miller95def091999-11-25 00:26:21 +1100487 /* Send buffered stdin data to the server. */
488 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100489 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100490 len = buffer_len(&stdin_buffer);
491 /* Keep the packets at reasonable size. */
492 if (len > packet_get_maxsize())
493 len = packet_get_maxsize();
494 packet_start(SSH_CMSG_STDIN_DATA);
495 packet_put_string(buffer_ptr(&stdin_buffer), len);
496 packet_send();
497 buffer_consume(&stdin_buffer, len);
498 /* If we have a pending EOF, send it now. */
499 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
500 packet_start(SSH_CMSG_EOF);
501 packet_send();
502 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504}
505
Damien Miller5428f641999-11-25 11:54:57 +1100506/*
507 * Checks if the client window has changed, and sends a packet about it to
508 * the server if so. The actual change is detected elsewhere (by a software
509 * interrupt on Unix); this just checks the flag and sends a message if
510 * appropriate.
511 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512
Ben Lindstrombba81212001-06-25 05:01:22 +0000513static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000514client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515{
Damien Miller1383bd82000-04-06 12:32:37 +1000516 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517
Damien Miller1383bd82000-04-06 12:32:37 +1000518 if (! received_window_change_signal)
519 return;
520 /** XXX race */
521 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Damien Millerd3444942000-09-30 14:20:03 +1100523 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000524
525 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000526 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000527 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000528 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
529 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000530 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100531 packet_put_int((u_int)ws.ws_row);
532 packet_put_int((u_int)ws.ws_col);
533 packet_put_int((u_int)ws.ws_xpixel);
534 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000535 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537}
538
Damien Miller509b0102003-12-17 16:33:10 +1100539static void
540client_global_request_reply(int type, u_int32_t seq, void *ctxt)
541{
Darren Tucker9f407c42008-06-13 04:50:27 +1000542 struct global_confirm *gc;
543
544 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
545 return;
546 if (gc->cb != NULL)
547 gc->cb(type, seq, gc->ctx);
548 if (--gc->ref_count <= 0) {
549 TAILQ_REMOVE(&global_confirms, gc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100550 explicit_bzero(gc, sizeof(*gc));
Darren Tuckera627d422013-06-02 07:31:17 +1000551 free(gc);
Darren Tucker9f407c42008-06-13 04:50:27 +1000552 }
553
Darren Tuckerf7288d72009-06-21 18:12:20 +1000554 packet_set_alive_timeouts(0);
Damien Miller509b0102003-12-17 16:33:10 +1100555}
556
557static void
558server_alive_check(void)
559{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000560 if (packet_inc_alive_timeouts() > options.server_alive_count_max) {
Damien Millerb73b6fd2011-01-11 17:18:56 +1100561 logit("Timeout, server %s not responding.", host);
Damien Miller985a4482006-10-24 03:02:41 +1000562 cleanup_exit(255);
563 }
Damien Miller509b0102003-12-17 16:33:10 +1100564 packet_start(SSH2_MSG_GLOBAL_REQUEST);
565 packet_put_cstring("keepalive@openssh.com");
566 packet_put_char(1); /* boolean: want reply */
567 packet_send();
Darren Tucker9f407c42008-06-13 04:50:27 +1000568 /* Insert an empty placeholder to maintain ordering */
569 client_register_global_confirm(NULL, NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100570}
571
Damien Miller5428f641999-11-25 11:54:57 +1100572/*
573 * Waits until the client can do something (some data becomes available on
574 * one of the file descriptors).
575 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000576static void
Damien Miller5e953212001-01-30 09:14:00 +1100577client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000578 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579{
Damien Miller509b0102003-12-17 16:33:10 +1100580 struct timeval tv, *tvp;
Damien Millere11e1ea2010-08-03 16:04:46 +1000581 int timeout_secs;
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000582 time_t minwait_secs = 0, server_alive_time = 0, now = monotime();
Damien Miller509b0102003-12-17 16:33:10 +1100583 int ret;
584
Damien Miller5e953212001-01-30 09:14:00 +1100585 /* Add any selections by the channel mechanism. */
Damien Millera6508752012-04-22 11:21:10 +1000586 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp,
587 &minwait_secs, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller1383bd82000-04-06 12:32:37 +1000589 if (!compat20) {
590 /* Read from the connection, unless our buffers are full. */
591 if (buffer_len(&stdout_buffer) < buffer_high &&
592 buffer_len(&stderr_buffer) < buffer_high &&
593 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100594 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000595 /*
596 * Read from stdin, unless we have seen EOF or have very much
597 * buffered data to send to the server.
598 */
599 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100600 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000601
602 /* Select stdout/stderr if have data in buffer. */
603 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100604 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000605 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100606 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000607 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000608 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000609 if (session_closed && !channel_still_open() &&
610 !packet_have_data_to_write()) {
611 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100612 memset(*readsetp, 0, *nallocp);
613 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000614 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000615 } else {
616 FD_SET(connection_in, *readsetp);
617 }
Damien Miller1383bd82000-04-06 12:32:37 +1000618 }
619
Damien Miller95def091999-11-25 00:26:21 +1100620 /* Select server connection if have data to write to the server. */
621 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100622 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100623
Damien Miller5428f641999-11-25 11:54:57 +1100624 /*
625 * Wait for something to happen. This will suspend the process until
626 * some selected descriptor can be read, written, or has some other
Damien Millere11e1ea2010-08-03 16:04:46 +1000627 * event pending, or a timeout expires.
Damien Miller5428f641999-11-25 11:54:57 +1100628 */
Damien Miller95def091999-11-25 00:26:21 +1100629
Damien Millere11e1ea2010-08-03 16:04:46 +1000630 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000631 if (options.server_alive_interval > 0 && compat20) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000632 timeout_secs = options.server_alive_interval;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000633 server_alive_time = now + options.server_alive_interval;
634 }
635 if (options.rekey_interval > 0 && compat20 && !rekeying)
636 timeout_secs = MIN(timeout_secs, packet_get_rekey_timeout());
Damien Millere11e1ea2010-08-03 16:04:46 +1000637 set_control_persist_exit_time();
638 if (control_persist_exit_time > 0) {
639 timeout_secs = MIN(timeout_secs,
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000640 control_persist_exit_time - now);
Damien Millere11e1ea2010-08-03 16:04:46 +1000641 if (timeout_secs < 0)
642 timeout_secs = 0;
643 }
Damien Millera6508752012-04-22 11:21:10 +1000644 if (minwait_secs != 0)
645 timeout_secs = MIN(timeout_secs, (int)minwait_secs);
Damien Millere11e1ea2010-08-03 16:04:46 +1000646 if (timeout_secs == INT_MAX)
Damien Miller509b0102003-12-17 16:33:10 +1100647 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000648 else {
Damien Millere11e1ea2010-08-03 16:04:46 +1000649 tv.tv_sec = timeout_secs;
Damien Miller509b0102003-12-17 16:33:10 +1100650 tv.tv_usec = 0;
651 tvp = &tv;
652 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000653
Damien Miller509b0102003-12-17 16:33:10 +1100654 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
655 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100656 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000657
658 /*
659 * We have to clear the select masks, because we return.
660 * We have to return, because the mainloop checks for the flags
661 * set by the signal handlers.
662 */
Damien Miller79faeff2001-11-12 11:06:32 +1100663 memset(*readsetp, 0, *nallocp);
664 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000665
Damien Miller95def091999-11-25 00:26:21 +1100666 if (errno == EINTR)
667 return;
668 /* Note: we might still have data in the buffers. */
669 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
670 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100671 quit_pending = 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000672 } else if (ret == 0) {
673 /*
674 * Timeout. Could have been either keepalive or rekeying.
675 * Keepalive we check here, rekeying is checked in clientloop.
676 */
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000677 if (server_alive_time != 0 && server_alive_time <= monotime())
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000678 server_alive_check();
679 }
680
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681}
682
Ben Lindstrombba81212001-06-25 05:01:22 +0000683static void
Damien Millerad833b32000-08-23 10:46:23 +1000684client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685{
Damien Miller95def091999-11-25 00:26:21 +1100686 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000687 if (buffer_len(bout) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000688 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
689 buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000690 if (buffer_len(berr) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000691 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
692 buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000693
Damien Miller21771e22011-05-15 08:45:50 +1000694 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695
Damien Miller5428f641999-11-25 11:54:57 +1100696 /*
697 * Free (and clear) the buffer to reduce the amount of data that gets
698 * written to swap.
699 */
Damien Millerad833b32000-08-23 10:46:23 +1000700 buffer_free(bin);
701 buffer_free(bout);
702 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000703
Damien Miller95def091999-11-25 00:26:21 +1100704 /* Send the suspend signal to the program itself. */
705 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000706
Darren Tucker5d78de62004-11-05 20:35:44 +1100707 /* Reset window sizes in case they have changed */
708 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709
Damien Miller95def091999-11-25 00:26:21 +1100710 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000711 buffer_init(bin);
712 buffer_init(bout);
713 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000714
Damien Miller21771e22011-05-15 08:45:50 +1000715 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716}
717
Ben Lindstrombba81212001-06-25 05:01:22 +0000718static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100719client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720{
Darren Tuckerc5564e12009-06-21 18:53:53 +1000721 int len, cont = 0;
Darren Tucker86e30a02009-08-28 11:21:06 +1000722 char buf[SSH_IOBUFSZ];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723
Damien Miller5428f641999-11-25 11:54:57 +1100724 /*
725 * Read input from the server, and add any such data to the buffer of
726 * the packet subsystem.
727 */
Damien Miller95def091999-11-25 00:26:21 +1100728 if (FD_ISSET(connection_in, readset)) {
729 /* Read as much as possible. */
Darren Tuckerc5564e12009-06-21 18:53:53 +1000730 len = roaming_read(connection_in, buf, sizeof(buf), &cont);
731 if (len == 0 && cont == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000732 /*
733 * Received EOF. The remote host has closed the
734 * connection.
735 */
736 snprintf(buf, sizeof buf,
737 "Connection to %.300s closed by remote host.\r\n",
738 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000740 quit_pending = 1;
741 return;
Damien Miller95def091999-11-25 00:26:21 +1100742 }
Damien Miller5428f641999-11-25 11:54:57 +1100743 /*
744 * There is a kernel bug on Solaris that causes select to
745 * sometimes wake up even though there is no data available.
746 */
Damien Millerd8968ad2008-07-04 23:10:49 +1000747 if (len < 0 &&
748 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Damien Miller95def091999-11-25 00:26:21 +1100749 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750
Damien Miller95def091999-11-25 00:26:21 +1100751 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000752 /*
753 * An error has encountered. Perhaps there is a
754 * network problem.
755 */
756 snprintf(buf, sizeof buf,
757 "Read from remote host %.300s: %.100s\r\n",
758 host, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100759 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100760 quit_pending = 1;
761 return;
762 }
763 packet_process_incoming(buf, len);
764 }
Damien Miller1383bd82000-04-06 12:32:37 +1000765}
766
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000767static void
Damien Miller5771ed72008-05-19 15:35:33 +1000768client_status_confirm(int type, Channel *c, void *ctx)
Damien Miller0e220db2004-06-15 10:34:08 +1000769{
Damien Miller5771ed72008-05-19 15:35:33 +1000770 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
771 char errmsg[256];
772 int tochan;
Darren Tuckerfc959702004-07-17 16:12:08 +1000773
Damien Miller555f3b82011-05-15 08:48:05 +1000774 /*
775 * If a TTY was explicitly requested, then a failure to allocate
776 * one is fatal.
777 */
778 if (cr->action == CONFIRM_TTY &&
779 (options.request_tty == REQUEST_TTY_FORCE ||
780 options.request_tty == REQUEST_TTY_YES))
781 cr->action = CONFIRM_CLOSE;
782
Damien Miller5771ed72008-05-19 15:35:33 +1000783 /* XXX supress on mux _client_ quietmode */
784 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
Damien Millere1537f92010-01-26 13:26:22 +1100785 c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
Damien Miller0e220db2004-06-15 10:34:08 +1000786
Damien Miller5771ed72008-05-19 15:35:33 +1000787 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
788 debug2("%s request accepted on channel %d",
789 cr->request_type, c->self);
790 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
791 if (tochan) {
792 snprintf(errmsg, sizeof(errmsg),
793 "%s request failed\r\n", cr->request_type);
794 } else {
795 snprintf(errmsg, sizeof(errmsg),
796 "%s request failed on channel %d",
797 cr->request_type, c->self);
798 }
799 /* If error occurred on primary session channel, then exit */
Damien Miller555f3b82011-05-15 08:48:05 +1000800 if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
Damien Miller5771ed72008-05-19 15:35:33 +1000801 fatal("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000802 /*
803 * If error occurred on mux client, append to
804 * their stderr.
805 */
806 if (tochan) {
807 buffer_append(&c->extended, errmsg,
808 strlen(errmsg));
809 } else
Damien Miller5771ed72008-05-19 15:35:33 +1000810 error("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000811 if (cr->action == CONFIRM_TTY) {
812 /*
813 * If a TTY allocation error occurred, then arrange
814 * for the correct TTY to leave raw mode.
815 */
816 if (c->self == session_ident)
817 leave_raw_mode(0);
818 else
819 mux_tty_alloc_failed(c);
820 } else if (cr->action == CONFIRM_CLOSE) {
Damien Miller5771ed72008-05-19 15:35:33 +1000821 chan_read_failed(c);
822 chan_write_failed(c);
823 }
Damien Miller0e220db2004-06-15 10:34:08 +1000824 }
Darren Tuckera627d422013-06-02 07:31:17 +1000825 free(cr);
Damien Miller5771ed72008-05-19 15:35:33 +1000826}
Damien Miller0e220db2004-06-15 10:34:08 +1000827
Damien Miller5771ed72008-05-19 15:35:33 +1000828static void
829client_abandon_status_confirm(Channel *c, void *ctx)
830{
Darren Tuckera627d422013-06-02 07:31:17 +1000831 free(ctx);
Damien Miller5771ed72008-05-19 15:35:33 +1000832}
833
Damien Miller6d7b4372011-06-23 08:31:57 +1000834void
Damien Miller555f3b82011-05-15 08:48:05 +1000835client_expect_confirm(int id, const char *request,
836 enum confirm_action action)
Damien Miller5771ed72008-05-19 15:35:33 +1000837{
Damien Miller6c81fee2013-11-08 12:19:55 +1100838 struct channel_reply_ctx *cr = xcalloc(1, sizeof(*cr));
Damien Miller5771ed72008-05-19 15:35:33 +1000839
840 cr->request_type = request;
Damien Miller555f3b82011-05-15 08:48:05 +1000841 cr->action = action;
Damien Miller5771ed72008-05-19 15:35:33 +1000842
843 channel_register_status_confirm(id, client_status_confirm,
844 client_abandon_status_confirm, cr);
Damien Miller0e220db2004-06-15 10:34:08 +1000845}
846
Darren Tucker9f407c42008-06-13 04:50:27 +1000847void
848client_register_global_confirm(global_confirm_cb *cb, void *ctx)
849{
Damien Millerb9d3bee2008-07-16 22:40:52 +1000850 struct global_confirm *gc, *last_gc;
Darren Tucker9f407c42008-06-13 04:50:27 +1000851
852 /* Coalesce identical callbacks */
Damien Millerb9d3bee2008-07-16 22:40:52 +1000853 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
854 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
855 if (++last_gc->ref_count >= INT_MAX)
856 fatal("%s: last_gc->ref_count = %d",
857 __func__, last_gc->ref_count);
Darren Tucker9f407c42008-06-13 04:50:27 +1000858 return;
859 }
860
Damien Miller6c81fee2013-11-08 12:19:55 +1100861 gc = xcalloc(1, sizeof(*gc));
Darren Tucker9f407c42008-06-13 04:50:27 +1000862 gc->cb = cb;
863 gc->ctx = ctx;
864 gc->ref_count = 1;
865 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
866}
867
Damien Miller0e220db2004-06-15 10:34:08 +1000868static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000869process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000870{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000871 void (*handler)(int);
Damien Miller7acefbb2014-07-18 14:11:24 +1000872 char *s, *cmd;
873 int ok, delete = 0, local = 0, remote = 0, dynamic = 0;
874 struct Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000875
Damien Miller1d2c4562014-02-04 11:18:20 +1100876 memset(&fwd, 0, sizeof(fwd));
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100877
Damien Miller21771e22011-05-15 08:45:50 +1000878 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000879 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000880 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000881 if (s == NULL)
882 goto out;
Damien Millerfdb23062013-11-21 13:57:15 +1100883 while (isspace((u_char)*s))
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000884 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000885 if (*s == '-')
886 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000887 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000888 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000889
Darren Tucker1973c882004-05-24 10:34:36 +1000890 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000891 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000892 logit(" -L[bind_address:]port:host:hostport "
893 "Request local forward");
894 logit(" -R[bind_address:]port:host:hostport "
895 "Request remote forward");
Damien Miller0164cb82008-11-05 16:30:31 +1100896 logit(" -D[bind_address:]port "
897 "Request dynamic forward");
Damien Millerff773642011-09-22 21:39:48 +1000898 logit(" -KL[bind_address:]port "
899 "Cancel local forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000900 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000901 "Cancel remote forward");
Damien Millerff773642011-09-22 21:39:48 +1000902 logit(" -KD[bind_address:]port "
903 "Cancel dynamic forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100904 if (!options.permit_local_command)
905 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000906 logit(" !args "
907 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100908 goto out;
909 }
910
911 if (*s == '!' && options.permit_local_command) {
912 s++;
913 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000914 goto out;
915 }
916
917 if (*s == 'K') {
918 delete = 1;
919 s++;
920 }
Damien Miller0164cb82008-11-05 16:30:31 +1100921 if (*s == 'L')
922 local = 1;
923 else if (*s == 'R')
924 remote = 1;
925 else if (*s == 'D')
926 dynamic = 1;
927 else {
Damien Miller996acd22003-04-09 20:59:48 +1000928 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000929 goto out;
930 }
Damien Miller0164cb82008-11-05 16:30:31 +1100931
Damien Millerff773642011-09-22 21:39:48 +1000932 if (delete && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000933 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000934 goto out;
935 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000936
Damien Millerfdb23062013-11-21 13:57:15 +1100937 while (isspace((u_char)*++s))
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100938 ;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000939
Damien Millere1537f92010-01-26 13:26:22 +1100940 /* XXX update list of forwards in options */
Darren Tuckere7066df2004-05-24 10:18:05 +1000941 if (delete) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000942 /* We pass 1 for dynamicfwd to restrict to 1 or 2 fields. */
943 if (!parse_forward(&fwd, s, 1, 0)) {
944 logit("Bad forwarding close specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000945 goto out;
946 }
Damien Millerff773642011-09-22 21:39:48 +1000947 if (remote)
Damien Miller7acefbb2014-07-18 14:11:24 +1000948 ok = channel_request_rforward_cancel(&fwd) == 0;
Damien Millerff773642011-09-22 21:39:48 +1000949 else if (dynamic)
Damien Miller7acefbb2014-07-18 14:11:24 +1000950 ok = channel_cancel_lport_listener(&fwd,
951 0, &options.fwd_opts) > 0;
Damien Millerff773642011-09-22 21:39:48 +1000952 else
Damien Miller7acefbb2014-07-18 14:11:24 +1000953 ok = channel_cancel_lport_listener(&fwd,
954 CHANNEL_CANCEL_PORT_STATIC,
955 &options.fwd_opts) > 0;
Damien Millerff773642011-09-22 21:39:48 +1000956 if (!ok) {
957 logit("Unkown port forwarding.");
958 goto out;
959 }
960 logit("Canceled forwarding.");
Darren Tuckere7066df2004-05-24 10:18:05 +1000961 } else {
Damien Miller4bf648f2009-02-14 16:28:21 +1100962 if (!parse_forward(&fwd, s, dynamic, remote)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000963 logit("Bad forwarding specification.");
964 goto out;
965 }
Damien Miller0164cb82008-11-05 16:30:31 +1100966 if (local || dynamic) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000967 if (!channel_setup_local_fwd_listener(&fwd,
968 &options.fwd_opts)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000969 logit("Port forwarding failed.");
970 goto out;
971 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100972 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +1000973 if (channel_request_remote_forwarding(&fwd) < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +1000974 logit("Port forwarding failed.");
975 goto out;
976 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100977 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000978 logit("Forwarding port.");
979 }
980
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000981out:
982 signal(SIGINT, handler);
Damien Miller21771e22011-05-15 08:45:50 +1000983 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tuckera627d422013-06-02 07:31:17 +1000984 free(cmd);
985 free(fwd.listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000986 free(fwd.listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +1000987 free(fwd.connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +1000988 free(fwd.connect_path);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000989}
990
Darren Tucker92a39cf2012-09-07 11:20:20 +1000991/* reasons to suppress output of an escape command in help output */
992#define SUPPRESS_NEVER 0 /* never suppress, always show */
993#define SUPPRESS_PROTO1 1 /* don't show in protocol 1 sessions */
994#define SUPPRESS_MUXCLIENT 2 /* don't show in mux client sessions */
995#define SUPPRESS_MUXMASTER 4 /* don't show in mux master sessions */
996#define SUPPRESS_SYSLOG 8 /* don't show when logging to syslog */
997struct escape_help_text {
998 const char *cmd;
999 const char *text;
1000 unsigned int flags;
1001};
1002static struct escape_help_text esc_txt[] = {
1003 {".", "terminate session", SUPPRESS_MUXMASTER},
1004 {".", "terminate connection (and any multiplexed sessions)",
1005 SUPPRESS_MUXCLIENT},
1006 {"B", "send a BREAK to the remote system", SUPPRESS_PROTO1},
1007 {"C", "open a command line", SUPPRESS_MUXCLIENT},
1008 {"R", "request rekey", SUPPRESS_PROTO1},
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001009 {"V/v", "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
Darren Tucker92a39cf2012-09-07 11:20:20 +10001010 {"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
1011 {"#", "list forwarded connections", SUPPRESS_NEVER},
1012 {"&", "background ssh (when waiting for connections to terminate)",
1013 SUPPRESS_MUXCLIENT},
1014 {"?", "this message", SUPPRESS_NEVER},
1015};
1016
1017static void
1018print_escape_help(Buffer *b, int escape_char, int protocol2, int mux_client,
1019 int using_stderr)
1020{
1021 unsigned int i, suppress_flags;
1022 char string[1024];
1023
1024 snprintf(string, sizeof string, "%c?\r\n"
1025 "Supported escape sequences:\r\n", escape_char);
1026 buffer_append(b, string, strlen(string));
1027
1028 suppress_flags = (protocol2 ? 0 : SUPPRESS_PROTO1) |
1029 (mux_client ? SUPPRESS_MUXCLIENT : 0) |
1030 (mux_client ? 0 : SUPPRESS_MUXMASTER) |
1031 (using_stderr ? 0 : SUPPRESS_SYSLOG);
1032
1033 for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
1034 if (esc_txt[i].flags & suppress_flags)
1035 continue;
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001036 snprintf(string, sizeof string, " %c%-3s - %s\r\n",
Darren Tucker92a39cf2012-09-07 11:20:20 +10001037 escape_char, esc_txt[i].cmd, esc_txt[i].text);
1038 buffer_append(b, string, strlen(string));
1039 }
1040
1041 snprintf(string, sizeof string,
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001042 " %c%c - send the escape character by typing it twice\r\n"
Darren Tucker92a39cf2012-09-07 11:20:20 +10001043 "(Note that escapes are only recognized immediately after "
1044 "newline.)\r\n", escape_char, escape_char);
1045 buffer_append(b, string, strlen(string));
1046}
1047
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001048/*
1049 * Process the characters one by one, call with c==NULL for proto1 case.
1050 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001051static int
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001052process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
1053 char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001054{
1055 char string[1024];
1056 pid_t pid;
1057 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001058 u_int i;
1059 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001060 char *s;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001061 int *escape_pendingp, escape_char;
1062 struct escape_filter_ctx *efc;
Damien Millerad833b32000-08-23 10:46:23 +10001063
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001064 if (c == NULL) {
1065 escape_pendingp = &escape_pending1;
1066 escape_char = escape_char1;
1067 } else {
1068 if (c->filter_ctx == NULL)
1069 return 0;
1070 efc = (struct escape_filter_ctx *)c->filter_ctx;
1071 escape_pendingp = &efc->escape_pending;
1072 escape_char = efc->escape_char;
1073 }
1074
Damien Millereccb9de2005-06-17 12:59:34 +10001075 if (len <= 0)
1076 return (0);
1077
1078 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001079 /* Get one character at a time. */
1080 ch = buf[i];
1081
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001082 if (*escape_pendingp) {
Damien Millerad833b32000-08-23 10:46:23 +10001083 /* We have previously seen an escape character. */
1084 /* Clear the flag now. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001085 *escape_pendingp = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001086
1087 /* Process the escaped character. */
1088 switch (ch) {
1089 case '.':
1090 /* Terminate the connection. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001091 snprintf(string, sizeof string, "%c.\r\n",
1092 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001093 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001094
Damien Millere1537f92010-01-26 13:26:22 +11001095 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001096 chan_read_failed(c);
1097 chan_write_failed(c);
Darren Tuckerea8342c2013-06-06 08:11:40 +10001098 if (c->detach_user)
1099 c->detach_user(c->self, NULL);
Damien Miller36187092013-06-10 13:07:11 +10001100 c->type = SSH_CHANNEL_ABANDONED;
1101 buffer_clear(&c->input);
1102 chan_ibuf_empty(c);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001103 return 0;
1104 } else
1105 quit_pending = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001106 return -1;
1107
1108 case 'Z' - 64:
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001109 /* XXX support this for mux clients */
Damien Millere1537f92010-01-26 13:26:22 +11001110 if (c && c->ctl_chan != -1) {
Darren Tuckerf111d402012-09-07 11:21:42 +10001111 char b[16];
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001112 noescape:
Darren Tuckerf111d402012-09-07 11:21:42 +10001113 if (ch == 'Z' - 64)
1114 snprintf(b, sizeof b, "^Z");
1115 else
1116 snprintf(b, sizeof b, "%c", ch);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001117 snprintf(string, sizeof string,
Darren Tuckerf111d402012-09-07 11:21:42 +10001118 "%c%s escape not available to "
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001119 "multiplexed sessions\r\n",
Darren Tuckerf111d402012-09-07 11:21:42 +10001120 escape_char, b);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001121 buffer_append(berr, string,
1122 strlen(string));
1123 continue;
1124 }
Darren Tucker4d5cd332008-06-13 04:51:14 +10001125 /* Suspend the program. Inform the user */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001126 snprintf(string, sizeof string,
1127 "%c^Z [suspend ssh]\r\n", escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001128 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001129
1130 /* Restore terminal modes and suspend. */
1131 client_suspend_self(bin, bout, berr);
1132
1133 /* We have been continued. */
1134 continue;
1135
Damien Miller54c45982003-05-15 10:20:13 +10001136 case 'B':
1137 if (compat20) {
1138 snprintf(string, sizeof string,
1139 "%cB\r\n", escape_char);
1140 buffer_append(berr, string,
1141 strlen(string));
Damien Miller70182522013-09-14 09:49:19 +10001142 channel_request_start(c->self,
Damien Miller54c45982003-05-15 10:20:13 +10001143 "break", 0);
1144 packet_put_int(1000);
1145 packet_send();
1146 }
1147 continue;
1148
Ben Lindstromf28f6342001-04-04 02:03:04 +00001149 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001150 if (compat20) {
1151 if (datafellows & SSH_BUG_NOREKEY)
Darren Tucker4d5cd332008-06-13 04:51:14 +10001152 logit("Server does not "
1153 "support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001154 else
1155 need_rekeying = 1;
1156 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001157 continue;
1158
Darren Tucker50a48d02012-09-06 21:25:37 +10001159 case 'V':
1160 /* FALLTHROUGH */
1161 case 'v':
1162 if (c && c->ctl_chan != -1)
1163 goto noescape;
1164 if (!log_is_on_stderr()) {
1165 snprintf(string, sizeof string,
1166 "%c%c [Logging to syslog]\r\n",
1167 escape_char, ch);
1168 buffer_append(berr, string,
1169 strlen(string));
1170 continue;
1171 }
1172 if (ch == 'V' && options.log_level >
1173 SYSLOG_LEVEL_QUIET)
1174 log_change_level(--options.log_level);
1175 if (ch == 'v' && options.log_level <
1176 SYSLOG_LEVEL_DEBUG3)
1177 log_change_level(++options.log_level);
1178 snprintf(string, sizeof string,
1179 "%c%c [LogLevel %s]\r\n", escape_char, ch,
1180 log_level_name(options.log_level));
1181 buffer_append(berr, string, strlen(string));
1182 continue;
1183
Damien Millerad833b32000-08-23 10:46:23 +10001184 case '&':
Damien Millere1537f92010-01-26 13:26:22 +11001185 if (c && c->ctl_chan != -1)
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001186 goto noescape;
Damien Millerad833b32000-08-23 10:46:23 +10001187 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001188 * Detach the program (continue to serve
1189 * connections, but put in background and no
1190 * more new connections).
Damien Millerad833b32000-08-23 10:46:23 +10001191 */
Damien Miller96507ef2001-11-12 10:52:25 +11001192 /* Restore tty modes. */
Damien Miller21771e22011-05-15 08:45:50 +10001193 leave_raw_mode(
1194 options.request_tty == REQUEST_TTY_FORCE);
Damien Miller96507ef2001-11-12 10:52:25 +11001195
1196 /* Stop listening for new connections. */
1197 channel_stop_listening();
1198
1199 snprintf(string, sizeof string,
1200 "%c& [backgrounded]\n", escape_char);
1201 buffer_append(berr, string, strlen(string));
1202
1203 /* Fork into background. */
1204 pid = fork();
1205 if (pid < 0) {
1206 error("fork: %.100s", strerror(errno));
1207 continue;
1208 }
1209 if (pid != 0) { /* This is the parent. */
1210 /* The parent just exits. */
1211 exit(0);
1212 }
1213 /* The child continues serving connections. */
1214 if (compat20) {
1215 buffer_append(bin, "\004", 1);
1216 /* fake EOF on stdin */
1217 return -1;
1218 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001219 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001220 * Sending SSH_CMSG_EOF alone does not
1221 * always appear to be enough. So we
1222 * try to send an EOF character first.
Damien Millerad833b32000-08-23 10:46:23 +10001223 */
1224 packet_start(SSH_CMSG_STDIN_DATA);
1225 packet_put_string("\004", 1);
1226 packet_send();
1227 /* Close stdin. */
1228 stdin_eof = 1;
1229 if (buffer_len(bin) == 0) {
1230 packet_start(SSH_CMSG_EOF);
1231 packet_send();
1232 }
1233 }
Damien Miller96507ef2001-11-12 10:52:25 +11001234 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001235
1236 case '?':
Darren Tucker92a39cf2012-09-07 11:20:20 +10001237 print_escape_help(berr, escape_char, compat20,
1238 (c && c->ctl_chan != -1),
1239 log_is_on_stderr());
Damien Millerad833b32000-08-23 10:46:23 +10001240 continue;
1241
1242 case '#':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001243 snprintf(string, sizeof string, "%c#\r\n",
1244 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001245 buffer_append(berr, string, strlen(string));
1246 s = channel_open_message();
1247 buffer_append(berr, s, strlen(s));
Darren Tuckera627d422013-06-02 07:31:17 +10001248 free(s);
Damien Millerad833b32000-08-23 10:46:23 +10001249 continue;
1250
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001251 case 'C':
Damien Millere1537f92010-01-26 13:26:22 +11001252 if (c && c->ctl_chan != -1)
Damien Miller586b0052008-12-09 14:11:32 +11001253 goto noescape;
Ben Lindstrom681d9322002-03-22 03:53:00 +00001254 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001255 continue;
1256
Damien Millerad833b32000-08-23 10:46:23 +10001257 default:
1258 if (ch != escape_char) {
1259 buffer_put_char(bin, escape_char);
1260 bytes++;
1261 }
1262 /* Escaped characters fall through here */
1263 break;
1264 }
1265 } else {
1266 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001267 * The previous character was not an escape char.
1268 * Check if this is an escape.
Damien Millerad833b32000-08-23 10:46:23 +10001269 */
1270 if (last_was_cr && ch == escape_char) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001271 /*
1272 * It is. Set the flag and continue to
1273 * next character.
1274 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001275 *escape_pendingp = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001276 continue;
1277 }
1278 }
1279
1280 /*
1281 * Normal character. Record whether it was a newline,
1282 * and append it to the buffer.
1283 */
1284 last_was_cr = (ch == '\r' || ch == '\n');
1285 buffer_put_char(bin, ch);
1286 bytes++;
1287 }
1288 return bytes;
1289}
1290
Ben Lindstrombba81212001-06-25 05:01:22 +00001291static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001292client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001293{
Damien Miller166fca82000-04-20 07:42:21 +10001294 int len;
Darren Tucker86e30a02009-08-28 11:21:06 +10001295 char buf[SSH_IOBUFSZ];
Damien Miller1383bd82000-04-06 12:32:37 +10001296
Damien Miller95def091999-11-25 00:26:21 +11001297 /* Read input from stdin. */
1298 if (FD_ISSET(fileno(stdin), readset)) {
1299 /* Read as much as possible. */
1300 len = read(fileno(stdin), buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001301 if (len < 0 &&
1302 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001303 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001304 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001305 /*
1306 * Received EOF or error. They are treated
1307 * similarly, except that an error message is printed
1308 * if it was an error condition.
1309 */
Damien Miller95def091999-11-25 00:26:21 +11001310 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001311 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1312 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001313 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001314 }
1315 /* Mark that we have seen EOF. */
1316 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001317 /*
1318 * Send an EOF message to the server unless there is
1319 * data in the buffer. If there is data in the
1320 * buffer, no message will be sent now. Code
1321 * elsewhere will send the EOF when the buffer
1322 * becomes empty if stdin_eof is set.
1323 */
Damien Miller95def091999-11-25 00:26:21 +11001324 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001325 packet_start(SSH_CMSG_EOF);
1326 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001327 }
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001328 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001329 /*
1330 * Normal successful read, and no escape character.
1331 * Just append the data to buffer.
1332 */
Damien Miller95def091999-11-25 00:26:21 +11001333 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001334 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001335 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001336 * Normal, successful read. But we have an escape
1337 * character and have to process the characters one
1338 * by one.
Damien Miller5428f641999-11-25 11:54:57 +11001339 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001340 if (process_escapes(NULL, &stdin_buffer,
1341 &stdout_buffer, &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001342 return;
Damien Miller95def091999-11-25 00:26:21 +11001343 }
1344 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345}
1346
Ben Lindstrombba81212001-06-25 05:01:22 +00001347static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001348client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349{
Damien Miller95def091999-11-25 00:26:21 +11001350 int len;
1351 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001352
Damien Miller95def091999-11-25 00:26:21 +11001353 /* Write buffered output to stdout. */
1354 if (FD_ISSET(fileno(stdout), writeset)) {
1355 /* Write as much data as possible. */
1356 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001357 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001358 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001359 if (errno == EINTR || errno == EAGAIN ||
1360 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001361 len = 0;
1362 else {
Damien Miller5428f641999-11-25 11:54:57 +11001363 /*
1364 * An error or EOF was encountered. Put an
1365 * error message to stderr buffer.
1366 */
Darren Tucker4d5cd332008-06-13 04:51:14 +10001367 snprintf(buf, sizeof buf,
1368 "write stdout: %.50s\r\n", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001369 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001370 quit_pending = 1;
1371 return;
1372 }
1373 }
1374 /* Consume printed data from the buffer. */
1375 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001376 }
Damien Miller95def091999-11-25 00:26:21 +11001377 /* Write buffered output to stderr. */
1378 if (FD_ISSET(fileno(stderr), writeset)) {
1379 /* Write as much data as possible. */
1380 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001381 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001382 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001383 if (errno == EINTR || errno == EAGAIN ||
1384 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001385 len = 0;
1386 else {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001387 /*
1388 * EOF or error, but can't even print
1389 * error message.
1390 */
Damien Miller95def091999-11-25 00:26:21 +11001391 quit_pending = 1;
1392 return;
1393 }
1394 }
1395 /* Consume printed characters from the buffer. */
1396 buffer_consume(&stderr_buffer, len);
1397 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398}
1399
Damien Miller5428f641999-11-25 11:54:57 +11001400/*
Damien Millerb38eff82000-04-01 11:09:21 +10001401 * Get packets from the connection input buffer, and process them as long as
1402 * there are packets available.
1403 *
1404 * Any unknown packets received during the actual
1405 * session cause the session to terminate. This is
1406 * intended to make debugging easier since no
1407 * confirmations are sent. Any compatible protocol
1408 * extensions must be negotiated during the
1409 * preparatory phase.
1410 */
1411
Ben Lindstrombba81212001-06-25 05:01:22 +00001412static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001413client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001414{
Darren Tucker4d5cd332008-06-13 04:51:14 +10001415 dispatch_run(DISPATCH_NONBLOCK, &quit_pending,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001416 compat20 ? active_state->kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001417}
1418
Damien Millerad833b32000-08-23 10:46:23 +10001419/* scan buf[] for '~' before sending data to the peer */
1420
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001421/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1422void *
1423client_new_escape_filter_ctx(int escape_char)
1424{
1425 struct escape_filter_ctx *ret;
1426
Damien Miller6c81fee2013-11-08 12:19:55 +11001427 ret = xcalloc(1, sizeof(*ret));
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001428 ret->escape_pending = 0;
1429 ret->escape_char = escape_char;
1430 return (void *)ret;
1431}
1432
Darren Tucker84c56f52008-06-13 04:55:46 +10001433/* Free the escape filter context on channel free */
1434void
1435client_filter_cleanup(int cid, void *ctx)
1436{
Darren Tuckera627d422013-06-02 07:31:17 +10001437 free(ctx);
Darren Tucker84c56f52008-06-13 04:55:46 +10001438}
1439
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001440int
1441client_simple_escape_filter(Channel *c, char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001442{
Damien Miller5771ed72008-05-19 15:35:33 +10001443 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1444 return 0;
1445
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001446 return process_escapes(c, &c->input, &c->output, &c->extended,
1447 buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001448}
1449
Ben Lindstrombba81212001-06-25 05:01:22 +00001450static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001451client_channel_closed(int id, void *arg)
1452{
Damien Miller3ec27592001-10-12 11:35:04 +10001453 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001454 session_closed = 1;
Damien Miller21771e22011-05-15 08:45:50 +10001455 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001456}
1457
Damien Millerb38eff82000-04-01 11:09:21 +10001458/*
Damien Miller5428f641999-11-25 11:54:57 +11001459 * Implements the interactive session with the server. This is called after
1460 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001461 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1462 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001463 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001464
Damien Miller4af51302000-04-16 11:18:38 +10001465int
Damien Millerad833b32000-08-23 10:46:23 +10001466client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001467{
Damien Miller5e953212001-01-30 09:14:00 +11001468 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001469 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001470 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001471 u_int64_t ibytes, obytes;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001472 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001473 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001474
Damien Miller95def091999-11-25 00:26:21 +11001475 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001476
Damien Miller95def091999-11-25 00:26:21 +11001477 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001478
Damien Miller95def091999-11-25 00:26:21 +11001479 /* Initialize variables. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001480 escape_pending1 = 0;
Damien Miller95def091999-11-25 00:26:21 +11001481 last_was_cr = 1;
1482 exit_status = -1;
1483 stdin_eof = 0;
1484 buffer_high = 64 * 1024;
1485 connection_in = packet_get_connection_in();
1486 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001487 max_fd = MAX(connection_in, connection_out);
1488
1489 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001490 /* enable nonblocking unless tty */
1491 if (!isatty(fileno(stdin)))
1492 set_nonblock(fileno(stdin));
1493 if (!isatty(fileno(stdout)))
1494 set_nonblock(fileno(stdout));
1495 if (!isatty(fileno(stderr)))
1496 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001497 max_fd = MAX(max_fd, fileno(stdin));
1498 max_fd = MAX(max_fd, fileno(stdout));
1499 max_fd = MAX(max_fd, fileno(stderr));
1500 }
Damien Miller95def091999-11-25 00:26:21 +11001501 quit_pending = 0;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001502 escape_char1 = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503
Damien Miller95def091999-11-25 00:26:21 +11001504 /* Initialize buffers. */
1505 buffer_init(&stdin_buffer);
1506 buffer_init(&stdout_buffer);
1507 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001508
Damien Millerb38eff82000-04-01 11:09:21 +10001509 client_init_dispatch();
1510
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001511 /*
1512 * Set signal handlers, (e.g. to restore non-blocking mode)
1513 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1514 */
Darren Tucker07336da2004-11-05 20:02:16 +11001515 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1516 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001517 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1518 signal(SIGINT, signal_handler);
1519 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1520 signal(SIGQUIT, signal_handler);
1521 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1522 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001523 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001524
Damien Miller95def091999-11-25 00:26:21 +11001525 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001526 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001527
Ben Lindstrom5b828322001-02-09 01:34:36 +00001528 if (compat20) {
1529 session_ident = ssh2_chan_id;
Damien Miller6c3eec72011-05-05 14:16:22 +10001530 if (session_ident != -1) {
1531 if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
1532 channel_register_filter(session_ident,
1533 client_simple_escape_filter, NULL,
1534 client_filter_cleanup,
1535 client_new_escape_filter_ctx(
1536 escape_char_arg));
1537 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001538 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001539 client_channel_closed, 0);
Damien Miller6c3eec72011-05-05 14:16:22 +10001540 }
Ben Lindstrom5b828322001-02-09 01:34:36 +00001541 } else {
1542 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001543 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001544 }
Damien Millerad833b32000-08-23 10:46:23 +10001545
Damien Miller95def091999-11-25 00:26:21 +11001546 /* Main loop of the client for the interactive session mode. */
1547 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001548
Damien Miller5428f641999-11-25 11:54:57 +11001549 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001550 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001551
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001552 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001553 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001554
markus@openbsd.org091c3022015-01-19 19:52:16 +00001555 rekeying = (active_state->kex != NULL && !active_state->kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001556
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001557 if (rekeying) {
1558 debug("rekeying in progress");
1559 } else {
1560 /*
1561 * Make packets of buffered stdin data, and buffer
1562 * them for sending to the server.
1563 */
1564 if (!compat20)
1565 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001567 /*
1568 * Make packets from buffered channel data, and
1569 * enqueue them for sending to the server.
1570 */
1571 if (packet_not_very_much_data_to_write())
1572 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001573
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001574 /*
1575 * Check if the window size has changed, and buffer a
1576 * message about it to the server if so.
1577 */
1578 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001579
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001580 if (quit_pending)
1581 break;
1582 }
Damien Miller5428f641999-11-25 11:54:57 +11001583 /*
1584 * Wait until we have something to do (something becomes
1585 * available on one of the descriptors).
1586 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001587 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001588 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001589 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001590
Damien Miller95def091999-11-25 00:26:21 +11001591 if (quit_pending)
1592 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001593
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001594 /* Do channel operations unless rekeying in progress. */
1595 if (!rekeying) {
1596 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001597 if (need_rekeying || packet_need_rekeying()) {
1598 debug("need rekeying");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001599 active_state->kex->done = 0;
1600 kex_send_kexinit(active_state->kex);
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001601 need_rekeying = 0;
1602 }
1603 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001604
Damien Miller1383bd82000-04-06 12:32:37 +10001605 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001606 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607
Damien Miller1383bd82000-04-06 12:32:37 +10001608 if (quit_pending)
1609 break;
1610
1611 if (!compat20) {
1612 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001613 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001614 /*
1615 * Process output to stdout and stderr. Output to
1616 * the connection is processed elsewhere (above).
1617 */
Damien Miller5e953212001-01-30 09:14:00 +11001618 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001619 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001620
Darren Tuckere32cf432010-01-08 16:51:40 +11001621 if (session_resumed) {
1622 connection_in = packet_get_connection_in();
1623 connection_out = packet_get_connection_out();
1624 max_fd = MAX(max_fd, connection_out);
1625 max_fd = MAX(max_fd, connection_in);
1626 session_resumed = 0;
1627 }
1628
Darren Tucker4d5cd332008-06-13 04:51:14 +10001629 /*
1630 * Send as much buffered packet data as possible to the
1631 * sender.
1632 */
Damien Miller5e953212001-01-30 09:14:00 +11001633 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001634 packet_write_poll();
Damien Millere11e1ea2010-08-03 16:04:46 +10001635
1636 /*
1637 * If we are a backgrounded control master, and the
1638 * timeout has expired without any active client
1639 * connections, then quit.
1640 */
1641 if (control_persist_exit_time > 0) {
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001642 if (monotime() >= control_persist_exit_time) {
Damien Millere11e1ea2010-08-03 16:04:46 +10001643 debug("ControlPersist timeout expired");
1644 break;
1645 }
1646 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001647 }
Darren Tuckera627d422013-06-02 07:31:17 +10001648 free(readset);
1649 free(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001650
Damien Miller95def091999-11-25 00:26:21 +11001651 /* Terminate the session. */
1652
1653 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001654 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001655
Darren Tuckerde0c0252009-07-06 07:17:35 +10001656 if (compat20) {
1657 packet_start(SSH2_MSG_DISCONNECT);
1658 packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
1659 packet_put_cstring("disconnected by user");
Damien Miller8ddc71c2010-03-22 05:54:02 +11001660 packet_put_cstring(""); /* language tag */
Darren Tuckerde0c0252009-07-06 07:17:35 +10001661 packet_send();
1662 packet_write_wait();
1663 }
Darren Tucker12b4a652009-06-21 18:14:48 +10001664
Ben Lindstrom601e4362001-06-21 03:19:23 +00001665 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001666
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001667 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001668 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001669
1670 /* restore blocking io */
1671 if (!isatty(fileno(stdin)))
1672 unset_nonblock(fileno(stdin));
1673 if (!isatty(fileno(stdout)))
1674 unset_nonblock(fileno(stdout));
1675 if (!isatty(fileno(stderr)))
1676 unset_nonblock(fileno(stderr));
1677
Damien Millerd6965512003-12-17 16:31:53 +11001678 /*
1679 * If there was no shell or command requested, there will be no remote
1680 * exit status to be returned. In that case, clear error code if the
1681 * connection was deliberately terminated at this end.
1682 */
1683 if (no_shell_flag && received_signal == SIGTERM) {
1684 received_signal = 0;
1685 exit_status = 0;
1686 }
1687
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001688 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001689 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001690
1691 /*
1692 * In interactive mode (with pseudo tty) display a message indicating
1693 * that the connection has been closed.
1694 */
1695 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001696 snprintf(buf, sizeof buf,
1697 "Connection to %.64s closed.\r\n", host);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001698 buffer_append(&stderr_buffer, buf, strlen(buf));
1699 }
1700
Damien Miller95def091999-11-25 00:26:21 +11001701 /* Output any buffered data for stdout. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001702 if (buffer_len(&stdout_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001703 len = atomicio(vwrite, fileno(stdout),
1704 buffer_ptr(&stdout_buffer), buffer_len(&stdout_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001705 if (len < 0 || (u_int)len != buffer_len(&stdout_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001706 error("Write failed flushing stdout buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001707 else
1708 buffer_consume(&stdout_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001709 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001710
Damien Miller95def091999-11-25 00:26:21 +11001711 /* Output any buffered data for stderr. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001712 if (buffer_len(&stderr_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001713 len = atomicio(vwrite, fileno(stderr),
1714 buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001715 if (len < 0 || (u_int)len != buffer_len(&stderr_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001716 error("Write failed flushing stderr buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001717 else
1718 buffer_consume(&stderr_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001719 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001720
Damien Miller95def091999-11-25 00:26:21 +11001721 /* Clear and free any buffers. */
1722 memset(buf, 0, sizeof(buf));
1723 buffer_free(&stdin_buffer);
1724 buffer_free(&stdout_buffer);
1725 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001726
Damien Miller95def091999-11-25 00:26:21 +11001727 /* Report bytes transferred, and transfer rates. */
1728 total_time = get_current_time() - start_time;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001729 packet_get_bytes(&ibytes, &obytes);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001730 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
Damien Miller821de0a2011-01-11 17:20:29 +11001731 (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001732 if (total_time > 0)
Damien Millerb61f3fc2008-07-11 17:36:48 +10001733 verbose("Bytes per second: sent %.1f, received %.1f",
1734 obytes / total_time, ibytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001735 /* Return the exit status of the program. */
1736 debug("Exit status %d", exit_status);
1737 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738}
Damien Millerb38eff82000-04-01 11:09:21 +10001739
1740/*********/
1741
Ben Lindstrombba81212001-06-25 05:01:22 +00001742static void
Damien Miller630d6f42002-01-22 23:17:30 +11001743client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001744{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001745 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001746 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001747 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001748 buffer_append(&stdout_buffer, data, data_len);
Damien Millera5103f42014-02-04 11:20:14 +11001749 explicit_bzero(data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10001750 free(data);
Damien Millerb38eff82000-04-01 11:09:21 +10001751}
Ben Lindstrombba81212001-06-25 05:01:22 +00001752static void
Damien Miller630d6f42002-01-22 23:17:30 +11001753client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001754{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001755 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001756 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001757 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001758 buffer_append(&stderr_buffer, data, data_len);
Damien Millera5103f42014-02-04 11:20:14 +11001759 explicit_bzero(data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10001760 free(data);
Damien Millerb38eff82000-04-01 11:09:21 +10001761}
Ben Lindstrombba81212001-06-25 05:01:22 +00001762static void
Damien Miller630d6f42002-01-22 23:17:30 +11001763client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001764{
Damien Millerb38eff82000-04-01 11:09:21 +10001765 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001766 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001767 /* Acknowledge the exit. */
1768 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1769 packet_send();
1770 /*
1771 * Must wait for packet to be sent since we are
1772 * exiting the loop.
1773 */
1774 packet_write_wait();
1775 /* Flag that we want to exit. */
1776 quit_pending = 1;
1777}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001778static void
1779client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1780{
1781 Channel *c = NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001782 int r, remote_id, sock;
Darren Tucker5dcdd212003-10-02 16:17:00 +10001783
1784 /* Read the remote channel number from the message. */
1785 remote_id = packet_get_int();
1786 packet_check_eom();
1787
1788 /*
1789 * Get a connection to the local authentication agent (this may again
1790 * get forwarded).
1791 */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001792 if ((r = ssh_get_authentication_socket(&sock)) != 0 &&
1793 r != SSH_ERR_AGENT_NOT_PRESENT)
1794 debug("%s: ssh_get_authentication_socket: %s",
1795 __func__, ssh_err(r));
1796
Darren Tucker5dcdd212003-10-02 16:17:00 +10001797
1798 /*
1799 * If we could not connect the agent, send an error message back to
1800 * the server. This should never happen unless the agent dies,
1801 * because authentication forwarding is only enabled if we have an
1802 * agent.
1803 */
1804 if (sock >= 0) {
1805 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1806 -1, 0, 0, 0, "authentication agent connection", 1);
1807 c->remote_id = remote_id;
1808 c->force_drain = 1;
1809 }
1810 if (c == NULL) {
1811 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1812 packet_put_int(remote_id);
1813 } else {
1814 /* Send a confirmation to the remote host. */
1815 debug("Forwarding authentication connection.");
1816 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1817 packet_put_int(remote_id);
1818 packet_put_int(c->self);
1819 }
1820 packet_send();
1821}
Damien Millerb38eff82000-04-01 11:09:21 +10001822
Ben Lindstrombba81212001-06-25 05:01:22 +00001823static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001824client_request_forwarded_tcpip(const char *request_type, int rchan)
1825{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001826 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001827 char *listen_address, *originator_address;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001828 u_short listen_port, originator_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001829
1830 /* Get rest of the packet */
1831 listen_address = packet_get_string(NULL);
1832 listen_port = packet_get_int();
1833 originator_address = packet_get_string(NULL);
1834 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001835 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001836
Damien Miller7acefbb2014-07-18 14:11:24 +10001837 debug("%s: listen %s port %d, originator %s port %d", __func__,
1838 listen_address, listen_port, originator_address, originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001839
Damien Miller4b3ed642014-07-02 15:29:40 +10001840 c = channel_connect_by_listen_address(listen_address, listen_port,
Damien Millerbd740252008-05-19 15:37:09 +10001841 "forwarded-tcpip", originator_address);
1842
Darren Tuckera627d422013-06-02 07:31:17 +10001843 free(originator_address);
1844 free(listen_address);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001845 return c;
1846}
1847
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001848static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10001849client_request_forwarded_streamlocal(const char *request_type, int rchan)
1850{
1851 Channel *c = NULL;
1852 char *listen_path;
1853
1854 /* Get the remote path. */
1855 listen_path = packet_get_string(NULL);
1856 /* XXX: Skip reserved field for now. */
1857 if (packet_get_string_ptr(NULL) == NULL)
1858 fatal("%s: packet_get_string_ptr failed", __func__);
1859 packet_check_eom();
1860
1861 debug("%s: %s", __func__, listen_path);
1862
1863 c = channel_connect_by_listen_path(listen_path,
1864 "forwarded-streamlocal@openssh.com", "forwarded-streamlocal");
1865 free(listen_path);
1866 return c;
1867}
1868
1869static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001870client_request_x11(const char *request_type, int rchan)
1871{
1872 Channel *c = NULL;
1873 char *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001874 u_short originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001875 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001876
1877 if (!options.forward_x11) {
1878 error("Warning: ssh server tried X11 forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001879 error("Warning: this is probably a break-in attempt by a "
1880 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001881 return NULL;
1882 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001883 if (x11_refuse_time != 0 && monotime() >= x11_refuse_time) {
Damien Miller1ab6a512010-06-26 10:02:24 +10001884 verbose("Rejected X11 connection after ForwardX11Timeout "
1885 "expired");
1886 return NULL;
1887 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001888 originator = packet_get_string(NULL);
1889 if (datafellows & SSH_BUG_X11FWD) {
1890 debug2("buggy server: x11 request w/o originator_port");
1891 originator_port = 0;
1892 } else {
1893 originator_port = packet_get_int();
1894 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001895 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001896 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001897 debug("client_request_x11: request from %s %d", originator,
1898 originator_port);
Darren Tuckera627d422013-06-02 07:31:17 +10001899 free(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001900 sock = x11_connect_display();
1901 if (sock < 0)
1902 return NULL;
1903 c = channel_new("x11",
1904 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001905 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001906 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001907 return c;
1908}
1909
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001910static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001911client_request_agent(const char *request_type, int rchan)
1912{
1913 Channel *c = NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001914 int r, sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001915
1916 if (!options.forward_agent) {
1917 error("Warning: ssh server tried agent forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001918 error("Warning: this is probably a break-in attempt by a "
1919 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001920 return NULL;
1921 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001922 if ((r = ssh_get_authentication_socket(&sock)) != 0) {
1923 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1924 debug("%s: ssh_get_authentication_socket: %s",
1925 __func__, ssh_err(r));
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001926 return NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001927 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001928 c = channel_new("authentication agent connection",
1929 SSH_CHANNEL_OPEN, sock, sock, -1,
Darren Tucker5baa1702007-12-29 09:37:10 +11001930 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001931 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001932 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001933 return c;
1934}
1935
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001936int
1937client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1938{
1939 Channel *c;
1940 int fd;
1941
1942 if (tun_mode == SSH_TUNMODE_NO)
1943 return 0;
1944
1945 if (!compat20) {
Damien Millerb3f2c9f2009-01-28 16:15:30 +11001946 error("Tunnel forwarding is not supported for protocol 1");
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001947 return -1;
1948 }
1949
1950 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1951
1952 /* Open local tunnel device */
1953 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1954 error("Tunnel device open failed.");
1955 return -1;
1956 }
1957
1958 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1959 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
1960 c->datagram = 1;
1961
1962#if defined(SSH_TUN_FILTER)
1963 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1964 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10001965 sys_tun_outfilter, NULL, NULL);
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001966#endif
1967
1968 packet_start(SSH2_MSG_CHANNEL_OPEN);
1969 packet_put_cstring("tun@openssh.com");
1970 packet_put_int(c->self);
1971 packet_put_int(c->local_window_max);
1972 packet_put_int(c->local_maxpacket);
1973 packet_put_int(tun_mode);
1974 packet_put_int(remote_tun);
1975 packet_send();
1976
1977 return 0;
1978}
1979
Damien Millerbd483e72000-04-30 10:00:53 +10001980/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001981static void
Damien Miller630d6f42002-01-22 23:17:30 +11001982client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001983{
1984 Channel *c = NULL;
1985 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001986 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001987 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001988
1989 ctype = packet_get_string(&len);
1990 rchan = packet_get_int();
1991 rwindow = packet_get_int();
1992 rmaxpack = packet_get_int();
1993
Damien Millere247cc42000-05-07 12:03:14 +10001994 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001995 ctype, rchan, rwindow, rmaxpack);
1996
Damien Miller0bc1bd82000-11-13 22:57:25 +11001997 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1998 c = client_request_forwarded_tcpip(ctype, rchan);
Damien Miller7acefbb2014-07-18 14:11:24 +10001999 } else if (strcmp(ctype, "forwarded-streamlocal@openssh.com") == 0) {
2000 c = client_request_forwarded_streamlocal(ctype, rchan);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002001 } else if (strcmp(ctype, "x11") == 0) {
2002 c = client_request_x11(ctype, rchan);
2003 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
2004 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10002005 }
2006/* XXX duplicate : */
2007 if (c != NULL) {
2008 debug("confirm %s", ctype);
2009 c->remote_id = rchan;
2010 c->remote_window = rwindow;
2011 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002012 if (c->type != SSH_CHANNEL_CONNECTING) {
2013 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
2014 packet_put_int(c->remote_id);
2015 packet_put_int(c->self);
2016 packet_put_int(c->local_window);
2017 packet_put_int(c->local_maxpacket);
2018 packet_send();
2019 }
Damien Millerbd483e72000-04-30 10:00:53 +10002020 } else {
2021 debug("failure %s", ctype);
2022 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
2023 packet_put_int(rchan);
2024 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00002025 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002026 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00002027 packet_put_cstring("");
2028 }
Damien Millerbd483e72000-04-30 10:00:53 +10002029 packet_send();
2030 }
Darren Tuckera627d422013-06-02 07:31:17 +10002031 free(ctype);
Damien Millerbd483e72000-04-30 10:00:53 +10002032}
Ben Lindstrombba81212001-06-25 05:01:22 +00002033static void
Damien Miller630d6f42002-01-22 23:17:30 +11002034client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00002035{
2036 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002037 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00002038 char *rtype;
2039
2040 id = packet_get_int();
2041 rtype = packet_get_string(NULL);
2042 reply = packet_get_char();
2043
2044 debug("client_input_channel_req: channel %d rtype %s reply %d",
2045 id, rtype, reply);
2046
Damien Miller3bbd8782004-06-18 22:23:22 +10002047 if (id == -1) {
2048 error("client_input_channel_req: request for channel -1");
2049 } else if ((c = channel_lookup(id)) == NULL) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10002050 error("client_input_channel_req: channel %d: "
2051 "unknown channel", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10002052 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
2053 packet_check_eom();
2054 chan_rcvd_eow(c);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002055 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10002056 exitval = packet_get_int();
Damien Millere1537f92010-01-26 13:26:22 +11002057 if (c->ctl_chan != -1) {
2058 mux_exit_message(c, exitval);
Damien Miller0e220db2004-06-15 10:34:08 +10002059 success = 1;
Darren Tucker29440822010-01-08 17:08:35 +11002060 } else if (id == session_ident) {
2061 /* Record exit value of local session */
2062 success = 1;
2063 exit_status = exitval;
2064 } else {
Damien Miller36f57eb2010-01-30 17:28:34 +11002065 /* Probably for a mux channel that has already closed */
2066 debug("%s: no sink for exit-status on channel %d",
2067 __func__, id);
Damien Miller0e220db2004-06-15 10:34:08 +10002068 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002069 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00002070 }
Damien Millerc5893782014-05-15 13:48:49 +10002071 if (reply && c != NULL && !(c->flags & CHAN_CLOSE_SENT)) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00002072 packet_start(success ?
2073 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller8533c782008-12-08 09:54:40 +11002074 packet_put_int(c->remote_id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002075 packet_send();
2076 }
Darren Tuckera627d422013-06-02 07:31:17 +10002077 free(rtype);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002078}
Damien Millerc3fa4072002-01-22 23:21:58 +11002079static void
2080client_input_global_request(int type, u_int32_t seq, void *ctxt)
2081{
2082 char *rtype;
2083 int want_reply;
2084 int success = 0;
2085
2086 rtype = packet_get_string(NULL);
2087 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11002088 debug("client_input_global_request: rtype %s want_reply %d",
2089 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11002090 if (want_reply) {
2091 packet_start(success ?
2092 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
2093 packet_send();
2094 packet_write_wait();
2095 }
Darren Tuckera627d422013-06-02 07:31:17 +10002096 free(rtype);
Damien Millerc3fa4072002-01-22 23:21:58 +11002097}
Damien Millerbd483e72000-04-30 10:00:53 +10002098
Damien Miller0e220db2004-06-15 10:34:08 +10002099void
Darren Tuckerfc959702004-07-17 16:12:08 +10002100client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller5771ed72008-05-19 15:35:33 +10002101 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
Damien Miller0e220db2004-06-15 10:34:08 +10002102{
2103 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11002104 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002105
2106 debug2("%s: id %d", __func__, id);
2107
Darren Tucker5d78de62004-11-05 20:35:44 +11002108 if ((c = channel_lookup(id)) == NULL)
2109 fatal("client_session2_setup: channel %d: unknown channel", id);
2110
Damien Miller0dac6fb2010-11-20 15:19:38 +11002111 packet_set_interactive(want_tty,
2112 options.ip_qos_interactive, options.ip_qos_bulk);
2113
Damien Miller0e220db2004-06-15 10:34:08 +10002114 if (want_tty) {
2115 struct winsize ws;
Damien Miller0e220db2004-06-15 10:34:08 +10002116
2117 /* Store window size in the packet. */
2118 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
2119 memset(&ws, 0, sizeof(ws));
2120
Damien Miller5771ed72008-05-19 15:35:33 +10002121 channel_request_start(id, "pty-req", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002122 client_expect_confirm(id, "PTY allocation", CONFIRM_TTY);
Damien Miller0e220db2004-06-15 10:34:08 +10002123 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11002124 packet_put_int((u_int)ws.ws_col);
2125 packet_put_int((u_int)ws.ws_row);
2126 packet_put_int((u_int)ws.ws_xpixel);
2127 packet_put_int((u_int)ws.ws_ypixel);
Darren Tuckerdf189fb2008-06-08 12:55:32 +10002128 if (tiop == NULL)
2129 tiop = get_saved_tio();
2130 tty_make_modes(-1, tiop);
Damien Miller0e220db2004-06-15 10:34:08 +10002131 packet_send();
2132 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11002133 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10002134 }
2135
2136 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10002137 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10002138 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10002139 char *name, *val;
2140
2141 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10002142 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10002143 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10002144 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10002145 if ((val = strchr(name, '=')) == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002146 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002147 continue;
2148 }
2149 *val++ = '\0';
2150
2151 matched = 0;
2152 for (j = 0; j < options.num_send_env; j++) {
2153 if (match_pattern(name, options.send_env[j])) {
2154 matched = 1;
2155 break;
2156 }
2157 }
2158 if (!matched) {
2159 debug3("Ignored env %s", name);
Darren Tuckera627d422013-06-02 07:31:17 +10002160 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002161 continue;
2162 }
2163
2164 debug("Sending env %s = %s", name, val);
2165 channel_request_start(id, "env", 0);
2166 packet_put_cstring(name);
2167 packet_put_cstring(val);
2168 packet_send();
Darren Tuckera627d422013-06-02 07:31:17 +10002169 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002170 }
2171 }
2172
2173 len = buffer_len(cmd);
2174 if (len > 0) {
2175 if (len > 900)
2176 len = 900;
2177 if (want_subsystem) {
Damien Miller5771ed72008-05-19 15:35:33 +10002178 debug("Sending subsystem: %.*s",
2179 len, (u_char*)buffer_ptr(cmd));
2180 channel_request_start(id, "subsystem", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002181 client_expect_confirm(id, "subsystem", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002182 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002183 debug("Sending command: %.*s",
2184 len, (u_char*)buffer_ptr(cmd));
2185 channel_request_start(id, "exec", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002186 client_expect_confirm(id, "exec", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002187 }
2188 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
2189 packet_send();
2190 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002191 channel_request_start(id, "shell", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002192 client_expect_confirm(id, "shell", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002193 packet_send();
2194 }
2195}
2196
Ben Lindstrombba81212001-06-25 05:01:22 +00002197static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002198client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10002199{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002200 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10002201
Damien Miller1383bd82000-04-06 12:32:37 +10002202 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2203 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2204 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2205 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10002206 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10002207 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2208 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002209 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10002210 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerb84886b2008-05-19 15:05:07 +10002211 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2212 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
Damien Millerc3fa4072002-01-22 23:21:58 +11002213 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002214
2215 /* rekeying */
2216 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10002217
2218 /* global request reply messages */
2219 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2220 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10002221}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002222
Ben Lindstrombba81212001-06-25 05:01:22 +00002223static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002224client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002225{
2226 dispatch_init(NULL);
2227 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2228 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2229 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002230 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2231 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2232 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002233 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2234 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2235 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002236
2237 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002238 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002239 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2240 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002241}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002242
Ben Lindstrombba81212001-06-25 05:01:22 +00002243static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002244client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002245{
2246 client_init_dispatch_13();
2247 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2248 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2249}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002250
Ben Lindstromdb47f382001-07-04 05:10:27 +00002251static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002252client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002253{
Damien Miller1383bd82000-04-06 12:32:37 +10002254 if (compat20)
2255 client_init_dispatch_20();
2256 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002257 client_init_dispatch_13();
2258 else
2259 client_init_dispatch_15();
2260}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002261
Damien Miller6c3eec72011-05-05 14:16:22 +10002262void
2263client_stop_mux(void)
2264{
2265 if (options.control_path != NULL && muxserver_sock != -1)
2266 unlink(options.control_path);
2267 /*
Darren Tucker48bf4b02012-09-07 16:38:53 +10002268 * If we are in persist mode, or don't have a shell, signal that we
2269 * should close when all active channels are closed.
Damien Miller6c3eec72011-05-05 14:16:22 +10002270 */
Darren Tucker48bf4b02012-09-07 16:38:53 +10002271 if (options.control_persist || no_shell_flag) {
Damien Miller6c3eec72011-05-05 14:16:22 +10002272 session_closed = 1;
Damien Miller4ac99c32011-06-20 14:43:31 +10002273 setproctitle("[stopped mux]");
2274 }
Damien Miller6c3eec72011-05-05 14:16:22 +10002275}
2276
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002277/* client specific fatal cleanup */
2278void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002279cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002280{
Damien Miller21771e22011-05-15 08:45:50 +10002281 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002282 leave_non_blocking();
Damien Millerb1cbfa22008-05-19 16:00:08 +10002283 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10002284 unlink(options.control_path);
Damien Millera41ccca2010-10-07 22:07:32 +11002285 ssh_kill_proxy_command();
Darren Tucker3e33cec2003-10-02 16:12:36 +10002286 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002287}