blob: f1b108fcd61e5b754819b39c27576d6ad4f19b12 [file] [log] [blame]
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001/* $OpenBSD: clientloop.c,v 1.249 2013/05/16 02:00:34 dtucker 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"
103#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000104#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100105#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000106#include "authfd.h"
107#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000108#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000109#include "misc.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"
Damien Miller69b69aa2000-10-28 14:19:58 +1100113
114/* import options */
115extern Options options;
116
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117/* Flag indicating that stdin should be redirected from /dev/null. */
118extern int stdin_null_flag;
119
Damien Millerd6965512003-12-17 16:31:53 +1100120/* Flag indicating that no shell has been requested */
121extern int no_shell_flag;
122
Damien Miller0e220db2004-06-15 10:34:08 +1000123/* Control socket */
Damien Millere1537f92010-01-26 13:26:22 +1100124extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
Damien Miller0e220db2004-06-15 10:34:08 +1000125
Damien Miller5428f641999-11-25 11:54:57 +1100126/*
127 * Name of the host we are connecting to. This is the name given on the
128 * command line, or the HostName specified for the user-supplied name in a
129 * configuration file.
130 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131extern char *host;
132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
134 * Flag to indicate that we have received a window change signal which has
135 * not yet been processed. This will cause a message indicating the new
136 * window size to be sent to the server a little later. This is volatile
137 * because this is updated in a signal handler.
138 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000139static volatile sig_atomic_t received_window_change_signal = 0;
140static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Damien Miller788f2122005-11-05 15:14:59 +1100142/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143static int in_non_blocking_mode = 0;
144
Damien Millere11e1ea2010-08-03 16:04:46 +1000145/* Time when backgrounded control master using ControlPersist should exit */
146static time_t control_persist_exit_time = 0;
147
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148/* Common data for the client loop code. */
Damien Millere1537f92010-01-26 13:26:22 +1100149volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000150static int escape_char1; /* Escape character. (proto1 only) */
151static int escape_pending1; /* Last character was an escape (proto1 only) */
Damien Miller95def091999-11-25 00:26:21 +1100152static int last_was_cr; /* Last character was a newline. */
Darren Tucker4d5cd332008-06-13 04:51:14 +1000153static int exit_status; /* Used to store the command exit status. */
154static int stdin_eof; /* EOF has been encountered on stderr. */
Damien Miller95def091999-11-25 00:26:21 +1100155static Buffer stdin_buffer; /* Buffer for stdin data. */
156static Buffer stdout_buffer; /* Buffer for stdout data. */
157static Buffer stderr_buffer; /* Buffer for stderr data. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000158static u_int buffer_high; /* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100159static int connection_in; /* Connection to server (input). */
160static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000161static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000162static int session_closed; /* In SSH2: login session closed. */
163static int x11_refuse_time; /* If >0, refuse x11 opens after this time. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
Ben Lindstrombba81212001-06-25 05:01:22 +0000165static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000166int session_ident = -1;
167
Darren Tuckere32cf432010-01-08 16:51:40 +1100168int session_resumed = 0;
169
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000170/* Track escape per proto2 channel */
171struct escape_filter_ctx {
172 int escape_pending;
173 int escape_char;
174};
175
176/* Context for channel confirmation replies */
Damien Miller5771ed72008-05-19 15:35:33 +1000177struct channel_reply_ctx {
178 const char *request_type;
Damien Miller555f3b82011-05-15 08:48:05 +1000179 int id;
180 enum confirm_action action;
Damien Miller5771ed72008-05-19 15:35:33 +1000181};
182
Darren Tucker9f407c42008-06-13 04:50:27 +1000183/* Global request success/failure callbacks */
184struct global_confirm {
185 TAILQ_ENTRY(global_confirm) entry;
186 global_confirm_cb *cb;
187 void *ctx;
188 int ref_count;
189};
190TAILQ_HEAD(global_confirms, global_confirm);
191static struct global_confirms global_confirms =
192 TAILQ_HEAD_INITIALIZER(global_confirms);
193
Ben Lindstromf28f6342001-04-04 02:03:04 +0000194/*XXX*/
195extern Kex *xxx_kex;
196
Damien Miller0e220db2004-06-15 10:34:08 +1000197void ssh_process_session2_setup(int, int, int, Buffer *);
198
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199/* Restores stdin to blocking mode. */
200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000202leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203{
Damien Miller95def091999-11-25 00:26:21 +1100204 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000205 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100206 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100207 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Damien Miller95def091999-11-25 00:26:21 +1100210/* Puts stdin terminal in non-blocking mode. */
211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000213enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214{
Damien Miller95def091999-11-25 00:26:21 +1100215 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000216 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217}
218
Damien Miller5428f641999-11-25 11:54:57 +1100219/*
220 * Signal handler for the window change signal (SIGWINCH). This just sets a
221 * flag indicating that the window has changed.
222 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100223/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000224static void
Damien Miller95def091999-11-25 00:26:21 +1100225window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226{
Damien Miller95def091999-11-25 00:26:21 +1100227 received_window_change_signal = 1;
228 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229}
230
Damien Miller5428f641999-11-25 11:54:57 +1100231/*
232 * Signal handler for signals that cause the program to terminate. These
233 * signals must be trapped to restore terminal modes.
234 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100235/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000236static void
Damien Miller95def091999-11-25 00:26:21 +1100237signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000239 received_signal = sig;
240 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241}
242
Damien Miller5428f641999-11-25 11:54:57 +1100243/*
244 * Returns current time in seconds from Jan 1, 1970 with the maximum
245 * available resolution.
246 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
Ben Lindstrombba81212001-06-25 05:01:22 +0000248static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000249get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250{
Damien Miller95def091999-11-25 00:26:21 +1100251 struct timeval tv;
252 gettimeofday(&tv, NULL);
253 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254}
255
Damien Millere11e1ea2010-08-03 16:04:46 +1000256/*
257 * Sets control_persist_exit_time to the absolute time when the
258 * backgrounded control master should exit due to expiry of the
259 * ControlPersist timeout. Sets it to 0 if we are not a backgrounded
260 * control master process, or if there is no ControlPersist timeout.
261 */
262static void
263set_control_persist_exit_time(void)
264{
265 if (muxserver_sock == -1 || !options.control_persist
Damien Miller6c3eec72011-05-05 14:16:22 +1000266 || options.control_persist_timeout == 0) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000267 /* not using a ControlPersist timeout */
268 control_persist_exit_time = 0;
Damien Miller6c3eec72011-05-05 14:16:22 +1000269 } else if (channel_still_open()) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000270 /* some client connections are still open */
271 if (control_persist_exit_time > 0)
272 debug2("%s: cancel scheduled exit", __func__);
273 control_persist_exit_time = 0;
274 } else if (control_persist_exit_time <= 0) {
275 /* a client connection has recently closed */
276 control_persist_exit_time = time(NULL) +
277 (time_t)options.control_persist_timeout;
278 debug2("%s: schedule exit in %d seconds", __func__,
279 options.control_persist_timeout);
280 }
281 /* else we are already counting down to the timeout */
282}
283
Damien Miller8d60be52012-02-11 08:18:17 +1100284#define SSH_X11_VALID_DISPLAY_CHARS ":/.-_"
285static int
286client_x11_display_valid(const char *display)
287{
288 size_t i, dlen;
289
290 dlen = strlen(display);
291 for (i = 0; i < dlen; i++) {
292 if (!isalnum(display[i]) &&
293 strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
294 debug("Invalid character '%c' in DISPLAY", display[i]);
295 return 0;
296 }
297 }
298 return 1;
299}
300
Damien Miller17e7ed02005-06-17 12:54:33 +1000301#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
302void
303client_x11_get_proto(const char *display, const char *xauth_path,
Damien Miller1ab6a512010-06-26 10:02:24 +1000304 u_int trusted, u_int timeout, char **_proto, char **_data)
Damien Miller17e7ed02005-06-17 12:54:33 +1000305{
306 char cmd[1024];
307 char line[512];
308 char xdisplay[512];
309 static char proto[512], data[512];
310 FILE *f;
311 int got_data = 0, generated = 0, do_unlink = 0, i;
312 char *xauthdir, *xauthfile;
313 struct stat st;
Damien Miller1ab6a512010-06-26 10:02:24 +1000314 u_int now;
Damien Miller17e7ed02005-06-17 12:54:33 +1000315
316 xauthdir = xauthfile = NULL;
317 *_proto = proto;
318 *_data = data;
319 proto[0] = data[0] = '\0';
320
321 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
322 debug("No xauth program.");
Damien Miller8d60be52012-02-11 08:18:17 +1100323 } else if (!client_x11_display_valid(display)) {
324 logit("DISPLAY '%s' invalid, falling back to fake xauth data",
325 display);
Damien Miller17e7ed02005-06-17 12:54:33 +1000326 } else {
327 if (display == NULL) {
328 debug("x11_get_proto: DISPLAY not set");
329 return;
330 }
331 /*
332 * Handle FamilyLocal case where $DISPLAY does
333 * not match an authorization entry. For this we
334 * just try "xauth list unix:displaynum.screennum".
335 * XXX: "localhost" match to determine FamilyLocal
336 * is not perfect.
337 */
338 if (strncmp(display, "localhost:", 10) == 0) {
339 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
340 display + 10);
341 display = xdisplay;
342 }
343 if (trusted == 0) {
344 xauthdir = xmalloc(MAXPATHLEN);
345 xauthfile = xmalloc(MAXPATHLEN);
Damien Miller2cd62932010-12-01 11:50:35 +1100346 mktemp_proto(xauthdir, MAXPATHLEN);
Damien Miller17e7ed02005-06-17 12:54:33 +1000347 if (mkdtemp(xauthdir) != NULL) {
348 do_unlink = 1;
349 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
350 xauthdir);
351 snprintf(cmd, sizeof(cmd),
352 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller1ab6a512010-06-26 10:02:24 +1000353 " untrusted timeout %u 2>" _PATH_DEVNULL,
354 xauth_path, xauthfile, display, timeout);
Damien Miller17e7ed02005-06-17 12:54:33 +1000355 debug2("x11_get_proto: %s", cmd);
356 if (system(cmd) == 0)
357 generated = 1;
Damien Miller1ab6a512010-06-26 10:02:24 +1000358 if (x11_refuse_time == 0) {
359 now = time(NULL) + 1;
360 if (UINT_MAX - timeout < now)
361 x11_refuse_time = UINT_MAX;
362 else
363 x11_refuse_time = now + timeout;
364 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000365 }
366 }
Darren Tucker513d13a2007-08-15 19:13:41 +1000367
368 /*
369 * When in untrusted mode, we read the cookie only if it was
370 * successfully generated as an untrusted one in the step
371 * above.
372 */
373 if (trusted || generated) {
374 snprintf(cmd, sizeof(cmd),
375 "%s %s%s list %s 2>" _PATH_DEVNULL,
376 xauth_path,
377 generated ? "-f " : "" ,
378 generated ? xauthfile : "",
379 display);
380 debug2("x11_get_proto: %s", cmd);
381 f = popen(cmd, "r");
382 if (f && fgets(line, sizeof(line), f) &&
383 sscanf(line, "%*s %511s %511s", proto, data) == 2)
384 got_data = 1;
385 if (f)
386 pclose(f);
387 } else
388 error("Warning: untrusted X11 forwarding setup failed: "
389 "xauth key data not generated");
Damien Miller17e7ed02005-06-17 12:54:33 +1000390 }
391
392 if (do_unlink) {
393 unlink(xauthfile);
394 rmdir(xauthdir);
395 }
396 if (xauthdir)
397 xfree(xauthdir);
398 if (xauthfile)
399 xfree(xauthfile);
400
401 /*
402 * If we didn't get authentication data, just make up some
403 * data. The forwarding code will check the validity of the
404 * response anyway, and substitute this data. The X11
405 * server, however, will ignore this fake data and use
406 * whatever authentication mechanisms it was using otherwise
407 * for the local connection.
408 */
409 if (!got_data) {
410 u_int32_t rnd = 0;
411
412 logit("Warning: No xauth data; "
413 "using fake authentication data for X11 forwarding.");
414 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
415 for (i = 0; i < 16; i++) {
416 if (i % 4 == 0)
417 rnd = arc4random();
418 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
419 rnd & 0xff);
420 rnd >>= 8;
421 }
422 }
423}
424
Damien Miller5428f641999-11-25 11:54:57 +1100425/*
426 * This is called when the interactive is entered. This checks if there is
427 * an EOF coming on stdin. We must check this explicitly, as select() does
428 * not appear to wake up when redirecting from /dev/null.
429 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Ben Lindstrombba81212001-06-25 05:01:22 +0000431static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000432client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433{
Damien Miller95def091999-11-25 00:26:21 +1100434 int len;
435 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436
Damien Miller5428f641999-11-25 11:54:57 +1100437 /*
438 * If standard input is to be "redirected from /dev/null", we simply
439 * mark that we have seen an EOF and send an EOF message to the
440 * server. Otherwise, we try to read a single character; it appears
441 * that for some files, such /dev/null, select() never wakes up for
442 * read for this descriptor, which means that we never get EOF. This
443 * way we will get the EOF if stdin comes from /dev/null or similar.
444 */
Damien Miller95def091999-11-25 00:26:21 +1100445 if (stdin_null_flag) {
446 /* Fake EOF on stdin. */
447 debug("Sending eof.");
448 stdin_eof = 1;
449 packet_start(SSH_CMSG_EOF);
450 packet_send();
451 } else {
Damien Miller95def091999-11-25 00:26:21 +1100452 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453
Damien Miller95def091999-11-25 00:26:21 +1100454 /* Check for immediate EOF on stdin. */
455 len = read(fileno(stdin), buf, 1);
456 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000457 /*
458 * EOF. Record that we have seen it and send
459 * EOF to server.
460 */
Damien Miller95def091999-11-25 00:26:21 +1100461 debug("Sending eof.");
462 stdin_eof = 1;
463 packet_start(SSH_CMSG_EOF);
464 packet_send();
465 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100466 /*
467 * Got data. We must store the data in the buffer,
468 * and also process it as an escape character if
469 * appropriate.
470 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000471 if ((u_char) buf[0] == escape_char1)
472 escape_pending1 = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000473 else
Damien Miller95def091999-11-25 00:26:21 +1100474 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100475 }
Damien Miller95def091999-11-25 00:26:21 +1100476 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000478}
479
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000480
Damien Miller5428f641999-11-25 11:54:57 +1100481/*
482 * Make packets from buffered stdin data, and buffer them for sending to the
483 * connection.
484 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485
Ben Lindstrombba81212001-06-25 05:01:22 +0000486static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000487client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000489 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490
Damien Miller95def091999-11-25 00:26:21 +1100491 /* Send buffered stdin data to the server. */
492 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100493 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100494 len = buffer_len(&stdin_buffer);
495 /* Keep the packets at reasonable size. */
496 if (len > packet_get_maxsize())
497 len = packet_get_maxsize();
498 packet_start(SSH_CMSG_STDIN_DATA);
499 packet_put_string(buffer_ptr(&stdin_buffer), len);
500 packet_send();
501 buffer_consume(&stdin_buffer, len);
502 /* If we have a pending EOF, send it now. */
503 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
504 packet_start(SSH_CMSG_EOF);
505 packet_send();
506 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508}
509
Damien Miller5428f641999-11-25 11:54:57 +1100510/*
511 * Checks if the client window has changed, and sends a packet about it to
512 * the server if so. The actual change is detected elsewhere (by a software
513 * interrupt on Unix); this just checks the flag and sends a message if
514 * appropriate.
515 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Ben Lindstrombba81212001-06-25 05:01:22 +0000517static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000518client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519{
Damien Miller1383bd82000-04-06 12:32:37 +1000520 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller1383bd82000-04-06 12:32:37 +1000522 if (! received_window_change_signal)
523 return;
524 /** XXX race */
525 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526
Damien Millerd3444942000-09-30 14:20:03 +1100527 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000528
529 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000530 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000531 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000532 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
533 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000534 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100535 packet_put_int((u_int)ws.ws_row);
536 packet_put_int((u_int)ws.ws_col);
537 packet_put_int((u_int)ws.ws_xpixel);
538 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000539 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000540 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000541}
542
Damien Miller509b0102003-12-17 16:33:10 +1100543static void
544client_global_request_reply(int type, u_int32_t seq, void *ctxt)
545{
Darren Tucker9f407c42008-06-13 04:50:27 +1000546 struct global_confirm *gc;
547
548 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
549 return;
550 if (gc->cb != NULL)
551 gc->cb(type, seq, gc->ctx);
552 if (--gc->ref_count <= 0) {
553 TAILQ_REMOVE(&global_confirms, gc, entry);
554 bzero(gc, sizeof(*gc));
555 xfree(gc);
556 }
557
Darren Tuckerf7288d72009-06-21 18:12:20 +1000558 packet_set_alive_timeouts(0);
Damien Miller509b0102003-12-17 16:33:10 +1100559}
560
561static void
562server_alive_check(void)
563{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000564 if (packet_inc_alive_timeouts() > options.server_alive_count_max) {
Damien Millerb73b6fd2011-01-11 17:18:56 +1100565 logit("Timeout, server %s not responding.", host);
Damien Miller985a4482006-10-24 03:02:41 +1000566 cleanup_exit(255);
567 }
Damien Miller509b0102003-12-17 16:33:10 +1100568 packet_start(SSH2_MSG_GLOBAL_REQUEST);
569 packet_put_cstring("keepalive@openssh.com");
570 packet_put_char(1); /* boolean: want reply */
571 packet_send();
Darren Tucker9f407c42008-06-13 04:50:27 +1000572 /* Insert an empty placeholder to maintain ordering */
573 client_register_global_confirm(NULL, NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100574}
575
Damien Miller5428f641999-11-25 11:54:57 +1100576/*
577 * Waits until the client can do something (some data becomes available on
578 * one of the file descriptors).
579 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000580static void
Damien Miller5e953212001-01-30 09:14:00 +1100581client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000582 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583{
Damien Miller509b0102003-12-17 16:33:10 +1100584 struct timeval tv, *tvp;
Damien Millere11e1ea2010-08-03 16:04:46 +1000585 int timeout_secs;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000586 time_t minwait_secs = 0, server_alive_time = 0, now = time(NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100587 int ret;
588
Damien Miller5e953212001-01-30 09:14:00 +1100589 /* Add any selections by the channel mechanism. */
Damien Millera6508752012-04-22 11:21:10 +1000590 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp,
591 &minwait_secs, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller1383bd82000-04-06 12:32:37 +1000593 if (!compat20) {
594 /* Read from the connection, unless our buffers are full. */
595 if (buffer_len(&stdout_buffer) < buffer_high &&
596 buffer_len(&stderr_buffer) < buffer_high &&
597 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100598 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000599 /*
600 * Read from stdin, unless we have seen EOF or have very much
601 * buffered data to send to the server.
602 */
603 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100604 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000605
606 /* Select stdout/stderr if have data in buffer. */
607 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100608 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000609 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100610 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000611 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000612 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000613 if (session_closed && !channel_still_open() &&
614 !packet_have_data_to_write()) {
615 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100616 memset(*readsetp, 0, *nallocp);
617 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000618 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000619 } else {
620 FD_SET(connection_in, *readsetp);
621 }
Damien Miller1383bd82000-04-06 12:32:37 +1000622 }
623
Damien Miller95def091999-11-25 00:26:21 +1100624 /* Select server connection if have data to write to the server. */
625 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100626 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100627
Damien Miller5428f641999-11-25 11:54:57 +1100628 /*
629 * Wait for something to happen. This will suspend the process until
630 * some selected descriptor can be read, written, or has some other
Damien Millere11e1ea2010-08-03 16:04:46 +1000631 * event pending, or a timeout expires.
Damien Miller5428f641999-11-25 11:54:57 +1100632 */
Damien Miller95def091999-11-25 00:26:21 +1100633
Damien Millere11e1ea2010-08-03 16:04:46 +1000634 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000635 if (options.server_alive_interval > 0 && compat20) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000636 timeout_secs = options.server_alive_interval;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000637 server_alive_time = now + options.server_alive_interval;
638 }
639 if (options.rekey_interval > 0 && compat20 && !rekeying)
640 timeout_secs = MIN(timeout_secs, packet_get_rekey_timeout());
Damien Millere11e1ea2010-08-03 16:04:46 +1000641 set_control_persist_exit_time();
642 if (control_persist_exit_time > 0) {
643 timeout_secs = MIN(timeout_secs,
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000644 control_persist_exit_time - now);
Damien Millere11e1ea2010-08-03 16:04:46 +1000645 if (timeout_secs < 0)
646 timeout_secs = 0;
647 }
Damien Millera6508752012-04-22 11:21:10 +1000648 if (minwait_secs != 0)
649 timeout_secs = MIN(timeout_secs, (int)minwait_secs);
Damien Millere11e1ea2010-08-03 16:04:46 +1000650 if (timeout_secs == INT_MAX)
Damien Miller509b0102003-12-17 16:33:10 +1100651 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000652 else {
Damien Millere11e1ea2010-08-03 16:04:46 +1000653 tv.tv_sec = timeout_secs;
Damien Miller509b0102003-12-17 16:33:10 +1100654 tv.tv_usec = 0;
655 tvp = &tv;
656 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000657
Damien Miller509b0102003-12-17 16:33:10 +1100658 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
659 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100660 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000661
662 /*
663 * We have to clear the select masks, because we return.
664 * We have to return, because the mainloop checks for the flags
665 * set by the signal handlers.
666 */
Damien Miller79faeff2001-11-12 11:06:32 +1100667 memset(*readsetp, 0, *nallocp);
668 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000669
Damien Miller95def091999-11-25 00:26:21 +1100670 if (errno == EINTR)
671 return;
672 /* Note: we might still have data in the buffers. */
673 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
674 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100675 quit_pending = 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000676 } else if (ret == 0) {
677 /*
678 * Timeout. Could have been either keepalive or rekeying.
679 * Keepalive we check here, rekeying is checked in clientloop.
680 */
681 if (server_alive_time != 0 && server_alive_time <= time(NULL))
682 server_alive_check();
683 }
684
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685}
686
Ben Lindstrombba81212001-06-25 05:01:22 +0000687static void
Damien Millerad833b32000-08-23 10:46:23 +1000688client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689{
Damien Miller95def091999-11-25 00:26:21 +1100690 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000691 if (buffer_len(bout) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000692 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
693 buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000694 if (buffer_len(berr) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000695 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
696 buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000697
Damien Miller21771e22011-05-15 08:45:50 +1000698 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Damien Miller5428f641999-11-25 11:54:57 +1100700 /*
701 * Free (and clear) the buffer to reduce the amount of data that gets
702 * written to swap.
703 */
Damien Millerad833b32000-08-23 10:46:23 +1000704 buffer_free(bin);
705 buffer_free(bout);
706 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000707
Damien Miller95def091999-11-25 00:26:21 +1100708 /* Send the suspend signal to the program itself. */
709 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000710
Darren Tucker5d78de62004-11-05 20:35:44 +1100711 /* Reset window sizes in case they have changed */
712 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713
Damien Miller95def091999-11-25 00:26:21 +1100714 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000715 buffer_init(bin);
716 buffer_init(bout);
717 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000718
Damien Miller21771e22011-05-15 08:45:50 +1000719 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720}
721
Ben Lindstrombba81212001-06-25 05:01:22 +0000722static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100723client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000724{
Darren Tuckerc5564e12009-06-21 18:53:53 +1000725 int len, cont = 0;
Darren Tucker86e30a02009-08-28 11:21:06 +1000726 char buf[SSH_IOBUFSZ];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000727
Damien Miller5428f641999-11-25 11:54:57 +1100728 /*
729 * Read input from the server, and add any such data to the buffer of
730 * the packet subsystem.
731 */
Damien Miller95def091999-11-25 00:26:21 +1100732 if (FD_ISSET(connection_in, readset)) {
733 /* Read as much as possible. */
Darren Tuckerc5564e12009-06-21 18:53:53 +1000734 len = roaming_read(connection_in, buf, sizeof(buf), &cont);
735 if (len == 0 && cont == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000736 /*
737 * Received EOF. The remote host has closed the
738 * connection.
739 */
740 snprintf(buf, sizeof buf,
741 "Connection to %.300s closed by remote host.\r\n",
742 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000743 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000744 quit_pending = 1;
745 return;
Damien Miller95def091999-11-25 00:26:21 +1100746 }
Damien Miller5428f641999-11-25 11:54:57 +1100747 /*
748 * There is a kernel bug on Solaris that causes select to
749 * sometimes wake up even though there is no data available.
750 */
Damien Millerd8968ad2008-07-04 23:10:49 +1000751 if (len < 0 &&
752 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Damien Miller95def091999-11-25 00:26:21 +1100753 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000754
Damien Miller95def091999-11-25 00:26:21 +1100755 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000756 /*
757 * An error has encountered. Perhaps there is a
758 * network problem.
759 */
760 snprintf(buf, sizeof buf,
761 "Read from remote host %.300s: %.100s\r\n",
762 host, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100763 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100764 quit_pending = 1;
765 return;
766 }
767 packet_process_incoming(buf, len);
768 }
Damien Miller1383bd82000-04-06 12:32:37 +1000769}
770
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000771static void
Damien Miller5771ed72008-05-19 15:35:33 +1000772client_status_confirm(int type, Channel *c, void *ctx)
Damien Miller0e220db2004-06-15 10:34:08 +1000773{
Damien Miller5771ed72008-05-19 15:35:33 +1000774 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
775 char errmsg[256];
776 int tochan;
Darren Tuckerfc959702004-07-17 16:12:08 +1000777
Damien Miller555f3b82011-05-15 08:48:05 +1000778 /*
779 * If a TTY was explicitly requested, then a failure to allocate
780 * one is fatal.
781 */
782 if (cr->action == CONFIRM_TTY &&
783 (options.request_tty == REQUEST_TTY_FORCE ||
784 options.request_tty == REQUEST_TTY_YES))
785 cr->action = CONFIRM_CLOSE;
786
Damien Miller5771ed72008-05-19 15:35:33 +1000787 /* XXX supress on mux _client_ quietmode */
788 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
Damien Millere1537f92010-01-26 13:26:22 +1100789 c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
Damien Miller0e220db2004-06-15 10:34:08 +1000790
Damien Miller5771ed72008-05-19 15:35:33 +1000791 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
792 debug2("%s request accepted on channel %d",
793 cr->request_type, c->self);
794 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
795 if (tochan) {
796 snprintf(errmsg, sizeof(errmsg),
797 "%s request failed\r\n", cr->request_type);
798 } else {
799 snprintf(errmsg, sizeof(errmsg),
800 "%s request failed on channel %d",
801 cr->request_type, c->self);
802 }
803 /* If error occurred on primary session channel, then exit */
Damien Miller555f3b82011-05-15 08:48:05 +1000804 if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
Damien Miller5771ed72008-05-19 15:35:33 +1000805 fatal("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000806 /*
807 * If error occurred on mux client, append to
808 * their stderr.
809 */
810 if (tochan) {
811 buffer_append(&c->extended, errmsg,
812 strlen(errmsg));
813 } else
Damien Miller5771ed72008-05-19 15:35:33 +1000814 error("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000815 if (cr->action == CONFIRM_TTY) {
816 /*
817 * If a TTY allocation error occurred, then arrange
818 * for the correct TTY to leave raw mode.
819 */
820 if (c->self == session_ident)
821 leave_raw_mode(0);
822 else
823 mux_tty_alloc_failed(c);
824 } else if (cr->action == CONFIRM_CLOSE) {
Damien Miller5771ed72008-05-19 15:35:33 +1000825 chan_read_failed(c);
826 chan_write_failed(c);
827 }
Damien Miller0e220db2004-06-15 10:34:08 +1000828 }
Damien Miller5771ed72008-05-19 15:35:33 +1000829 xfree(cr);
830}
Damien Miller0e220db2004-06-15 10:34:08 +1000831
Damien Miller5771ed72008-05-19 15:35:33 +1000832static void
833client_abandon_status_confirm(Channel *c, void *ctx)
834{
835 xfree(ctx);
836}
837
Damien Miller6d7b4372011-06-23 08:31:57 +1000838void
Damien Miller555f3b82011-05-15 08:48:05 +1000839client_expect_confirm(int id, const char *request,
840 enum confirm_action action)
Damien Miller5771ed72008-05-19 15:35:33 +1000841{
842 struct channel_reply_ctx *cr = xmalloc(sizeof(*cr));
843
844 cr->request_type = request;
Damien Miller555f3b82011-05-15 08:48:05 +1000845 cr->action = action;
Damien Miller5771ed72008-05-19 15:35:33 +1000846
847 channel_register_status_confirm(id, client_status_confirm,
848 client_abandon_status_confirm, cr);
Damien Miller0e220db2004-06-15 10:34:08 +1000849}
850
Darren Tucker9f407c42008-06-13 04:50:27 +1000851void
852client_register_global_confirm(global_confirm_cb *cb, void *ctx)
853{
Damien Millerb9d3bee2008-07-16 22:40:52 +1000854 struct global_confirm *gc, *last_gc;
Darren Tucker9f407c42008-06-13 04:50:27 +1000855
856 /* Coalesce identical callbacks */
Damien Millerb9d3bee2008-07-16 22:40:52 +1000857 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
858 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
859 if (++last_gc->ref_count >= INT_MAX)
860 fatal("%s: last_gc->ref_count = %d",
861 __func__, last_gc->ref_count);
Darren Tucker9f407c42008-06-13 04:50:27 +1000862 return;
863 }
864
865 gc = xmalloc(sizeof(*gc));
866 gc->cb = cb;
867 gc->ctx = ctx;
868 gc->ref_count = 1;
869 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
870}
871
Damien Miller0e220db2004-06-15 10:34:08 +1000872static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000873process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000874{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000875 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100876 char *s, *cmd, *cancel_host;
Damien Millerff773642011-09-22 21:39:48 +1000877 int delete = 0, local = 0, remote = 0, dynamic = 0;
878 int cancel_port, ok;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100879 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000880
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100881 bzero(&fwd, sizeof(fwd));
882 fwd.listen_host = fwd.connect_host = NULL;
883
Damien Miller21771e22011-05-15 08:45:50 +1000884 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000885 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000886 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000887 if (s == NULL)
888 goto out;
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100889 while (isspace(*s))
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000890 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000891 if (*s == '-')
892 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000893 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000894 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000895
Darren Tucker1973c882004-05-24 10:34:36 +1000896 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000897 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000898 logit(" -L[bind_address:]port:host:hostport "
899 "Request local forward");
900 logit(" -R[bind_address:]port:host:hostport "
901 "Request remote forward");
Damien Miller0164cb82008-11-05 16:30:31 +1100902 logit(" -D[bind_address:]port "
903 "Request dynamic forward");
Damien Millerff773642011-09-22 21:39:48 +1000904 logit(" -KL[bind_address:]port "
905 "Cancel local forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000906 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000907 "Cancel remote forward");
Damien Millerff773642011-09-22 21:39:48 +1000908 logit(" -KD[bind_address:]port "
909 "Cancel dynamic forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100910 if (!options.permit_local_command)
911 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000912 logit(" !args "
913 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100914 goto out;
915 }
916
917 if (*s == '!' && options.permit_local_command) {
918 s++;
919 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000920 goto out;
921 }
922
923 if (*s == 'K') {
924 delete = 1;
925 s++;
926 }
Damien Miller0164cb82008-11-05 16:30:31 +1100927 if (*s == 'L')
928 local = 1;
929 else if (*s == 'R')
930 remote = 1;
931 else if (*s == 'D')
932 dynamic = 1;
933 else {
Damien Miller996acd22003-04-09 20:59:48 +1000934 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000935 goto out;
936 }
Damien Miller0164cb82008-11-05 16:30:31 +1100937
Damien Millerff773642011-09-22 21:39:48 +1000938 if (delete && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000939 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000940 goto out;
941 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000942
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100943 while (isspace(*++s))
944 ;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000945
Damien Millere1537f92010-01-26 13:26:22 +1100946 /* XXX update list of forwards in options */
Darren Tuckere7066df2004-05-24 10:18:05 +1000947 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100948 cancel_port = 0;
949 cancel_host = hpdelim(&s); /* may be NULL */
950 if (s != NULL) {
951 cancel_port = a2port(s);
952 cancel_host = cleanhostname(cancel_host);
953 } else {
954 cancel_port = a2port(cancel_host);
955 cancel_host = NULL;
956 }
Damien Miller3dc71ad2009-01-28 16:31:22 +1100957 if (cancel_port <= 0) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100958 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000959 goto out;
960 }
Damien Millerff773642011-09-22 21:39:48 +1000961 if (remote)
962 ok = channel_request_rforward_cancel(cancel_host,
963 cancel_port) == 0;
964 else if (dynamic)
965 ok = channel_cancel_lport_listener(cancel_host,
966 cancel_port, 0, options.gateway_ports) > 0;
967 else
968 ok = channel_cancel_lport_listener(cancel_host,
969 cancel_port, CHANNEL_CANCEL_PORT_STATIC,
970 options.gateway_ports) > 0;
971 if (!ok) {
972 logit("Unkown port forwarding.");
973 goto out;
974 }
975 logit("Canceled forwarding.");
Darren Tuckere7066df2004-05-24 10:18:05 +1000976 } else {
Damien Miller4bf648f2009-02-14 16:28:21 +1100977 if (!parse_forward(&fwd, s, dynamic, remote)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000978 logit("Bad forwarding specification.");
979 goto out;
980 }
Damien Miller0164cb82008-11-05 16:30:31 +1100981 if (local || dynamic) {
Damien Miller73298f42013-01-09 15:55:50 +1100982 if (!channel_setup_local_fwd_listener(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100983 fwd.listen_port, fwd.connect_host,
Damien Miller73298f42013-01-09 15:55:50 +1100984 fwd.connect_port, options.gateway_ports)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000985 logit("Port forwarding failed.");
986 goto out;
987 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100988 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +1000989 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100990 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000991 fwd.connect_port) < 0) {
992 logit("Port forwarding failed.");
993 goto out;
994 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100995 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000996 logit("Forwarding port.");
997 }
998
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000999out:
1000 signal(SIGINT, handler);
Damien Miller21771e22011-05-15 08:45:50 +10001001 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001002 if (cmd)
1003 xfree(cmd);
Darren Tucker23ae8ca2007-12-02 23:12:30 +11001004 if (fwd.listen_host != NULL)
1005 xfree(fwd.listen_host);
1006 if (fwd.connect_host != NULL)
1007 xfree(fwd.connect_host);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001008}
1009
Darren Tucker92a39cf2012-09-07 11:20:20 +10001010/* reasons to suppress output of an escape command in help output */
1011#define SUPPRESS_NEVER 0 /* never suppress, always show */
1012#define SUPPRESS_PROTO1 1 /* don't show in protocol 1 sessions */
1013#define SUPPRESS_MUXCLIENT 2 /* don't show in mux client sessions */
1014#define SUPPRESS_MUXMASTER 4 /* don't show in mux master sessions */
1015#define SUPPRESS_SYSLOG 8 /* don't show when logging to syslog */
1016struct escape_help_text {
1017 const char *cmd;
1018 const char *text;
1019 unsigned int flags;
1020};
1021static struct escape_help_text esc_txt[] = {
1022 {".", "terminate session", SUPPRESS_MUXMASTER},
1023 {".", "terminate connection (and any multiplexed sessions)",
1024 SUPPRESS_MUXCLIENT},
1025 {"B", "send a BREAK to the remote system", SUPPRESS_PROTO1},
1026 {"C", "open a command line", SUPPRESS_MUXCLIENT},
1027 {"R", "request rekey", SUPPRESS_PROTO1},
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001028 {"V/v", "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
Darren Tucker92a39cf2012-09-07 11:20:20 +10001029 {"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
1030 {"#", "list forwarded connections", SUPPRESS_NEVER},
1031 {"&", "background ssh (when waiting for connections to terminate)",
1032 SUPPRESS_MUXCLIENT},
1033 {"?", "this message", SUPPRESS_NEVER},
1034};
1035
1036static void
1037print_escape_help(Buffer *b, int escape_char, int protocol2, int mux_client,
1038 int using_stderr)
1039{
1040 unsigned int i, suppress_flags;
1041 char string[1024];
1042
1043 snprintf(string, sizeof string, "%c?\r\n"
1044 "Supported escape sequences:\r\n", escape_char);
1045 buffer_append(b, string, strlen(string));
1046
1047 suppress_flags = (protocol2 ? 0 : SUPPRESS_PROTO1) |
1048 (mux_client ? SUPPRESS_MUXCLIENT : 0) |
1049 (mux_client ? 0 : SUPPRESS_MUXMASTER) |
1050 (using_stderr ? 0 : SUPPRESS_SYSLOG);
1051
1052 for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
1053 if (esc_txt[i].flags & suppress_flags)
1054 continue;
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001055 snprintf(string, sizeof string, " %c%-3s - %s\r\n",
Darren Tucker92a39cf2012-09-07 11:20:20 +10001056 escape_char, esc_txt[i].cmd, esc_txt[i].text);
1057 buffer_append(b, string, strlen(string));
1058 }
1059
1060 snprintf(string, sizeof string,
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001061 " %c%c - send the escape character by typing it twice\r\n"
Darren Tucker92a39cf2012-09-07 11:20:20 +10001062 "(Note that escapes are only recognized immediately after "
1063 "newline.)\r\n", escape_char, escape_char);
1064 buffer_append(b, string, strlen(string));
1065}
1066
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001067/*
1068 * Process the characters one by one, call with c==NULL for proto1 case.
1069 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001070static int
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001071process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
1072 char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001073{
1074 char string[1024];
1075 pid_t pid;
1076 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001077 u_int i;
1078 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001079 char *s;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001080 int *escape_pendingp, escape_char;
1081 struct escape_filter_ctx *efc;
Damien Millerad833b32000-08-23 10:46:23 +10001082
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001083 if (c == NULL) {
1084 escape_pendingp = &escape_pending1;
1085 escape_char = escape_char1;
1086 } else {
1087 if (c->filter_ctx == NULL)
1088 return 0;
1089 efc = (struct escape_filter_ctx *)c->filter_ctx;
1090 escape_pendingp = &efc->escape_pending;
1091 escape_char = efc->escape_char;
1092 }
1093
Damien Millereccb9de2005-06-17 12:59:34 +10001094 if (len <= 0)
1095 return (0);
1096
1097 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001098 /* Get one character at a time. */
1099 ch = buf[i];
1100
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001101 if (*escape_pendingp) {
Damien Millerad833b32000-08-23 10:46:23 +10001102 /* We have previously seen an escape character. */
1103 /* Clear the flag now. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001104 *escape_pendingp = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001105
1106 /* Process the escaped character. */
1107 switch (ch) {
1108 case '.':
1109 /* Terminate the connection. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001110 snprintf(string, sizeof string, "%c.\r\n",
1111 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001112 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001113
Damien Millere1537f92010-01-26 13:26:22 +11001114 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001115 chan_read_failed(c);
1116 chan_write_failed(c);
Darren Tucker66cb0e02012-09-06 21:19:05 +10001117 mux_master_session_cleanup_cb(c->self,
1118 NULL);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001119 return 0;
1120 } else
1121 quit_pending = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001122 return -1;
1123
1124 case 'Z' - 64:
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001125 /* XXX support this for mux clients */
Damien Millere1537f92010-01-26 13:26:22 +11001126 if (c && c->ctl_chan != -1) {
Darren Tuckerf111d402012-09-07 11:21:42 +10001127 char b[16];
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001128 noescape:
Darren Tuckerf111d402012-09-07 11:21:42 +10001129 if (ch == 'Z' - 64)
1130 snprintf(b, sizeof b, "^Z");
1131 else
1132 snprintf(b, sizeof b, "%c", ch);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001133 snprintf(string, sizeof string,
Darren Tuckerf111d402012-09-07 11:21:42 +10001134 "%c%s escape not available to "
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001135 "multiplexed sessions\r\n",
Darren Tuckerf111d402012-09-07 11:21:42 +10001136 escape_char, b);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001137 buffer_append(berr, string,
1138 strlen(string));
1139 continue;
1140 }
Darren Tucker4d5cd332008-06-13 04:51:14 +10001141 /* Suspend the program. Inform the user */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001142 snprintf(string, sizeof string,
1143 "%c^Z [suspend ssh]\r\n", escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001144 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001145
1146 /* Restore terminal modes and suspend. */
1147 client_suspend_self(bin, bout, berr);
1148
1149 /* We have been continued. */
1150 continue;
1151
Damien Miller54c45982003-05-15 10:20:13 +10001152 case 'B':
1153 if (compat20) {
1154 snprintf(string, sizeof string,
1155 "%cB\r\n", escape_char);
1156 buffer_append(berr, string,
1157 strlen(string));
1158 channel_request_start(session_ident,
1159 "break", 0);
1160 packet_put_int(1000);
1161 packet_send();
1162 }
1163 continue;
1164
Ben Lindstromf28f6342001-04-04 02:03:04 +00001165 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001166 if (compat20) {
1167 if (datafellows & SSH_BUG_NOREKEY)
Darren Tucker4d5cd332008-06-13 04:51:14 +10001168 logit("Server does not "
1169 "support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001170 else
1171 need_rekeying = 1;
1172 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001173 continue;
1174
Darren Tucker50a48d02012-09-06 21:25:37 +10001175 case 'V':
1176 /* FALLTHROUGH */
1177 case 'v':
1178 if (c && c->ctl_chan != -1)
1179 goto noescape;
1180 if (!log_is_on_stderr()) {
1181 snprintf(string, sizeof string,
1182 "%c%c [Logging to syslog]\r\n",
1183 escape_char, ch);
1184 buffer_append(berr, string,
1185 strlen(string));
1186 continue;
1187 }
1188 if (ch == 'V' && options.log_level >
1189 SYSLOG_LEVEL_QUIET)
1190 log_change_level(--options.log_level);
1191 if (ch == 'v' && options.log_level <
1192 SYSLOG_LEVEL_DEBUG3)
1193 log_change_level(++options.log_level);
1194 snprintf(string, sizeof string,
1195 "%c%c [LogLevel %s]\r\n", escape_char, ch,
1196 log_level_name(options.log_level));
1197 buffer_append(berr, string, strlen(string));
1198 continue;
1199
Damien Millerad833b32000-08-23 10:46:23 +10001200 case '&':
Damien Millere1537f92010-01-26 13:26:22 +11001201 if (c && c->ctl_chan != -1)
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001202 goto noescape;
Damien Millerad833b32000-08-23 10:46:23 +10001203 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001204 * Detach the program (continue to serve
1205 * connections, but put in background and no
1206 * more new connections).
Damien Millerad833b32000-08-23 10:46:23 +10001207 */
Damien Miller96507ef2001-11-12 10:52:25 +11001208 /* Restore tty modes. */
Damien Miller21771e22011-05-15 08:45:50 +10001209 leave_raw_mode(
1210 options.request_tty == REQUEST_TTY_FORCE);
Damien Miller96507ef2001-11-12 10:52:25 +11001211
1212 /* Stop listening for new connections. */
1213 channel_stop_listening();
1214
1215 snprintf(string, sizeof string,
1216 "%c& [backgrounded]\n", escape_char);
1217 buffer_append(berr, string, strlen(string));
1218
1219 /* Fork into background. */
1220 pid = fork();
1221 if (pid < 0) {
1222 error("fork: %.100s", strerror(errno));
1223 continue;
1224 }
1225 if (pid != 0) { /* This is the parent. */
1226 /* The parent just exits. */
1227 exit(0);
1228 }
1229 /* The child continues serving connections. */
1230 if (compat20) {
1231 buffer_append(bin, "\004", 1);
1232 /* fake EOF on stdin */
1233 return -1;
1234 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001235 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001236 * Sending SSH_CMSG_EOF alone does not
1237 * always appear to be enough. So we
1238 * try to send an EOF character first.
Damien Millerad833b32000-08-23 10:46:23 +10001239 */
1240 packet_start(SSH_CMSG_STDIN_DATA);
1241 packet_put_string("\004", 1);
1242 packet_send();
1243 /* Close stdin. */
1244 stdin_eof = 1;
1245 if (buffer_len(bin) == 0) {
1246 packet_start(SSH_CMSG_EOF);
1247 packet_send();
1248 }
1249 }
Damien Miller96507ef2001-11-12 10:52:25 +11001250 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001251
1252 case '?':
Darren Tucker92a39cf2012-09-07 11:20:20 +10001253 print_escape_help(berr, escape_char, compat20,
1254 (c && c->ctl_chan != -1),
1255 log_is_on_stderr());
Damien Millerad833b32000-08-23 10:46:23 +10001256 continue;
1257
1258 case '#':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001259 snprintf(string, sizeof string, "%c#\r\n",
1260 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001261 buffer_append(berr, string, strlen(string));
1262 s = channel_open_message();
1263 buffer_append(berr, s, strlen(s));
1264 xfree(s);
1265 continue;
1266
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001267 case 'C':
Damien Millere1537f92010-01-26 13:26:22 +11001268 if (c && c->ctl_chan != -1)
Damien Miller586b0052008-12-09 14:11:32 +11001269 goto noescape;
Ben Lindstrom681d9322002-03-22 03:53:00 +00001270 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001271 continue;
1272
Damien Millerad833b32000-08-23 10:46:23 +10001273 default:
1274 if (ch != escape_char) {
1275 buffer_put_char(bin, escape_char);
1276 bytes++;
1277 }
1278 /* Escaped characters fall through here */
1279 break;
1280 }
1281 } else {
1282 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001283 * The previous character was not an escape char.
1284 * Check if this is an escape.
Damien Millerad833b32000-08-23 10:46:23 +10001285 */
1286 if (last_was_cr && ch == escape_char) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001287 /*
1288 * It is. Set the flag and continue to
1289 * next character.
1290 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001291 *escape_pendingp = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001292 continue;
1293 }
1294 }
1295
1296 /*
1297 * Normal character. Record whether it was a newline,
1298 * and append it to the buffer.
1299 */
1300 last_was_cr = (ch == '\r' || ch == '\n');
1301 buffer_put_char(bin, ch);
1302 bytes++;
1303 }
1304 return bytes;
1305}
1306
Ben Lindstrombba81212001-06-25 05:01:22 +00001307static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001308client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001309{
Damien Miller166fca82000-04-20 07:42:21 +10001310 int len;
Darren Tucker86e30a02009-08-28 11:21:06 +10001311 char buf[SSH_IOBUFSZ];
Damien Miller1383bd82000-04-06 12:32:37 +10001312
Damien Miller95def091999-11-25 00:26:21 +11001313 /* Read input from stdin. */
1314 if (FD_ISSET(fileno(stdin), readset)) {
1315 /* Read as much as possible. */
1316 len = read(fileno(stdin), buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001317 if (len < 0 &&
1318 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001319 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001320 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001321 /*
1322 * Received EOF or error. They are treated
1323 * similarly, except that an error message is printed
1324 * if it was an error condition.
1325 */
Damien Miller95def091999-11-25 00:26:21 +11001326 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001327 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1328 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001329 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001330 }
1331 /* Mark that we have seen EOF. */
1332 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001333 /*
1334 * Send an EOF message to the server unless there is
1335 * data in the buffer. If there is data in the
1336 * buffer, no message will be sent now. Code
1337 * elsewhere will send the EOF when the buffer
1338 * becomes empty if stdin_eof is set.
1339 */
Damien Miller95def091999-11-25 00:26:21 +11001340 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341 packet_start(SSH_CMSG_EOF);
1342 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001343 }
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001344 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001345 /*
1346 * Normal successful read, and no escape character.
1347 * Just append the data to buffer.
1348 */
Damien Miller95def091999-11-25 00:26:21 +11001349 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001350 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001351 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001352 * Normal, successful read. But we have an escape
1353 * character and have to process the characters one
1354 * by one.
Damien Miller5428f641999-11-25 11:54:57 +11001355 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001356 if (process_escapes(NULL, &stdin_buffer,
1357 &stdout_buffer, &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001358 return;
Damien Miller95def091999-11-25 00:26:21 +11001359 }
1360 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361}
1362
Ben Lindstrombba81212001-06-25 05:01:22 +00001363static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001364client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001365{
Damien Miller95def091999-11-25 00:26:21 +11001366 int len;
1367 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001368
Damien Miller95def091999-11-25 00:26:21 +11001369 /* Write buffered output to stdout. */
1370 if (FD_ISSET(fileno(stdout), writeset)) {
1371 /* Write as much data as possible. */
1372 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001373 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001374 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001375 if (errno == EINTR || errno == EAGAIN ||
1376 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001377 len = 0;
1378 else {
Damien Miller5428f641999-11-25 11:54:57 +11001379 /*
1380 * An error or EOF was encountered. Put an
1381 * error message to stderr buffer.
1382 */
Darren Tucker4d5cd332008-06-13 04:51:14 +10001383 snprintf(buf, sizeof buf,
1384 "write stdout: %.50s\r\n", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001385 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001386 quit_pending = 1;
1387 return;
1388 }
1389 }
1390 /* Consume printed data from the buffer. */
1391 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392 }
Damien Miller95def091999-11-25 00:26:21 +11001393 /* Write buffered output to stderr. */
1394 if (FD_ISSET(fileno(stderr), writeset)) {
1395 /* Write as much data as possible. */
1396 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001397 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001398 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001399 if (errno == EINTR || errno == EAGAIN ||
1400 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001401 len = 0;
1402 else {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001403 /*
1404 * EOF or error, but can't even print
1405 * error message.
1406 */
Damien Miller95def091999-11-25 00:26:21 +11001407 quit_pending = 1;
1408 return;
1409 }
1410 }
1411 /* Consume printed characters from the buffer. */
1412 buffer_consume(&stderr_buffer, len);
1413 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414}
1415
Damien Miller5428f641999-11-25 11:54:57 +11001416/*
Damien Millerb38eff82000-04-01 11:09:21 +10001417 * Get packets from the connection input buffer, and process them as long as
1418 * there are packets available.
1419 *
1420 * Any unknown packets received during the actual
1421 * session cause the session to terminate. This is
1422 * intended to make debugging easier since no
1423 * confirmations are sent. Any compatible protocol
1424 * extensions must be negotiated during the
1425 * preparatory phase.
1426 */
1427
Ben Lindstrombba81212001-06-25 05:01:22 +00001428static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001429client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001430{
Darren Tucker4d5cd332008-06-13 04:51:14 +10001431 dispatch_run(DISPATCH_NONBLOCK, &quit_pending,
1432 compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001433}
1434
Damien Millerad833b32000-08-23 10:46:23 +10001435/* scan buf[] for '~' before sending data to the peer */
1436
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001437/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1438void *
1439client_new_escape_filter_ctx(int escape_char)
1440{
1441 struct escape_filter_ctx *ret;
1442
1443 ret = xmalloc(sizeof(*ret));
1444 ret->escape_pending = 0;
1445 ret->escape_char = escape_char;
1446 return (void *)ret;
1447}
1448
Darren Tucker84c56f52008-06-13 04:55:46 +10001449/* Free the escape filter context on channel free */
1450void
1451client_filter_cleanup(int cid, void *ctx)
1452{
1453 xfree(ctx);
1454}
1455
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001456int
1457client_simple_escape_filter(Channel *c, char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001458{
Damien Miller5771ed72008-05-19 15:35:33 +10001459 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1460 return 0;
1461
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001462 return process_escapes(c, &c->input, &c->output, &c->extended,
1463 buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001464}
1465
Ben Lindstrombba81212001-06-25 05:01:22 +00001466static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001467client_channel_closed(int id, void *arg)
1468{
Damien Miller3ec27592001-10-12 11:35:04 +10001469 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001470 session_closed = 1;
Damien Miller21771e22011-05-15 08:45:50 +10001471 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001472}
1473
Damien Millerb38eff82000-04-01 11:09:21 +10001474/*
Damien Miller5428f641999-11-25 11:54:57 +11001475 * Implements the interactive session with the server. This is called after
1476 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001477 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1478 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001479 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Damien Miller4af51302000-04-16 11:18:38 +10001481int
Damien Millerad833b32000-08-23 10:46:23 +10001482client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001483{
Damien Miller5e953212001-01-30 09:14:00 +11001484 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001485 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001486 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001487 u_int64_t ibytes, obytes;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001488 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001489 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001490
Damien Miller95def091999-11-25 00:26:21 +11001491 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001492
Damien Miller95def091999-11-25 00:26:21 +11001493 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001494
Damien Miller95def091999-11-25 00:26:21 +11001495 /* Initialize variables. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001496 escape_pending1 = 0;
Damien Miller95def091999-11-25 00:26:21 +11001497 last_was_cr = 1;
1498 exit_status = -1;
1499 stdin_eof = 0;
1500 buffer_high = 64 * 1024;
1501 connection_in = packet_get_connection_in();
1502 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001503 max_fd = MAX(connection_in, connection_out);
1504
1505 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001506 /* enable nonblocking unless tty */
1507 if (!isatty(fileno(stdin)))
1508 set_nonblock(fileno(stdin));
1509 if (!isatty(fileno(stdout)))
1510 set_nonblock(fileno(stdout));
1511 if (!isatty(fileno(stderr)))
1512 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001513 max_fd = MAX(max_fd, fileno(stdin));
1514 max_fd = MAX(max_fd, fileno(stdout));
1515 max_fd = MAX(max_fd, fileno(stderr));
1516 }
Damien Miller95def091999-11-25 00:26:21 +11001517 quit_pending = 0;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001518 escape_char1 = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001519
Damien Miller95def091999-11-25 00:26:21 +11001520 /* Initialize buffers. */
1521 buffer_init(&stdin_buffer);
1522 buffer_init(&stdout_buffer);
1523 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001524
Damien Millerb38eff82000-04-01 11:09:21 +10001525 client_init_dispatch();
1526
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001527 /*
1528 * Set signal handlers, (e.g. to restore non-blocking mode)
1529 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1530 */
Darren Tucker07336da2004-11-05 20:02:16 +11001531 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1532 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001533 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1534 signal(SIGINT, signal_handler);
1535 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1536 signal(SIGQUIT, signal_handler);
1537 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1538 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001539 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001540
Damien Miller95def091999-11-25 00:26:21 +11001541 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001542 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001543
Ben Lindstrom5b828322001-02-09 01:34:36 +00001544 if (compat20) {
1545 session_ident = ssh2_chan_id;
Damien Miller6c3eec72011-05-05 14:16:22 +10001546 if (session_ident != -1) {
1547 if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
1548 channel_register_filter(session_ident,
1549 client_simple_escape_filter, NULL,
1550 client_filter_cleanup,
1551 client_new_escape_filter_ctx(
1552 escape_char_arg));
1553 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001554 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001555 client_channel_closed, 0);
Damien Miller6c3eec72011-05-05 14:16:22 +10001556 }
Ben Lindstrom5b828322001-02-09 01:34:36 +00001557 } else {
1558 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001559 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001560 }
Damien Millerad833b32000-08-23 10:46:23 +10001561
Damien Miller95def091999-11-25 00:26:21 +11001562 /* Main loop of the client for the interactive session mode. */
1563 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564
Damien Miller5428f641999-11-25 11:54:57 +11001565 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001566 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001567
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001568 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001569 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001570
1571 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001572
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001573 if (rekeying) {
1574 debug("rekeying in progress");
1575 } else {
1576 /*
1577 * Make packets of buffered stdin data, and buffer
1578 * them for sending to the server.
1579 */
1580 if (!compat20)
1581 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001583 /*
1584 * Make packets from buffered channel data, and
1585 * enqueue them for sending to the server.
1586 */
1587 if (packet_not_very_much_data_to_write())
1588 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001590 /*
1591 * Check if the window size has changed, and buffer a
1592 * message about it to the server if so.
1593 */
1594 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001595
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001596 if (quit_pending)
1597 break;
1598 }
Damien Miller5428f641999-11-25 11:54:57 +11001599 /*
1600 * Wait until we have something to do (something becomes
1601 * available on one of the descriptors).
1602 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001603 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001604 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001605 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001606
Damien Miller95def091999-11-25 00:26:21 +11001607 if (quit_pending)
1608 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001609
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001610 /* Do channel operations unless rekeying in progress. */
1611 if (!rekeying) {
1612 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001613 if (need_rekeying || packet_need_rekeying()) {
1614 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001615 xxx_kex->done = 0;
1616 kex_send_kexinit(xxx_kex);
1617 need_rekeying = 0;
1618 }
1619 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001620
Damien Miller1383bd82000-04-06 12:32:37 +10001621 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001622 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001623
Damien Miller1383bd82000-04-06 12:32:37 +10001624 if (quit_pending)
1625 break;
1626
1627 if (!compat20) {
1628 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001629 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001630 /*
1631 * Process output to stdout and stderr. Output to
1632 * the connection is processed elsewhere (above).
1633 */
Damien Miller5e953212001-01-30 09:14:00 +11001634 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001635 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001636
Darren Tuckere32cf432010-01-08 16:51:40 +11001637 if (session_resumed) {
1638 connection_in = packet_get_connection_in();
1639 connection_out = packet_get_connection_out();
1640 max_fd = MAX(max_fd, connection_out);
1641 max_fd = MAX(max_fd, connection_in);
1642 session_resumed = 0;
1643 }
1644
Darren Tucker4d5cd332008-06-13 04:51:14 +10001645 /*
1646 * Send as much buffered packet data as possible to the
1647 * sender.
1648 */
Damien Miller5e953212001-01-30 09:14:00 +11001649 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001650 packet_write_poll();
Damien Millere11e1ea2010-08-03 16:04:46 +10001651
1652 /*
1653 * If we are a backgrounded control master, and the
1654 * timeout has expired without any active client
1655 * connections, then quit.
1656 */
1657 if (control_persist_exit_time > 0) {
1658 if (time(NULL) >= control_persist_exit_time) {
1659 debug("ControlPersist timeout expired");
1660 break;
1661 }
1662 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001663 }
Damien Miller5e953212001-01-30 09:14:00 +11001664 if (readset)
1665 xfree(readset);
1666 if (writeset)
1667 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001668
Damien Miller95def091999-11-25 00:26:21 +11001669 /* Terminate the session. */
1670
1671 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001672 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001673
Darren Tuckerde0c0252009-07-06 07:17:35 +10001674 if (compat20) {
1675 packet_start(SSH2_MSG_DISCONNECT);
1676 packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
1677 packet_put_cstring("disconnected by user");
Damien Miller8ddc71c2010-03-22 05:54:02 +11001678 packet_put_cstring(""); /* language tag */
Darren Tuckerde0c0252009-07-06 07:17:35 +10001679 packet_send();
1680 packet_write_wait();
1681 }
Darren Tucker12b4a652009-06-21 18:14:48 +10001682
Ben Lindstrom601e4362001-06-21 03:19:23 +00001683 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001684
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001685 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001686 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001687
1688 /* restore blocking io */
1689 if (!isatty(fileno(stdin)))
1690 unset_nonblock(fileno(stdin));
1691 if (!isatty(fileno(stdout)))
1692 unset_nonblock(fileno(stdout));
1693 if (!isatty(fileno(stderr)))
1694 unset_nonblock(fileno(stderr));
1695
Damien Millerd6965512003-12-17 16:31:53 +11001696 /*
1697 * If there was no shell or command requested, there will be no remote
1698 * exit status to be returned. In that case, clear error code if the
1699 * connection was deliberately terminated at this end.
1700 */
1701 if (no_shell_flag && received_signal == SIGTERM) {
1702 received_signal = 0;
1703 exit_status = 0;
1704 }
1705
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001706 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001707 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001708
1709 /*
1710 * In interactive mode (with pseudo tty) display a message indicating
1711 * that the connection has been closed.
1712 */
1713 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001714 snprintf(buf, sizeof buf,
1715 "Connection to %.64s closed.\r\n", host);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001716 buffer_append(&stderr_buffer, buf, strlen(buf));
1717 }
1718
Damien Miller95def091999-11-25 00:26:21 +11001719 /* Output any buffered data for stdout. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001720 if (buffer_len(&stdout_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001721 len = atomicio(vwrite, fileno(stdout),
1722 buffer_ptr(&stdout_buffer), buffer_len(&stdout_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001723 if (len < 0 || (u_int)len != buffer_len(&stdout_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001724 error("Write failed flushing stdout buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001725 else
1726 buffer_consume(&stdout_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001727 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001728
Damien Miller95def091999-11-25 00:26:21 +11001729 /* Output any buffered data for stderr. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001730 if (buffer_len(&stderr_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001731 len = atomicio(vwrite, fileno(stderr),
1732 buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001733 if (len < 0 || (u_int)len != buffer_len(&stderr_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001734 error("Write failed flushing stderr buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001735 else
1736 buffer_consume(&stderr_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001737 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738
Damien Miller95def091999-11-25 00:26:21 +11001739 /* Clear and free any buffers. */
1740 memset(buf, 0, sizeof(buf));
1741 buffer_free(&stdin_buffer);
1742 buffer_free(&stdout_buffer);
1743 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001744
Damien Miller95def091999-11-25 00:26:21 +11001745 /* Report bytes transferred, and transfer rates. */
1746 total_time = get_current_time() - start_time;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001747 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
1748 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
1749 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
Damien Miller821de0a2011-01-11 17:20:29 +11001750 (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001751 if (total_time > 0)
Damien Millerb61f3fc2008-07-11 17:36:48 +10001752 verbose("Bytes per second: sent %.1f, received %.1f",
1753 obytes / total_time, ibytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001754 /* Return the exit status of the program. */
1755 debug("Exit status %d", exit_status);
1756 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001757}
Damien Millerb38eff82000-04-01 11:09:21 +10001758
1759/*********/
1760
Ben Lindstrombba81212001-06-25 05:01:22 +00001761static void
Damien Miller630d6f42002-01-22 23:17:30 +11001762client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001763{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001764 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001765 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001766 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001767 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001768 memset(data, 0, data_len);
1769 xfree(data);
1770}
Ben Lindstrombba81212001-06-25 05:01:22 +00001771static void
Damien Miller630d6f42002-01-22 23:17:30 +11001772client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001773{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001774 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001775 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001776 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001777 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001778 memset(data, 0, data_len);
1779 xfree(data);
1780}
Ben Lindstrombba81212001-06-25 05:01:22 +00001781static void
Damien Miller630d6f42002-01-22 23:17:30 +11001782client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001783{
Damien Millerb38eff82000-04-01 11:09:21 +10001784 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001785 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001786 /* Acknowledge the exit. */
1787 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1788 packet_send();
1789 /*
1790 * Must wait for packet to be sent since we are
1791 * exiting the loop.
1792 */
1793 packet_write_wait();
1794 /* Flag that we want to exit. */
1795 quit_pending = 1;
1796}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001797static void
1798client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1799{
1800 Channel *c = NULL;
1801 int remote_id, sock;
1802
1803 /* Read the remote channel number from the message. */
1804 remote_id = packet_get_int();
1805 packet_check_eom();
1806
1807 /*
1808 * Get a connection to the local authentication agent (this may again
1809 * get forwarded).
1810 */
1811 sock = ssh_get_authentication_socket();
1812
1813 /*
1814 * If we could not connect the agent, send an error message back to
1815 * the server. This should never happen unless the agent dies,
1816 * because authentication forwarding is only enabled if we have an
1817 * agent.
1818 */
1819 if (sock >= 0) {
1820 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1821 -1, 0, 0, 0, "authentication agent connection", 1);
1822 c->remote_id = remote_id;
1823 c->force_drain = 1;
1824 }
1825 if (c == NULL) {
1826 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1827 packet_put_int(remote_id);
1828 } else {
1829 /* Send a confirmation to the remote host. */
1830 debug("Forwarding authentication connection.");
1831 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1832 packet_put_int(remote_id);
1833 packet_put_int(c->self);
1834 }
1835 packet_send();
1836}
Damien Millerb38eff82000-04-01 11:09:21 +10001837
Ben Lindstrombba81212001-06-25 05:01:22 +00001838static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001839client_request_forwarded_tcpip(const char *request_type, int rchan)
1840{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001841 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001842 char *listen_address, *originator_address;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001843 u_short listen_port, originator_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001844
1845 /* Get rest of the packet */
1846 listen_address = packet_get_string(NULL);
1847 listen_port = packet_get_int();
1848 originator_address = packet_get_string(NULL);
1849 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001850 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001851
Damien Millerbd740252008-05-19 15:37:09 +10001852 debug("client_request_forwarded_tcpip: listen %s port %d, "
1853 "originator %s port %d", listen_address, listen_port,
1854 originator_address, originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001855
Damien Millerbd740252008-05-19 15:37:09 +10001856 c = channel_connect_by_listen_address(listen_port,
1857 "forwarded-tcpip", originator_address);
1858
Damien Miller0bc1bd82000-11-13 22:57:25 +11001859 xfree(originator_address);
1860 xfree(listen_address);
1861 return c;
1862}
1863
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001864static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001865client_request_x11(const char *request_type, int rchan)
1866{
1867 Channel *c = NULL;
1868 char *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001869 u_short originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001870 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001871
1872 if (!options.forward_x11) {
1873 error("Warning: ssh server tried X11 forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001874 error("Warning: this is probably a break-in attempt by a "
1875 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001876 return NULL;
1877 }
Damien Miller1ab6a512010-06-26 10:02:24 +10001878 if (x11_refuse_time != 0 && time(NULL) >= x11_refuse_time) {
1879 verbose("Rejected X11 connection after ForwardX11Timeout "
1880 "expired");
1881 return NULL;
1882 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001883 originator = packet_get_string(NULL);
1884 if (datafellows & SSH_BUG_X11FWD) {
1885 debug2("buggy server: x11 request w/o originator_port");
1886 originator_port = 0;
1887 } else {
1888 originator_port = packet_get_int();
1889 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001890 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001891 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001892 debug("client_request_x11: request from %s %d", originator,
1893 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001894 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001895 sock = x11_connect_display();
1896 if (sock < 0)
1897 return NULL;
1898 c = channel_new("x11",
1899 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001900 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001901 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001902 return c;
1903}
1904
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001905static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001906client_request_agent(const char *request_type, int rchan)
1907{
1908 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001909 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001910
1911 if (!options.forward_agent) {
1912 error("Warning: ssh server tried agent forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001913 error("Warning: this is probably a break-in attempt by a "
1914 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001915 return NULL;
1916 }
Darren Tucker82a3d2b2007-02-19 22:10:25 +11001917 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001918 if (sock < 0)
1919 return NULL;
1920 c = channel_new("authentication agent connection",
1921 SSH_CHANNEL_OPEN, sock, sock, -1,
Darren Tucker5baa1702007-12-29 09:37:10 +11001922 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001923 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001924 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001925 return c;
1926}
1927
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001928int
1929client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1930{
1931 Channel *c;
1932 int fd;
1933
1934 if (tun_mode == SSH_TUNMODE_NO)
1935 return 0;
1936
1937 if (!compat20) {
Damien Millerb3f2c9f2009-01-28 16:15:30 +11001938 error("Tunnel forwarding is not supported for protocol 1");
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001939 return -1;
1940 }
1941
1942 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1943
1944 /* Open local tunnel device */
1945 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1946 error("Tunnel device open failed.");
1947 return -1;
1948 }
1949
1950 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1951 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
1952 c->datagram = 1;
1953
1954#if defined(SSH_TUN_FILTER)
1955 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1956 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10001957 sys_tun_outfilter, NULL, NULL);
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001958#endif
1959
1960 packet_start(SSH2_MSG_CHANNEL_OPEN);
1961 packet_put_cstring("tun@openssh.com");
1962 packet_put_int(c->self);
1963 packet_put_int(c->local_window_max);
1964 packet_put_int(c->local_maxpacket);
1965 packet_put_int(tun_mode);
1966 packet_put_int(remote_tun);
1967 packet_send();
1968
1969 return 0;
1970}
1971
Damien Millerbd483e72000-04-30 10:00:53 +10001972/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001973static void
Damien Miller630d6f42002-01-22 23:17:30 +11001974client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001975{
1976 Channel *c = NULL;
1977 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001978 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001979 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001980
1981 ctype = packet_get_string(&len);
1982 rchan = packet_get_int();
1983 rwindow = packet_get_int();
1984 rmaxpack = packet_get_int();
1985
Damien Millere247cc42000-05-07 12:03:14 +10001986 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001987 ctype, rchan, rwindow, rmaxpack);
1988
Damien Miller0bc1bd82000-11-13 22:57:25 +11001989 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1990 c = client_request_forwarded_tcpip(ctype, rchan);
1991 } else if (strcmp(ctype, "x11") == 0) {
1992 c = client_request_x11(ctype, rchan);
1993 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1994 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001995 }
1996/* XXX duplicate : */
1997 if (c != NULL) {
1998 debug("confirm %s", ctype);
1999 c->remote_id = rchan;
2000 c->remote_window = rwindow;
2001 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002002 if (c->type != SSH_CHANNEL_CONNECTING) {
2003 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
2004 packet_put_int(c->remote_id);
2005 packet_put_int(c->self);
2006 packet_put_int(c->local_window);
2007 packet_put_int(c->local_maxpacket);
2008 packet_send();
2009 }
Damien Millerbd483e72000-04-30 10:00:53 +10002010 } else {
2011 debug("failure %s", ctype);
2012 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
2013 packet_put_int(rchan);
2014 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00002015 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002016 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00002017 packet_put_cstring("");
2018 }
Damien Millerbd483e72000-04-30 10:00:53 +10002019 packet_send();
2020 }
2021 xfree(ctype);
2022}
Ben Lindstrombba81212001-06-25 05:01:22 +00002023static void
Damien Miller630d6f42002-01-22 23:17:30 +11002024client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00002025{
2026 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002027 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00002028 char *rtype;
2029
2030 id = packet_get_int();
2031 rtype = packet_get_string(NULL);
2032 reply = packet_get_char();
2033
2034 debug("client_input_channel_req: channel %d rtype %s reply %d",
2035 id, rtype, reply);
2036
Damien Miller3bbd8782004-06-18 22:23:22 +10002037 if (id == -1) {
2038 error("client_input_channel_req: request for channel -1");
2039 } else if ((c = channel_lookup(id)) == NULL) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10002040 error("client_input_channel_req: channel %d: "
2041 "unknown channel", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10002042 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
2043 packet_check_eom();
2044 chan_rcvd_eow(c);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002045 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10002046 exitval = packet_get_int();
Damien Millere1537f92010-01-26 13:26:22 +11002047 if (c->ctl_chan != -1) {
2048 mux_exit_message(c, exitval);
Damien Miller0e220db2004-06-15 10:34:08 +10002049 success = 1;
Darren Tucker29440822010-01-08 17:08:35 +11002050 } else if (id == session_ident) {
2051 /* Record exit value of local session */
2052 success = 1;
2053 exit_status = exitval;
2054 } else {
Damien Miller36f57eb2010-01-30 17:28:34 +11002055 /* Probably for a mux channel that has already closed */
2056 debug("%s: no sink for exit-status on channel %d",
2057 __func__, id);
Damien Miller0e220db2004-06-15 10:34:08 +10002058 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002059 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00002060 }
Damien Millerd0fdd682010-12-01 12:02:14 +11002061 if (reply && c != NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00002062 packet_start(success ?
2063 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller8533c782008-12-08 09:54:40 +11002064 packet_put_int(c->remote_id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002065 packet_send();
2066 }
2067 xfree(rtype);
2068}
Damien Millerc3fa4072002-01-22 23:21:58 +11002069static void
2070client_input_global_request(int type, u_int32_t seq, void *ctxt)
2071{
2072 char *rtype;
2073 int want_reply;
2074 int success = 0;
2075
2076 rtype = packet_get_string(NULL);
2077 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11002078 debug("client_input_global_request: rtype %s want_reply %d",
2079 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11002080 if (want_reply) {
2081 packet_start(success ?
2082 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
2083 packet_send();
2084 packet_write_wait();
2085 }
2086 xfree(rtype);
2087}
Damien Millerbd483e72000-04-30 10:00:53 +10002088
Damien Miller0e220db2004-06-15 10:34:08 +10002089void
Darren Tuckerfc959702004-07-17 16:12:08 +10002090client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller5771ed72008-05-19 15:35:33 +10002091 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
Damien Miller0e220db2004-06-15 10:34:08 +10002092{
2093 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11002094 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002095
2096 debug2("%s: id %d", __func__, id);
2097
Darren Tucker5d78de62004-11-05 20:35:44 +11002098 if ((c = channel_lookup(id)) == NULL)
2099 fatal("client_session2_setup: channel %d: unknown channel", id);
2100
Damien Miller0dac6fb2010-11-20 15:19:38 +11002101 packet_set_interactive(want_tty,
2102 options.ip_qos_interactive, options.ip_qos_bulk);
2103
Damien Miller0e220db2004-06-15 10:34:08 +10002104 if (want_tty) {
2105 struct winsize ws;
Damien Miller0e220db2004-06-15 10:34:08 +10002106
2107 /* Store window size in the packet. */
2108 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
2109 memset(&ws, 0, sizeof(ws));
2110
Damien Miller5771ed72008-05-19 15:35:33 +10002111 channel_request_start(id, "pty-req", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002112 client_expect_confirm(id, "PTY allocation", CONFIRM_TTY);
Damien Miller0e220db2004-06-15 10:34:08 +10002113 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11002114 packet_put_int((u_int)ws.ws_col);
2115 packet_put_int((u_int)ws.ws_row);
2116 packet_put_int((u_int)ws.ws_xpixel);
2117 packet_put_int((u_int)ws.ws_ypixel);
Darren Tuckerdf189fb2008-06-08 12:55:32 +10002118 if (tiop == NULL)
2119 tiop = get_saved_tio();
2120 tty_make_modes(-1, tiop);
Damien Miller0e220db2004-06-15 10:34:08 +10002121 packet_send();
2122 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11002123 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10002124 }
2125
2126 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10002127 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10002128 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10002129 char *name, *val;
2130
2131 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10002132 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10002133 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10002134 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10002135 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11002136 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002137 continue;
2138 }
2139 *val++ = '\0';
2140
2141 matched = 0;
2142 for (j = 0; j < options.num_send_env; j++) {
2143 if (match_pattern(name, options.send_env[j])) {
2144 matched = 1;
2145 break;
2146 }
2147 }
2148 if (!matched) {
2149 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11002150 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002151 continue;
2152 }
2153
2154 debug("Sending env %s = %s", name, val);
2155 channel_request_start(id, "env", 0);
2156 packet_put_cstring(name);
2157 packet_put_cstring(val);
2158 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11002159 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002160 }
2161 }
2162
2163 len = buffer_len(cmd);
2164 if (len > 0) {
2165 if (len > 900)
2166 len = 900;
2167 if (want_subsystem) {
Damien Miller5771ed72008-05-19 15:35:33 +10002168 debug("Sending subsystem: %.*s",
2169 len, (u_char*)buffer_ptr(cmd));
2170 channel_request_start(id, "subsystem", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002171 client_expect_confirm(id, "subsystem", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002172 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002173 debug("Sending command: %.*s",
2174 len, (u_char*)buffer_ptr(cmd));
2175 channel_request_start(id, "exec", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002176 client_expect_confirm(id, "exec", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002177 }
2178 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
2179 packet_send();
2180 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002181 channel_request_start(id, "shell", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002182 client_expect_confirm(id, "shell", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002183 packet_send();
2184 }
2185}
2186
Ben Lindstrombba81212001-06-25 05:01:22 +00002187static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002188client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10002189{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002190 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10002191
Damien Miller1383bd82000-04-06 12:32:37 +10002192 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2193 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2194 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2195 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10002196 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10002197 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2198 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002199 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10002200 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerb84886b2008-05-19 15:05:07 +10002201 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2202 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
Damien Millerc3fa4072002-01-22 23:21:58 +11002203 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002204
2205 /* rekeying */
2206 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10002207
2208 /* global request reply messages */
2209 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2210 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10002211}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002212
Ben Lindstrombba81212001-06-25 05:01:22 +00002213static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002214client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002215{
2216 dispatch_init(NULL);
2217 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2218 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2219 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002220 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2221 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2222 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002223 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2224 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2225 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002226
2227 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002228 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002229 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2230 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002231}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002232
Ben Lindstrombba81212001-06-25 05:01:22 +00002233static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002234client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002235{
2236 client_init_dispatch_13();
2237 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2238 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2239}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002240
Ben Lindstromdb47f382001-07-04 05:10:27 +00002241static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002242client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002243{
Damien Miller1383bd82000-04-06 12:32:37 +10002244 if (compat20)
2245 client_init_dispatch_20();
2246 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002247 client_init_dispatch_13();
2248 else
2249 client_init_dispatch_15();
2250}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002251
Damien Miller6c3eec72011-05-05 14:16:22 +10002252void
2253client_stop_mux(void)
2254{
2255 if (options.control_path != NULL && muxserver_sock != -1)
2256 unlink(options.control_path);
2257 /*
Darren Tucker48bf4b02012-09-07 16:38:53 +10002258 * If we are in persist mode, or don't have a shell, signal that we
2259 * should close when all active channels are closed.
Damien Miller6c3eec72011-05-05 14:16:22 +10002260 */
Darren Tucker48bf4b02012-09-07 16:38:53 +10002261 if (options.control_persist || no_shell_flag) {
Damien Miller6c3eec72011-05-05 14:16:22 +10002262 session_closed = 1;
Damien Miller4ac99c32011-06-20 14:43:31 +10002263 setproctitle("[stopped mux]");
2264 }
Damien Miller6c3eec72011-05-05 14:16:22 +10002265}
2266
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002267/* client specific fatal cleanup */
2268void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002269cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002270{
Damien Miller21771e22011-05-15 08:45:50 +10002271 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002272 leave_non_blocking();
Damien Millerb1cbfa22008-05-19 16:00:08 +10002273 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10002274 unlink(options.control_path);
Damien Millera41ccca2010-10-07 22:07:32 +11002275 ssh_kill_proxy_command();
Darren Tucker3e33cec2003-10-02 16:12:36 +10002276 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002277}