blob: c19b01f195f35f8ec974ff1716b890adbe3e5eef [file] [log] [blame]
Damien Miller6d7b4372011-06-23 08:31:57 +10001/* $OpenBSD: clientloop.c,v 1.236 2011/06/22 22:08:42 djm 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 Miller17e7ed02005-06-17 12:54:33 +1000284#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
285void
286client_x11_get_proto(const char *display, const char *xauth_path,
Damien Miller1ab6a512010-06-26 10:02:24 +1000287 u_int trusted, u_int timeout, char **_proto, char **_data)
Damien Miller17e7ed02005-06-17 12:54:33 +1000288{
289 char cmd[1024];
290 char line[512];
291 char xdisplay[512];
292 static char proto[512], data[512];
293 FILE *f;
294 int got_data = 0, generated = 0, do_unlink = 0, i;
295 char *xauthdir, *xauthfile;
296 struct stat st;
Damien Miller1ab6a512010-06-26 10:02:24 +1000297 u_int now;
Damien Miller17e7ed02005-06-17 12:54:33 +1000298
299 xauthdir = xauthfile = NULL;
300 *_proto = proto;
301 *_data = data;
302 proto[0] = data[0] = '\0';
303
304 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
305 debug("No xauth program.");
306 } else {
307 if (display == NULL) {
308 debug("x11_get_proto: DISPLAY not set");
309 return;
310 }
311 /*
312 * Handle FamilyLocal case where $DISPLAY does
313 * not match an authorization entry. For this we
314 * just try "xauth list unix:displaynum.screennum".
315 * XXX: "localhost" match to determine FamilyLocal
316 * is not perfect.
317 */
318 if (strncmp(display, "localhost:", 10) == 0) {
319 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
320 display + 10);
321 display = xdisplay;
322 }
323 if (trusted == 0) {
324 xauthdir = xmalloc(MAXPATHLEN);
325 xauthfile = xmalloc(MAXPATHLEN);
Damien Miller2cd62932010-12-01 11:50:35 +1100326 mktemp_proto(xauthdir, MAXPATHLEN);
Damien Miller17e7ed02005-06-17 12:54:33 +1000327 if (mkdtemp(xauthdir) != NULL) {
328 do_unlink = 1;
329 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
330 xauthdir);
331 snprintf(cmd, sizeof(cmd),
332 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller1ab6a512010-06-26 10:02:24 +1000333 " untrusted timeout %u 2>" _PATH_DEVNULL,
334 xauth_path, xauthfile, display, timeout);
Damien Miller17e7ed02005-06-17 12:54:33 +1000335 debug2("x11_get_proto: %s", cmd);
336 if (system(cmd) == 0)
337 generated = 1;
Damien Miller1ab6a512010-06-26 10:02:24 +1000338 if (x11_refuse_time == 0) {
339 now = time(NULL) + 1;
340 if (UINT_MAX - timeout < now)
341 x11_refuse_time = UINT_MAX;
342 else
343 x11_refuse_time = now + timeout;
344 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000345 }
346 }
Darren Tucker513d13a2007-08-15 19:13:41 +1000347
348 /*
349 * When in untrusted mode, we read the cookie only if it was
350 * successfully generated as an untrusted one in the step
351 * above.
352 */
353 if (trusted || generated) {
354 snprintf(cmd, sizeof(cmd),
355 "%s %s%s list %s 2>" _PATH_DEVNULL,
356 xauth_path,
357 generated ? "-f " : "" ,
358 generated ? xauthfile : "",
359 display);
360 debug2("x11_get_proto: %s", cmd);
361 f = popen(cmd, "r");
362 if (f && fgets(line, sizeof(line), f) &&
363 sscanf(line, "%*s %511s %511s", proto, data) == 2)
364 got_data = 1;
365 if (f)
366 pclose(f);
367 } else
368 error("Warning: untrusted X11 forwarding setup failed: "
369 "xauth key data not generated");
Damien Miller17e7ed02005-06-17 12:54:33 +1000370 }
371
372 if (do_unlink) {
373 unlink(xauthfile);
374 rmdir(xauthdir);
375 }
376 if (xauthdir)
377 xfree(xauthdir);
378 if (xauthfile)
379 xfree(xauthfile);
380
381 /*
382 * If we didn't get authentication data, just make up some
383 * data. The forwarding code will check the validity of the
384 * response anyway, and substitute this data. The X11
385 * server, however, will ignore this fake data and use
386 * whatever authentication mechanisms it was using otherwise
387 * for the local connection.
388 */
389 if (!got_data) {
390 u_int32_t rnd = 0;
391
392 logit("Warning: No xauth data; "
393 "using fake authentication data for X11 forwarding.");
394 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
395 for (i = 0; i < 16; i++) {
396 if (i % 4 == 0)
397 rnd = arc4random();
398 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
399 rnd & 0xff);
400 rnd >>= 8;
401 }
402 }
403}
404
Damien Miller5428f641999-11-25 11:54:57 +1100405/*
406 * This is called when the interactive is entered. This checks if there is
407 * an EOF coming on stdin. We must check this explicitly, as select() does
408 * not appear to wake up when redirecting from /dev/null.
409 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410
Ben Lindstrombba81212001-06-25 05:01:22 +0000411static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000412client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413{
Damien Miller95def091999-11-25 00:26:21 +1100414 int len;
415 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller5428f641999-11-25 11:54:57 +1100417 /*
418 * If standard input is to be "redirected from /dev/null", we simply
419 * mark that we have seen an EOF and send an EOF message to the
420 * server. Otherwise, we try to read a single character; it appears
421 * that for some files, such /dev/null, select() never wakes up for
422 * read for this descriptor, which means that we never get EOF. This
423 * way we will get the EOF if stdin comes from /dev/null or similar.
424 */
Damien Miller95def091999-11-25 00:26:21 +1100425 if (stdin_null_flag) {
426 /* Fake EOF on stdin. */
427 debug("Sending eof.");
428 stdin_eof = 1;
429 packet_start(SSH_CMSG_EOF);
430 packet_send();
431 } else {
Damien Miller95def091999-11-25 00:26:21 +1100432 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433
Damien Miller95def091999-11-25 00:26:21 +1100434 /* Check for immediate EOF on stdin. */
435 len = read(fileno(stdin), buf, 1);
436 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000437 /*
438 * EOF. Record that we have seen it and send
439 * EOF to server.
440 */
Damien Miller95def091999-11-25 00:26:21 +1100441 debug("Sending eof.");
442 stdin_eof = 1;
443 packet_start(SSH_CMSG_EOF);
444 packet_send();
445 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100446 /*
447 * Got data. We must store the data in the buffer,
448 * and also process it as an escape character if
449 * appropriate.
450 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000451 if ((u_char) buf[0] == escape_char1)
452 escape_pending1 = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000453 else
Damien Miller95def091999-11-25 00:26:21 +1100454 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100455 }
Damien Miller95def091999-11-25 00:26:21 +1100456 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458}
459
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460
Damien Miller5428f641999-11-25 11:54:57 +1100461/*
462 * Make packets from buffered stdin data, and buffer them for sending to the
463 * connection.
464 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465
Ben Lindstrombba81212001-06-25 05:01:22 +0000466static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000467client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000469 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000470
Damien Miller95def091999-11-25 00:26:21 +1100471 /* Send buffered stdin data to the server. */
472 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100473 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100474 len = buffer_len(&stdin_buffer);
475 /* Keep the packets at reasonable size. */
476 if (len > packet_get_maxsize())
477 len = packet_get_maxsize();
478 packet_start(SSH_CMSG_STDIN_DATA);
479 packet_put_string(buffer_ptr(&stdin_buffer), len);
480 packet_send();
481 buffer_consume(&stdin_buffer, len);
482 /* If we have a pending EOF, send it now. */
483 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
484 packet_start(SSH_CMSG_EOF);
485 packet_send();
486 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488}
489
Damien Miller5428f641999-11-25 11:54:57 +1100490/*
491 * Checks if the client window has changed, and sends a packet about it to
492 * the server if so. The actual change is detected elsewhere (by a software
493 * interrupt on Unix); this just checks the flag and sends a message if
494 * appropriate.
495 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496
Ben Lindstrombba81212001-06-25 05:01:22 +0000497static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000498client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499{
Damien Miller1383bd82000-04-06 12:32:37 +1000500 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller1383bd82000-04-06 12:32:37 +1000502 if (! received_window_change_signal)
503 return;
504 /** XXX race */
505 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506
Damien Millerd3444942000-09-30 14:20:03 +1100507 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000508
509 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000510 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000511 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000512 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
513 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000514 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100515 packet_put_int((u_int)ws.ws_row);
516 packet_put_int((u_int)ws.ws_col);
517 packet_put_int((u_int)ws.ws_xpixel);
518 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000519 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521}
522
Damien Miller509b0102003-12-17 16:33:10 +1100523static void
524client_global_request_reply(int type, u_int32_t seq, void *ctxt)
525{
Darren Tucker9f407c42008-06-13 04:50:27 +1000526 struct global_confirm *gc;
527
528 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
529 return;
530 if (gc->cb != NULL)
531 gc->cb(type, seq, gc->ctx);
532 if (--gc->ref_count <= 0) {
533 TAILQ_REMOVE(&global_confirms, gc, entry);
534 bzero(gc, sizeof(*gc));
535 xfree(gc);
536 }
537
Darren Tuckerf7288d72009-06-21 18:12:20 +1000538 packet_set_alive_timeouts(0);
Damien Miller509b0102003-12-17 16:33:10 +1100539}
540
541static void
542server_alive_check(void)
543{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000544 if (packet_inc_alive_timeouts() > options.server_alive_count_max) {
Damien Millerb73b6fd2011-01-11 17:18:56 +1100545 logit("Timeout, server %s not responding.", host);
Damien Miller985a4482006-10-24 03:02:41 +1000546 cleanup_exit(255);
547 }
Damien Miller509b0102003-12-17 16:33:10 +1100548 packet_start(SSH2_MSG_GLOBAL_REQUEST);
549 packet_put_cstring("keepalive@openssh.com");
550 packet_put_char(1); /* boolean: want reply */
551 packet_send();
Darren Tucker9f407c42008-06-13 04:50:27 +1000552 /* Insert an empty placeholder to maintain ordering */
553 client_register_global_confirm(NULL, NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100554}
555
Damien Miller5428f641999-11-25 11:54:57 +1100556/*
557 * Waits until the client can do something (some data becomes available on
558 * one of the file descriptors).
559 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000560static void
Damien Miller5e953212001-01-30 09:14:00 +1100561client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000562 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563{
Damien Miller509b0102003-12-17 16:33:10 +1100564 struct timeval tv, *tvp;
Damien Millere11e1ea2010-08-03 16:04:46 +1000565 int timeout_secs;
Damien Miller509b0102003-12-17 16:33:10 +1100566 int ret;
567
Damien Miller5e953212001-01-30 09:14:00 +1100568 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000569 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller1383bd82000-04-06 12:32:37 +1000571 if (!compat20) {
572 /* Read from the connection, unless our buffers are full. */
573 if (buffer_len(&stdout_buffer) < buffer_high &&
574 buffer_len(&stderr_buffer) < buffer_high &&
575 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100576 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000577 /*
578 * Read from stdin, unless we have seen EOF or have very much
579 * buffered data to send to the server.
580 */
581 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100582 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000583
584 /* Select stdout/stderr if have data in buffer. */
585 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100586 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000587 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100588 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000589 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000590 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000591 if (session_closed && !channel_still_open() &&
592 !packet_have_data_to_write()) {
593 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100594 memset(*readsetp, 0, *nallocp);
595 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000596 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000597 } else {
598 FD_SET(connection_in, *readsetp);
599 }
Damien Miller1383bd82000-04-06 12:32:37 +1000600 }
601
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Select server connection if have data to write to the server. */
603 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100604 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100605
Damien Miller5428f641999-11-25 11:54:57 +1100606 /*
607 * Wait for something to happen. This will suspend the process until
608 * some selected descriptor can be read, written, or has some other
Damien Millere11e1ea2010-08-03 16:04:46 +1000609 * event pending, or a timeout expires.
Damien Miller5428f641999-11-25 11:54:57 +1100610 */
Damien Miller95def091999-11-25 00:26:21 +1100611
Damien Millere11e1ea2010-08-03 16:04:46 +1000612 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
613 if (options.server_alive_interval > 0 && compat20)
614 timeout_secs = options.server_alive_interval;
615 set_control_persist_exit_time();
616 if (control_persist_exit_time > 0) {
617 timeout_secs = MIN(timeout_secs,
618 control_persist_exit_time - time(NULL));
619 if (timeout_secs < 0)
620 timeout_secs = 0;
621 }
622 if (timeout_secs == INT_MAX)
Damien Miller509b0102003-12-17 16:33:10 +1100623 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000624 else {
Damien Millere11e1ea2010-08-03 16:04:46 +1000625 tv.tv_sec = timeout_secs;
Damien Miller509b0102003-12-17 16:33:10 +1100626 tv.tv_usec = 0;
627 tvp = &tv;
628 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000629
Damien Miller509b0102003-12-17 16:33:10 +1100630 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
631 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100632 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000633
634 /*
635 * We have to clear the select masks, because we return.
636 * We have to return, because the mainloop checks for the flags
637 * set by the signal handlers.
638 */
Damien Miller79faeff2001-11-12 11:06:32 +1100639 memset(*readsetp, 0, *nallocp);
640 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000641
Damien Miller95def091999-11-25 00:26:21 +1100642 if (errno == EINTR)
643 return;
644 /* Note: we might still have data in the buffers. */
645 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
646 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100647 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100648 } else if (ret == 0)
649 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650}
651
Ben Lindstrombba81212001-06-25 05:01:22 +0000652static void
Damien Millerad833b32000-08-23 10:46:23 +1000653client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654{
Damien Miller95def091999-11-25 00:26:21 +1100655 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000656 if (buffer_len(bout) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000657 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
658 buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000659 if (buffer_len(berr) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000660 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
661 buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662
Damien Miller21771e22011-05-15 08:45:50 +1000663 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664
Damien Miller5428f641999-11-25 11:54:57 +1100665 /*
666 * Free (and clear) the buffer to reduce the amount of data that gets
667 * written to swap.
668 */
Damien Millerad833b32000-08-23 10:46:23 +1000669 buffer_free(bin);
670 buffer_free(bout);
671 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672
Damien Miller95def091999-11-25 00:26:21 +1100673 /* Send the suspend signal to the program itself. */
674 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675
Darren Tucker5d78de62004-11-05 20:35:44 +1100676 /* Reset window sizes in case they have changed */
677 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678
Damien Miller95def091999-11-25 00:26:21 +1100679 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000680 buffer_init(bin);
681 buffer_init(bout);
682 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller21771e22011-05-15 08:45:50 +1000684 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685}
686
Ben Lindstrombba81212001-06-25 05:01:22 +0000687static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100688client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689{
Darren Tuckerc5564e12009-06-21 18:53:53 +1000690 int len, cont = 0;
Darren Tucker86e30a02009-08-28 11:21:06 +1000691 char buf[SSH_IOBUFSZ];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000692
Damien Miller5428f641999-11-25 11:54:57 +1100693 /*
694 * Read input from the server, and add any such data to the buffer of
695 * the packet subsystem.
696 */
Damien Miller95def091999-11-25 00:26:21 +1100697 if (FD_ISSET(connection_in, readset)) {
698 /* Read as much as possible. */
Darren Tuckerc5564e12009-06-21 18:53:53 +1000699 len = roaming_read(connection_in, buf, sizeof(buf), &cont);
700 if (len == 0 && cont == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000701 /*
702 * Received EOF. The remote host has closed the
703 * connection.
704 */
705 snprintf(buf, sizeof buf,
706 "Connection to %.300s closed by remote host.\r\n",
707 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709 quit_pending = 1;
710 return;
Damien Miller95def091999-11-25 00:26:21 +1100711 }
Damien Miller5428f641999-11-25 11:54:57 +1100712 /*
713 * There is a kernel bug on Solaris that causes select to
714 * sometimes wake up even though there is no data available.
715 */
Damien Millerd8968ad2008-07-04 23:10:49 +1000716 if (len < 0 &&
717 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Damien Miller95def091999-11-25 00:26:21 +1100718 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000719
Damien Miller95def091999-11-25 00:26:21 +1100720 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000721 /*
722 * An error has encountered. Perhaps there is a
723 * network problem.
724 */
725 snprintf(buf, sizeof buf,
726 "Read from remote host %.300s: %.100s\r\n",
727 host, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100728 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100729 quit_pending = 1;
730 return;
731 }
732 packet_process_incoming(buf, len);
733 }
Damien Miller1383bd82000-04-06 12:32:37 +1000734}
735
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000736static void
Damien Miller5771ed72008-05-19 15:35:33 +1000737client_status_confirm(int type, Channel *c, void *ctx)
Damien Miller0e220db2004-06-15 10:34:08 +1000738{
Damien Miller5771ed72008-05-19 15:35:33 +1000739 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
740 char errmsg[256];
741 int tochan;
Darren Tuckerfc959702004-07-17 16:12:08 +1000742
Damien Miller555f3b82011-05-15 08:48:05 +1000743 /*
744 * If a TTY was explicitly requested, then a failure to allocate
745 * one is fatal.
746 */
747 if (cr->action == CONFIRM_TTY &&
748 (options.request_tty == REQUEST_TTY_FORCE ||
749 options.request_tty == REQUEST_TTY_YES))
750 cr->action = CONFIRM_CLOSE;
751
Damien Miller5771ed72008-05-19 15:35:33 +1000752 /* XXX supress on mux _client_ quietmode */
753 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
Damien Millere1537f92010-01-26 13:26:22 +1100754 c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
Damien Miller0e220db2004-06-15 10:34:08 +1000755
Damien Miller5771ed72008-05-19 15:35:33 +1000756 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
757 debug2("%s request accepted on channel %d",
758 cr->request_type, c->self);
759 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
760 if (tochan) {
761 snprintf(errmsg, sizeof(errmsg),
762 "%s request failed\r\n", cr->request_type);
763 } else {
764 snprintf(errmsg, sizeof(errmsg),
765 "%s request failed on channel %d",
766 cr->request_type, c->self);
767 }
768 /* If error occurred on primary session channel, then exit */
Damien Miller555f3b82011-05-15 08:48:05 +1000769 if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
Damien Miller5771ed72008-05-19 15:35:33 +1000770 fatal("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000771 /*
772 * If error occurred on mux client, append to
773 * their stderr.
774 */
775 if (tochan) {
776 buffer_append(&c->extended, errmsg,
777 strlen(errmsg));
778 } else
Damien Miller5771ed72008-05-19 15:35:33 +1000779 error("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000780 if (cr->action == CONFIRM_TTY) {
781 /*
782 * If a TTY allocation error occurred, then arrange
783 * for the correct TTY to leave raw mode.
784 */
785 if (c->self == session_ident)
786 leave_raw_mode(0);
787 else
788 mux_tty_alloc_failed(c);
789 } else if (cr->action == CONFIRM_CLOSE) {
Damien Miller5771ed72008-05-19 15:35:33 +1000790 chan_read_failed(c);
791 chan_write_failed(c);
792 }
Damien Miller0e220db2004-06-15 10:34:08 +1000793 }
Damien Miller5771ed72008-05-19 15:35:33 +1000794 xfree(cr);
795}
Damien Miller0e220db2004-06-15 10:34:08 +1000796
Damien Miller5771ed72008-05-19 15:35:33 +1000797static void
798client_abandon_status_confirm(Channel *c, void *ctx)
799{
800 xfree(ctx);
801}
802
Damien Miller6d7b4372011-06-23 08:31:57 +1000803void
Damien Miller555f3b82011-05-15 08:48:05 +1000804client_expect_confirm(int id, const char *request,
805 enum confirm_action action)
Damien Miller5771ed72008-05-19 15:35:33 +1000806{
807 struct channel_reply_ctx *cr = xmalloc(sizeof(*cr));
808
809 cr->request_type = request;
Damien Miller555f3b82011-05-15 08:48:05 +1000810 cr->action = action;
Damien Miller5771ed72008-05-19 15:35:33 +1000811
812 channel_register_status_confirm(id, client_status_confirm,
813 client_abandon_status_confirm, cr);
Damien Miller0e220db2004-06-15 10:34:08 +1000814}
815
Darren Tucker9f407c42008-06-13 04:50:27 +1000816void
817client_register_global_confirm(global_confirm_cb *cb, void *ctx)
818{
Damien Millerb9d3bee2008-07-16 22:40:52 +1000819 struct global_confirm *gc, *last_gc;
Darren Tucker9f407c42008-06-13 04:50:27 +1000820
821 /* Coalesce identical callbacks */
Damien Millerb9d3bee2008-07-16 22:40:52 +1000822 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
823 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
824 if (++last_gc->ref_count >= INT_MAX)
825 fatal("%s: last_gc->ref_count = %d",
826 __func__, last_gc->ref_count);
Darren Tucker9f407c42008-06-13 04:50:27 +1000827 return;
828 }
829
830 gc = xmalloc(sizeof(*gc));
831 gc->cb = cb;
832 gc->ctx = ctx;
833 gc->ref_count = 1;
834 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
835}
836
Damien Miller0e220db2004-06-15 10:34:08 +1000837static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000838process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000839{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000840 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100841 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000842 int delete = 0;
Damien Miller0164cb82008-11-05 16:30:31 +1100843 int local = 0, remote = 0, dynamic = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100844 int cancel_port;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100845 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000846
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100847 bzero(&fwd, sizeof(fwd));
848 fwd.listen_host = fwd.connect_host = NULL;
849
Damien Miller21771e22011-05-15 08:45:50 +1000850 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000851 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000852 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000853 if (s == NULL)
854 goto out;
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100855 while (isspace(*s))
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000856 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000857 if (*s == '-')
858 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000859 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000860 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000861
Darren Tucker1973c882004-05-24 10:34:36 +1000862 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000863 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000864 logit(" -L[bind_address:]port:host:hostport "
865 "Request local forward");
866 logit(" -R[bind_address:]port:host:hostport "
867 "Request remote forward");
Damien Miller0164cb82008-11-05 16:30:31 +1100868 logit(" -D[bind_address:]port "
869 "Request dynamic forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000870 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000871 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100872 if (!options.permit_local_command)
873 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000874 logit(" !args "
875 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100876 goto out;
877 }
878
879 if (*s == '!' && options.permit_local_command) {
880 s++;
881 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000882 goto out;
883 }
884
885 if (*s == 'K') {
886 delete = 1;
887 s++;
888 }
Damien Miller0164cb82008-11-05 16:30:31 +1100889 if (*s == 'L')
890 local = 1;
891 else if (*s == 'R')
892 remote = 1;
893 else if (*s == 'D')
894 dynamic = 1;
895 else {
Damien Miller996acd22003-04-09 20:59:48 +1000896 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000897 goto out;
898 }
Damien Miller0164cb82008-11-05 16:30:31 +1100899
900 if ((local || dynamic) && delete) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000901 logit("Not supported.");
902 goto out;
903 }
Damien Miller0164cb82008-11-05 16:30:31 +1100904 if (remote && delete && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000905 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000906 goto out;
907 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000908
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100909 while (isspace(*++s))
910 ;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000911
Damien Millere1537f92010-01-26 13:26:22 +1100912 /* XXX update list of forwards in options */
Darren Tuckere7066df2004-05-24 10:18:05 +1000913 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100914 cancel_port = 0;
915 cancel_host = hpdelim(&s); /* may be NULL */
916 if (s != NULL) {
917 cancel_port = a2port(s);
918 cancel_host = cleanhostname(cancel_host);
919 } else {
920 cancel_port = a2port(cancel_host);
921 cancel_host = NULL;
922 }
Damien Miller3dc71ad2009-01-28 16:31:22 +1100923 if (cancel_port <= 0) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100924 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000925 goto out;
926 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100927 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000928 } else {
Damien Miller4bf648f2009-02-14 16:28:21 +1100929 if (!parse_forward(&fwd, s, dynamic, remote)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000930 logit("Bad forwarding specification.");
931 goto out;
932 }
Damien Miller0164cb82008-11-05 16:30:31 +1100933 if (local || dynamic) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100934 if (channel_setup_local_fwd_listener(fwd.listen_host,
935 fwd.listen_port, fwd.connect_host,
936 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000937 logit("Port forwarding failed.");
938 goto out;
939 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100940 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +1000941 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100942 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000943 fwd.connect_port) < 0) {
944 logit("Port forwarding failed.");
945 goto out;
946 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100947 }
948
Darren Tuckere7066df2004-05-24 10:18:05 +1000949 logit("Forwarding port.");
950 }
951
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000952out:
953 signal(SIGINT, handler);
Damien Miller21771e22011-05-15 08:45:50 +1000954 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000955 if (cmd)
956 xfree(cmd);
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100957 if (fwd.listen_host != NULL)
958 xfree(fwd.listen_host);
959 if (fwd.connect_host != NULL)
960 xfree(fwd.connect_host);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000961}
962
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000963/*
964 * Process the characters one by one, call with c==NULL for proto1 case.
965 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000966static int
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000967process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
968 char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +1000969{
970 char string[1024];
971 pid_t pid;
972 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000973 u_int i;
974 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000975 char *s;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000976 int *escape_pendingp, escape_char;
977 struct escape_filter_ctx *efc;
Damien Millerad833b32000-08-23 10:46:23 +1000978
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000979 if (c == NULL) {
980 escape_pendingp = &escape_pending1;
981 escape_char = escape_char1;
982 } else {
983 if (c->filter_ctx == NULL)
984 return 0;
985 efc = (struct escape_filter_ctx *)c->filter_ctx;
986 escape_pendingp = &efc->escape_pending;
987 escape_char = efc->escape_char;
988 }
989
Damien Millereccb9de2005-06-17 12:59:34 +1000990 if (len <= 0)
991 return (0);
992
993 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +1000994 /* Get one character at a time. */
995 ch = buf[i];
996
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000997 if (*escape_pendingp) {
Damien Millerad833b32000-08-23 10:46:23 +1000998 /* We have previously seen an escape character. */
999 /* Clear the flag now. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001000 *escape_pendingp = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001001
1002 /* Process the escaped character. */
1003 switch (ch) {
1004 case '.':
1005 /* Terminate the connection. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001006 snprintf(string, sizeof string, "%c.\r\n",
1007 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001008 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001009
Damien Millere1537f92010-01-26 13:26:22 +11001010 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001011 chan_read_failed(c);
1012 chan_write_failed(c);
1013 return 0;
1014 } else
1015 quit_pending = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001016 return -1;
1017
1018 case 'Z' - 64:
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001019 /* XXX support this for mux clients */
Damien Millere1537f92010-01-26 13:26:22 +11001020 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001021 noescape:
1022 snprintf(string, sizeof string,
1023 "%c%c escape not available to "
1024 "multiplexed sessions\r\n",
1025 escape_char, ch);
1026 buffer_append(berr, string,
1027 strlen(string));
1028 continue;
1029 }
Darren Tucker4d5cd332008-06-13 04:51:14 +10001030 /* Suspend the program. Inform the user */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001031 snprintf(string, sizeof string,
1032 "%c^Z [suspend ssh]\r\n", escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001033 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001034
1035 /* Restore terminal modes and suspend. */
1036 client_suspend_self(bin, bout, berr);
1037
1038 /* We have been continued. */
1039 continue;
1040
Damien Miller54c45982003-05-15 10:20:13 +10001041 case 'B':
1042 if (compat20) {
1043 snprintf(string, sizeof string,
1044 "%cB\r\n", escape_char);
1045 buffer_append(berr, string,
1046 strlen(string));
1047 channel_request_start(session_ident,
1048 "break", 0);
1049 packet_put_int(1000);
1050 packet_send();
1051 }
1052 continue;
1053
Ben Lindstromf28f6342001-04-04 02:03:04 +00001054 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001055 if (compat20) {
1056 if (datafellows & SSH_BUG_NOREKEY)
Darren Tucker4d5cd332008-06-13 04:51:14 +10001057 logit("Server does not "
1058 "support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001059 else
1060 need_rekeying = 1;
1061 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001062 continue;
1063
Damien Millerad833b32000-08-23 10:46:23 +10001064 case '&':
Damien Millere1537f92010-01-26 13:26:22 +11001065 if (c && c->ctl_chan != -1)
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001066 goto noescape;
Damien Millerad833b32000-08-23 10:46:23 +10001067 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001068 * Detach the program (continue to serve
1069 * connections, but put in background and no
1070 * more new connections).
Damien Millerad833b32000-08-23 10:46:23 +10001071 */
Damien Miller96507ef2001-11-12 10:52:25 +11001072 /* Restore tty modes. */
Damien Miller21771e22011-05-15 08:45:50 +10001073 leave_raw_mode(
1074 options.request_tty == REQUEST_TTY_FORCE);
Damien Miller96507ef2001-11-12 10:52:25 +11001075
1076 /* Stop listening for new connections. */
1077 channel_stop_listening();
1078
1079 snprintf(string, sizeof string,
1080 "%c& [backgrounded]\n", escape_char);
1081 buffer_append(berr, string, strlen(string));
1082
1083 /* Fork into background. */
1084 pid = fork();
1085 if (pid < 0) {
1086 error("fork: %.100s", strerror(errno));
1087 continue;
1088 }
1089 if (pid != 0) { /* This is the parent. */
1090 /* The parent just exits. */
1091 exit(0);
1092 }
1093 /* The child continues serving connections. */
1094 if (compat20) {
1095 buffer_append(bin, "\004", 1);
1096 /* fake EOF on stdin */
1097 return -1;
1098 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001099 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001100 * Sending SSH_CMSG_EOF alone does not
1101 * always appear to be enough. So we
1102 * try to send an EOF character first.
Damien Millerad833b32000-08-23 10:46:23 +10001103 */
1104 packet_start(SSH_CMSG_STDIN_DATA);
1105 packet_put_string("\004", 1);
1106 packet_send();
1107 /* Close stdin. */
1108 stdin_eof = 1;
1109 if (buffer_len(bin) == 0) {
1110 packet_start(SSH_CMSG_EOF);
1111 packet_send();
1112 }
1113 }
Damien Miller96507ef2001-11-12 10:52:25 +11001114 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001115
1116 case '?':
Damien Millere1537f92010-01-26 13:26:22 +11001117 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001118 snprintf(string, sizeof string,
Damien Millerad833b32000-08-23 10:46:23 +10001119"%c?\r\n\
1120Supported escape sequences:\r\n\
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001121 %c. - terminate session\r\n\
1122 %cB - send a BREAK to the remote system\r\n\
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001123 %cR - Request rekey (SSH protocol 2 only)\r\n\
1124 %c# - list forwarded connections\r\n\
1125 %c? - this message\r\n\
1126 %c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001127(Note that escapes are only recognized immediately after newline.)\r\n",
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001128 escape_char, escape_char,
1129 escape_char, escape_char,
1130 escape_char, escape_char,
Damien Miller586b0052008-12-09 14:11:32 +11001131 escape_char, escape_char);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001132 } else {
1133 snprintf(string, sizeof string,
1134"%c?\r\n\
1135Supported escape sequences:\r\n\
1136 %c. - terminate connection (and any multiplexed sessions)\r\n\
1137 %cB - send a BREAK to the remote system\r\n\
1138 %cC - open a command line\r\n\
1139 %cR - Request rekey (SSH protocol 2 only)\r\n\
1140 %c^Z - suspend ssh\r\n\
1141 %c# - list forwarded connections\r\n\
1142 %c& - background ssh (when waiting for connections to terminate)\r\n\
1143 %c? - this message\r\n\
1144 %c%c - send the escape character by typing it twice\r\n\
1145(Note that escapes are only recognized immediately after newline.)\r\n",
1146 escape_char, escape_char,
1147 escape_char, escape_char,
1148 escape_char, escape_char,
1149 escape_char, escape_char,
1150 escape_char, escape_char,
1151 escape_char);
1152 }
Damien Millerad833b32000-08-23 10:46:23 +10001153 buffer_append(berr, string, strlen(string));
1154 continue;
1155
1156 case '#':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001157 snprintf(string, sizeof string, "%c#\r\n",
1158 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001159 buffer_append(berr, string, strlen(string));
1160 s = channel_open_message();
1161 buffer_append(berr, s, strlen(s));
1162 xfree(s);
1163 continue;
1164
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001165 case 'C':
Damien Millere1537f92010-01-26 13:26:22 +11001166 if (c && c->ctl_chan != -1)
Damien Miller586b0052008-12-09 14:11:32 +11001167 goto noescape;
Ben Lindstrom681d9322002-03-22 03:53:00 +00001168 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001169 continue;
1170
Damien Millerad833b32000-08-23 10:46:23 +10001171 default:
1172 if (ch != escape_char) {
1173 buffer_put_char(bin, escape_char);
1174 bytes++;
1175 }
1176 /* Escaped characters fall through here */
1177 break;
1178 }
1179 } else {
1180 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001181 * The previous character was not an escape char.
1182 * Check if this is an escape.
Damien Millerad833b32000-08-23 10:46:23 +10001183 */
1184 if (last_was_cr && ch == escape_char) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001185 /*
1186 * It is. Set the flag and continue to
1187 * next character.
1188 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001189 *escape_pendingp = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001190 continue;
1191 }
1192 }
1193
1194 /*
1195 * Normal character. Record whether it was a newline,
1196 * and append it to the buffer.
1197 */
1198 last_was_cr = (ch == '\r' || ch == '\n');
1199 buffer_put_char(bin, ch);
1200 bytes++;
1201 }
1202 return bytes;
1203}
1204
Ben Lindstrombba81212001-06-25 05:01:22 +00001205static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001206client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001207{
Damien Miller166fca82000-04-20 07:42:21 +10001208 int len;
Darren Tucker86e30a02009-08-28 11:21:06 +10001209 char buf[SSH_IOBUFSZ];
Damien Miller1383bd82000-04-06 12:32:37 +10001210
Damien Miller95def091999-11-25 00:26:21 +11001211 /* Read input from stdin. */
1212 if (FD_ISSET(fileno(stdin), readset)) {
1213 /* Read as much as possible. */
1214 len = read(fileno(stdin), buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001215 if (len < 0 &&
1216 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001217 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001218 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001219 /*
1220 * Received EOF or error. They are treated
1221 * similarly, except that an error message is printed
1222 * if it was an error condition.
1223 */
Damien Miller95def091999-11-25 00:26:21 +11001224 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001225 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1226 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001227 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001228 }
1229 /* Mark that we have seen EOF. */
1230 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001231 /*
1232 * Send an EOF message to the server unless there is
1233 * data in the buffer. If there is data in the
1234 * buffer, no message will be sent now. Code
1235 * elsewhere will send the EOF when the buffer
1236 * becomes empty if stdin_eof is set.
1237 */
Damien Miller95def091999-11-25 00:26:21 +11001238 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239 packet_start(SSH_CMSG_EOF);
1240 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001241 }
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001242 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001243 /*
1244 * Normal successful read, and no escape character.
1245 * Just append the data to buffer.
1246 */
Damien Miller95def091999-11-25 00:26:21 +11001247 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001248 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001249 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001250 * Normal, successful read. But we have an escape
1251 * character and have to process the characters one
1252 * by one.
Damien Miller5428f641999-11-25 11:54:57 +11001253 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001254 if (process_escapes(NULL, &stdin_buffer,
1255 &stdout_buffer, &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001256 return;
Damien Miller95def091999-11-25 00:26:21 +11001257 }
1258 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001259}
1260
Ben Lindstrombba81212001-06-25 05:01:22 +00001261static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001262client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001263{
Damien Miller95def091999-11-25 00:26:21 +11001264 int len;
1265 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266
Damien Miller95def091999-11-25 00:26:21 +11001267 /* Write buffered output to stdout. */
1268 if (FD_ISSET(fileno(stdout), writeset)) {
1269 /* Write as much data as possible. */
1270 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001271 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001272 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001273 if (errno == EINTR || errno == EAGAIN ||
1274 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001275 len = 0;
1276 else {
Damien Miller5428f641999-11-25 11:54:57 +11001277 /*
1278 * An error or EOF was encountered. Put an
1279 * error message to stderr buffer.
1280 */
Darren Tucker4d5cd332008-06-13 04:51:14 +10001281 snprintf(buf, sizeof buf,
1282 "write stdout: %.50s\r\n", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001283 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001284 quit_pending = 1;
1285 return;
1286 }
1287 }
1288 /* Consume printed data from the buffer. */
1289 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001290 }
Damien Miller95def091999-11-25 00:26:21 +11001291 /* Write buffered output to stderr. */
1292 if (FD_ISSET(fileno(stderr), writeset)) {
1293 /* Write as much data as possible. */
1294 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001295 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001296 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001297 if (errno == EINTR || errno == EAGAIN ||
1298 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001299 len = 0;
1300 else {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001301 /*
1302 * EOF or error, but can't even print
1303 * error message.
1304 */
Damien Miller95def091999-11-25 00:26:21 +11001305 quit_pending = 1;
1306 return;
1307 }
1308 }
1309 /* Consume printed characters from the buffer. */
1310 buffer_consume(&stderr_buffer, len);
1311 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001312}
1313
Damien Miller5428f641999-11-25 11:54:57 +11001314/*
Damien Millerb38eff82000-04-01 11:09:21 +10001315 * Get packets from the connection input buffer, and process them as long as
1316 * there are packets available.
1317 *
1318 * Any unknown packets received during the actual
1319 * session cause the session to terminate. This is
1320 * intended to make debugging easier since no
1321 * confirmations are sent. Any compatible protocol
1322 * extensions must be negotiated during the
1323 * preparatory phase.
1324 */
1325
Ben Lindstrombba81212001-06-25 05:01:22 +00001326static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001327client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001328{
Darren Tucker4d5cd332008-06-13 04:51:14 +10001329 dispatch_run(DISPATCH_NONBLOCK, &quit_pending,
1330 compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001331}
1332
Damien Millerad833b32000-08-23 10:46:23 +10001333/* scan buf[] for '~' before sending data to the peer */
1334
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001335/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1336void *
1337client_new_escape_filter_ctx(int escape_char)
1338{
1339 struct escape_filter_ctx *ret;
1340
1341 ret = xmalloc(sizeof(*ret));
1342 ret->escape_pending = 0;
1343 ret->escape_char = escape_char;
1344 return (void *)ret;
1345}
1346
Darren Tucker84c56f52008-06-13 04:55:46 +10001347/* Free the escape filter context on channel free */
1348void
1349client_filter_cleanup(int cid, void *ctx)
1350{
1351 xfree(ctx);
1352}
1353
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001354int
1355client_simple_escape_filter(Channel *c, char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001356{
Damien Miller5771ed72008-05-19 15:35:33 +10001357 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1358 return 0;
1359
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001360 return process_escapes(c, &c->input, &c->output, &c->extended,
1361 buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001362}
1363
Ben Lindstrombba81212001-06-25 05:01:22 +00001364static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001365client_channel_closed(int id, void *arg)
1366{
Damien Miller3ec27592001-10-12 11:35:04 +10001367 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001368 session_closed = 1;
Damien Miller21771e22011-05-15 08:45:50 +10001369 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001370}
1371
Damien Millerb38eff82000-04-01 11:09:21 +10001372/*
Damien Miller5428f641999-11-25 11:54:57 +11001373 * Implements the interactive session with the server. This is called after
1374 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001375 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1376 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001377 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001378
Damien Miller4af51302000-04-16 11:18:38 +10001379int
Damien Millerad833b32000-08-23 10:46:23 +10001380client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001381{
Damien Miller5e953212001-01-30 09:14:00 +11001382 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001383 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001384 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001385 u_int64_t ibytes, obytes;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001386 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001387 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388
Damien Miller95def091999-11-25 00:26:21 +11001389 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001390
Damien Miller95def091999-11-25 00:26:21 +11001391 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
Damien Miller95def091999-11-25 00:26:21 +11001393 /* Initialize variables. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001394 escape_pending1 = 0;
Damien Miller95def091999-11-25 00:26:21 +11001395 last_was_cr = 1;
1396 exit_status = -1;
1397 stdin_eof = 0;
1398 buffer_high = 64 * 1024;
1399 connection_in = packet_get_connection_in();
1400 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001401 max_fd = MAX(connection_in, connection_out);
1402
1403 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001404 /* enable nonblocking unless tty */
1405 if (!isatty(fileno(stdin)))
1406 set_nonblock(fileno(stdin));
1407 if (!isatty(fileno(stdout)))
1408 set_nonblock(fileno(stdout));
1409 if (!isatty(fileno(stderr)))
1410 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001411 max_fd = MAX(max_fd, fileno(stdin));
1412 max_fd = MAX(max_fd, fileno(stdout));
1413 max_fd = MAX(max_fd, fileno(stderr));
1414 }
Damien Miller95def091999-11-25 00:26:21 +11001415 quit_pending = 0;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001416 escape_char1 = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001417
Damien Miller95def091999-11-25 00:26:21 +11001418 /* Initialize buffers. */
1419 buffer_init(&stdin_buffer);
1420 buffer_init(&stdout_buffer);
1421 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001422
Damien Millerb38eff82000-04-01 11:09:21 +10001423 client_init_dispatch();
1424
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001425 /*
1426 * Set signal handlers, (e.g. to restore non-blocking mode)
1427 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1428 */
Darren Tucker07336da2004-11-05 20:02:16 +11001429 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1430 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001431 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1432 signal(SIGINT, signal_handler);
1433 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1434 signal(SIGQUIT, signal_handler);
1435 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1436 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001437 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001438
Damien Miller95def091999-11-25 00:26:21 +11001439 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001440 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001441
Ben Lindstrom5b828322001-02-09 01:34:36 +00001442 if (compat20) {
1443 session_ident = ssh2_chan_id;
Damien Miller6c3eec72011-05-05 14:16:22 +10001444 if (session_ident != -1) {
1445 if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
1446 channel_register_filter(session_ident,
1447 client_simple_escape_filter, NULL,
1448 client_filter_cleanup,
1449 client_new_escape_filter_ctx(
1450 escape_char_arg));
1451 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001452 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001453 client_channel_closed, 0);
Damien Miller6c3eec72011-05-05 14:16:22 +10001454 }
Ben Lindstrom5b828322001-02-09 01:34:36 +00001455 } else {
1456 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001457 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001458 }
Damien Millerad833b32000-08-23 10:46:23 +10001459
Damien Miller95def091999-11-25 00:26:21 +11001460 /* Main loop of the client for the interactive session mode. */
1461 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001462
Damien Miller5428f641999-11-25 11:54:57 +11001463 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001464 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001465
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001466 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001467 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001468
1469 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001470
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001471 if (rekeying) {
1472 debug("rekeying in progress");
1473 } else {
1474 /*
1475 * Make packets of buffered stdin data, and buffer
1476 * them for sending to the server.
1477 */
1478 if (!compat20)
1479 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001481 /*
1482 * Make packets from buffered channel data, and
1483 * enqueue them for sending to the server.
1484 */
1485 if (packet_not_very_much_data_to_write())
1486 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001487
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001488 /*
1489 * Check if the window size has changed, and buffer a
1490 * message about it to the server if so.
1491 */
1492 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001493
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001494 if (quit_pending)
1495 break;
1496 }
Damien Miller5428f641999-11-25 11:54:57 +11001497 /*
1498 * Wait until we have something to do (something becomes
1499 * available on one of the descriptors).
1500 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001501 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001502 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001503 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001504
Damien Miller95def091999-11-25 00:26:21 +11001505 if (quit_pending)
1506 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001507
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001508 /* Do channel operations unless rekeying in progress. */
1509 if (!rekeying) {
1510 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001511 if (need_rekeying || packet_need_rekeying()) {
1512 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001513 xxx_kex->done = 0;
1514 kex_send_kexinit(xxx_kex);
1515 need_rekeying = 0;
1516 }
1517 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001518
Damien Miller1383bd82000-04-06 12:32:37 +10001519 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001520 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001521
Damien Miller1383bd82000-04-06 12:32:37 +10001522 if (quit_pending)
1523 break;
1524
1525 if (!compat20) {
1526 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001527 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001528 /*
1529 * Process output to stdout and stderr. Output to
1530 * the connection is processed elsewhere (above).
1531 */
Damien Miller5e953212001-01-30 09:14:00 +11001532 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001533 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001534
Darren Tuckere32cf432010-01-08 16:51:40 +11001535 if (session_resumed) {
1536 connection_in = packet_get_connection_in();
1537 connection_out = packet_get_connection_out();
1538 max_fd = MAX(max_fd, connection_out);
1539 max_fd = MAX(max_fd, connection_in);
1540 session_resumed = 0;
1541 }
1542
Darren Tucker4d5cd332008-06-13 04:51:14 +10001543 /*
1544 * Send as much buffered packet data as possible to the
1545 * sender.
1546 */
Damien Miller5e953212001-01-30 09:14:00 +11001547 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001548 packet_write_poll();
Damien Millere11e1ea2010-08-03 16:04:46 +10001549
1550 /*
1551 * If we are a backgrounded control master, and the
1552 * timeout has expired without any active client
1553 * connections, then quit.
1554 */
1555 if (control_persist_exit_time > 0) {
1556 if (time(NULL) >= control_persist_exit_time) {
1557 debug("ControlPersist timeout expired");
1558 break;
1559 }
1560 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001561 }
Damien Miller5e953212001-01-30 09:14:00 +11001562 if (readset)
1563 xfree(readset);
1564 if (writeset)
1565 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566
Damien Miller95def091999-11-25 00:26:21 +11001567 /* Terminate the session. */
1568
1569 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001570 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001571
Darren Tuckerde0c0252009-07-06 07:17:35 +10001572 if (compat20) {
1573 packet_start(SSH2_MSG_DISCONNECT);
1574 packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
1575 packet_put_cstring("disconnected by user");
Damien Miller8ddc71c2010-03-22 05:54:02 +11001576 packet_put_cstring(""); /* language tag */
Darren Tuckerde0c0252009-07-06 07:17:35 +10001577 packet_send();
1578 packet_write_wait();
1579 }
Darren Tucker12b4a652009-06-21 18:14:48 +10001580
Ben Lindstrom601e4362001-06-21 03:19:23 +00001581 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001582
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001583 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001584 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001585
1586 /* restore blocking io */
1587 if (!isatty(fileno(stdin)))
1588 unset_nonblock(fileno(stdin));
1589 if (!isatty(fileno(stdout)))
1590 unset_nonblock(fileno(stdout));
1591 if (!isatty(fileno(stderr)))
1592 unset_nonblock(fileno(stderr));
1593
Damien Millerd6965512003-12-17 16:31:53 +11001594 /*
1595 * If there was no shell or command requested, there will be no remote
1596 * exit status to be returned. In that case, clear error code if the
1597 * connection was deliberately terminated at this end.
1598 */
1599 if (no_shell_flag && received_signal == SIGTERM) {
1600 received_signal = 0;
1601 exit_status = 0;
1602 }
1603
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001604 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001605 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001606
1607 /*
1608 * In interactive mode (with pseudo tty) display a message indicating
1609 * that the connection has been closed.
1610 */
1611 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001612 snprintf(buf, sizeof buf,
1613 "Connection to %.64s closed.\r\n", host);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001614 buffer_append(&stderr_buffer, buf, strlen(buf));
1615 }
1616
Damien Miller95def091999-11-25 00:26:21 +11001617 /* Output any buffered data for stdout. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001618 if (buffer_len(&stdout_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001619 len = atomicio(vwrite, fileno(stdout),
1620 buffer_ptr(&stdout_buffer), buffer_len(&stdout_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001621 if (len < 0 || (u_int)len != buffer_len(&stdout_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001622 error("Write failed flushing stdout buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001623 else
1624 buffer_consume(&stdout_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001625 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001626
Damien Miller95def091999-11-25 00:26:21 +11001627 /* Output any buffered data for stderr. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001628 if (buffer_len(&stderr_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001629 len = atomicio(vwrite, fileno(stderr),
1630 buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001631 if (len < 0 || (u_int)len != buffer_len(&stderr_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001632 error("Write failed flushing stderr buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001633 else
1634 buffer_consume(&stderr_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001635 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001636
Damien Miller95def091999-11-25 00:26:21 +11001637 /* Clear and free any buffers. */
1638 memset(buf, 0, sizeof(buf));
1639 buffer_free(&stdin_buffer);
1640 buffer_free(&stdout_buffer);
1641 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001642
Damien Miller95def091999-11-25 00:26:21 +11001643 /* Report bytes transferred, and transfer rates. */
1644 total_time = get_current_time() - start_time;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001645 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
1646 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
1647 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
Damien Miller821de0a2011-01-11 17:20:29 +11001648 (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001649 if (total_time > 0)
Damien Millerb61f3fc2008-07-11 17:36:48 +10001650 verbose("Bytes per second: sent %.1f, received %.1f",
1651 obytes / total_time, ibytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001652 /* Return the exit status of the program. */
1653 debug("Exit status %d", exit_status);
1654 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001655}
Damien Millerb38eff82000-04-01 11:09:21 +10001656
1657/*********/
1658
Ben Lindstrombba81212001-06-25 05:01:22 +00001659static void
Damien Miller630d6f42002-01-22 23:17:30 +11001660client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001661{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001662 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001663 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001664 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001665 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001666 memset(data, 0, data_len);
1667 xfree(data);
1668}
Ben Lindstrombba81212001-06-25 05:01:22 +00001669static void
Damien Miller630d6f42002-01-22 23:17:30 +11001670client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001671{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001672 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001673 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001674 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001675 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001676 memset(data, 0, data_len);
1677 xfree(data);
1678}
Ben Lindstrombba81212001-06-25 05:01:22 +00001679static void
Damien Miller630d6f42002-01-22 23:17:30 +11001680client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001681{
Damien Millerb38eff82000-04-01 11:09:21 +10001682 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001683 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001684 /* Acknowledge the exit. */
1685 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1686 packet_send();
1687 /*
1688 * Must wait for packet to be sent since we are
1689 * exiting the loop.
1690 */
1691 packet_write_wait();
1692 /* Flag that we want to exit. */
1693 quit_pending = 1;
1694}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001695static void
1696client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1697{
1698 Channel *c = NULL;
1699 int remote_id, sock;
1700
1701 /* Read the remote channel number from the message. */
1702 remote_id = packet_get_int();
1703 packet_check_eom();
1704
1705 /*
1706 * Get a connection to the local authentication agent (this may again
1707 * get forwarded).
1708 */
1709 sock = ssh_get_authentication_socket();
1710
1711 /*
1712 * If we could not connect the agent, send an error message back to
1713 * the server. This should never happen unless the agent dies,
1714 * because authentication forwarding is only enabled if we have an
1715 * agent.
1716 */
1717 if (sock >= 0) {
1718 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1719 -1, 0, 0, 0, "authentication agent connection", 1);
1720 c->remote_id = remote_id;
1721 c->force_drain = 1;
1722 }
1723 if (c == NULL) {
1724 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1725 packet_put_int(remote_id);
1726 } else {
1727 /* Send a confirmation to the remote host. */
1728 debug("Forwarding authentication connection.");
1729 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1730 packet_put_int(remote_id);
1731 packet_put_int(c->self);
1732 }
1733 packet_send();
1734}
Damien Millerb38eff82000-04-01 11:09:21 +10001735
Ben Lindstrombba81212001-06-25 05:01:22 +00001736static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001737client_request_forwarded_tcpip(const char *request_type, int rchan)
1738{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001739 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001740 char *listen_address, *originator_address;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001741 u_short listen_port, originator_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742
1743 /* Get rest of the packet */
1744 listen_address = packet_get_string(NULL);
1745 listen_port = packet_get_int();
1746 originator_address = packet_get_string(NULL);
1747 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001748 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001749
Damien Millerbd740252008-05-19 15:37:09 +10001750 debug("client_request_forwarded_tcpip: listen %s port %d, "
1751 "originator %s port %d", listen_address, listen_port,
1752 originator_address, originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001753
Damien Millerbd740252008-05-19 15:37:09 +10001754 c = channel_connect_by_listen_address(listen_port,
1755 "forwarded-tcpip", originator_address);
1756
Damien Miller0bc1bd82000-11-13 22:57:25 +11001757 xfree(originator_address);
1758 xfree(listen_address);
1759 return c;
1760}
1761
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001762static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001763client_request_x11(const char *request_type, int rchan)
1764{
1765 Channel *c = NULL;
1766 char *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001767 u_short originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001768 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001769
1770 if (!options.forward_x11) {
1771 error("Warning: ssh server tried X11 forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001772 error("Warning: this is probably a break-in attempt by a "
1773 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001774 return NULL;
1775 }
Damien Miller1ab6a512010-06-26 10:02:24 +10001776 if (x11_refuse_time != 0 && time(NULL) >= x11_refuse_time) {
1777 verbose("Rejected X11 connection after ForwardX11Timeout "
1778 "expired");
1779 return NULL;
1780 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001781 originator = packet_get_string(NULL);
1782 if (datafellows & SSH_BUG_X11FWD) {
1783 debug2("buggy server: x11 request w/o originator_port");
1784 originator_port = 0;
1785 } else {
1786 originator_port = packet_get_int();
1787 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001788 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001789 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001790 debug("client_request_x11: request from %s %d", originator,
1791 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001792 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001793 sock = x11_connect_display();
1794 if (sock < 0)
1795 return NULL;
1796 c = channel_new("x11",
1797 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001798 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001799 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001800 return c;
1801}
1802
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001803static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001804client_request_agent(const char *request_type, int rchan)
1805{
1806 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001807 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001808
1809 if (!options.forward_agent) {
1810 error("Warning: ssh server tried agent forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001811 error("Warning: this is probably a break-in attempt by a "
1812 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001813 return NULL;
1814 }
Darren Tucker82a3d2b2007-02-19 22:10:25 +11001815 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001816 if (sock < 0)
1817 return NULL;
1818 c = channel_new("authentication agent connection",
1819 SSH_CHANNEL_OPEN, sock, sock, -1,
Darren Tucker5baa1702007-12-29 09:37:10 +11001820 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001821 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001822 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001823 return c;
1824}
1825
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001826int
1827client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1828{
1829 Channel *c;
1830 int fd;
1831
1832 if (tun_mode == SSH_TUNMODE_NO)
1833 return 0;
1834
1835 if (!compat20) {
Damien Millerb3f2c9f2009-01-28 16:15:30 +11001836 error("Tunnel forwarding is not supported for protocol 1");
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001837 return -1;
1838 }
1839
1840 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1841
1842 /* Open local tunnel device */
1843 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1844 error("Tunnel device open failed.");
1845 return -1;
1846 }
1847
1848 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1849 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
1850 c->datagram = 1;
1851
1852#if defined(SSH_TUN_FILTER)
1853 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1854 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10001855 sys_tun_outfilter, NULL, NULL);
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001856#endif
1857
1858 packet_start(SSH2_MSG_CHANNEL_OPEN);
1859 packet_put_cstring("tun@openssh.com");
1860 packet_put_int(c->self);
1861 packet_put_int(c->local_window_max);
1862 packet_put_int(c->local_maxpacket);
1863 packet_put_int(tun_mode);
1864 packet_put_int(remote_tun);
1865 packet_send();
1866
1867 return 0;
1868}
1869
Damien Millerbd483e72000-04-30 10:00:53 +10001870/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static void
Damien Miller630d6f42002-01-22 23:17:30 +11001872client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001873{
1874 Channel *c = NULL;
1875 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001876 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001877 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001878
1879 ctype = packet_get_string(&len);
1880 rchan = packet_get_int();
1881 rwindow = packet_get_int();
1882 rmaxpack = packet_get_int();
1883
Damien Millere247cc42000-05-07 12:03:14 +10001884 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001885 ctype, rchan, rwindow, rmaxpack);
1886
Damien Miller0bc1bd82000-11-13 22:57:25 +11001887 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1888 c = client_request_forwarded_tcpip(ctype, rchan);
1889 } else if (strcmp(ctype, "x11") == 0) {
1890 c = client_request_x11(ctype, rchan);
1891 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1892 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001893 }
1894/* XXX duplicate : */
1895 if (c != NULL) {
1896 debug("confirm %s", ctype);
1897 c->remote_id = rchan;
1898 c->remote_window = rwindow;
1899 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001900 if (c->type != SSH_CHANNEL_CONNECTING) {
1901 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1902 packet_put_int(c->remote_id);
1903 packet_put_int(c->self);
1904 packet_put_int(c->local_window);
1905 packet_put_int(c->local_maxpacket);
1906 packet_send();
1907 }
Damien Millerbd483e72000-04-30 10:00:53 +10001908 } else {
1909 debug("failure %s", ctype);
1910 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1911 packet_put_int(rchan);
1912 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001913 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001914 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001915 packet_put_cstring("");
1916 }
Damien Millerbd483e72000-04-30 10:00:53 +10001917 packet_send();
1918 }
1919 xfree(ctype);
1920}
Ben Lindstrombba81212001-06-25 05:01:22 +00001921static void
Damien Miller630d6f42002-01-22 23:17:30 +11001922client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001923{
1924 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001925 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001926 char *rtype;
1927
1928 id = packet_get_int();
1929 rtype = packet_get_string(NULL);
1930 reply = packet_get_char();
1931
1932 debug("client_input_channel_req: channel %d rtype %s reply %d",
1933 id, rtype, reply);
1934
Damien Miller3bbd8782004-06-18 22:23:22 +10001935 if (id == -1) {
1936 error("client_input_channel_req: request for channel -1");
1937 } else if ((c = channel_lookup(id)) == NULL) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001938 error("client_input_channel_req: channel %d: "
1939 "unknown channel", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10001940 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
1941 packet_check_eom();
1942 chan_rcvd_eow(c);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001943 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001944 exitval = packet_get_int();
Damien Millere1537f92010-01-26 13:26:22 +11001945 if (c->ctl_chan != -1) {
1946 mux_exit_message(c, exitval);
Damien Miller0e220db2004-06-15 10:34:08 +10001947 success = 1;
Darren Tucker29440822010-01-08 17:08:35 +11001948 } else if (id == session_ident) {
1949 /* Record exit value of local session */
1950 success = 1;
1951 exit_status = exitval;
1952 } else {
Damien Miller36f57eb2010-01-30 17:28:34 +11001953 /* Probably for a mux channel that has already closed */
1954 debug("%s: no sink for exit-status on channel %d",
1955 __func__, id);
Damien Miller0e220db2004-06-15 10:34:08 +10001956 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001957 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001958 }
Damien Millerd0fdd682010-12-01 12:02:14 +11001959 if (reply && c != NULL) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00001960 packet_start(success ?
1961 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller8533c782008-12-08 09:54:40 +11001962 packet_put_int(c->remote_id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001963 packet_send();
1964 }
1965 xfree(rtype);
1966}
Damien Millerc3fa4072002-01-22 23:21:58 +11001967static void
1968client_input_global_request(int type, u_int32_t seq, void *ctxt)
1969{
1970 char *rtype;
1971 int want_reply;
1972 int success = 0;
1973
1974 rtype = packet_get_string(NULL);
1975 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001976 debug("client_input_global_request: rtype %s want_reply %d",
1977 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001978 if (want_reply) {
1979 packet_start(success ?
1980 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1981 packet_send();
1982 packet_write_wait();
1983 }
1984 xfree(rtype);
1985}
Damien Millerbd483e72000-04-30 10:00:53 +10001986
Damien Miller0e220db2004-06-15 10:34:08 +10001987void
Darren Tuckerfc959702004-07-17 16:12:08 +10001988client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller5771ed72008-05-19 15:35:33 +10001989 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
Damien Miller0e220db2004-06-15 10:34:08 +10001990{
1991 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001992 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001993
1994 debug2("%s: id %d", __func__, id);
1995
Darren Tucker5d78de62004-11-05 20:35:44 +11001996 if ((c = channel_lookup(id)) == NULL)
1997 fatal("client_session2_setup: channel %d: unknown channel", id);
1998
Damien Miller0dac6fb2010-11-20 15:19:38 +11001999 packet_set_interactive(want_tty,
2000 options.ip_qos_interactive, options.ip_qos_bulk);
2001
Damien Miller0e220db2004-06-15 10:34:08 +10002002 if (want_tty) {
2003 struct winsize ws;
Damien Miller0e220db2004-06-15 10:34:08 +10002004
2005 /* Store window size in the packet. */
2006 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
2007 memset(&ws, 0, sizeof(ws));
2008
Damien Miller5771ed72008-05-19 15:35:33 +10002009 channel_request_start(id, "pty-req", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002010 client_expect_confirm(id, "PTY allocation", CONFIRM_TTY);
Damien Miller0e220db2004-06-15 10:34:08 +10002011 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11002012 packet_put_int((u_int)ws.ws_col);
2013 packet_put_int((u_int)ws.ws_row);
2014 packet_put_int((u_int)ws.ws_xpixel);
2015 packet_put_int((u_int)ws.ws_ypixel);
Darren Tuckerdf189fb2008-06-08 12:55:32 +10002016 if (tiop == NULL)
2017 tiop = get_saved_tio();
2018 tty_make_modes(-1, tiop);
Damien Miller0e220db2004-06-15 10:34:08 +10002019 packet_send();
2020 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11002021 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10002022 }
2023
2024 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10002025 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10002026 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10002027 char *name, *val;
2028
2029 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10002030 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10002031 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10002032 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10002033 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11002034 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002035 continue;
2036 }
2037 *val++ = '\0';
2038
2039 matched = 0;
2040 for (j = 0; j < options.num_send_env; j++) {
2041 if (match_pattern(name, options.send_env[j])) {
2042 matched = 1;
2043 break;
2044 }
2045 }
2046 if (!matched) {
2047 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11002048 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002049 continue;
2050 }
2051
2052 debug("Sending env %s = %s", name, val);
2053 channel_request_start(id, "env", 0);
2054 packet_put_cstring(name);
2055 packet_put_cstring(val);
2056 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11002057 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002058 }
2059 }
2060
2061 len = buffer_len(cmd);
2062 if (len > 0) {
2063 if (len > 900)
2064 len = 900;
2065 if (want_subsystem) {
Damien Miller5771ed72008-05-19 15:35:33 +10002066 debug("Sending subsystem: %.*s",
2067 len, (u_char*)buffer_ptr(cmd));
2068 channel_request_start(id, "subsystem", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002069 client_expect_confirm(id, "subsystem", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002070 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002071 debug("Sending command: %.*s",
2072 len, (u_char*)buffer_ptr(cmd));
2073 channel_request_start(id, "exec", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002074 client_expect_confirm(id, "exec", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002075 }
2076 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
2077 packet_send();
2078 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002079 channel_request_start(id, "shell", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002080 client_expect_confirm(id, "shell", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002081 packet_send();
2082 }
2083}
2084
Ben Lindstrombba81212001-06-25 05:01:22 +00002085static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002086client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10002087{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002088 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10002089
Damien Miller1383bd82000-04-06 12:32:37 +10002090 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2091 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2092 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2093 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10002094 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10002095 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2096 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002097 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10002098 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerb84886b2008-05-19 15:05:07 +10002099 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2100 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
Damien Millerc3fa4072002-01-22 23:21:58 +11002101 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002102
2103 /* rekeying */
2104 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10002105
2106 /* global request reply messages */
2107 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2108 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10002109}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002110
Ben Lindstrombba81212001-06-25 05:01:22 +00002111static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002112client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002113{
2114 dispatch_init(NULL);
2115 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2116 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2117 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002118 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2119 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2120 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002121 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2122 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2123 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002124
2125 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002126 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002127 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2128 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002129}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002130
Ben Lindstrombba81212001-06-25 05:01:22 +00002131static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002132client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002133{
2134 client_init_dispatch_13();
2135 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2136 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2137}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002138
Ben Lindstromdb47f382001-07-04 05:10:27 +00002139static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002140client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002141{
Damien Miller1383bd82000-04-06 12:32:37 +10002142 if (compat20)
2143 client_init_dispatch_20();
2144 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002145 client_init_dispatch_13();
2146 else
2147 client_init_dispatch_15();
2148}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002149
Damien Miller6c3eec72011-05-05 14:16:22 +10002150void
2151client_stop_mux(void)
2152{
2153 if (options.control_path != NULL && muxserver_sock != -1)
2154 unlink(options.control_path);
2155 /*
2156 * If we are in persist mode, signal that we should close when all
2157 * active channels are closed.
2158 */
Damien Miller4ac99c32011-06-20 14:43:31 +10002159 if (options.control_persist) {
Damien Miller6c3eec72011-05-05 14:16:22 +10002160 session_closed = 1;
Damien Miller4ac99c32011-06-20 14:43:31 +10002161 setproctitle("[stopped mux]");
2162 }
Damien Miller6c3eec72011-05-05 14:16:22 +10002163}
2164
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002165/* client specific fatal cleanup */
2166void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002167cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002168{
Damien Miller21771e22011-05-15 08:45:50 +10002169 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002170 leave_non_blocking();
Damien Millerb1cbfa22008-05-19 16:00:08 +10002171 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10002172 unlink(options.control_path);
Damien Millera41ccca2010-10-07 22:07:32 +11002173 ssh_kill_proxy_command();
Darren Tucker3e33cec2003-10-02 16:12:36 +10002174 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002175}