blob: 9820455c429393470c3a472ea934d7051b43bd4a [file] [log] [blame]
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001/* $OpenBSD: clientloop.c,v 1.284 2016/02/08 10:57:07 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
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000064#include <sys/param.h> /* MIN MAX */
Damien Millerf17883e2006-03-15 11:45:54 +110065#include <sys/types.h>
Damien Miller9aec9192006-08-05 10:57:45 +100066#include <sys/ioctl.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>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000088#include <limits.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Millerb84886b2008-05-19 15:05:07 +100090#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100091#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000093#include "ssh1.h"
94#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095#include "packet.h"
96#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100097#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000098#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100099#include "dispatch.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +1100100#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +1000101#include "cipher.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +0000102#include "kex.h"
markus@openbsd.org3a1638d2015-07-10 06:21:53 +0000103#include "myproposal.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000104#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +1000105#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000106#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000107#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100108#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000109#include "authfd.h"
110#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000111#include "sshpty.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000112#include "match.h"
113#include "msg.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000114#include "ssherr.h"
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000115#include "hostfile.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100116
117/* import options */
118extern Options options;
119
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120/* Flag indicating that stdin should be redirected from /dev/null. */
121extern int stdin_null_flag;
122
Damien Millerd6965512003-12-17 16:31:53 +1100123/* Flag indicating that no shell has been requested */
124extern int no_shell_flag;
125
Damien Miller0e220db2004-06-15 10:34:08 +1000126/* Control socket */
Damien Millere1537f92010-01-26 13:26:22 +1100127extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
Damien Miller0e220db2004-06-15 10:34:08 +1000128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
130 * Name of the host we are connecting to. This is the name given on the
131 * command line, or the HostName specified for the user-supplied name in a
132 * configuration file.
133 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134extern char *host;
135
Damien Miller5428f641999-11-25 11:54:57 +1100136/*
137 * Flag to indicate that we have received a window change signal which has
138 * not yet been processed. This will cause a message indicating the new
139 * window size to be sent to the server a little later. This is volatile
140 * because this is updated in a signal handler.
141 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000142static volatile sig_atomic_t received_window_change_signal = 0;
143static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller788f2122005-11-05 15:14:59 +1100145/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146static int in_non_blocking_mode = 0;
147
Damien Millere11e1ea2010-08-03 16:04:46 +1000148/* Time when backgrounded control master using ControlPersist should exit */
149static time_t control_persist_exit_time = 0;
150
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151/* Common data for the client loop code. */
Damien Millere1537f92010-01-26 13:26:22 +1100152volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000153static int escape_char1; /* Escape character. (proto1 only) */
154static int escape_pending1; /* Last character was an escape (proto1 only) */
Damien Miller95def091999-11-25 00:26:21 +1100155static int last_was_cr; /* Last character was a newline. */
Darren Tucker4d5cd332008-06-13 04:51:14 +1000156static int exit_status; /* Used to store the command exit status. */
157static int stdin_eof; /* EOF has been encountered on stderr. */
Damien Miller95def091999-11-25 00:26:21 +1100158static Buffer stdin_buffer; /* Buffer for stdin data. */
159static Buffer stdout_buffer; /* Buffer for stdout data. */
160static Buffer stderr_buffer; /* Buffer for stderr data. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000161static u_int buffer_high; /* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100162static int connection_in; /* Connection to server (input). */
163static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000164static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Damien Miller1ab6a512010-06-26 10:02:24 +1000165static int session_closed; /* In SSH2: login session closed. */
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000166static u_int x11_refuse_time; /* If >0, refuse x11 opens after this time. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167
Ben Lindstrombba81212001-06-25 05:01:22 +0000168static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000169int session_ident = -1;
170
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000171/* Track escape per proto2 channel */
172struct escape_filter_ctx {
173 int escape_pending;
174 int escape_char;
175};
176
177/* Context for channel confirmation replies */
Damien Miller5771ed72008-05-19 15:35:33 +1000178struct channel_reply_ctx {
179 const char *request_type;
Damien Miller555f3b82011-05-15 08:48:05 +1000180 int id;
181 enum confirm_action action;
Damien Miller5771ed72008-05-19 15:35:33 +1000182};
183
Darren Tucker9f407c42008-06-13 04:50:27 +1000184/* Global request success/failure callbacks */
185struct global_confirm {
186 TAILQ_ENTRY(global_confirm) entry;
187 global_confirm_cb *cb;
188 void *ctx;
189 int ref_count;
190};
191TAILQ_HEAD(global_confirms, global_confirm);
192static struct global_confirms global_confirms =
193 TAILQ_HEAD_INITIALIZER(global_confirms);
194
Damien Miller0e220db2004-06-15 10:34:08 +1000195void ssh_process_session2_setup(int, int, int, Buffer *);
196
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197/* Restores stdin to blocking mode. */
198
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000200leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Damien Miller95def091999-11-25 00:26:21 +1100202 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000203 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100204 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100205 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206}
207
Damien Miller95def091999-11-25 00:26:21 +1100208/* Puts stdin terminal in non-blocking mode. */
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000211enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Damien Miller95def091999-11-25 00:26:21 +1100213 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000214 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Signal handler for the window change signal (SIGWINCH). This just sets a
219 * flag indicating that the window has changed.
220 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100221/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static void
Damien Miller95def091999-11-25 00:26:21 +1100223window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224{
Damien Miller95def091999-11-25 00:26:21 +1100225 received_window_change_signal = 1;
226 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Miller5428f641999-11-25 11:54:57 +1100229/*
230 * Signal handler for signals that cause the program to terminate. These
231 * signals must be trapped to restore terminal modes.
232 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100233/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000234static void
Damien Miller95def091999-11-25 00:26:21 +1100235signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000237 received_signal = sig;
238 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239}
240
Damien Miller5428f641999-11-25 11:54:57 +1100241/*
242 * Returns current time in seconds from Jan 1, 1970 with the maximum
243 * available resolution.
244 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245
Ben Lindstrombba81212001-06-25 05:01:22 +0000246static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000247get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248{
Damien Miller95def091999-11-25 00:26:21 +1100249 struct timeval tv;
250 gettimeofday(&tv, NULL);
251 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252}
253
Damien Millere11e1ea2010-08-03 16:04:46 +1000254/*
255 * Sets control_persist_exit_time to the absolute time when the
256 * backgrounded control master should exit due to expiry of the
257 * ControlPersist timeout. Sets it to 0 if we are not a backgrounded
258 * control master process, or if there is no ControlPersist timeout.
259 */
260static void
261set_control_persist_exit_time(void)
262{
263 if (muxserver_sock == -1 || !options.control_persist
Damien Miller6c3eec72011-05-05 14:16:22 +1000264 || options.control_persist_timeout == 0) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000265 /* not using a ControlPersist timeout */
266 control_persist_exit_time = 0;
Damien Miller6c3eec72011-05-05 14:16:22 +1000267 } else if (channel_still_open()) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000268 /* some client connections are still open */
269 if (control_persist_exit_time > 0)
270 debug2("%s: cancel scheduled exit", __func__);
271 control_persist_exit_time = 0;
272 } else if (control_persist_exit_time <= 0) {
273 /* a client connection has recently closed */
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000274 control_persist_exit_time = monotime() +
Damien Millere11e1ea2010-08-03 16:04:46 +1000275 (time_t)options.control_persist_timeout;
276 debug2("%s: schedule exit in %d seconds", __func__,
277 options.control_persist_timeout);
278 }
279 /* else we are already counting down to the timeout */
280}
281
Damien Miller8d60be52012-02-11 08:18:17 +1100282#define SSH_X11_VALID_DISPLAY_CHARS ":/.-_"
283static int
284client_x11_display_valid(const char *display)
285{
286 size_t i, dlen;
287
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000288 if (display == NULL)
289 return 0;
290
Damien Miller8d60be52012-02-11 08:18:17 +1100291 dlen = strlen(display);
292 for (i = 0; i < dlen; i++) {
Damien Millerfdb23062013-11-21 13:57:15 +1100293 if (!isalnum((u_char)display[i]) &&
Damien Miller8d60be52012-02-11 08:18:17 +1100294 strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
295 debug("Invalid character '%c' in DISPLAY", display[i]);
296 return 0;
297 }
298 }
299 return 1;
300}
301
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000302#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
303#define X11_TIMEOUT_SLACK 60
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000304int
Damien Miller17e7ed02005-06-17 12:54:33 +1000305client_x11_get_proto(const char *display, const char *xauth_path,
Damien Miller1ab6a512010-06-26 10:02:24 +1000306 u_int trusted, u_int timeout, char **_proto, char **_data)
Damien Miller17e7ed02005-06-17 12:54:33 +1000307{
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000308 char cmd[1024], line[512], xdisplay[512];
309 char xauthfile[PATH_MAX], xauthdir[PATH_MAX];
Damien Miller17e7ed02005-06-17 12:54:33 +1000310 static char proto[512], data[512];
311 FILE *f;
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000312 int got_data = 0, generated = 0, do_unlink = 0, i, r;
Damien Miller17e7ed02005-06-17 12:54:33 +1000313 struct stat st;
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000314 u_int now, x11_timeout_real;
Damien Miller17e7ed02005-06-17 12:54:33 +1000315
Damien Miller17e7ed02005-06-17 12:54:33 +1000316 *_proto = proto;
317 *_data = data;
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000318 proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
Damien Miller17e7ed02005-06-17 12:54:33 +1000319
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000320 if (!client_x11_display_valid(display)) {
millert@openbsd.org5658ef22016-02-01 21:18:17 +0000321 if (display != NULL)
322 logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
323 display);
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000324 return -1;
325 }
326 if (xauth_path != NULL && stat(xauth_path, &st) == -1) {
327 debug("No xauth program.");
328 xauth_path = NULL;
329 }
330
331 if (xauth_path != NULL) {
Damien Miller17e7ed02005-06-17 12:54:33 +1000332 /*
333 * Handle FamilyLocal case where $DISPLAY does
334 * not match an authorization entry. For this we
335 * just try "xauth list unix:displaynum.screennum".
336 * XXX: "localhost" match to determine FamilyLocal
337 * is not perfect.
338 */
339 if (strncmp(display, "localhost:", 10) == 0) {
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000340 if ((r = snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
341 display + 10)) < 0 ||
342 (size_t)r >= sizeof(xdisplay)) {
343 error("%s: display name too long", __func__);
344 return -1;
345 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000346 display = xdisplay;
347 }
348 if (trusted == 0) {
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000349 /*
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000350 * Generate an untrusted X11 auth cookie.
351 *
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000352 * The authentication cookie should briefly outlive
353 * ssh's willingness to forward X11 connections to
354 * avoid nasty fail-open behaviour in the X server.
355 */
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000356 mktemp_proto(xauthdir, sizeof(xauthdir));
357 if (mkdtemp(xauthdir) == NULL) {
358 error("%s: mkdtemp: %s",
359 __func__, strerror(errno));
360 return -1;
361 }
362 do_unlink = 1;
363 if ((r = snprintf(xauthfile, sizeof(xauthfile),
364 "%s/xauthfile", xauthdir)) < 0 ||
365 (size_t)r >= sizeof(xauthfile)) {
366 error("%s: xauthfile path too long", __func__);
367 unlink(xauthfile);
368 rmdir(xauthdir);
369 return -1;
370 }
371
djm@openbsd.org1bf477d2015-07-01 02:26:31 +0000372 if (timeout >= UINT_MAX - X11_TIMEOUT_SLACK)
373 x11_timeout_real = UINT_MAX;
374 else
375 x11_timeout_real = timeout + X11_TIMEOUT_SLACK;
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000376 if ((r = snprintf(cmd, sizeof(cmd),
377 "%s -f %s generate %s " SSH_X11_PROTO
378 " untrusted timeout %u 2>" _PATH_DEVNULL,
379 xauth_path, xauthfile, display,
380 x11_timeout_real)) < 0 ||
381 (size_t)r >= sizeof(cmd))
382 fatal("%s: cmd too long", __func__);
383 debug2("%s: %s", __func__, cmd);
384 if (x11_refuse_time == 0) {
385 now = monotime() + 1;
386 if (UINT_MAX - timeout < now)
387 x11_refuse_time = UINT_MAX;
388 else
389 x11_refuse_time = now + timeout;
390 channel_set_x11_refuse_time(x11_refuse_time);
Damien Miller17e7ed02005-06-17 12:54:33 +1000391 }
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000392 if (system(cmd) == 0)
393 generated = 1;
Damien Miller17e7ed02005-06-17 12:54:33 +1000394 }
Darren Tucker513d13a2007-08-15 19:13:41 +1000395
396 /*
397 * When in untrusted mode, we read the cookie only if it was
398 * successfully generated as an untrusted one in the step
399 * above.
400 */
401 if (trusted || generated) {
402 snprintf(cmd, sizeof(cmd),
403 "%s %s%s list %s 2>" _PATH_DEVNULL,
404 xauth_path,
405 generated ? "-f " : "" ,
406 generated ? xauthfile : "",
407 display);
408 debug2("x11_get_proto: %s", cmd);
409 f = popen(cmd, "r");
410 if (f && fgets(line, sizeof(line), f) &&
411 sscanf(line, "%*s %511s %511s", proto, data) == 2)
412 got_data = 1;
413 if (f)
414 pclose(f);
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000415 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000416 }
417
418 if (do_unlink) {
419 unlink(xauthfile);
420 rmdir(xauthdir);
421 }
Damien Miller17e7ed02005-06-17 12:54:33 +1000422
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000423 /* Don't fall back to fake X11 data for untrusted forwarding */
424 if (!trusted && !got_data) {
425 error("Warning: untrusted X11 forwarding setup failed: "
426 "xauth key data not generated");
427 return -1;
428 }
429
Damien Miller17e7ed02005-06-17 12:54:33 +1000430 /*
431 * If we didn't get authentication data, just make up some
432 * data. The forwarding code will check the validity of the
433 * response anyway, and substitute this data. The X11
434 * server, however, will ignore this fake data and use
435 * whatever authentication mechanisms it was using otherwise
436 * for the local connection.
437 */
438 if (!got_data) {
439 u_int32_t rnd = 0;
440
441 logit("Warning: No xauth data; "
442 "using fake authentication data for X11 forwarding.");
443 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
444 for (i = 0; i < 16; i++) {
445 if (i % 4 == 0)
446 rnd = arc4random();
447 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
448 rnd & 0xff);
449 rnd >>= 8;
450 }
451 }
djm@openbsd.orged4ce822016-01-13 23:04:47 +0000452
453 return 0;
Damien Miller17e7ed02005-06-17 12:54:33 +1000454}
455
Damien Miller5428f641999-11-25 11:54:57 +1100456/*
457 * This is called when the interactive is entered. This checks if there is
458 * an EOF coming on stdin. We must check this explicitly, as select() does
459 * not appear to wake up when redirecting from /dev/null.
460 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461
Ben Lindstrombba81212001-06-25 05:01:22 +0000462static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000463client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000464{
Damien Miller95def091999-11-25 00:26:21 +1100465 int len;
466 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467
Damien Miller5428f641999-11-25 11:54:57 +1100468 /*
469 * If standard input is to be "redirected from /dev/null", we simply
470 * mark that we have seen an EOF and send an EOF message to the
471 * server. Otherwise, we try to read a single character; it appears
472 * that for some files, such /dev/null, select() never wakes up for
473 * read for this descriptor, which means that we never get EOF. This
474 * way we will get the EOF if stdin comes from /dev/null or similar.
475 */
Damien Miller95def091999-11-25 00:26:21 +1100476 if (stdin_null_flag) {
477 /* Fake EOF on stdin. */
478 debug("Sending eof.");
479 stdin_eof = 1;
480 packet_start(SSH_CMSG_EOF);
481 packet_send();
482 } else {
Damien Miller95def091999-11-25 00:26:21 +1100483 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484
Damien Miller95def091999-11-25 00:26:21 +1100485 /* Check for immediate EOF on stdin. */
486 len = read(fileno(stdin), buf, 1);
487 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000488 /*
489 * EOF. Record that we have seen it and send
490 * EOF to server.
491 */
Damien Miller95def091999-11-25 00:26:21 +1100492 debug("Sending eof.");
493 stdin_eof = 1;
494 packet_start(SSH_CMSG_EOF);
495 packet_send();
496 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100497 /*
498 * Got data. We must store the data in the buffer,
499 * and also process it as an escape character if
500 * appropriate.
501 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000502 if ((u_char) buf[0] == escape_char1)
503 escape_pending1 = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000504 else
Damien Miller95def091999-11-25 00:26:21 +1100505 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100506 }
Damien Miller95def091999-11-25 00:26:21 +1100507 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509}
510
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
Damien Miller5428f641999-11-25 11:54:57 +1100512/*
513 * Make packets from buffered stdin data, and buffer them for sending to the
514 * connection.
515 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Ben Lindstrombba81212001-06-25 05:01:22 +0000517static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000518client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000520 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Damien Miller95def091999-11-25 00:26:21 +1100522 /* Send buffered stdin data to the server. */
523 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100524 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100525 len = buffer_len(&stdin_buffer);
526 /* Keep the packets at reasonable size. */
527 if (len > packet_get_maxsize())
528 len = packet_get_maxsize();
529 packet_start(SSH_CMSG_STDIN_DATA);
530 packet_put_string(buffer_ptr(&stdin_buffer), len);
531 packet_send();
532 buffer_consume(&stdin_buffer, len);
533 /* If we have a pending EOF, send it now. */
534 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
535 packet_start(SSH_CMSG_EOF);
536 packet_send();
537 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000538 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539}
540
Damien Miller5428f641999-11-25 11:54:57 +1100541/*
542 * Checks if the client window has changed, and sends a packet about it to
543 * the server if so. The actual change is detected elsewhere (by a software
544 * interrupt on Unix); this just checks the flag and sends a message if
545 * appropriate.
546 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Ben Lindstrombba81212001-06-25 05:01:22 +0000548static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000549client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550{
Damien Miller1383bd82000-04-06 12:32:37 +1000551 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Damien Miller1383bd82000-04-06 12:32:37 +1000553 if (! received_window_change_signal)
554 return;
555 /** XXX race */
556 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Millerd3444942000-09-30 14:20:03 +1100558 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000559
560 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000561 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000562 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000563 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
564 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000565 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100566 packet_put_int((u_int)ws.ws_row);
567 packet_put_int((u_int)ws.ws_col);
568 packet_put_int((u_int)ws.ws_xpixel);
569 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000570 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572}
573
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000574static int
Damien Miller509b0102003-12-17 16:33:10 +1100575client_global_request_reply(int type, u_int32_t seq, void *ctxt)
576{
Darren Tucker9f407c42008-06-13 04:50:27 +1000577 struct global_confirm *gc;
578
579 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000580 return 0;
Darren Tucker9f407c42008-06-13 04:50:27 +1000581 if (gc->cb != NULL)
582 gc->cb(type, seq, gc->ctx);
583 if (--gc->ref_count <= 0) {
584 TAILQ_REMOVE(&global_confirms, gc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100585 explicit_bzero(gc, sizeof(*gc));
Darren Tuckera627d422013-06-02 07:31:17 +1000586 free(gc);
Darren Tucker9f407c42008-06-13 04:50:27 +1000587 }
588
Darren Tuckerf7288d72009-06-21 18:12:20 +1000589 packet_set_alive_timeouts(0);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000590 return 0;
Damien Miller509b0102003-12-17 16:33:10 +1100591}
592
593static void
594server_alive_check(void)
595{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000596 if (packet_inc_alive_timeouts() > options.server_alive_count_max) {
Damien Millerb73b6fd2011-01-11 17:18:56 +1100597 logit("Timeout, server %s not responding.", host);
Damien Miller985a4482006-10-24 03:02:41 +1000598 cleanup_exit(255);
599 }
Damien Miller509b0102003-12-17 16:33:10 +1100600 packet_start(SSH2_MSG_GLOBAL_REQUEST);
601 packet_put_cstring("keepalive@openssh.com");
602 packet_put_char(1); /* boolean: want reply */
603 packet_send();
Darren Tucker9f407c42008-06-13 04:50:27 +1000604 /* Insert an empty placeholder to maintain ordering */
605 client_register_global_confirm(NULL, NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100606}
607
Damien Miller5428f641999-11-25 11:54:57 +1100608/*
609 * Waits until the client can do something (some data becomes available on
610 * one of the file descriptors).
611 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000612static void
Damien Miller5e953212001-01-30 09:14:00 +1100613client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000614 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615{
Damien Miller509b0102003-12-17 16:33:10 +1100616 struct timeval tv, *tvp;
Damien Millere11e1ea2010-08-03 16:04:46 +1000617 int timeout_secs;
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000618 time_t minwait_secs = 0, server_alive_time = 0, now = monotime();
Damien Miller509b0102003-12-17 16:33:10 +1100619 int ret;
620
Damien Miller5e953212001-01-30 09:14:00 +1100621 /* Add any selections by the channel mechanism. */
Damien Millera6508752012-04-22 11:21:10 +1000622 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp,
623 &minwait_secs, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller1383bd82000-04-06 12:32:37 +1000625 if (!compat20) {
626 /* Read from the connection, unless our buffers are full. */
627 if (buffer_len(&stdout_buffer) < buffer_high &&
628 buffer_len(&stderr_buffer) < buffer_high &&
629 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100630 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000631 /*
632 * Read from stdin, unless we have seen EOF or have very much
633 * buffered data to send to the server.
634 */
635 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100636 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000637
638 /* Select stdout/stderr if have data in buffer. */
639 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100640 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000641 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100642 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000643 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000644 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000645 if (session_closed && !channel_still_open() &&
646 !packet_have_data_to_write()) {
647 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100648 memset(*readsetp, 0, *nallocp);
649 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000650 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000651 } else {
652 FD_SET(connection_in, *readsetp);
653 }
Damien Miller1383bd82000-04-06 12:32:37 +1000654 }
655
Damien Miller95def091999-11-25 00:26:21 +1100656 /* Select server connection if have data to write to the server. */
657 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100658 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100659
Damien Miller5428f641999-11-25 11:54:57 +1100660 /*
661 * Wait for something to happen. This will suspend the process until
662 * some selected descriptor can be read, written, or has some other
Damien Millere11e1ea2010-08-03 16:04:46 +1000663 * event pending, or a timeout expires.
Damien Miller5428f641999-11-25 11:54:57 +1100664 */
Damien Miller95def091999-11-25 00:26:21 +1100665
Damien Millere11e1ea2010-08-03 16:04:46 +1000666 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000667 if (options.server_alive_interval > 0 && compat20) {
Damien Millere11e1ea2010-08-03 16:04:46 +1000668 timeout_secs = options.server_alive_interval;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000669 server_alive_time = now + options.server_alive_interval;
670 }
671 if (options.rekey_interval > 0 && compat20 && !rekeying)
672 timeout_secs = MIN(timeout_secs, packet_get_rekey_timeout());
Damien Millere11e1ea2010-08-03 16:04:46 +1000673 set_control_persist_exit_time();
674 if (control_persist_exit_time > 0) {
675 timeout_secs = MIN(timeout_secs,
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000676 control_persist_exit_time - now);
Damien Millere11e1ea2010-08-03 16:04:46 +1000677 if (timeout_secs < 0)
678 timeout_secs = 0;
679 }
Damien Millera6508752012-04-22 11:21:10 +1000680 if (minwait_secs != 0)
681 timeout_secs = MIN(timeout_secs, (int)minwait_secs);
Damien Millere11e1ea2010-08-03 16:04:46 +1000682 if (timeout_secs == INT_MAX)
Damien Miller509b0102003-12-17 16:33:10 +1100683 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000684 else {
Damien Millere11e1ea2010-08-03 16:04:46 +1000685 tv.tv_sec = timeout_secs;
Damien Miller509b0102003-12-17 16:33:10 +1100686 tv.tv_usec = 0;
687 tvp = &tv;
688 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000689
Damien Miller509b0102003-12-17 16:33:10 +1100690 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
691 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100692 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000693
694 /*
695 * We have to clear the select masks, because we return.
696 * We have to return, because the mainloop checks for the flags
697 * set by the signal handlers.
698 */
Damien Miller79faeff2001-11-12 11:06:32 +1100699 memset(*readsetp, 0, *nallocp);
700 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000701
Damien Miller95def091999-11-25 00:26:21 +1100702 if (errno == EINTR)
703 return;
704 /* Note: we might still have data in the buffers. */
705 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
706 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100707 quit_pending = 1;
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000708 } else if (ret == 0) {
709 /*
710 * Timeout. Could have been either keepalive or rekeying.
711 * Keepalive we check here, rekeying is checked in clientloop.
712 */
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000713 if (server_alive_time != 0 && server_alive_time <= monotime())
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000714 server_alive_check();
715 }
716
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717}
718
Ben Lindstrombba81212001-06-25 05:01:22 +0000719static void
Damien Millerad833b32000-08-23 10:46:23 +1000720client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000721{
Damien Miller95def091999-11-25 00:26:21 +1100722 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000723 if (buffer_len(bout) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000724 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
725 buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000726 if (buffer_len(berr) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000727 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
728 buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000729
Damien Miller21771e22011-05-15 08:45:50 +1000730 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000731
Damien Miller5428f641999-11-25 11:54:57 +1100732 /*
733 * Free (and clear) the buffer to reduce the amount of data that gets
734 * written to swap.
735 */
Damien Millerad833b32000-08-23 10:46:23 +1000736 buffer_free(bin);
737 buffer_free(bout);
738 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739
Damien Miller95def091999-11-25 00:26:21 +1100740 /* Send the suspend signal to the program itself. */
741 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000742
Darren Tucker5d78de62004-11-05 20:35:44 +1100743 /* Reset window sizes in case they have changed */
744 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000745
Damien Miller95def091999-11-25 00:26:21 +1100746 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000747 buffer_init(bin);
748 buffer_init(bout);
749 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750
Damien Miller21771e22011-05-15 08:45:50 +1000751 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000752}
753
Ben Lindstrombba81212001-06-25 05:01:22 +0000754static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100755client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000756{
markus@openbsd.orga3068632016-01-14 16:17:39 +0000757 int len;
Darren Tucker86e30a02009-08-28 11:21:06 +1000758 char buf[SSH_IOBUFSZ];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000759
Damien Miller5428f641999-11-25 11:54:57 +1100760 /*
761 * Read input from the server, and add any such data to the buffer of
762 * the packet subsystem.
763 */
Damien Miller95def091999-11-25 00:26:21 +1100764 if (FD_ISSET(connection_in, readset)) {
765 /* Read as much as possible. */
markus@openbsd.orga3068632016-01-14 16:17:39 +0000766 len = read(connection_in, buf, sizeof(buf));
767 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000768 /*
769 * Received EOF. The remote host has closed the
770 * connection.
771 */
772 snprintf(buf, sizeof buf,
773 "Connection to %.300s closed by remote host.\r\n",
774 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776 quit_pending = 1;
777 return;
Damien Miller95def091999-11-25 00:26:21 +1100778 }
Damien Miller5428f641999-11-25 11:54:57 +1100779 /*
780 * There is a kernel bug on Solaris that causes select to
781 * sometimes wake up even though there is no data available.
782 */
Damien Millerd8968ad2008-07-04 23:10:49 +1000783 if (len < 0 &&
784 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Damien Miller95def091999-11-25 00:26:21 +1100785 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000786
Damien Miller95def091999-11-25 00:26:21 +1100787 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000788 /*
789 * An error has encountered. Perhaps there is a
790 * network problem.
791 */
792 snprintf(buf, sizeof buf,
793 "Read from remote host %.300s: %.100s\r\n",
794 host, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100795 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100796 quit_pending = 1;
797 return;
798 }
799 packet_process_incoming(buf, len);
800 }
Damien Miller1383bd82000-04-06 12:32:37 +1000801}
802
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000803static void
Damien Miller5771ed72008-05-19 15:35:33 +1000804client_status_confirm(int type, Channel *c, void *ctx)
Damien Miller0e220db2004-06-15 10:34:08 +1000805{
Damien Miller5771ed72008-05-19 15:35:33 +1000806 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
807 char errmsg[256];
808 int tochan;
Darren Tuckerfc959702004-07-17 16:12:08 +1000809
Damien Miller555f3b82011-05-15 08:48:05 +1000810 /*
811 * If a TTY was explicitly requested, then a failure to allocate
812 * one is fatal.
813 */
814 if (cr->action == CONFIRM_TTY &&
815 (options.request_tty == REQUEST_TTY_FORCE ||
816 options.request_tty == REQUEST_TTY_YES))
817 cr->action = CONFIRM_CLOSE;
818
Damien Miller5771ed72008-05-19 15:35:33 +1000819 /* XXX supress on mux _client_ quietmode */
820 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
Damien Millere1537f92010-01-26 13:26:22 +1100821 c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
Damien Miller0e220db2004-06-15 10:34:08 +1000822
Damien Miller5771ed72008-05-19 15:35:33 +1000823 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
824 debug2("%s request accepted on channel %d",
825 cr->request_type, c->self);
826 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
827 if (tochan) {
828 snprintf(errmsg, sizeof(errmsg),
829 "%s request failed\r\n", cr->request_type);
830 } else {
831 snprintf(errmsg, sizeof(errmsg),
832 "%s request failed on channel %d",
833 cr->request_type, c->self);
834 }
835 /* If error occurred on primary session channel, then exit */
Damien Miller555f3b82011-05-15 08:48:05 +1000836 if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
Damien Miller5771ed72008-05-19 15:35:33 +1000837 fatal("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000838 /*
839 * If error occurred on mux client, append to
840 * their stderr.
841 */
842 if (tochan) {
843 buffer_append(&c->extended, errmsg,
844 strlen(errmsg));
845 } else
Damien Miller5771ed72008-05-19 15:35:33 +1000846 error("%s", errmsg);
Damien Miller555f3b82011-05-15 08:48:05 +1000847 if (cr->action == CONFIRM_TTY) {
848 /*
849 * If a TTY allocation error occurred, then arrange
850 * for the correct TTY to leave raw mode.
851 */
852 if (c->self == session_ident)
853 leave_raw_mode(0);
854 else
855 mux_tty_alloc_failed(c);
856 } else if (cr->action == CONFIRM_CLOSE) {
Damien Miller5771ed72008-05-19 15:35:33 +1000857 chan_read_failed(c);
858 chan_write_failed(c);
859 }
Damien Miller0e220db2004-06-15 10:34:08 +1000860 }
Darren Tuckera627d422013-06-02 07:31:17 +1000861 free(cr);
Damien Miller5771ed72008-05-19 15:35:33 +1000862}
Damien Miller0e220db2004-06-15 10:34:08 +1000863
Damien Miller5771ed72008-05-19 15:35:33 +1000864static void
865client_abandon_status_confirm(Channel *c, void *ctx)
866{
Darren Tuckera627d422013-06-02 07:31:17 +1000867 free(ctx);
Damien Miller5771ed72008-05-19 15:35:33 +1000868}
869
Damien Miller6d7b4372011-06-23 08:31:57 +1000870void
Damien Miller555f3b82011-05-15 08:48:05 +1000871client_expect_confirm(int id, const char *request,
872 enum confirm_action action)
Damien Miller5771ed72008-05-19 15:35:33 +1000873{
Damien Miller6c81fee2013-11-08 12:19:55 +1100874 struct channel_reply_ctx *cr = xcalloc(1, sizeof(*cr));
Damien Miller5771ed72008-05-19 15:35:33 +1000875
876 cr->request_type = request;
Damien Miller555f3b82011-05-15 08:48:05 +1000877 cr->action = action;
Damien Miller5771ed72008-05-19 15:35:33 +1000878
879 channel_register_status_confirm(id, client_status_confirm,
880 client_abandon_status_confirm, cr);
Damien Miller0e220db2004-06-15 10:34:08 +1000881}
882
Darren Tucker9f407c42008-06-13 04:50:27 +1000883void
884client_register_global_confirm(global_confirm_cb *cb, void *ctx)
885{
Damien Millerb9d3bee2008-07-16 22:40:52 +1000886 struct global_confirm *gc, *last_gc;
Darren Tucker9f407c42008-06-13 04:50:27 +1000887
888 /* Coalesce identical callbacks */
Damien Millerb9d3bee2008-07-16 22:40:52 +1000889 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
890 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
891 if (++last_gc->ref_count >= INT_MAX)
892 fatal("%s: last_gc->ref_count = %d",
893 __func__, last_gc->ref_count);
Darren Tucker9f407c42008-06-13 04:50:27 +1000894 return;
895 }
896
Damien Miller6c81fee2013-11-08 12:19:55 +1100897 gc = xcalloc(1, sizeof(*gc));
Darren Tucker9f407c42008-06-13 04:50:27 +1000898 gc->cb = cb;
899 gc->ctx = ctx;
900 gc->ref_count = 1;
901 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
902}
903
Damien Miller0e220db2004-06-15 10:34:08 +1000904static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000905process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000906{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000907 void (*handler)(int);
Damien Miller7acefbb2014-07-18 14:11:24 +1000908 char *s, *cmd;
909 int ok, delete = 0, local = 0, remote = 0, dynamic = 0;
910 struct Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000911
Damien Miller1d2c4562014-02-04 11:18:20 +1100912 memset(&fwd, 0, sizeof(fwd));
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100913
Damien Miller21771e22011-05-15 08:45:50 +1000914 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000915 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000916 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000917 if (s == NULL)
918 goto out;
Damien Millerfdb23062013-11-21 13:57:15 +1100919 while (isspace((u_char)*s))
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000920 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000921 if (*s == '-')
922 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000923 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000924 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000925
Darren Tucker1973c882004-05-24 10:34:36 +1000926 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000927 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000928 logit(" -L[bind_address:]port:host:hostport "
929 "Request local forward");
930 logit(" -R[bind_address:]port:host:hostport "
931 "Request remote forward");
Damien Miller0164cb82008-11-05 16:30:31 +1100932 logit(" -D[bind_address:]port "
933 "Request dynamic forward");
Damien Millerff773642011-09-22 21:39:48 +1000934 logit(" -KL[bind_address:]port "
935 "Cancel local forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000936 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000937 "Cancel remote forward");
Damien Millerff773642011-09-22 21:39:48 +1000938 logit(" -KD[bind_address:]port "
939 "Cancel dynamic forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100940 if (!options.permit_local_command)
941 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000942 logit(" !args "
943 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100944 goto out;
945 }
946
947 if (*s == '!' && options.permit_local_command) {
948 s++;
949 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000950 goto out;
951 }
952
953 if (*s == 'K') {
954 delete = 1;
955 s++;
956 }
Damien Miller0164cb82008-11-05 16:30:31 +1100957 if (*s == 'L')
958 local = 1;
959 else if (*s == 'R')
960 remote = 1;
961 else if (*s == 'D')
962 dynamic = 1;
963 else {
Damien Miller996acd22003-04-09 20:59:48 +1000964 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000965 goto out;
966 }
Damien Miller0164cb82008-11-05 16:30:31 +1100967
Damien Millerff773642011-09-22 21:39:48 +1000968 if (delete && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000969 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000970 goto out;
971 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000972
Damien Millerfdb23062013-11-21 13:57:15 +1100973 while (isspace((u_char)*++s))
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100974 ;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000975
Damien Millere1537f92010-01-26 13:26:22 +1100976 /* XXX update list of forwards in options */
Darren Tuckere7066df2004-05-24 10:18:05 +1000977 if (delete) {
Damien Miller7acefbb2014-07-18 14:11:24 +1000978 /* We pass 1 for dynamicfwd to restrict to 1 or 2 fields. */
979 if (!parse_forward(&fwd, s, 1, 0)) {
980 logit("Bad forwarding close specification.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000981 goto out;
982 }
Damien Millerff773642011-09-22 21:39:48 +1000983 if (remote)
Damien Miller7acefbb2014-07-18 14:11:24 +1000984 ok = channel_request_rforward_cancel(&fwd) == 0;
Damien Millerff773642011-09-22 21:39:48 +1000985 else if (dynamic)
Damien Miller7acefbb2014-07-18 14:11:24 +1000986 ok = channel_cancel_lport_listener(&fwd,
987 0, &options.fwd_opts) > 0;
Damien Millerff773642011-09-22 21:39:48 +1000988 else
Damien Miller7acefbb2014-07-18 14:11:24 +1000989 ok = channel_cancel_lport_listener(&fwd,
990 CHANNEL_CANCEL_PORT_STATIC,
991 &options.fwd_opts) > 0;
Damien Millerff773642011-09-22 21:39:48 +1000992 if (!ok) {
993 logit("Unkown port forwarding.");
994 goto out;
995 }
996 logit("Canceled forwarding.");
Darren Tuckere7066df2004-05-24 10:18:05 +1000997 } else {
Damien Miller4bf648f2009-02-14 16:28:21 +1100998 if (!parse_forward(&fwd, s, dynamic, remote)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000999 logit("Bad forwarding specification.");
1000 goto out;
1001 }
Damien Miller0164cb82008-11-05 16:30:31 +11001002 if (local || dynamic) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001003 if (!channel_setup_local_fwd_listener(&fwd,
1004 &options.fwd_opts)) {
Darren Tuckere7066df2004-05-24 10:18:05 +10001005 logit("Port forwarding failed.");
1006 goto out;
1007 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001008 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10001009 if (channel_request_remote_forwarding(&fwd) < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001010 logit("Port forwarding failed.");
1011 goto out;
1012 }
Damien Millerf91ee4c2005-03-01 21:24:33 +11001013 }
Darren Tuckere7066df2004-05-24 10:18:05 +10001014 logit("Forwarding port.");
1015 }
1016
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001017out:
1018 signal(SIGINT, handler);
Damien Miller21771e22011-05-15 08:45:50 +10001019 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tuckera627d422013-06-02 07:31:17 +10001020 free(cmd);
1021 free(fwd.listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10001022 free(fwd.listen_path);
Darren Tuckera627d422013-06-02 07:31:17 +10001023 free(fwd.connect_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10001024 free(fwd.connect_path);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001025}
1026
Darren Tucker92a39cf2012-09-07 11:20:20 +10001027/* reasons to suppress output of an escape command in help output */
1028#define SUPPRESS_NEVER 0 /* never suppress, always show */
1029#define SUPPRESS_PROTO1 1 /* don't show in protocol 1 sessions */
1030#define SUPPRESS_MUXCLIENT 2 /* don't show in mux client sessions */
1031#define SUPPRESS_MUXMASTER 4 /* don't show in mux master sessions */
1032#define SUPPRESS_SYSLOG 8 /* don't show when logging to syslog */
1033struct escape_help_text {
1034 const char *cmd;
1035 const char *text;
1036 unsigned int flags;
1037};
1038static struct escape_help_text esc_txt[] = {
1039 {".", "terminate session", SUPPRESS_MUXMASTER},
1040 {".", "terminate connection (and any multiplexed sessions)",
1041 SUPPRESS_MUXCLIENT},
1042 {"B", "send a BREAK to the remote system", SUPPRESS_PROTO1},
1043 {"C", "open a command line", SUPPRESS_MUXCLIENT},
1044 {"R", "request rekey", SUPPRESS_PROTO1},
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001045 {"V/v", "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
Darren Tucker92a39cf2012-09-07 11:20:20 +10001046 {"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
1047 {"#", "list forwarded connections", SUPPRESS_NEVER},
1048 {"&", "background ssh (when waiting for connections to terminate)",
1049 SUPPRESS_MUXCLIENT},
1050 {"?", "this message", SUPPRESS_NEVER},
1051};
1052
1053static void
1054print_escape_help(Buffer *b, int escape_char, int protocol2, int mux_client,
1055 int using_stderr)
1056{
1057 unsigned int i, suppress_flags;
1058 char string[1024];
1059
1060 snprintf(string, sizeof string, "%c?\r\n"
1061 "Supported escape sequences:\r\n", escape_char);
1062 buffer_append(b, string, strlen(string));
1063
1064 suppress_flags = (protocol2 ? 0 : SUPPRESS_PROTO1) |
1065 (mux_client ? SUPPRESS_MUXCLIENT : 0) |
1066 (mux_client ? 0 : SUPPRESS_MUXMASTER) |
1067 (using_stderr ? 0 : SUPPRESS_SYSLOG);
1068
1069 for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
1070 if (esc_txt[i].flags & suppress_flags)
1071 continue;
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001072 snprintf(string, sizeof string, " %c%-3s - %s\r\n",
Darren Tucker92a39cf2012-09-07 11:20:20 +10001073 escape_char, esc_txt[i].cmd, esc_txt[i].text);
1074 buffer_append(b, string, strlen(string));
1075 }
1076
1077 snprintf(string, sizeof string,
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001078 " %c%c - send the escape character by typing it twice\r\n"
Darren Tucker92a39cf2012-09-07 11:20:20 +10001079 "(Note that escapes are only recognized immediately after "
1080 "newline.)\r\n", escape_char, escape_char);
1081 buffer_append(b, string, strlen(string));
1082}
1083
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001084/*
1085 * Process the characters one by one, call with c==NULL for proto1 case.
1086 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001087static int
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001088process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
1089 char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001090{
1091 char string[1024];
1092 pid_t pid;
1093 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001094 u_int i;
1095 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +10001096 char *s;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001097 int *escape_pendingp, escape_char;
1098 struct escape_filter_ctx *efc;
Damien Millerad833b32000-08-23 10:46:23 +10001099
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001100 if (c == NULL) {
1101 escape_pendingp = &escape_pending1;
1102 escape_char = escape_char1;
1103 } else {
1104 if (c->filter_ctx == NULL)
1105 return 0;
1106 efc = (struct escape_filter_ctx *)c->filter_ctx;
1107 escape_pendingp = &efc->escape_pending;
1108 escape_char = efc->escape_char;
1109 }
1110
Damien Millereccb9de2005-06-17 12:59:34 +10001111 if (len <= 0)
1112 return (0);
1113
1114 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +10001115 /* Get one character at a time. */
1116 ch = buf[i];
1117
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001118 if (*escape_pendingp) {
Damien Millerad833b32000-08-23 10:46:23 +10001119 /* We have previously seen an escape character. */
1120 /* Clear the flag now. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001121 *escape_pendingp = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001122
1123 /* Process the escaped character. */
1124 switch (ch) {
1125 case '.':
1126 /* Terminate the connection. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001127 snprintf(string, sizeof string, "%c.\r\n",
1128 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001129 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001130
Damien Millere1537f92010-01-26 13:26:22 +11001131 if (c && c->ctl_chan != -1) {
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001132 chan_read_failed(c);
1133 chan_write_failed(c);
Darren Tuckerea8342c2013-06-06 08:11:40 +10001134 if (c->detach_user)
1135 c->detach_user(c->self, NULL);
Damien Miller36187092013-06-10 13:07:11 +10001136 c->type = SSH_CHANNEL_ABANDONED;
1137 buffer_clear(&c->input);
1138 chan_ibuf_empty(c);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001139 return 0;
1140 } else
1141 quit_pending = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001142 return -1;
1143
1144 case 'Z' - 64:
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001145 /* XXX support this for mux clients */
Damien Millere1537f92010-01-26 13:26:22 +11001146 if (c && c->ctl_chan != -1) {
Darren Tuckerf111d402012-09-07 11:21:42 +10001147 char b[16];
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001148 noescape:
Darren Tuckerf111d402012-09-07 11:21:42 +10001149 if (ch == 'Z' - 64)
1150 snprintf(b, sizeof b, "^Z");
1151 else
1152 snprintf(b, sizeof b, "%c", ch);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001153 snprintf(string, sizeof string,
Darren Tuckerf111d402012-09-07 11:21:42 +10001154 "%c%s escape not available to "
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001155 "multiplexed sessions\r\n",
Darren Tuckerf111d402012-09-07 11:21:42 +10001156 escape_char, b);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001157 buffer_append(berr, string,
1158 strlen(string));
1159 continue;
1160 }
Darren Tucker4d5cd332008-06-13 04:51:14 +10001161 /* Suspend the program. Inform the user */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001162 snprintf(string, sizeof string,
1163 "%c^Z [suspend ssh]\r\n", escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001164 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +10001165
1166 /* Restore terminal modes and suspend. */
1167 client_suspend_self(bin, bout, berr);
1168
1169 /* We have been continued. */
1170 continue;
1171
Damien Miller54c45982003-05-15 10:20:13 +10001172 case 'B':
1173 if (compat20) {
1174 snprintf(string, sizeof string,
1175 "%cB\r\n", escape_char);
1176 buffer_append(berr, string,
1177 strlen(string));
Damien Miller70182522013-09-14 09:49:19 +10001178 channel_request_start(c->self,
Damien Miller54c45982003-05-15 10:20:13 +10001179 "break", 0);
1180 packet_put_int(1000);
1181 packet_send();
1182 }
1183 continue;
1184
Ben Lindstromf28f6342001-04-04 02:03:04 +00001185 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001186 if (compat20) {
1187 if (datafellows & SSH_BUG_NOREKEY)
Darren Tucker4d5cd332008-06-13 04:51:14 +10001188 logit("Server does not "
1189 "support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +00001190 else
1191 need_rekeying = 1;
1192 }
Ben Lindstromf28f6342001-04-04 02:03:04 +00001193 continue;
1194
Darren Tucker50a48d02012-09-06 21:25:37 +10001195 case 'V':
1196 /* FALLTHROUGH */
1197 case 'v':
1198 if (c && c->ctl_chan != -1)
1199 goto noescape;
1200 if (!log_is_on_stderr()) {
1201 snprintf(string, sizeof string,
1202 "%c%c [Logging to syslog]\r\n",
1203 escape_char, ch);
1204 buffer_append(berr, string,
1205 strlen(string));
1206 continue;
1207 }
1208 if (ch == 'V' && options.log_level >
1209 SYSLOG_LEVEL_QUIET)
1210 log_change_level(--options.log_level);
1211 if (ch == 'v' && options.log_level <
1212 SYSLOG_LEVEL_DEBUG3)
1213 log_change_level(++options.log_level);
1214 snprintf(string, sizeof string,
1215 "%c%c [LogLevel %s]\r\n", escape_char, ch,
1216 log_level_name(options.log_level));
1217 buffer_append(berr, string, strlen(string));
1218 continue;
1219
Damien Millerad833b32000-08-23 10:46:23 +10001220 case '&':
Damien Millere1537f92010-01-26 13:26:22 +11001221 if (c && c->ctl_chan != -1)
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001222 goto noescape;
Damien Millerad833b32000-08-23 10:46:23 +10001223 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001224 * Detach the program (continue to serve
1225 * connections, but put in background and no
1226 * more new connections).
Damien Millerad833b32000-08-23 10:46:23 +10001227 */
Damien Miller96507ef2001-11-12 10:52:25 +11001228 /* Restore tty modes. */
Damien Miller21771e22011-05-15 08:45:50 +10001229 leave_raw_mode(
1230 options.request_tty == REQUEST_TTY_FORCE);
Damien Miller96507ef2001-11-12 10:52:25 +11001231
1232 /* Stop listening for new connections. */
1233 channel_stop_listening();
1234
1235 snprintf(string, sizeof string,
1236 "%c& [backgrounded]\n", escape_char);
1237 buffer_append(berr, string, strlen(string));
1238
1239 /* Fork into background. */
1240 pid = fork();
1241 if (pid < 0) {
1242 error("fork: %.100s", strerror(errno));
1243 continue;
1244 }
1245 if (pid != 0) { /* This is the parent. */
1246 /* The parent just exits. */
1247 exit(0);
1248 }
1249 /* The child continues serving connections. */
1250 if (compat20) {
1251 buffer_append(bin, "\004", 1);
1252 /* fake EOF on stdin */
1253 return -1;
1254 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001255 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001256 * Sending SSH_CMSG_EOF alone does not
1257 * always appear to be enough. So we
1258 * try to send an EOF character first.
Damien Millerad833b32000-08-23 10:46:23 +10001259 */
1260 packet_start(SSH_CMSG_STDIN_DATA);
1261 packet_put_string("\004", 1);
1262 packet_send();
1263 /* Close stdin. */
1264 stdin_eof = 1;
1265 if (buffer_len(bin) == 0) {
1266 packet_start(SSH_CMSG_EOF);
1267 packet_send();
1268 }
1269 }
Damien Miller96507ef2001-11-12 10:52:25 +11001270 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001271
1272 case '?':
Darren Tucker92a39cf2012-09-07 11:20:20 +10001273 print_escape_help(berr, escape_char, compat20,
1274 (c && c->ctl_chan != -1),
1275 log_is_on_stderr());
Damien Millerad833b32000-08-23 10:46:23 +10001276 continue;
1277
1278 case '#':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001279 snprintf(string, sizeof string, "%c#\r\n",
1280 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001281 buffer_append(berr, string, strlen(string));
1282 s = channel_open_message();
1283 buffer_append(berr, s, strlen(s));
Darren Tuckera627d422013-06-02 07:31:17 +10001284 free(s);
Damien Millerad833b32000-08-23 10:46:23 +10001285 continue;
1286
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001287 case 'C':
Damien Millere1537f92010-01-26 13:26:22 +11001288 if (c && c->ctl_chan != -1)
Damien Miller586b0052008-12-09 14:11:32 +11001289 goto noescape;
Ben Lindstrom681d9322002-03-22 03:53:00 +00001290 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001291 continue;
1292
Damien Millerad833b32000-08-23 10:46:23 +10001293 default:
1294 if (ch != escape_char) {
1295 buffer_put_char(bin, escape_char);
1296 bytes++;
1297 }
1298 /* Escaped characters fall through here */
1299 break;
1300 }
1301 } else {
1302 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001303 * The previous character was not an escape char.
1304 * Check if this is an escape.
Damien Millerad833b32000-08-23 10:46:23 +10001305 */
1306 if (last_was_cr && ch == escape_char) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001307 /*
1308 * It is. Set the flag and continue to
1309 * next character.
1310 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001311 *escape_pendingp = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001312 continue;
1313 }
1314 }
1315
1316 /*
1317 * Normal character. Record whether it was a newline,
1318 * and append it to the buffer.
1319 */
1320 last_was_cr = (ch == '\r' || ch == '\n');
1321 buffer_put_char(bin, ch);
1322 bytes++;
1323 }
1324 return bytes;
1325}
1326
Ben Lindstrombba81212001-06-25 05:01:22 +00001327static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001328client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001329{
Damien Miller166fca82000-04-20 07:42:21 +10001330 int len;
Darren Tucker86e30a02009-08-28 11:21:06 +10001331 char buf[SSH_IOBUFSZ];
Damien Miller1383bd82000-04-06 12:32:37 +10001332
Damien Miller95def091999-11-25 00:26:21 +11001333 /* Read input from stdin. */
1334 if (FD_ISSET(fileno(stdin), readset)) {
1335 /* Read as much as possible. */
1336 len = read(fileno(stdin), buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001337 if (len < 0 &&
1338 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001339 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001340 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001341 /*
1342 * Received EOF or error. They are treated
1343 * similarly, except that an error message is printed
1344 * if it was an error condition.
1345 */
Damien Miller95def091999-11-25 00:26:21 +11001346 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001347 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1348 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001349 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001350 }
1351 /* Mark that we have seen EOF. */
1352 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001353 /*
1354 * Send an EOF message to the server unless there is
1355 * data in the buffer. If there is data in the
1356 * buffer, no message will be sent now. Code
1357 * elsewhere will send the EOF when the buffer
1358 * becomes empty if stdin_eof is set.
1359 */
Damien Miller95def091999-11-25 00:26:21 +11001360 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361 packet_start(SSH_CMSG_EOF);
1362 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001363 }
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001364 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001365 /*
1366 * Normal successful read, and no escape character.
1367 * Just append the data to buffer.
1368 */
Damien Miller95def091999-11-25 00:26:21 +11001369 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001370 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001371 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001372 * Normal, successful read. But we have an escape
1373 * character and have to process the characters one
1374 * by one.
Damien Miller5428f641999-11-25 11:54:57 +11001375 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001376 if (process_escapes(NULL, &stdin_buffer,
1377 &stdout_buffer, &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001378 return;
Damien Miller95def091999-11-25 00:26:21 +11001379 }
1380 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001381}
1382
Ben Lindstrombba81212001-06-25 05:01:22 +00001383static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001384client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001385{
Damien Miller95def091999-11-25 00:26:21 +11001386 int len;
1387 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388
Damien Miller95def091999-11-25 00:26:21 +11001389 /* Write buffered output to stdout. */
1390 if (FD_ISSET(fileno(stdout), writeset)) {
1391 /* Write as much data as possible. */
1392 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001393 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001394 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001395 if (errno == EINTR || errno == EAGAIN ||
1396 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001397 len = 0;
1398 else {
Damien Miller5428f641999-11-25 11:54:57 +11001399 /*
1400 * An error or EOF was encountered. Put an
1401 * error message to stderr buffer.
1402 */
Darren Tucker4d5cd332008-06-13 04:51:14 +10001403 snprintf(buf, sizeof buf,
1404 "write stdout: %.50s\r\n", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001405 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001406 quit_pending = 1;
1407 return;
1408 }
1409 }
1410 /* Consume printed data from the buffer. */
1411 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001412 }
Damien Miller95def091999-11-25 00:26:21 +11001413 /* Write buffered output to stderr. */
1414 if (FD_ISSET(fileno(stderr), writeset)) {
1415 /* Write as much data as possible. */
1416 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001417 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001418 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001419 if (errno == EINTR || errno == EAGAIN ||
1420 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001421 len = 0;
1422 else {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001423 /*
1424 * EOF or error, but can't even print
1425 * error message.
1426 */
Damien Miller95def091999-11-25 00:26:21 +11001427 quit_pending = 1;
1428 return;
1429 }
1430 }
1431 /* Consume printed characters from the buffer. */
1432 buffer_consume(&stderr_buffer, len);
1433 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434}
1435
Damien Miller5428f641999-11-25 11:54:57 +11001436/*
Damien Millerb38eff82000-04-01 11:09:21 +10001437 * Get packets from the connection input buffer, and process them as long as
1438 * there are packets available.
1439 *
1440 * Any unknown packets received during the actual
1441 * session cause the session to terminate. This is
1442 * intended to make debugging easier since no
1443 * confirmations are sent. Any compatible protocol
1444 * extensions must be negotiated during the
1445 * preparatory phase.
1446 */
1447
Ben Lindstrombba81212001-06-25 05:01:22 +00001448static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001449client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001450{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00001451 dispatch_run(DISPATCH_NONBLOCK, &quit_pending, active_state);
Damien Millerb38eff82000-04-01 11:09:21 +10001452}
1453
Damien Millerad833b32000-08-23 10:46:23 +10001454/* scan buf[] for '~' before sending data to the peer */
1455
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001456/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1457void *
1458client_new_escape_filter_ctx(int escape_char)
1459{
1460 struct escape_filter_ctx *ret;
1461
Damien Miller6c81fee2013-11-08 12:19:55 +11001462 ret = xcalloc(1, sizeof(*ret));
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001463 ret->escape_pending = 0;
1464 ret->escape_char = escape_char;
1465 return (void *)ret;
1466}
1467
Darren Tucker84c56f52008-06-13 04:55:46 +10001468/* Free the escape filter context on channel free */
1469void
1470client_filter_cleanup(int cid, void *ctx)
1471{
Darren Tuckera627d422013-06-02 07:31:17 +10001472 free(ctx);
Darren Tucker84c56f52008-06-13 04:55:46 +10001473}
1474
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001475int
1476client_simple_escape_filter(Channel *c, char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001477{
Damien Miller5771ed72008-05-19 15:35:33 +10001478 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1479 return 0;
1480
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001481 return process_escapes(c, &c->input, &c->output, &c->extended,
1482 buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001483}
1484
Ben Lindstrombba81212001-06-25 05:01:22 +00001485static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001486client_channel_closed(int id, void *arg)
1487{
Damien Miller3ec27592001-10-12 11:35:04 +10001488 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001489 session_closed = 1;
Damien Miller21771e22011-05-15 08:45:50 +10001490 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001491}
1492
Damien Millerb38eff82000-04-01 11:09:21 +10001493/*
Damien Miller5428f641999-11-25 11:54:57 +11001494 * Implements the interactive session with the server. This is called after
1495 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001496 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1497 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001498 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001499
Damien Miller4af51302000-04-16 11:18:38 +10001500int
Damien Millerad833b32000-08-23 10:46:23 +10001501client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001502{
Damien Miller5e953212001-01-30 09:14:00 +11001503 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001504 double start_time, total_time;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001505 int r, max_fd = 0, max_fd2 = 0, len;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001506 u_int64_t ibytes, obytes;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001507 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001508 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001509
Damien Miller95def091999-11-25 00:26:21 +11001510 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001511
semarie@openbsd.orgd7d2bc92015-12-26 07:46:03 +00001512 if (options.control_master &&
1513 ! option_clear_or_none(options.control_path)) {
1514 debug("pledge: id");
1515 if (pledge("stdio rpath wpath cpath unix inet dns proc exec id tty",
1516 NULL) == -1)
1517 fatal("%s pledge(): %s", __func__, strerror(errno));
1518
1519 } else if (options.forward_x11 || options.permit_local_command) {
semarie@openbsd.orgb91926a2015-12-03 17:00:18 +00001520 debug("pledge: exec");
1521 if (pledge("stdio rpath wpath cpath unix inet dns proc exec tty",
1522 NULL) == -1)
1523 fatal("%s pledge(): %s", __func__, strerror(errno));
1524
1525 } else if (options.update_hostkeys) {
1526 debug("pledge: filesystem full");
1527 if (pledge("stdio rpath wpath cpath unix inet dns proc tty",
1528 NULL) == -1)
1529 fatal("%s pledge(): %s", __func__, strerror(errno));
1530
1531 } else if (! option_clear_or_none(options.proxy_command)) {
1532 debug("pledge: proc");
1533 if (pledge("stdio cpath unix inet dns proc tty", NULL) == -1)
1534 fatal("%s pledge(): %s", __func__, strerror(errno));
1535
semarie@openbsd.orgb91926a2015-12-03 17:00:18 +00001536 } else {
1537 debug("pledge: network");
1538 if (pledge("stdio unix inet dns tty", NULL) == -1)
1539 fatal("%s pledge(): %s", __func__, strerror(errno));
1540 }
1541
Damien Miller95def091999-11-25 00:26:21 +11001542 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001543
Damien Miller95def091999-11-25 00:26:21 +11001544 /* Initialize variables. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001545 escape_pending1 = 0;
Damien Miller95def091999-11-25 00:26:21 +11001546 last_was_cr = 1;
1547 exit_status = -1;
1548 stdin_eof = 0;
1549 buffer_high = 64 * 1024;
1550 connection_in = packet_get_connection_in();
1551 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001552 max_fd = MAX(connection_in, connection_out);
1553
1554 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001555 /* enable nonblocking unless tty */
1556 if (!isatty(fileno(stdin)))
1557 set_nonblock(fileno(stdin));
1558 if (!isatty(fileno(stdout)))
1559 set_nonblock(fileno(stdout));
1560 if (!isatty(fileno(stderr)))
1561 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001562 max_fd = MAX(max_fd, fileno(stdin));
1563 max_fd = MAX(max_fd, fileno(stdout));
1564 max_fd = MAX(max_fd, fileno(stderr));
1565 }
Damien Miller95def091999-11-25 00:26:21 +11001566 quit_pending = 0;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001567 escape_char1 = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001568
Damien Miller95def091999-11-25 00:26:21 +11001569 /* Initialize buffers. */
1570 buffer_init(&stdin_buffer);
1571 buffer_init(&stdout_buffer);
1572 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001573
Damien Millerb38eff82000-04-01 11:09:21 +10001574 client_init_dispatch();
1575
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001576 /*
1577 * Set signal handlers, (e.g. to restore non-blocking mode)
1578 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1579 */
Darren Tucker07336da2004-11-05 20:02:16 +11001580 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1581 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001582 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1583 signal(SIGINT, signal_handler);
1584 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1585 signal(SIGQUIT, signal_handler);
1586 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1587 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001588 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589
Damien Miller95def091999-11-25 00:26:21 +11001590 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001591 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001592
Ben Lindstrom5b828322001-02-09 01:34:36 +00001593 if (compat20) {
1594 session_ident = ssh2_chan_id;
Damien Miller6c3eec72011-05-05 14:16:22 +10001595 if (session_ident != -1) {
1596 if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
1597 channel_register_filter(session_ident,
1598 client_simple_escape_filter, NULL,
1599 client_filter_cleanup,
1600 client_new_escape_filter_ctx(
1601 escape_char_arg));
1602 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001603 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001604 client_channel_closed, 0);
Damien Miller6c3eec72011-05-05 14:16:22 +10001605 }
Ben Lindstrom5b828322001-02-09 01:34:36 +00001606 } else {
1607 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001608 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001609 }
Damien Millerad833b32000-08-23 10:46:23 +10001610
Damien Miller95def091999-11-25 00:26:21 +11001611 /* Main loop of the client for the interactive session mode. */
1612 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001613
Damien Miller5428f641999-11-25 11:54:57 +11001614 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001615 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001616
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001617 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001618 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001619
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001620 if (ssh_packet_is_rekeying(active_state)) {
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001621 debug("rekeying in progress");
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001622 } else if (need_rekeying) {
1623 /* manual rekey request */
1624 debug("need rekeying");
1625 if ((r = kex_start_rekex(active_state)) != 0)
1626 fatal("%s: kex_start_rekex: %s", __func__,
1627 ssh_err(r));
1628 need_rekeying = 0;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001629 } else {
1630 /*
1631 * Make packets of buffered stdin data, and buffer
1632 * them for sending to the server.
1633 */
1634 if (!compat20)
1635 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001636
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001637 /*
1638 * Make packets from buffered channel data, and
1639 * enqueue them for sending to the server.
1640 */
1641 if (packet_not_very_much_data_to_write())
1642 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001643
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001644 /*
1645 * Check if the window size has changed, and buffer a
1646 * message about it to the server if so.
1647 */
1648 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001649
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001650 if (quit_pending)
1651 break;
1652 }
Damien Miller5428f641999-11-25 11:54:57 +11001653 /*
1654 * Wait until we have something to do (something becomes
1655 * available on one of the descriptors).
1656 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001657 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001658 client_wait_until_can_do_something(&readset, &writeset,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001659 &max_fd2, &nalloc, ssh_packet_is_rekeying(active_state));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001660
Damien Miller95def091999-11-25 00:26:21 +11001661 if (quit_pending)
1662 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001663
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001664 /* Do channel operations unless rekeying in progress. */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001665 if (!ssh_packet_is_rekeying(active_state))
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001666 channel_after_select(readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001667
Damien Miller1383bd82000-04-06 12:32:37 +10001668 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001669 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670
Damien Miller1383bd82000-04-06 12:32:37 +10001671 if (quit_pending)
1672 break;
1673
1674 if (!compat20) {
1675 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001676 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001677 /*
1678 * Process output to stdout and stderr. Output to
1679 * the connection is processed elsewhere (above).
1680 */
Damien Miller5e953212001-01-30 09:14:00 +11001681 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001682 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001683
Darren Tucker4d5cd332008-06-13 04:51:14 +10001684 /*
1685 * Send as much buffered packet data as possible to the
1686 * sender.
1687 */
Damien Miller5e953212001-01-30 09:14:00 +11001688 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001689 packet_write_poll();
Damien Millere11e1ea2010-08-03 16:04:46 +10001690
1691 /*
1692 * If we are a backgrounded control master, and the
1693 * timeout has expired without any active client
1694 * connections, then quit.
1695 */
1696 if (control_persist_exit_time > 0) {
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001697 if (monotime() >= control_persist_exit_time) {
Damien Millere11e1ea2010-08-03 16:04:46 +10001698 debug("ControlPersist timeout expired");
1699 break;
1700 }
1701 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001702 }
Darren Tuckera627d422013-06-02 07:31:17 +10001703 free(readset);
1704 free(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001705
Damien Miller95def091999-11-25 00:26:21 +11001706 /* Terminate the session. */
1707
1708 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001709 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001710
Darren Tuckerde0c0252009-07-06 07:17:35 +10001711 if (compat20) {
1712 packet_start(SSH2_MSG_DISCONNECT);
1713 packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
1714 packet_put_cstring("disconnected by user");
Damien Miller8ddc71c2010-03-22 05:54:02 +11001715 packet_put_cstring(""); /* language tag */
Darren Tuckerde0c0252009-07-06 07:17:35 +10001716 packet_send();
1717 packet_write_wait();
1718 }
Darren Tucker12b4a652009-06-21 18:14:48 +10001719
Ben Lindstrom601e4362001-06-21 03:19:23 +00001720 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001721
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001722 if (have_pty)
Damien Miller21771e22011-05-15 08:45:50 +10001723 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001724
1725 /* restore blocking io */
1726 if (!isatty(fileno(stdin)))
1727 unset_nonblock(fileno(stdin));
1728 if (!isatty(fileno(stdout)))
1729 unset_nonblock(fileno(stdout));
1730 if (!isatty(fileno(stderr)))
1731 unset_nonblock(fileno(stderr));
1732
Damien Millerd6965512003-12-17 16:31:53 +11001733 /*
1734 * If there was no shell or command requested, there will be no remote
1735 * exit status to be returned. In that case, clear error code if the
1736 * connection was deliberately terminated at this end.
1737 */
1738 if (no_shell_flag && received_signal == SIGTERM) {
1739 received_signal = 0;
1740 exit_status = 0;
1741 }
1742
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001743 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001744 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001745
1746 /*
1747 * In interactive mode (with pseudo tty) display a message indicating
1748 * that the connection has been closed.
1749 */
1750 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001751 snprintf(buf, sizeof buf,
1752 "Connection to %.64s closed.\r\n", host);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001753 buffer_append(&stderr_buffer, buf, strlen(buf));
1754 }
1755
Damien Miller95def091999-11-25 00:26:21 +11001756 /* Output any buffered data for stdout. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001757 if (buffer_len(&stdout_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001758 len = atomicio(vwrite, fileno(stdout),
1759 buffer_ptr(&stdout_buffer), buffer_len(&stdout_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001760 if (len < 0 || (u_int)len != buffer_len(&stdout_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001761 error("Write failed flushing stdout buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001762 else
1763 buffer_consume(&stdout_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001764 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001765
Damien Miller95def091999-11-25 00:26:21 +11001766 /* Output any buffered data for stderr. */
Damien Millercfd6e4f2011-01-16 23:18:33 +11001767 if (buffer_len(&stderr_buffer) > 0) {
Damien Miller4791f9d2011-01-16 23:16:53 +11001768 len = atomicio(vwrite, fileno(stderr),
1769 buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer));
Damien Millercfd6e4f2011-01-16 23:18:33 +11001770 if (len < 0 || (u_int)len != buffer_len(&stderr_buffer))
Damien Miller95def091999-11-25 00:26:21 +11001771 error("Write failed flushing stderr buffer.");
Damien Millercfd6e4f2011-01-16 23:18:33 +11001772 else
1773 buffer_consume(&stderr_buffer, len);
Damien Miller95def091999-11-25 00:26:21 +11001774 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001775
Damien Miller95def091999-11-25 00:26:21 +11001776 /* Clear and free any buffers. */
jsg@openbsd.org458abc22016-01-23 05:31:35 +00001777 explicit_bzero(buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11001778 buffer_free(&stdin_buffer);
1779 buffer_free(&stdout_buffer);
1780 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001781
Damien Miller95def091999-11-25 00:26:21 +11001782 /* Report bytes transferred, and transfer rates. */
1783 total_time = get_current_time() - start_time;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001784 packet_get_bytes(&ibytes, &obytes);
Damien Millerb61f3fc2008-07-11 17:36:48 +10001785 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
Damien Miller821de0a2011-01-11 17:20:29 +11001786 (unsigned long long)obytes, (unsigned long long)ibytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001787 if (total_time > 0)
Damien Millerb61f3fc2008-07-11 17:36:48 +10001788 verbose("Bytes per second: sent %.1f, received %.1f",
1789 obytes / total_time, ibytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001790 /* Return the exit status of the program. */
1791 debug("Exit status %d", exit_status);
1792 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001793}
Damien Millerb38eff82000-04-01 11:09:21 +10001794
1795/*********/
1796
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001797static int
Damien Miller630d6f42002-01-22 23:17:30 +11001798client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001799{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001800 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001801 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001802 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001803 buffer_append(&stdout_buffer, data, data_len);
Damien Millera5103f42014-02-04 11:20:14 +11001804 explicit_bzero(data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10001805 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001806 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001807}
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001808static int
Damien Miller630d6f42002-01-22 23:17:30 +11001809client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001810{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001811 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001812 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001813 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001814 buffer_append(&stderr_buffer, data, data_len);
Damien Millera5103f42014-02-04 11:20:14 +11001815 explicit_bzero(data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10001816 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001817 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001818}
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001819static int
Damien Miller630d6f42002-01-22 23:17:30 +11001820client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001821{
Damien Millerb38eff82000-04-01 11:09:21 +10001822 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001823 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001824 /* Acknowledge the exit. */
1825 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1826 packet_send();
1827 /*
1828 * Must wait for packet to be sent since we are
1829 * exiting the loop.
1830 */
1831 packet_write_wait();
1832 /* Flag that we want to exit. */
1833 quit_pending = 1;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001834 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001835}
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001836
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001837static int
Darren Tucker5dcdd212003-10-02 16:17:00 +10001838client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1839{
1840 Channel *c = NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001841 int r, remote_id, sock;
Darren Tucker5dcdd212003-10-02 16:17:00 +10001842
1843 /* Read the remote channel number from the message. */
1844 remote_id = packet_get_int();
1845 packet_check_eom();
1846
1847 /*
1848 * Get a connection to the local authentication agent (this may again
1849 * get forwarded).
1850 */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001851 if ((r = ssh_get_authentication_socket(&sock)) != 0 &&
1852 r != SSH_ERR_AGENT_NOT_PRESENT)
1853 debug("%s: ssh_get_authentication_socket: %s",
1854 __func__, ssh_err(r));
1855
Darren Tucker5dcdd212003-10-02 16:17:00 +10001856
1857 /*
1858 * If we could not connect the agent, send an error message back to
1859 * the server. This should never happen unless the agent dies,
1860 * because authentication forwarding is only enabled if we have an
1861 * agent.
1862 */
1863 if (sock >= 0) {
1864 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1865 -1, 0, 0, 0, "authentication agent connection", 1);
1866 c->remote_id = remote_id;
1867 c->force_drain = 1;
1868 }
1869 if (c == NULL) {
1870 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1871 packet_put_int(remote_id);
1872 } else {
1873 /* Send a confirmation to the remote host. */
1874 debug("Forwarding authentication connection.");
1875 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1876 packet_put_int(remote_id);
1877 packet_put_int(c->self);
1878 }
1879 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001880 return 0;
Darren Tucker5dcdd212003-10-02 16:17:00 +10001881}
Damien Millerb38eff82000-04-01 11:09:21 +10001882
Ben Lindstrombba81212001-06-25 05:01:22 +00001883static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001884client_request_forwarded_tcpip(const char *request_type, int rchan)
1885{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001886 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001887 char *listen_address, *originator_address;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001888 u_short listen_port, originator_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001889
1890 /* Get rest of the packet */
1891 listen_address = packet_get_string(NULL);
1892 listen_port = packet_get_int();
1893 originator_address = packet_get_string(NULL);
1894 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001895 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001896
Damien Miller7acefbb2014-07-18 14:11:24 +10001897 debug("%s: listen %s port %d, originator %s port %d", __func__,
1898 listen_address, listen_port, originator_address, originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001899
Damien Miller4b3ed642014-07-02 15:29:40 +10001900 c = channel_connect_by_listen_address(listen_address, listen_port,
Damien Millerbd740252008-05-19 15:37:09 +10001901 "forwarded-tcpip", originator_address);
1902
Darren Tuckera627d422013-06-02 07:31:17 +10001903 free(originator_address);
1904 free(listen_address);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001905 return c;
1906}
1907
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001908static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10001909client_request_forwarded_streamlocal(const char *request_type, int rchan)
1910{
1911 Channel *c = NULL;
1912 char *listen_path;
1913
1914 /* Get the remote path. */
1915 listen_path = packet_get_string(NULL);
1916 /* XXX: Skip reserved field for now. */
1917 if (packet_get_string_ptr(NULL) == NULL)
1918 fatal("%s: packet_get_string_ptr failed", __func__);
1919 packet_check_eom();
1920
1921 debug("%s: %s", __func__, listen_path);
1922
1923 c = channel_connect_by_listen_path(listen_path,
1924 "forwarded-streamlocal@openssh.com", "forwarded-streamlocal");
1925 free(listen_path);
1926 return c;
1927}
1928
1929static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001930client_request_x11(const char *request_type, int rchan)
1931{
1932 Channel *c = NULL;
1933 char *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001934 u_short originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001935 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001936
1937 if (!options.forward_x11) {
1938 error("Warning: ssh server tried X11 forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001939 error("Warning: this is probably a break-in attempt by a "
1940 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001941 return NULL;
1942 }
djm@openbsd.org1bf477d2015-07-01 02:26:31 +00001943 if (x11_refuse_time != 0 && (u_int)monotime() >= x11_refuse_time) {
Damien Miller1ab6a512010-06-26 10:02:24 +10001944 verbose("Rejected X11 connection after ForwardX11Timeout "
1945 "expired");
1946 return NULL;
1947 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001948 originator = packet_get_string(NULL);
1949 if (datafellows & SSH_BUG_X11FWD) {
1950 debug2("buggy server: x11 request w/o originator_port");
1951 originator_port = 0;
1952 } else {
1953 originator_port = packet_get_int();
1954 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001955 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001956 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001957 debug("client_request_x11: request from %s %d", originator,
1958 originator_port);
Darren Tuckera627d422013-06-02 07:31:17 +10001959 free(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001960 sock = x11_connect_display();
1961 if (sock < 0)
1962 return NULL;
1963 c = channel_new("x11",
1964 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001965 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001966 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001967 return c;
1968}
1969
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001970static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001971client_request_agent(const char *request_type, int rchan)
1972{
1973 Channel *c = NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001974 int r, sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001975
1976 if (!options.forward_agent) {
1977 error("Warning: ssh server tried agent forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001978 error("Warning: this is probably a break-in attempt by a "
1979 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001980 return NULL;
1981 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001982 if ((r = ssh_get_authentication_socket(&sock)) != 0) {
1983 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1984 debug("%s: ssh_get_authentication_socket: %s",
1985 __func__, ssh_err(r));
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001986 return NULL;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001987 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001988 c = channel_new("authentication agent connection",
1989 SSH_CHANNEL_OPEN, sock, sock, -1,
Darren Tucker5baa1702007-12-29 09:37:10 +11001990 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001991 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001992 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001993 return c;
1994}
1995
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001996int
1997client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1998{
1999 Channel *c;
2000 int fd;
2001
2002 if (tun_mode == SSH_TUNMODE_NO)
2003 return 0;
2004
2005 if (!compat20) {
Damien Millerb3f2c9f2009-01-28 16:15:30 +11002006 error("Tunnel forwarding is not supported for protocol 1");
Damien Millerb3ce9fe2007-08-08 14:32:41 +10002007 return -1;
2008 }
2009
2010 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
2011
2012 /* Open local tunnel device */
2013 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
2014 error("Tunnel device open failed.");
2015 return -1;
2016 }
2017
2018 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
2019 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
2020 c->datagram = 1;
2021
2022#if defined(SSH_TUN_FILTER)
2023 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
2024 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10002025 sys_tun_outfilter, NULL, NULL);
Damien Millerb3ce9fe2007-08-08 14:32:41 +10002026#endif
2027
2028 packet_start(SSH2_MSG_CHANNEL_OPEN);
2029 packet_put_cstring("tun@openssh.com");
2030 packet_put_int(c->self);
2031 packet_put_int(c->local_window_max);
2032 packet_put_int(c->local_maxpacket);
2033 packet_put_int(tun_mode);
2034 packet_put_int(remote_tun);
2035 packet_send();
2036
2037 return 0;
2038}
2039
Damien Millerbd483e72000-04-30 10:00:53 +10002040/* XXXX move to generic input handler */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002041static int
Damien Miller630d6f42002-01-22 23:17:30 +11002042client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002043{
2044 Channel *c = NULL;
2045 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10002046 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002047 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10002048
2049 ctype = packet_get_string(&len);
2050 rchan = packet_get_int();
2051 rwindow = packet_get_int();
2052 rmaxpack = packet_get_int();
2053
Damien Millere247cc42000-05-07 12:03:14 +10002054 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10002055 ctype, rchan, rwindow, rmaxpack);
2056
Damien Miller0bc1bd82000-11-13 22:57:25 +11002057 if (strcmp(ctype, "forwarded-tcpip") == 0) {
2058 c = client_request_forwarded_tcpip(ctype, rchan);
Damien Miller7acefbb2014-07-18 14:11:24 +10002059 } else if (strcmp(ctype, "forwarded-streamlocal@openssh.com") == 0) {
2060 c = client_request_forwarded_streamlocal(ctype, rchan);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002061 } else if (strcmp(ctype, "x11") == 0) {
2062 c = client_request_x11(ctype, rchan);
2063 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
2064 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10002065 }
2066/* XXX duplicate : */
2067 if (c != NULL) {
2068 debug("confirm %s", ctype);
2069 c->remote_id = rchan;
2070 c->remote_window = rwindow;
2071 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002072 if (c->type != SSH_CHANNEL_CONNECTING) {
2073 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
2074 packet_put_int(c->remote_id);
2075 packet_put_int(c->self);
2076 packet_put_int(c->local_window);
2077 packet_put_int(c->local_maxpacket);
2078 packet_send();
2079 }
Damien Millerbd483e72000-04-30 10:00:53 +10002080 } else {
2081 debug("failure %s", ctype);
2082 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
2083 packet_put_int(rchan);
2084 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00002085 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00002086 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00002087 packet_put_cstring("");
2088 }
Damien Millerbd483e72000-04-30 10:00:53 +10002089 packet_send();
2090 }
Darren Tuckera627d422013-06-02 07:31:17 +10002091 free(ctype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002092 return 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002093}
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002094
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002095static int
Damien Miller630d6f42002-01-22 23:17:30 +11002096client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00002097{
2098 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002099 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00002100 char *rtype;
2101
2102 id = packet_get_int();
2103 rtype = packet_get_string(NULL);
2104 reply = packet_get_char();
2105
2106 debug("client_input_channel_req: channel %d rtype %s reply %d",
2107 id, rtype, reply);
2108
Damien Miller3bbd8782004-06-18 22:23:22 +10002109 if (id == -1) {
2110 error("client_input_channel_req: request for channel -1");
2111 } else if ((c = channel_lookup(id)) == NULL) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10002112 error("client_input_channel_req: channel %d: "
2113 "unknown channel", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10002114 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
2115 packet_check_eom();
2116 chan_rcvd_eow(c);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002117 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10002118 exitval = packet_get_int();
Damien Millere1537f92010-01-26 13:26:22 +11002119 if (c->ctl_chan != -1) {
2120 mux_exit_message(c, exitval);
Damien Miller0e220db2004-06-15 10:34:08 +10002121 success = 1;
Darren Tucker29440822010-01-08 17:08:35 +11002122 } else if (id == session_ident) {
2123 /* Record exit value of local session */
2124 success = 1;
2125 exit_status = exitval;
2126 } else {
Damien Miller36f57eb2010-01-30 17:28:34 +11002127 /* Probably for a mux channel that has already closed */
2128 debug("%s: no sink for exit-status on channel %d",
2129 __func__, id);
Damien Miller0e220db2004-06-15 10:34:08 +10002130 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002131 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00002132 }
Damien Millerc5893782014-05-15 13:48:49 +10002133 if (reply && c != NULL && !(c->flags & CHAN_CLOSE_SENT)) {
Ben Lindstrom5b828322001-02-09 01:34:36 +00002134 packet_start(success ?
2135 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller8533c782008-12-08 09:54:40 +11002136 packet_put_int(c->remote_id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002137 packet_send();
2138 }
Darren Tuckera627d422013-06-02 07:31:17 +10002139 free(rtype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002140 return 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00002141}
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002142
djm@openbsd.org523463a2015-02-16 22:13:32 +00002143struct hostkeys_update_ctx {
2144 /* The hostname and (optionally) IP address string for the server */
2145 char *host_str, *ip_str;
2146
2147 /*
2148 * Keys received from the server and a flag for each indicating
2149 * whether they already exist in known_hosts.
2150 * keys_seen is filled in by hostkeys_find() and later (for new
2151 * keys) by client_global_hostkeys_private_confirm().
2152 */
2153 struct sshkey **keys;
2154 int *keys_seen;
2155 size_t nkeys;
2156
2157 size_t nnew;
2158
2159 /*
2160 * Keys that are in known_hosts, but were not present in the update
2161 * from the server (i.e. scheduled to be deleted).
2162 * Filled in by hostkeys_find().
2163 */
2164 struct sshkey **old_keys;
2165 size_t nold;
2166};
2167
2168static void
2169hostkeys_update_ctx_free(struct hostkeys_update_ctx *ctx)
2170{
2171 size_t i;
2172
2173 if (ctx == NULL)
2174 return;
2175 for (i = 0; i < ctx->nkeys; i++)
2176 sshkey_free(ctx->keys[i]);
2177 free(ctx->keys);
2178 free(ctx->keys_seen);
2179 for (i = 0; i < ctx->nold; i++)
2180 sshkey_free(ctx->old_keys[i]);
2181 free(ctx->old_keys);
2182 free(ctx->host_str);
2183 free(ctx->ip_str);
2184 free(ctx);
2185}
2186
2187static int
2188hostkeys_find(struct hostkey_foreach_line *l, void *_ctx)
2189{
2190 struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
2191 size_t i;
2192 struct sshkey **tmp;
2193
2194 if (l->status != HKF_STATUS_MATCHED || l->key == NULL ||
2195 l->key->type == KEY_RSA1)
2196 return 0;
2197
2198 /* Mark off keys we've already seen for this host */
2199 for (i = 0; i < ctx->nkeys; i++) {
2200 if (sshkey_equal(l->key, ctx->keys[i])) {
2201 debug3("%s: found %s key at %s:%ld", __func__,
2202 sshkey_ssh_name(ctx->keys[i]), l->path, l->linenum);
2203 ctx->keys_seen[i] = 1;
2204 return 0;
2205 }
2206 }
2207 /* This line contained a key that not offered by the server */
2208 debug3("%s: deprecated %s key at %s:%ld", __func__,
2209 sshkey_ssh_name(l->key), l->path, l->linenum);
2210 if ((tmp = reallocarray(ctx->old_keys, ctx->nold + 1,
2211 sizeof(*ctx->old_keys))) == NULL)
2212 fatal("%s: reallocarray failed nold = %zu",
2213 __func__, ctx->nold);
2214 ctx->old_keys = tmp;
2215 ctx->old_keys[ctx->nold++] = l->key;
2216 l->key = NULL;
2217
2218 return 0;
2219}
2220
2221static void
2222update_known_hosts(struct hostkeys_update_ctx *ctx)
2223{
djm@openbsd.orgf2293a62015-02-23 16:33:25 +00002224 int r, was_raw = 0;
2225 int loglevel = options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK ?
djm@openbsd.org523463a2015-02-16 22:13:32 +00002226 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_VERBOSE;
2227 char *fp, *response;
2228 size_t i;
2229
2230 for (i = 0; i < ctx->nkeys; i++) {
2231 if (ctx->keys_seen[i] != 2)
2232 continue;
2233 if ((fp = sshkey_fingerprint(ctx->keys[i],
2234 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
2235 fatal("%s: sshkey_fingerprint failed", __func__);
2236 do_log2(loglevel, "Learned new hostkey: %s %s",
2237 sshkey_type(ctx->keys[i]), fp);
2238 free(fp);
2239 }
2240 for (i = 0; i < ctx->nold; i++) {
2241 if ((fp = sshkey_fingerprint(ctx->old_keys[i],
2242 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
2243 fatal("%s: sshkey_fingerprint failed", __func__);
2244 do_log2(loglevel, "Deprecating obsolete hostkey: %s %s",
2245 sshkey_type(ctx->old_keys[i]), fp);
2246 free(fp);
2247 }
2248 if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
djm@openbsd.orgf2293a62015-02-23 16:33:25 +00002249 if (get_saved_tio() != NULL) {
2250 leave_raw_mode(1);
2251 was_raw = 1;
2252 }
djm@openbsd.org523463a2015-02-16 22:13:32 +00002253 response = NULL;
2254 for (i = 0; !quit_pending && i < 3; i++) {
2255 free(response);
2256 response = read_passphrase("Accept updated hostkeys? "
2257 "(yes/no): ", RP_ECHO);
2258 if (strcasecmp(response, "yes") == 0)
2259 break;
2260 else if (quit_pending || response == NULL ||
2261 strcasecmp(response, "no") == 0) {
2262 options.update_hostkeys = 0;
2263 break;
2264 } else {
2265 do_log2(loglevel, "Please enter "
2266 "\"yes\" or \"no\"");
2267 }
2268 }
2269 if (quit_pending || i >= 3 || response == NULL)
2270 options.update_hostkeys = 0;
2271 free(response);
djm@openbsd.orgf2293a62015-02-23 16:33:25 +00002272 if (was_raw)
2273 enter_raw_mode(1);
djm@openbsd.org523463a2015-02-16 22:13:32 +00002274 }
2275
2276 /*
2277 * Now that all the keys are verified, we can go ahead and replace
2278 * them in known_hosts (assuming SSH_UPDATE_HOSTKEYS_ASK didn't
2279 * cancel the operation).
2280 */
2281 if (options.update_hostkeys != 0 &&
2282 (r = hostfile_replace_entries(options.user_hostfiles[0],
2283 ctx->host_str, ctx->ip_str, ctx->keys, ctx->nkeys,
2284 options.hash_known_hosts, 0,
2285 options.fingerprint_hash)) != 0)
2286 error("%s: hostfile_replace_entries failed: %s",
2287 __func__, ssh_err(r));
2288}
2289
2290static void
2291client_global_hostkeys_private_confirm(int type, u_int32_t seq, void *_ctx)
2292{
2293 struct ssh *ssh = active_state; /* XXX */
2294 struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
2295 size_t i, ndone;
2296 struct sshbuf *signdata;
2297 int r;
2298 const u_char *sig;
2299 size_t siglen;
2300
2301 if (ctx->nnew == 0)
2302 fatal("%s: ctx->nnew == 0", __func__); /* sanity */
2303 if (type != SSH2_MSG_REQUEST_SUCCESS) {
2304 error("Server failed to confirm ownership of "
2305 "private host keys");
2306 hostkeys_update_ctx_free(ctx);
2307 return;
2308 }
2309 if ((signdata = sshbuf_new()) == NULL)
2310 fatal("%s: sshbuf_new failed", __func__);
2311 /* Don't want to accidentally accept an unbound signature */
2312 if (ssh->kex->session_id_len == 0)
2313 fatal("%s: ssh->kex->session_id_len == 0", __func__);
2314 /*
2315 * Expect a signature for each of the ctx->nnew private keys we
2316 * haven't seen before. They will be in the same order as the
2317 * ctx->keys where the corresponding ctx->keys_seen[i] == 0.
2318 */
2319 for (ndone = i = 0; i < ctx->nkeys; i++) {
2320 if (ctx->keys_seen[i])
2321 continue;
2322 /* Prepare data to be signed: session ID, unique string, key */
2323 sshbuf_reset(signdata);
djm@openbsd.org44732de2015-02-20 22:17:21 +00002324 if ( (r = sshbuf_put_cstring(signdata,
2325 "hostkeys-prove-00@openssh.com")) != 0 ||
2326 (r = sshbuf_put_string(signdata, ssh->kex->session_id,
djm@openbsd.org523463a2015-02-16 22:13:32 +00002327 ssh->kex->session_id_len)) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +00002328 (r = sshkey_puts(ctx->keys[i], signdata)) != 0)
2329 fatal("%s: failed to prepare signature: %s",
2330 __func__, ssh_err(r));
2331 /* Extract and verify signature */
2332 if ((r = sshpkt_get_string_direct(ssh, &sig, &siglen)) != 0) {
2333 error("%s: couldn't parse message: %s",
2334 __func__, ssh_err(r));
2335 goto out;
2336 }
2337 if ((r = sshkey_verify(ctx->keys[i], sig, siglen,
2338 sshbuf_ptr(signdata), sshbuf_len(signdata), 0)) != 0) {
2339 error("%s: server gave bad signature for %s key %zu",
2340 __func__, sshkey_type(ctx->keys[i]), i);
2341 goto out;
2342 }
2343 /* Key is good. Mark it as 'seen' */
2344 ctx->keys_seen[i] = 2;
2345 ndone++;
2346 }
2347 if (ndone != ctx->nnew)
2348 fatal("%s: ndone != ctx->nnew (%zu / %zu)", __func__,
2349 ndone, ctx->nnew); /* Shouldn't happen */
2350 ssh_packet_check_eom(ssh);
2351
2352 /* Make the edits to known_hosts */
2353 update_known_hosts(ctx);
2354 out:
2355 hostkeys_update_ctx_free(ctx);
2356}
2357
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002358/*
djm@openbsd.org44732de2015-02-20 22:17:21 +00002359 * Handle hostkeys-00@openssh.com global request to inform the client of all
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002360 * the server's hostkeys. The keys are checked against the user's
2361 * HostkeyAlgorithms preference before they are accepted.
2362 */
2363static int
2364client_input_hostkeys(void)
2365{
djm@openbsd.org523463a2015-02-16 22:13:32 +00002366 struct ssh *ssh = active_state; /* XXX */
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002367 const u_char *blob = NULL;
djm@openbsd.org523463a2015-02-16 22:13:32 +00002368 size_t i, len = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002369 struct sshbuf *buf = NULL;
djm@openbsd.org523463a2015-02-16 22:13:32 +00002370 struct sshkey *key = NULL, **tmp;
2371 int r;
2372 char *fp;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002373 static int hostkeys_seen = 0; /* XXX use struct ssh */
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00002374 extern struct sockaddr_storage hostaddr; /* XXX from ssh.c */
djm@openbsd.orga63cfa22015-02-25 19:54:02 +00002375 struct hostkeys_update_ctx *ctx = NULL;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002376
2377 if (hostkeys_seen)
2378 fatal("%s: server already sent hostkeys", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +00002379 if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK &&
2380 options.batch_mode)
2381 return 1; /* won't ask in batchmode, so don't even try */
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002382 if (!options.update_hostkeys || options.num_user_hostfiles <= 0)
2383 return 1;
djm@openbsd.orga63cfa22015-02-25 19:54:02 +00002384
2385 ctx = xcalloc(1, sizeof(*ctx));
djm@openbsd.org523463a2015-02-16 22:13:32 +00002386 while (ssh_packet_remaining(ssh) > 0) {
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002387 sshkey_free(key);
2388 key = NULL;
djm@openbsd.org523463a2015-02-16 22:13:32 +00002389 if ((r = sshpkt_get_string_direct(ssh, &blob, &len)) != 0) {
2390 error("%s: couldn't parse message: %s",
2391 __func__, ssh_err(r));
2392 goto out;
2393 }
djm@openbsd.org44732de2015-02-20 22:17:21 +00002394 if ((r = sshkey_from_blob(blob, len, &key)) != 0) {
2395 error("%s: parse key: %s", __func__, ssh_err(r));
2396 goto out;
2397 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002398 fp = sshkey_fingerprint(key, options.fingerprint_hash,
2399 SSH_FP_DEFAULT);
2400 debug3("%s: received %s key %s", __func__,
2401 sshkey_type(key), fp);
2402 free(fp);
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00002403
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002404 /* Check that the key is accepted in HostkeyAlgorithms */
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00002405 if (match_pattern_list(sshkey_ssh_name(key),
2406 options.hostkeyalgorithms ? options.hostkeyalgorithms :
2407 KEX_DEFAULT_PK_ALG, 0) != 1) {
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002408 debug3("%s: %s key not permitted by HostkeyAlgorithms",
2409 __func__, sshkey_ssh_name(key));
2410 continue;
2411 }
djm@openbsd.org523463a2015-02-16 22:13:32 +00002412 /* Skip certs */
2413 if (sshkey_is_cert(key)) {
2414 debug3("%s: %s key is a certificate; skipping",
2415 __func__, sshkey_ssh_name(key));
2416 continue;
2417 }
2418 /* Ensure keys are unique */
2419 for (i = 0; i < ctx->nkeys; i++) {
2420 if (sshkey_equal(key, ctx->keys[i])) {
2421 error("%s: received duplicated %s host key",
2422 __func__, sshkey_ssh_name(key));
2423 goto out;
2424 }
2425 }
2426 /* Key is good, record it */
2427 if ((tmp = reallocarray(ctx->keys, ctx->nkeys + 1,
2428 sizeof(*ctx->keys))) == NULL)
2429 fatal("%s: reallocarray failed nkeys = %zu",
2430 __func__, ctx->nkeys);
2431 ctx->keys = tmp;
2432 ctx->keys[ctx->nkeys++] = key;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002433 key = NULL;
2434 }
2435
djm@openbsd.org523463a2015-02-16 22:13:32 +00002436 if (ctx->nkeys == 0) {
djm@openbsd.org44732de2015-02-20 22:17:21 +00002437 debug("%s: server sent no hostkeys", __func__);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002438 goto out;
2439 }
djm@openbsd.org44732de2015-02-20 22:17:21 +00002440
djm@openbsd.org523463a2015-02-16 22:13:32 +00002441 if ((ctx->keys_seen = calloc(ctx->nkeys,
2442 sizeof(*ctx->keys_seen))) == NULL)
2443 fatal("%s: calloc failed", __func__);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002444
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00002445 get_hostfile_hostname_ipaddr(host,
2446 options.check_host_ip ? (struct sockaddr *)&hostaddr : NULL,
djm@openbsd.org523463a2015-02-16 22:13:32 +00002447 options.port, &ctx->host_str,
2448 options.check_host_ip ? &ctx->ip_str : NULL);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002449
djm@openbsd.org523463a2015-02-16 22:13:32 +00002450 /* Find which keys we already know about. */
2451 if ((r = hostkeys_foreach(options.user_hostfiles[0], hostkeys_find,
2452 ctx, ctx->host_str, ctx->ip_str,
2453 HKF_WANT_PARSE_KEY|HKF_WANT_MATCH)) != 0) {
2454 error("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002455 goto out;
2456 }
2457
djm@openbsd.org523463a2015-02-16 22:13:32 +00002458 /* Figure out if we have any new keys to add */
2459 ctx->nnew = 0;
2460 for (i = 0; i < ctx->nkeys; i++) {
2461 if (!ctx->keys_seen[i])
2462 ctx->nnew++;
2463 }
2464
2465 debug3("%s: %zu keys from server: %zu new, %zu retained. %zu to remove",
2466 __func__, ctx->nkeys, ctx->nnew, ctx->nkeys - ctx->nnew, ctx->nold);
2467
2468 if (ctx->nnew == 0 && ctx->nold != 0) {
2469 /* We have some keys to remove. Just do it. */
2470 update_known_hosts(ctx);
2471 } else if (ctx->nnew != 0) {
2472 /*
2473 * We have received hitherto-unseen keys from the server.
2474 * Ask the server to confirm ownership of the private halves.
2475 */
2476 debug3("%s: asking server to prove ownership for %zu keys",
2477 __func__, ctx->nnew);
2478 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
2479 (r = sshpkt_put_cstring(ssh,
djm@openbsd.org44732de2015-02-20 22:17:21 +00002480 "hostkeys-prove-00@openssh.com")) != 0 ||
djm@openbsd.org523463a2015-02-16 22:13:32 +00002481 (r = sshpkt_put_u8(ssh, 1)) != 0) /* bool: want reply */
2482 fatal("%s: cannot prepare packet: %s",
2483 __func__, ssh_err(r));
2484 if ((buf = sshbuf_new()) == NULL)
2485 fatal("%s: sshbuf_new", __func__);
2486 for (i = 0; i < ctx->nkeys; i++) {
2487 if (ctx->keys_seen[i])
2488 continue;
2489 sshbuf_reset(buf);
2490 if ((r = sshkey_putb(ctx->keys[i], buf)) != 0)
2491 fatal("%s: sshkey_putb: %s",
2492 __func__, ssh_err(r));
2493 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
2494 fatal("%s: sshpkt_put_string: %s",
2495 __func__, ssh_err(r));
2496 }
2497 if ((r = sshpkt_send(ssh)) != 0)
2498 fatal("%s: sshpkt_send: %s", __func__, ssh_err(r));
2499 client_register_global_confirm(
2500 client_global_hostkeys_private_confirm, ctx);
2501 ctx = NULL; /* will be freed in callback */
2502 }
2503
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002504 /* Success */
2505 out:
djm@openbsd.org523463a2015-02-16 22:13:32 +00002506 hostkeys_update_ctx_free(ctx);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002507 sshkey_free(key);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002508 sshbuf_free(buf);
djm@openbsd.org523463a2015-02-16 22:13:32 +00002509 /*
2510 * NB. Return success for all cases. The server doesn't need to know
2511 * what the client does with its hosts file.
2512 */
2513 return 1;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002514}
2515
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002516static int
Damien Millerc3fa4072002-01-22 23:21:58 +11002517client_input_global_request(int type, u_int32_t seq, void *ctxt)
2518{
2519 char *rtype;
2520 int want_reply;
2521 int success = 0;
2522
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002523 rtype = packet_get_cstring(NULL);
Damien Millerc3fa4072002-01-22 23:21:58 +11002524 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11002525 debug("client_input_global_request: rtype %s want_reply %d",
2526 rtype, want_reply);
djm@openbsd.org44732de2015-02-20 22:17:21 +00002527 if (strcmp(rtype, "hostkeys-00@openssh.com") == 0)
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002528 success = client_input_hostkeys();
Damien Millerc3fa4072002-01-22 23:21:58 +11002529 if (want_reply) {
2530 packet_start(success ?
2531 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
2532 packet_send();
2533 packet_write_wait();
2534 }
Darren Tuckera627d422013-06-02 07:31:17 +10002535 free(rtype);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002536 return 0;
Damien Millerc3fa4072002-01-22 23:21:58 +11002537}
Damien Millerbd483e72000-04-30 10:00:53 +10002538
Damien Miller0e220db2004-06-15 10:34:08 +10002539void
Darren Tuckerfc959702004-07-17 16:12:08 +10002540client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller5771ed72008-05-19 15:35:33 +10002541 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
Damien Miller0e220db2004-06-15 10:34:08 +10002542{
2543 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11002544 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10002545
2546 debug2("%s: id %d", __func__, id);
2547
Darren Tucker5d78de62004-11-05 20:35:44 +11002548 if ((c = channel_lookup(id)) == NULL)
2549 fatal("client_session2_setup: channel %d: unknown channel", id);
2550
Damien Miller0dac6fb2010-11-20 15:19:38 +11002551 packet_set_interactive(want_tty,
2552 options.ip_qos_interactive, options.ip_qos_bulk);
2553
Damien Miller0e220db2004-06-15 10:34:08 +10002554 if (want_tty) {
2555 struct winsize ws;
Damien Miller0e220db2004-06-15 10:34:08 +10002556
2557 /* Store window size in the packet. */
2558 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
2559 memset(&ws, 0, sizeof(ws));
2560
Damien Miller5771ed72008-05-19 15:35:33 +10002561 channel_request_start(id, "pty-req", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002562 client_expect_confirm(id, "PTY allocation", CONFIRM_TTY);
Damien Miller0e220db2004-06-15 10:34:08 +10002563 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11002564 packet_put_int((u_int)ws.ws_col);
2565 packet_put_int((u_int)ws.ws_row);
2566 packet_put_int((u_int)ws.ws_xpixel);
2567 packet_put_int((u_int)ws.ws_ypixel);
Darren Tuckerdf189fb2008-06-08 12:55:32 +10002568 if (tiop == NULL)
2569 tiop = get_saved_tio();
2570 tty_make_modes(-1, tiop);
Damien Miller0e220db2004-06-15 10:34:08 +10002571 packet_send();
2572 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11002573 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10002574 }
2575
2576 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10002577 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10002578 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10002579 char *name, *val;
2580
2581 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10002582 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10002583 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10002584 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10002585 if ((val = strchr(name, '=')) == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002586 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002587 continue;
2588 }
2589 *val++ = '\0';
2590
2591 matched = 0;
2592 for (j = 0; j < options.num_send_env; j++) {
2593 if (match_pattern(name, options.send_env[j])) {
2594 matched = 1;
2595 break;
2596 }
2597 }
2598 if (!matched) {
2599 debug3("Ignored env %s", name);
Darren Tuckera627d422013-06-02 07:31:17 +10002600 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002601 continue;
2602 }
2603
2604 debug("Sending env %s = %s", name, val);
2605 channel_request_start(id, "env", 0);
2606 packet_put_cstring(name);
2607 packet_put_cstring(val);
2608 packet_send();
Darren Tuckera627d422013-06-02 07:31:17 +10002609 free(name);
Damien Miller0e220db2004-06-15 10:34:08 +10002610 }
2611 }
2612
2613 len = buffer_len(cmd);
2614 if (len > 0) {
2615 if (len > 900)
2616 len = 900;
2617 if (want_subsystem) {
Damien Miller5771ed72008-05-19 15:35:33 +10002618 debug("Sending subsystem: %.*s",
2619 len, (u_char*)buffer_ptr(cmd));
2620 channel_request_start(id, "subsystem", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002621 client_expect_confirm(id, "subsystem", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002622 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002623 debug("Sending command: %.*s",
2624 len, (u_char*)buffer_ptr(cmd));
2625 channel_request_start(id, "exec", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002626 client_expect_confirm(id, "exec", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002627 }
2628 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
2629 packet_send();
2630 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10002631 channel_request_start(id, "shell", 1);
Damien Miller555f3b82011-05-15 08:48:05 +10002632 client_expect_confirm(id, "shell", CONFIRM_CLOSE);
Damien Miller0e220db2004-06-15 10:34:08 +10002633 packet_send();
2634 }
2635}
2636
Ben Lindstrombba81212001-06-25 05:01:22 +00002637static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002638client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10002639{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002640 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10002641
Damien Miller1383bd82000-04-06 12:32:37 +10002642 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
2643 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
2644 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
2645 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10002646 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10002647 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2648 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00002649 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10002650 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerb84886b2008-05-19 15:05:07 +10002651 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
2652 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
Damien Millerc3fa4072002-01-22 23:21:58 +11002653 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002654
2655 /* rekeying */
2656 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10002657
2658 /* global request reply messages */
2659 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
2660 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10002661}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002662
Ben Lindstrombba81212001-06-25 05:01:22 +00002663static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002664client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002665{
2666 dispatch_init(NULL);
2667 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2668 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2669 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002670 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2671 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2672 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002673 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2674 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2675 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002676
2677 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002678 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002679 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2680 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002681}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002682
Ben Lindstrombba81212001-06-25 05:01:22 +00002683static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002684client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002685{
2686 client_init_dispatch_13();
2687 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2688 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2689}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002690
Ben Lindstromdb47f382001-07-04 05:10:27 +00002691static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002692client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002693{
Damien Miller1383bd82000-04-06 12:32:37 +10002694 if (compat20)
2695 client_init_dispatch_20();
2696 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002697 client_init_dispatch_13();
2698 else
2699 client_init_dispatch_15();
2700}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002701
Damien Miller6c3eec72011-05-05 14:16:22 +10002702void
2703client_stop_mux(void)
2704{
2705 if (options.control_path != NULL && muxserver_sock != -1)
2706 unlink(options.control_path);
2707 /*
Darren Tucker48bf4b02012-09-07 16:38:53 +10002708 * If we are in persist mode, or don't have a shell, signal that we
2709 * should close when all active channels are closed.
Damien Miller6c3eec72011-05-05 14:16:22 +10002710 */
Darren Tucker48bf4b02012-09-07 16:38:53 +10002711 if (options.control_persist || no_shell_flag) {
Damien Miller6c3eec72011-05-05 14:16:22 +10002712 session_closed = 1;
Damien Miller4ac99c32011-06-20 14:43:31 +10002713 setproctitle("[stopped mux]");
2714 }
Damien Miller6c3eec72011-05-05 14:16:22 +10002715}
2716
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002717/* client specific fatal cleanup */
2718void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002719cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002720{
Damien Miller21771e22011-05-15 08:45:50 +10002721 leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002722 leave_non_blocking();
Damien Millerb1cbfa22008-05-19 16:00:08 +10002723 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10002724 unlink(options.control_path);
Damien Millera41ccca2010-10-07 22:07:32 +11002725 ssh_kill_proxy_command();
Darren Tucker3e33cec2003-10-02 16:12:36 +10002726 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002727}