blob: 1b5badb7163d524a18545b8248a00246d68b3991 [file] [log] [blame]
Damien Miller3dc71ad2009-01-28 16:31:22 +11001/* $OpenBSD: clientloop.c,v 1.208 2009/01/22 10:02:34 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * The main loop for the interactive session (client side).
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
15 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 *
Damien Miller1383bd82000-04-06 12:32:37 +100038 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000039 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110040 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110060 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
62#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110063
Damien Millerf17883e2006-03-15 11:45:54 +110064#include <sys/types.h>
Damien Miller9aec9192006-08-05 10:57:45 +100065#include <sys/ioctl.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100066#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110067#ifdef HAVE_SYS_STAT_H
68# include <sys/stat.h>
69#endif
Damien Miller9aec9192006-08-05 10:57:45 +100070#ifdef HAVE_SYS_TIME_H
71# include <sys/time.h>
72#endif
Damien Millere3b60b52006-07-10 21:08:03 +100073#include <sys/socket.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110074
Damien Millerc7b06362006-03-15 11:53:45 +110075#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100076#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110077#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110078#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110079#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110080#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100081#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100082#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100083#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100084#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110085#include <termios.h>
Damien Millerd7834352006-08-05 12:39:39 +100086#include <pwd.h>
Damien Millere6b3b612006-07-24 14:01:23 +100087#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Millerb84886b2008-05-19 15:05:07 +100089#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100090#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092#include "ssh1.h"
93#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094#include "packet.h"
95#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100096#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000097#include "channels.h"
Damien Millerb38eff82000-04-01 11:09:21 +100098#include "dispatch.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110099#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +1000100#include "cipher.h"
Ben Lindstromf28f6342001-04-04 02:03:04 +0000101#include "kex.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000102#include "log.h"
103#include "readconf.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000104#include "clientloop.h"
Damien Milleraeb31d62005-12-13 19:29:36 +1100105#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000106#include "authfd.h"
107#include "atomicio.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000108#include "sshpty.h"
Ben Lindstrom302ea6f2001-04-16 02:01:25 +0000109#include "misc.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000110#include "match.h"
111#include "msg.h"
Damien Miller69b69aa2000-10-28 14:19:58 +1100112
113/* import options */
114extern Options options;
115
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116/* Flag indicating that stdin should be redirected from /dev/null. */
117extern int stdin_null_flag;
118
Damien Millerd6965512003-12-17 16:31:53 +1100119/* Flag indicating that no shell has been requested */
120extern int no_shell_flag;
121
Damien Miller0e220db2004-06-15 10:34:08 +1000122/* Control socket */
Damien Millerb1cbfa22008-05-19 16:00:08 +1000123extern int muxserver_sock;
Damien Miller0e220db2004-06-15 10:34:08 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Name of the host we are connecting to. This is the name given on the
127 * command line, or the HostName specified for the user-supplied name in a
128 * configuration file.
129 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130extern char *host;
131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag to indicate that we have received a window change signal which has
134 * not yet been processed. This will cause a message indicating the new
135 * window size to be sent to the server a little later. This is volatile
136 * because this is updated in a signal handler.
137 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000138static volatile sig_atomic_t received_window_change_signal = 0;
139static volatile sig_atomic_t received_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller788f2122005-11-05 15:14:59 +1100141/* Flag indicating whether the user's terminal is in non-blocking mode. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142static int in_non_blocking_mode = 0;
143
144/* Common data for the client loop code. */
Damien Miller97c91f62006-04-23 12:08:37 +1000145static volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000146static int escape_char1; /* Escape character. (proto1 only) */
147static int escape_pending1; /* Last character was an escape (proto1 only) */
Damien Miller95def091999-11-25 00:26:21 +1100148static int last_was_cr; /* Last character was a newline. */
Darren Tucker4d5cd332008-06-13 04:51:14 +1000149static int exit_status; /* Used to store the command exit status. */
150static int stdin_eof; /* EOF has been encountered on stderr. */
Damien Miller95def091999-11-25 00:26:21 +1100151static Buffer stdin_buffer; /* Buffer for stdin data. */
152static Buffer stdout_buffer; /* Buffer for stdout data. */
153static Buffer stderr_buffer; /* Buffer for stderr data. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000154static u_int buffer_high;/* Soft max buffer size. */
Damien Miller95def091999-11-25 00:26:21 +1100155static int connection_in; /* Connection to server (input). */
156static int connection_out; /* Connection to server (output). */
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000157static int need_rekeying; /* Set to non-zero if rekeying is requested. */
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +0000158static int session_closed = 0; /* In SSH2: login session closed. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Ben Lindstrombba81212001-06-25 05:01:22 +0000160static void client_init_dispatch(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000161int session_ident = -1;
162
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000163/* Track escape per proto2 channel */
164struct escape_filter_ctx {
165 int escape_pending;
166 int escape_char;
167};
168
169/* Context for channel confirmation replies */
Damien Miller5771ed72008-05-19 15:35:33 +1000170struct channel_reply_ctx {
171 const char *request_type;
172 int id, do_close;
173};
174
Darren Tucker9f407c42008-06-13 04:50:27 +1000175/* Global request success/failure callbacks */
176struct global_confirm {
177 TAILQ_ENTRY(global_confirm) entry;
178 global_confirm_cb *cb;
179 void *ctx;
180 int ref_count;
181};
182TAILQ_HEAD(global_confirms, global_confirm);
183static struct global_confirms global_confirms =
184 TAILQ_HEAD_INITIALIZER(global_confirms);
185
Ben Lindstromf28f6342001-04-04 02:03:04 +0000186/*XXX*/
187extern Kex *xxx_kex;
188
Damien Miller0e220db2004-06-15 10:34:08 +1000189void ssh_process_session2_setup(int, int, int, Buffer *);
190
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191/* Restores stdin to blocking mode. */
192
Ben Lindstrombba81212001-06-25 05:01:22 +0000193static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000194leave_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195{
Damien Miller95def091999-11-25 00:26:21 +1100196 if (in_non_blocking_mode) {
Damien Miller03e66f62004-06-15 15:47:51 +1000197 unset_nonblock(fileno(stdin));
Damien Miller95def091999-11-25 00:26:21 +1100198 in_non_blocking_mode = 0;
Damien Miller95def091999-11-25 00:26:21 +1100199 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200}
201
Damien Miller95def091999-11-25 00:26:21 +1100202/* Puts stdin terminal in non-blocking mode. */
203
Ben Lindstrombba81212001-06-25 05:01:22 +0000204static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000205enter_non_blocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206{
Damien Miller95def091999-11-25 00:26:21 +1100207 in_non_blocking_mode = 1;
Damien Miller232711f2004-06-15 10:35:30 +1000208 set_nonblock(fileno(stdin));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller5428f641999-11-25 11:54:57 +1100211/*
212 * Signal handler for the window change signal (SIGWINCH). This just sets a
213 * flag indicating that the window has changed.
214 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100215/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000216static void
Damien Miller95def091999-11-25 00:26:21 +1100217window_change_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218{
Damien Miller95def091999-11-25 00:26:21 +1100219 received_window_change_signal = 1;
220 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221}
222
Damien Miller5428f641999-11-25 11:54:57 +1100223/*
224 * Signal handler for signals that cause the program to terminate. These
225 * signals must be trapped to restore terminal modes.
226 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100227/*ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000228static void
Damien Miller95def091999-11-25 00:26:21 +1100229signal_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000231 received_signal = sig;
232 quit_pending = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233}
234
Damien Miller5428f641999-11-25 11:54:57 +1100235/*
236 * Returns current time in seconds from Jan 1, 1970 with the maximum
237 * available resolution.
238 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static double
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000241get_current_time(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242{
Damien Miller95def091999-11-25 00:26:21 +1100243 struct timeval tv;
244 gettimeofday(&tv, NULL);
245 return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
Damien Miller17e7ed02005-06-17 12:54:33 +1000248#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
249void
250client_x11_get_proto(const char *display, const char *xauth_path,
251 u_int trusted, char **_proto, char **_data)
252{
253 char cmd[1024];
254 char line[512];
255 char xdisplay[512];
256 static char proto[512], data[512];
257 FILE *f;
258 int got_data = 0, generated = 0, do_unlink = 0, i;
259 char *xauthdir, *xauthfile;
260 struct stat st;
261
262 xauthdir = xauthfile = NULL;
263 *_proto = proto;
264 *_data = data;
265 proto[0] = data[0] = '\0';
266
267 if (xauth_path == NULL ||(stat(xauth_path, &st) == -1)) {
268 debug("No xauth program.");
269 } else {
270 if (display == NULL) {
271 debug("x11_get_proto: DISPLAY not set");
272 return;
273 }
274 /*
275 * Handle FamilyLocal case where $DISPLAY does
276 * not match an authorization entry. For this we
277 * just try "xauth list unix:displaynum.screennum".
278 * XXX: "localhost" match to determine FamilyLocal
279 * is not perfect.
280 */
281 if (strncmp(display, "localhost:", 10) == 0) {
282 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
283 display + 10);
284 display = xdisplay;
285 }
286 if (trusted == 0) {
287 xauthdir = xmalloc(MAXPATHLEN);
288 xauthfile = xmalloc(MAXPATHLEN);
289 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
290 if (mkdtemp(xauthdir) != NULL) {
291 do_unlink = 1;
292 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
293 xauthdir);
294 snprintf(cmd, sizeof(cmd),
295 "%s -f %s generate %s " SSH_X11_PROTO
296 " untrusted timeout 1200 2>" _PATH_DEVNULL,
297 xauth_path, xauthfile, display);
298 debug2("x11_get_proto: %s", cmd);
299 if (system(cmd) == 0)
300 generated = 1;
301 }
302 }
Darren Tucker513d13a2007-08-15 19:13:41 +1000303
304 /*
305 * When in untrusted mode, we read the cookie only if it was
306 * successfully generated as an untrusted one in the step
307 * above.
308 */
309 if (trusted || generated) {
310 snprintf(cmd, sizeof(cmd),
311 "%s %s%s list %s 2>" _PATH_DEVNULL,
312 xauth_path,
313 generated ? "-f " : "" ,
314 generated ? xauthfile : "",
315 display);
316 debug2("x11_get_proto: %s", cmd);
317 f = popen(cmd, "r");
318 if (f && fgets(line, sizeof(line), f) &&
319 sscanf(line, "%*s %511s %511s", proto, data) == 2)
320 got_data = 1;
321 if (f)
322 pclose(f);
323 } else
324 error("Warning: untrusted X11 forwarding setup failed: "
325 "xauth key data not generated");
Damien Miller17e7ed02005-06-17 12:54:33 +1000326 }
327
328 if (do_unlink) {
329 unlink(xauthfile);
330 rmdir(xauthdir);
331 }
332 if (xauthdir)
333 xfree(xauthdir);
334 if (xauthfile)
335 xfree(xauthfile);
336
337 /*
338 * If we didn't get authentication data, just make up some
339 * data. The forwarding code will check the validity of the
340 * response anyway, and substitute this data. The X11
341 * server, however, will ignore this fake data and use
342 * whatever authentication mechanisms it was using otherwise
343 * for the local connection.
344 */
345 if (!got_data) {
346 u_int32_t rnd = 0;
347
348 logit("Warning: No xauth data; "
349 "using fake authentication data for X11 forwarding.");
350 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
351 for (i = 0; i < 16; i++) {
352 if (i % 4 == 0)
353 rnd = arc4random();
354 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
355 rnd & 0xff);
356 rnd >>= 8;
357 }
358 }
359}
360
Damien Miller5428f641999-11-25 11:54:57 +1100361/*
362 * This is called when the interactive is entered. This checks if there is
363 * an EOF coming on stdin. We must check this explicitly, as select() does
364 * not appear to wake up when redirecting from /dev/null.
365 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
Ben Lindstrombba81212001-06-25 05:01:22 +0000367static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000368client_check_initial_eof_on_stdin(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369{
Damien Miller95def091999-11-25 00:26:21 +1100370 int len;
371 char buf[1];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Damien Miller5428f641999-11-25 11:54:57 +1100373 /*
374 * If standard input is to be "redirected from /dev/null", we simply
375 * mark that we have seen an EOF and send an EOF message to the
376 * server. Otherwise, we try to read a single character; it appears
377 * that for some files, such /dev/null, select() never wakes up for
378 * read for this descriptor, which means that we never get EOF. This
379 * way we will get the EOF if stdin comes from /dev/null or similar.
380 */
Damien Miller95def091999-11-25 00:26:21 +1100381 if (stdin_null_flag) {
382 /* Fake EOF on stdin. */
383 debug("Sending eof.");
384 stdin_eof = 1;
385 packet_start(SSH_CMSG_EOF);
386 packet_send();
387 } else {
Damien Miller95def091999-11-25 00:26:21 +1100388 enter_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389
Damien Miller95def091999-11-25 00:26:21 +1100390 /* Check for immediate EOF on stdin. */
391 len = read(fileno(stdin), buf, 1);
392 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000393 /*
394 * EOF. Record that we have seen it and send
395 * EOF to server.
396 */
Damien Miller95def091999-11-25 00:26:21 +1100397 debug("Sending eof.");
398 stdin_eof = 1;
399 packet_start(SSH_CMSG_EOF);
400 packet_send();
401 } else if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100402 /*
403 * Got data. We must store the data in the buffer,
404 * and also process it as an escape character if
405 * appropriate.
406 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000407 if ((u_char) buf[0] == escape_char1)
408 escape_pending1 = 1;
Ben Lindstrome9613cf2001-03-05 06:14:02 +0000409 else
Damien Miller95def091999-11-25 00:26:21 +1100410 buffer_append(&stdin_buffer, buf, 1);
Damien Miller95def091999-11-25 00:26:21 +1100411 }
Damien Miller95def091999-11-25 00:26:21 +1100412 leave_non_blocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414}
415
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller5428f641999-11-25 11:54:57 +1100417/*
418 * Make packets from buffered stdin data, and buffer them for sending to the
419 * connection.
420 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421
Ben Lindstrombba81212001-06-25 05:01:22 +0000422static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000423client_make_packets_from_stdin_data(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000425 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426
Damien Miller95def091999-11-25 00:26:21 +1100427 /* Send buffered stdin data to the server. */
428 while (buffer_len(&stdin_buffer) > 0 &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100429 packet_not_very_much_data_to_write()) {
Damien Miller95def091999-11-25 00:26:21 +1100430 len = buffer_len(&stdin_buffer);
431 /* Keep the packets at reasonable size. */
432 if (len > packet_get_maxsize())
433 len = packet_get_maxsize();
434 packet_start(SSH_CMSG_STDIN_DATA);
435 packet_put_string(buffer_ptr(&stdin_buffer), len);
436 packet_send();
437 buffer_consume(&stdin_buffer, len);
438 /* If we have a pending EOF, send it now. */
439 if (stdin_eof && buffer_len(&stdin_buffer) == 0) {
440 packet_start(SSH_CMSG_EOF);
441 packet_send();
442 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000443 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444}
445
Damien Miller5428f641999-11-25 11:54:57 +1100446/*
447 * Checks if the client window has changed, and sends a packet about it to
448 * the server if so. The actual change is detected elsewhere (by a software
449 * interrupt on Unix); this just checks the flag and sends a message if
450 * appropriate.
451 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452
Ben Lindstrombba81212001-06-25 05:01:22 +0000453static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000454client_check_window_change(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455{
Damien Miller1383bd82000-04-06 12:32:37 +1000456 struct winsize ws;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457
Damien Miller1383bd82000-04-06 12:32:37 +1000458 if (! received_window_change_signal)
459 return;
460 /** XXX race */
461 received_window_change_signal = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000462
Damien Millerd3444942000-09-30 14:20:03 +1100463 debug2("client_check_window_change: changed");
Damien Miller1383bd82000-04-06 12:32:37 +1000464
465 if (compat20) {
Damien Miller0e220db2004-06-15 10:34:08 +1000466 channel_send_window_changes();
Damien Miller1383bd82000-04-06 12:32:37 +1000467 } else {
Damien Miller0e220db2004-06-15 10:34:08 +1000468 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
469 return;
Damien Miller1383bd82000-04-06 12:32:37 +1000470 packet_start(SSH_CMSG_WINDOW_SIZE);
Damien Miller71a73672006-03-26 14:04:36 +1100471 packet_put_int((u_int)ws.ws_row);
472 packet_put_int((u_int)ws.ws_col);
473 packet_put_int((u_int)ws.ws_xpixel);
474 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller1383bd82000-04-06 12:32:37 +1000475 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000476 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477}
478
Damien Miller509b0102003-12-17 16:33:10 +1100479static void
480client_global_request_reply(int type, u_int32_t seq, void *ctxt)
481{
Darren Tucker9f407c42008-06-13 04:50:27 +1000482 struct global_confirm *gc;
483
484 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
485 return;
486 if (gc->cb != NULL)
487 gc->cb(type, seq, gc->ctx);
488 if (--gc->ref_count <= 0) {
489 TAILQ_REMOVE(&global_confirms, gc, entry);
490 bzero(gc, sizeof(*gc));
491 xfree(gc);
492 }
493
Damien Miller58226f62008-03-07 18:33:30 +1100494 keep_alive_timeouts = 0;
Damien Miller509b0102003-12-17 16:33:10 +1100495}
496
497static void
498server_alive_check(void)
499{
Damien Miller58226f62008-03-07 18:33:30 +1100500 if (++keep_alive_timeouts > options.server_alive_count_max) {
Damien Miller985a4482006-10-24 03:02:41 +1000501 logit("Timeout, server not responding.");
502 cleanup_exit(255);
503 }
Damien Miller509b0102003-12-17 16:33:10 +1100504 packet_start(SSH2_MSG_GLOBAL_REQUEST);
505 packet_put_cstring("keepalive@openssh.com");
506 packet_put_char(1); /* boolean: want reply */
507 packet_send();
Darren Tucker9f407c42008-06-13 04:50:27 +1000508 /* Insert an empty placeholder to maintain ordering */
509 client_register_global_confirm(NULL, NULL);
Damien Miller509b0102003-12-17 16:33:10 +1100510}
511
Damien Miller5428f641999-11-25 11:54:57 +1100512/*
513 * Waits until the client can do something (some data becomes available on
514 * one of the file descriptors).
515 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000516static void
Damien Miller5e953212001-01-30 09:14:00 +1100517client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000518 int *maxfdp, u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519{
Damien Miller509b0102003-12-17 16:33:10 +1100520 struct timeval tv, *tvp;
521 int ret;
522
Damien Miller5e953212001-01-30 09:14:00 +1100523 /* Add any selections by the channel mechanism. */
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000524 channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525
Damien Miller1383bd82000-04-06 12:32:37 +1000526 if (!compat20) {
527 /* Read from the connection, unless our buffers are full. */
528 if (buffer_len(&stdout_buffer) < buffer_high &&
529 buffer_len(&stderr_buffer) < buffer_high &&
530 channel_not_very_much_buffered_data())
Damien Miller5e953212001-01-30 09:14:00 +1100531 FD_SET(connection_in, *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000532 /*
533 * Read from stdin, unless we have seen EOF or have very much
534 * buffered data to send to the server.
535 */
536 if (!stdin_eof && packet_not_very_much_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100537 FD_SET(fileno(stdin), *readsetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000538
539 /* Select stdout/stderr if have data in buffer. */
540 if (buffer_len(&stdout_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100541 FD_SET(fileno(stdout), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000542 if (buffer_len(&stderr_buffer) > 0)
Damien Miller5e953212001-01-30 09:14:00 +1100543 FD_SET(fileno(stderr), *writesetp);
Damien Miller1383bd82000-04-06 12:32:37 +1000544 } else {
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000545 /* channel_prepare_select could have closed the last channel */
Damien Miller164a7f42001-10-12 11:36:09 +1000546 if (session_closed && !channel_still_open() &&
547 !packet_have_data_to_write()) {
548 /* clear mask since we did not call select() */
Damien Miller79faeff2001-11-12 11:06:32 +1100549 memset(*readsetp, 0, *nallocp);
550 memset(*writesetp, 0, *nallocp);
Damien Miller164a7f42001-10-12 11:36:09 +1000551 return;
Ben Lindstromc8b3f472001-05-17 03:19:40 +0000552 } else {
553 FD_SET(connection_in, *readsetp);
554 }
Damien Miller1383bd82000-04-06 12:32:37 +1000555 }
556
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Select server connection if have data to write to the server. */
558 if (packet_have_data_to_write())
Damien Miller5e953212001-01-30 09:14:00 +1100559 FD_SET(connection_out, *writesetp);
Damien Miller95def091999-11-25 00:26:21 +1100560
Damien Millerb1cbfa22008-05-19 16:00:08 +1000561 if (muxserver_sock != -1)
562 FD_SET(muxserver_sock, *readsetp);
Damien Miller0e220db2004-06-15 10:34:08 +1000563
Damien Miller5428f641999-11-25 11:54:57 +1100564 /*
565 * Wait for something to happen. This will suspend the process until
566 * some selected descriptor can be read, written, or has some other
Damien Miller509b0102003-12-17 16:33:10 +1100567 * event pending.
Damien Miller5428f641999-11-25 11:54:57 +1100568 */
Damien Miller95def091999-11-25 00:26:21 +1100569
Damien Miller509b0102003-12-17 16:33:10 +1100570 if (options.server_alive_interval == 0 || !compat20)
571 tvp = NULL;
Darren Tuckerfc959702004-07-17 16:12:08 +1000572 else {
Damien Miller509b0102003-12-17 16:33:10 +1100573 tv.tv_sec = options.server_alive_interval;
574 tv.tv_usec = 0;
575 tvp = &tv;
576 }
577 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
578 if (ret < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100579 char buf[100];
Ben Lindstromf9452512001-02-15 03:12:08 +0000580
581 /*
582 * We have to clear the select masks, because we return.
583 * We have to return, because the mainloop checks for the flags
584 * set by the signal handlers.
585 */
Damien Miller79faeff2001-11-12 11:06:32 +1100586 memset(*readsetp, 0, *nallocp);
587 memset(*writesetp, 0, *nallocp);
Ben Lindstromf9452512001-02-15 03:12:08 +0000588
Damien Miller95def091999-11-25 00:26:21 +1100589 if (errno == EINTR)
590 return;
591 /* Note: we might still have data in the buffers. */
592 snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
593 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100594 quit_pending = 1;
Damien Miller509b0102003-12-17 16:33:10 +1100595 } else if (ret == 0)
596 server_alive_check();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597}
598
Ben Lindstrombba81212001-06-25 05:01:22 +0000599static void
Damien Millerad833b32000-08-23 10:46:23 +1000600client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601{
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Flush stdout and stderr buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000603 if (buffer_len(bout) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000604 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
605 buffer_len(bout));
Damien Millerad833b32000-08-23 10:46:23 +1000606 if (buffer_len(berr) > 0)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000607 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
608 buffer_len(berr));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Miller95def091999-11-25 00:26:21 +1100610 leave_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Damien Miller5428f641999-11-25 11:54:57 +1100612 /*
613 * Free (and clear) the buffer to reduce the amount of data that gets
614 * written to swap.
615 */
Damien Millerad833b32000-08-23 10:46:23 +1000616 buffer_free(bin);
617 buffer_free(bout);
618 buffer_free(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Damien Miller95def091999-11-25 00:26:21 +1100620 /* Send the suspend signal to the program itself. */
621 kill(getpid(), SIGTSTP);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622
Darren Tucker5d78de62004-11-05 20:35:44 +1100623 /* Reset window sizes in case they have changed */
624 received_window_change_signal = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625
Damien Miller95def091999-11-25 00:26:21 +1100626 /* OK, we have been continued by the user. Reinitialize buffers. */
Damien Millerad833b32000-08-23 10:46:23 +1000627 buffer_init(bin);
628 buffer_init(bout);
629 buffer_init(berr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller95def091999-11-25 00:26:21 +1100631 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632}
633
Ben Lindstrombba81212001-06-25 05:01:22 +0000634static void
Damien Miller90fdfaf2006-03-26 14:25:37 +1100635client_process_net_input(fd_set *readset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636{
Damien Miller1383bd82000-04-06 12:32:37 +1000637 int len;
638 char buf[8192];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Damien Miller5428f641999-11-25 11:54:57 +1100640 /*
641 * Read input from the server, and add any such data to the buffer of
642 * the packet subsystem.
643 */
Damien Miller95def091999-11-25 00:26:21 +1100644 if (FD_ISSET(connection_in, readset)) {
645 /* Read as much as possible. */
646 len = read(connection_in, buf, sizeof(buf));
647 if (len == 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000648 /*
649 * Received EOF. The remote host has closed the
650 * connection.
651 */
652 snprintf(buf, sizeof buf,
653 "Connection to %.300s closed by remote host.\r\n",
654 host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656 quit_pending = 1;
657 return;
Damien Miller95def091999-11-25 00:26:21 +1100658 }
Damien Miller5428f641999-11-25 11:54:57 +1100659 /*
660 * There is a kernel bug on Solaris that causes select to
661 * sometimes wake up even though there is no data available.
662 */
Damien Millerd8968ad2008-07-04 23:10:49 +1000663 if (len < 0 &&
664 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Damien Miller95def091999-11-25 00:26:21 +1100665 len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller95def091999-11-25 00:26:21 +1100667 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +1000668 /*
669 * An error has encountered. Perhaps there is a
670 * network problem.
671 */
672 snprintf(buf, sizeof buf,
673 "Read from remote host %.300s: %.100s\r\n",
674 host, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100675 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +1100676 quit_pending = 1;
677 return;
678 }
679 packet_process_incoming(buf, len);
680 }
Damien Miller1383bd82000-04-06 12:32:37 +1000681}
682
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000683static void
Damien Miller5771ed72008-05-19 15:35:33 +1000684client_status_confirm(int type, Channel *c, void *ctx)
Damien Miller0e220db2004-06-15 10:34:08 +1000685{
Damien Miller5771ed72008-05-19 15:35:33 +1000686 struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
687 char errmsg[256];
688 int tochan;
Darren Tuckerfc959702004-07-17 16:12:08 +1000689
Damien Miller5771ed72008-05-19 15:35:33 +1000690 /* XXX supress on mux _client_ quietmode */
691 tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
692 c->ctl_fd != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
Damien Miller0e220db2004-06-15 10:34:08 +1000693
Damien Miller5771ed72008-05-19 15:35:33 +1000694 if (type == SSH2_MSG_CHANNEL_SUCCESS) {
695 debug2("%s request accepted on channel %d",
696 cr->request_type, c->self);
697 } else if (type == SSH2_MSG_CHANNEL_FAILURE) {
698 if (tochan) {
699 snprintf(errmsg, sizeof(errmsg),
700 "%s request failed\r\n", cr->request_type);
701 } else {
702 snprintf(errmsg, sizeof(errmsg),
703 "%s request failed on channel %d",
704 cr->request_type, c->self);
705 }
706 /* If error occurred on primary session channel, then exit */
707 if (cr->do_close && c->self == session_ident)
708 fatal("%s", errmsg);
709 /* If error occurred on mux client, append to their stderr */
710 if (tochan)
711 buffer_append(&c->extended, errmsg, strlen(errmsg));
712 else
713 error("%s", errmsg);
714 if (cr->do_close) {
715 chan_read_failed(c);
716 chan_write_failed(c);
717 }
Damien Miller0e220db2004-06-15 10:34:08 +1000718 }
Damien Miller5771ed72008-05-19 15:35:33 +1000719 xfree(cr);
720}
Damien Miller0e220db2004-06-15 10:34:08 +1000721
Damien Miller5771ed72008-05-19 15:35:33 +1000722static void
723client_abandon_status_confirm(Channel *c, void *ctx)
724{
725 xfree(ctx);
726}
727
728static void
729client_expect_confirm(int id, const char *request, int do_close)
730{
731 struct channel_reply_ctx *cr = xmalloc(sizeof(*cr));
732
733 cr->request_type = request;
734 cr->do_close = do_close;
735
736 channel_register_status_confirm(id, client_status_confirm,
737 client_abandon_status_confirm, cr);
Damien Miller0e220db2004-06-15 10:34:08 +1000738}
739
Darren Tucker9f407c42008-06-13 04:50:27 +1000740void
741client_register_global_confirm(global_confirm_cb *cb, void *ctx)
742{
Damien Millerb9d3bee2008-07-16 22:40:52 +1000743 struct global_confirm *gc, *last_gc;
Darren Tucker9f407c42008-06-13 04:50:27 +1000744
745 /* Coalesce identical callbacks */
Damien Millerb9d3bee2008-07-16 22:40:52 +1000746 last_gc = TAILQ_LAST(&global_confirms, global_confirms);
747 if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
748 if (++last_gc->ref_count >= INT_MAX)
749 fatal("%s: last_gc->ref_count = %d",
750 __func__, last_gc->ref_count);
Darren Tucker9f407c42008-06-13 04:50:27 +1000751 return;
752 }
753
754 gc = xmalloc(sizeof(*gc));
755 gc->cb = cb;
756 gc->ctx = ctx;
757 gc->ref_count = 1;
758 TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
759}
760
Damien Miller0e220db2004-06-15 10:34:08 +1000761static void
Ben Lindstrom681d9322002-03-22 03:53:00 +0000762process_cmdline(void)
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000763{
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000764 void (*handler)(int);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100765 char *s, *cmd, *cancel_host;
Darren Tuckere7066df2004-05-24 10:18:05 +1000766 int delete = 0;
Damien Miller0164cb82008-11-05 16:30:31 +1100767 int local = 0, remote = 0, dynamic = 0;
Damien Miller3dc71ad2009-01-28 16:31:22 +1100768 int cancel_port;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100769 Forward fwd;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000770
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100771 bzero(&fwd, sizeof(fwd));
772 fwd.listen_host = fwd.connect_host = NULL;
773
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000774 leave_raw_mode();
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000775 handler = signal(SIGINT, SIG_IGN);
Ben Lindstrom681d9322002-03-22 03:53:00 +0000776 cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000777 if (s == NULL)
778 goto out;
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100779 while (isspace(*s))
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000780 s++;
Darren Tuckere7066df2004-05-24 10:18:05 +1000781 if (*s == '-')
782 s++; /* Skip cmdline '-', if any */
Darren Tuckere1675822004-05-24 10:13:07 +1000783 if (*s == '\0')
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000784 goto out;
Darren Tuckere7066df2004-05-24 10:18:05 +1000785
Darren Tucker1973c882004-05-24 10:34:36 +1000786 if (*s == 'h' || *s == 'H' || *s == '?') {
Darren Tuckere7066df2004-05-24 10:18:05 +1000787 logit("Commands:");
Damien Miller43020952006-07-10 20:16:12 +1000788 logit(" -L[bind_address:]port:host:hostport "
789 "Request local forward");
790 logit(" -R[bind_address:]port:host:hostport "
791 "Request remote forward");
Damien Miller0164cb82008-11-05 16:30:31 +1100792 logit(" -D[bind_address:]port "
793 "Request dynamic forward");
Damien Miller57e8ad32006-07-10 20:20:52 +1000794 logit(" -KR[bind_address:]port "
Damien Miller43020952006-07-10 20:16:12 +1000795 "Cancel remote forward");
Damien Millerd27b9472005-12-13 19:29:02 +1100796 if (!options.permit_local_command)
797 goto out;
Damien Miller43020952006-07-10 20:16:12 +1000798 logit(" !args "
799 "Execute local command");
Damien Millerd27b9472005-12-13 19:29:02 +1100800 goto out;
801 }
802
803 if (*s == '!' && options.permit_local_command) {
804 s++;
805 ssh_local_cmd(s);
Darren Tuckere7066df2004-05-24 10:18:05 +1000806 goto out;
807 }
808
809 if (*s == 'K') {
810 delete = 1;
811 s++;
812 }
Damien Miller0164cb82008-11-05 16:30:31 +1100813 if (*s == 'L')
814 local = 1;
815 else if (*s == 'R')
816 remote = 1;
817 else if (*s == 'D')
818 dynamic = 1;
819 else {
Damien Miller996acd22003-04-09 20:59:48 +1000820 logit("Invalid command.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000821 goto out;
822 }
Damien Miller0164cb82008-11-05 16:30:31 +1100823
824 if ((local || dynamic) && delete) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000825 logit("Not supported.");
826 goto out;
827 }
Damien Miller0164cb82008-11-05 16:30:31 +1100828 if (remote && delete && !compat20) {
Damien Miller996acd22003-04-09 20:59:48 +1000829 logit("Not supported for SSH protocol version 1.");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000830 goto out;
831 }
Darren Tuckere7066df2004-05-24 10:18:05 +1000832
Darren Tucker03b1cdb2007-03-21 20:46:03 +1100833 while (isspace(*++s))
834 ;
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000835
Darren Tuckere7066df2004-05-24 10:18:05 +1000836 if (delete) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100837 cancel_port = 0;
838 cancel_host = hpdelim(&s); /* may be NULL */
839 if (s != NULL) {
840 cancel_port = a2port(s);
841 cancel_host = cleanhostname(cancel_host);
842 } else {
843 cancel_port = a2port(cancel_host);
844 cancel_host = NULL;
845 }
Damien Miller3dc71ad2009-01-28 16:31:22 +1100846 if (cancel_port <= 0) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100847 logit("Bad forwarding close port");
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000848 goto out;
849 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100850 channel_request_rforward_cancel(cancel_host, cancel_port);
Darren Tuckere7066df2004-05-24 10:18:05 +1000851 } else {
Damien Miller0164cb82008-11-05 16:30:31 +1100852 if (!parse_forward(&fwd, s, dynamic ? 1 : 0)) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000853 logit("Bad forwarding specification.");
854 goto out;
855 }
Damien Miller0164cb82008-11-05 16:30:31 +1100856 if (local || dynamic) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100857 if (channel_setup_local_fwd_listener(fwd.listen_host,
858 fwd.listen_port, fwd.connect_host,
859 fwd.connect_port, options.gateway_ports) < 0) {
Darren Tuckere7066df2004-05-24 10:18:05 +1000860 logit("Port forwarding failed.");
861 goto out;
862 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100863 } else {
Darren Tuckere7d4b192006-07-12 22:17:10 +1000864 if (channel_request_remote_forwarding(fwd.listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100865 fwd.listen_port, fwd.connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000866 fwd.connect_port) < 0) {
867 logit("Port forwarding failed.");
868 goto out;
869 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100870 }
871
Darren Tuckere7066df2004-05-24 10:18:05 +1000872 logit("Forwarding port.");
873 }
874
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000875out:
876 signal(SIGINT, handler);
877 enter_raw_mode();
878 if (cmd)
879 xfree(cmd);
Darren Tucker23ae8ca2007-12-02 23:12:30 +1100880 if (fwd.listen_host != NULL)
881 xfree(fwd.listen_host);
882 if (fwd.connect_host != NULL)
883 xfree(fwd.connect_host);
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000884}
885
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000886/*
887 * Process the characters one by one, call with c==NULL for proto1 case.
888 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000889static int
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000890process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
891 char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +1000892{
893 char string[1024];
894 pid_t pid;
895 int bytes = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000896 u_int i;
897 u_char ch;
Damien Millerad833b32000-08-23 10:46:23 +1000898 char *s;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000899 int *escape_pendingp, escape_char;
900 struct escape_filter_ctx *efc;
Damien Millerad833b32000-08-23 10:46:23 +1000901
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000902 if (c == NULL) {
903 escape_pendingp = &escape_pending1;
904 escape_char = escape_char1;
905 } else {
906 if (c->filter_ctx == NULL)
907 return 0;
908 efc = (struct escape_filter_ctx *)c->filter_ctx;
909 escape_pendingp = &efc->escape_pending;
910 escape_char = efc->escape_char;
911 }
912
Damien Millereccb9de2005-06-17 12:59:34 +1000913 if (len <= 0)
914 return (0);
915
916 for (i = 0; i < (u_int)len; i++) {
Damien Millerad833b32000-08-23 10:46:23 +1000917 /* Get one character at a time. */
918 ch = buf[i];
919
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000920 if (*escape_pendingp) {
Damien Millerad833b32000-08-23 10:46:23 +1000921 /* We have previously seen an escape character. */
922 /* Clear the flag now. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000923 *escape_pendingp = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000924
925 /* Process the escaped character. */
926 switch (ch) {
927 case '.':
928 /* Terminate the connection. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000929 snprintf(string, sizeof string, "%c.\r\n",
930 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000931 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000932
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000933 if (c && c->ctl_fd != -1) {
934 chan_read_failed(c);
935 chan_write_failed(c);
936 return 0;
937 } else
938 quit_pending = 1;
Damien Millerad833b32000-08-23 10:46:23 +1000939 return -1;
940
941 case 'Z' - 64:
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000942 /* XXX support this for mux clients */
943 if (c && c->ctl_fd != -1) {
944 noescape:
945 snprintf(string, sizeof string,
946 "%c%c escape not available to "
947 "multiplexed sessions\r\n",
948 escape_char, ch);
949 buffer_append(berr, string,
950 strlen(string));
951 continue;
952 }
Darren Tucker4d5cd332008-06-13 04:51:14 +1000953 /* Suspend the program. Inform the user */
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000954 snprintf(string, sizeof string,
955 "%c^Z [suspend ssh]\r\n", escape_char);
Damien Millerad833b32000-08-23 10:46:23 +1000956 buffer_append(berr, string, strlen(string));
Damien Millerad833b32000-08-23 10:46:23 +1000957
958 /* Restore terminal modes and suspend. */
959 client_suspend_self(bin, bout, berr);
960
961 /* We have been continued. */
962 continue;
963
Damien Miller54c45982003-05-15 10:20:13 +1000964 case 'B':
965 if (compat20) {
966 snprintf(string, sizeof string,
967 "%cB\r\n", escape_char);
968 buffer_append(berr, string,
969 strlen(string));
970 channel_request_start(session_ident,
971 "break", 0);
972 packet_put_int(1000);
973 packet_send();
974 }
975 continue;
976
Ben Lindstromf28f6342001-04-04 02:03:04 +0000977 case 'R':
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000978 if (compat20) {
979 if (datafellows & SSH_BUG_NOREKEY)
Darren Tucker4d5cd332008-06-13 04:51:14 +1000980 logit("Server does not "
981 "support re-keying");
Ben Lindstrom11bd8992001-04-05 23:34:29 +0000982 else
983 need_rekeying = 1;
984 }
Ben Lindstromf28f6342001-04-04 02:03:04 +0000985 continue;
986
Damien Millerad833b32000-08-23 10:46:23 +1000987 case '&':
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000988 if (c && c->ctl_fd != -1)
989 goto noescape;
Damien Millerad833b32000-08-23 10:46:23 +1000990 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +1000991 * Detach the program (continue to serve
992 * connections, but put in background and no
993 * more new connections).
Damien Millerad833b32000-08-23 10:46:23 +1000994 */
Damien Miller96507ef2001-11-12 10:52:25 +1100995 /* Restore tty modes. */
996 leave_raw_mode();
997
998 /* Stop listening for new connections. */
999 channel_stop_listening();
1000
1001 snprintf(string, sizeof string,
1002 "%c& [backgrounded]\n", escape_char);
1003 buffer_append(berr, string, strlen(string));
1004
1005 /* Fork into background. */
1006 pid = fork();
1007 if (pid < 0) {
1008 error("fork: %.100s", strerror(errno));
1009 continue;
1010 }
1011 if (pid != 0) { /* This is the parent. */
1012 /* The parent just exits. */
1013 exit(0);
1014 }
1015 /* The child continues serving connections. */
1016 if (compat20) {
1017 buffer_append(bin, "\004", 1);
1018 /* fake EOF on stdin */
1019 return -1;
1020 } else if (!stdin_eof) {
Damien Millerad833b32000-08-23 10:46:23 +10001021 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001022 * Sending SSH_CMSG_EOF alone does not
1023 * always appear to be enough. So we
1024 * try to send an EOF character first.
Damien Millerad833b32000-08-23 10:46:23 +10001025 */
1026 packet_start(SSH_CMSG_STDIN_DATA);
1027 packet_put_string("\004", 1);
1028 packet_send();
1029 /* Close stdin. */
1030 stdin_eof = 1;
1031 if (buffer_len(bin) == 0) {
1032 packet_start(SSH_CMSG_EOF);
1033 packet_send();
1034 }
1035 }
Damien Miller96507ef2001-11-12 10:52:25 +11001036 continue;
Damien Millerad833b32000-08-23 10:46:23 +10001037
1038 case '?':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001039 if (c && c->ctl_fd != -1) {
1040 snprintf(string, sizeof string,
Damien Millerad833b32000-08-23 10:46:23 +10001041"%c?\r\n\
1042Supported escape sequences:\r\n\
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001043 %c. - terminate session\r\n\
1044 %cB - send a BREAK to the remote system\r\n\
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001045 %cR - Request rekey (SSH protocol 2 only)\r\n\
1046 %c# - list forwarded connections\r\n\
1047 %c? - this message\r\n\
1048 %c%c - send the escape character by typing it twice\r\n\
Damien Millerad833b32000-08-23 10:46:23 +10001049(Note that escapes are only recognized immediately after newline.)\r\n",
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001050 escape_char, escape_char,
1051 escape_char, escape_char,
1052 escape_char, escape_char,
Damien Miller586b0052008-12-09 14:11:32 +11001053 escape_char, escape_char);
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001054 } else {
1055 snprintf(string, sizeof string,
1056"%c?\r\n\
1057Supported escape sequences:\r\n\
1058 %c. - terminate connection (and any multiplexed sessions)\r\n\
1059 %cB - send a BREAK to the remote system\r\n\
1060 %cC - open a command line\r\n\
1061 %cR - Request rekey (SSH protocol 2 only)\r\n\
1062 %c^Z - suspend ssh\r\n\
1063 %c# - list forwarded connections\r\n\
1064 %c& - background ssh (when waiting for connections to terminate)\r\n\
1065 %c? - this message\r\n\
1066 %c%c - send the escape character by typing it twice\r\n\
1067(Note that escapes are only recognized immediately after newline.)\r\n",
1068 escape_char, escape_char,
1069 escape_char, escape_char,
1070 escape_char, escape_char,
1071 escape_char, escape_char,
1072 escape_char, escape_char,
1073 escape_char);
1074 }
Damien Millerad833b32000-08-23 10:46:23 +10001075 buffer_append(berr, string, strlen(string));
1076 continue;
1077
1078 case '#':
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001079 snprintf(string, sizeof string, "%c#\r\n",
1080 escape_char);
Damien Millerad833b32000-08-23 10:46:23 +10001081 buffer_append(berr, string, strlen(string));
1082 s = channel_open_message();
1083 buffer_append(berr, s, strlen(s));
1084 xfree(s);
1085 continue;
1086
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001087 case 'C':
Damien Miller586b0052008-12-09 14:11:32 +11001088 if (c && c->ctl_fd != -1)
1089 goto noescape;
Ben Lindstrom681d9322002-03-22 03:53:00 +00001090 process_cmdline();
Ben Lindstrom5589f4b2002-03-22 03:24:32 +00001091 continue;
1092
Damien Millerad833b32000-08-23 10:46:23 +10001093 default:
1094 if (ch != escape_char) {
1095 buffer_put_char(bin, escape_char);
1096 bytes++;
1097 }
1098 /* Escaped characters fall through here */
1099 break;
1100 }
1101 } else {
1102 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001103 * The previous character was not an escape char.
1104 * Check if this is an escape.
Damien Millerad833b32000-08-23 10:46:23 +10001105 */
1106 if (last_was_cr && ch == escape_char) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001107 /*
1108 * It is. Set the flag and continue to
1109 * next character.
1110 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001111 *escape_pendingp = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001112 continue;
1113 }
1114 }
1115
1116 /*
1117 * Normal character. Record whether it was a newline,
1118 * and append it to the buffer.
1119 */
1120 last_was_cr = (ch == '\r' || ch == '\n');
1121 buffer_put_char(bin, ch);
1122 bytes++;
1123 }
1124 return bytes;
1125}
1126
Ben Lindstrombba81212001-06-25 05:01:22 +00001127static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001128client_process_input(fd_set *readset)
Damien Miller1383bd82000-04-06 12:32:37 +10001129{
Damien Miller166fca82000-04-20 07:42:21 +10001130 int len;
Damien Millerad833b32000-08-23 10:46:23 +10001131 char buf[8192];
Damien Miller1383bd82000-04-06 12:32:37 +10001132
Damien Miller95def091999-11-25 00:26:21 +11001133 /* Read input from stdin. */
1134 if (FD_ISSET(fileno(stdin), readset)) {
1135 /* Read as much as possible. */
1136 len = read(fileno(stdin), buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001137 if (len < 0 &&
1138 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstrom4c8cff12001-04-17 18:09:42 +00001139 return; /* we'll try again later */
Damien Miller95def091999-11-25 00:26:21 +11001140 if (len <= 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001141 /*
1142 * Received EOF or error. They are treated
1143 * similarly, except that an error message is printed
1144 * if it was an error condition.
1145 */
Damien Miller95def091999-11-25 00:26:21 +11001146 if (len < 0) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001147 snprintf(buf, sizeof buf, "read: %.100s\r\n",
1148 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001149 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001150 }
1151 /* Mark that we have seen EOF. */
1152 stdin_eof = 1;
Damien Miller5428f641999-11-25 11:54:57 +11001153 /*
1154 * Send an EOF message to the server unless there is
1155 * data in the buffer. If there is data in the
1156 * buffer, no message will be sent now. Code
1157 * elsewhere will send the EOF when the buffer
1158 * becomes empty if stdin_eof is set.
1159 */
Damien Miller95def091999-11-25 00:26:21 +11001160 if (buffer_len(&stdin_buffer) == 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161 packet_start(SSH_CMSG_EOF);
1162 packet_send();
Damien Miller95def091999-11-25 00:26:21 +11001163 }
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001164 } else if (escape_char1 == SSH_ESCAPECHAR_NONE) {
Damien Miller5428f641999-11-25 11:54:57 +11001165 /*
1166 * Normal successful read, and no escape character.
1167 * Just append the data to buffer.
1168 */
Damien Miller95def091999-11-25 00:26:21 +11001169 buffer_append(&stdin_buffer, buf, len);
Damien Miller95def091999-11-25 00:26:21 +11001170 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001171 /*
Darren Tucker4d5cd332008-06-13 04:51:14 +10001172 * Normal, successful read. But we have an escape
1173 * character and have to process the characters one
1174 * by one.
Damien Miller5428f641999-11-25 11:54:57 +11001175 */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001176 if (process_escapes(NULL, &stdin_buffer,
1177 &stdout_buffer, &stderr_buffer, buf, len) == -1)
Damien Millerad833b32000-08-23 10:46:23 +10001178 return;
Damien Miller95def091999-11-25 00:26:21 +11001179 }
1180 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181}
1182
Ben Lindstrombba81212001-06-25 05:01:22 +00001183static void
Damien Miller90fdfaf2006-03-26 14:25:37 +11001184client_process_output(fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185{
Damien Miller95def091999-11-25 00:26:21 +11001186 int len;
1187 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188
Damien Miller95def091999-11-25 00:26:21 +11001189 /* Write buffered output to stdout. */
1190 if (FD_ISSET(fileno(stdout), writeset)) {
1191 /* Write as much data as possible. */
1192 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001193 buffer_len(&stdout_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001194 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001195 if (errno == EINTR || errno == EAGAIN ||
1196 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001197 len = 0;
1198 else {
Damien Miller5428f641999-11-25 11:54:57 +11001199 /*
1200 * An error or EOF was encountered. Put an
1201 * error message to stderr buffer.
1202 */
Darren Tucker4d5cd332008-06-13 04:51:14 +10001203 snprintf(buf, sizeof buf,
1204 "write stdout: %.50s\r\n", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001205 buffer_append(&stderr_buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001206 quit_pending = 1;
1207 return;
1208 }
1209 }
1210 /* Consume printed data from the buffer. */
1211 buffer_consume(&stdout_buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001212 }
Damien Miller95def091999-11-25 00:26:21 +11001213 /* Write buffered output to stderr. */
1214 if (FD_ISSET(fileno(stderr), writeset)) {
1215 /* Write as much data as possible. */
1216 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001217 buffer_len(&stderr_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001218 if (len <= 0) {
Damien Millerd8968ad2008-07-04 23:10:49 +10001219 if (errno == EINTR || errno == EAGAIN ||
1220 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001221 len = 0;
1222 else {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001223 /*
1224 * EOF or error, but can't even print
1225 * error message.
1226 */
Damien Miller95def091999-11-25 00:26:21 +11001227 quit_pending = 1;
1228 return;
1229 }
1230 }
1231 /* Consume printed characters from the buffer. */
1232 buffer_consume(&stderr_buffer, len);
1233 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234}
1235
Damien Miller5428f641999-11-25 11:54:57 +11001236/*
Damien Millerb38eff82000-04-01 11:09:21 +10001237 * Get packets from the connection input buffer, and process them as long as
1238 * there are packets available.
1239 *
1240 * Any unknown packets received during the actual
1241 * session cause the session to terminate. This is
1242 * intended to make debugging easier since no
1243 * confirmations are sent. Any compatible protocol
1244 * extensions must be negotiated during the
1245 * preparatory phase.
1246 */
1247
Ben Lindstrombba81212001-06-25 05:01:22 +00001248static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001249client_process_buffered_input_packets(void)
Damien Millerb38eff82000-04-01 11:09:21 +10001250{
Darren Tucker4d5cd332008-06-13 04:51:14 +10001251 dispatch_run(DISPATCH_NONBLOCK, &quit_pending,
1252 compat20 ? xxx_kex : NULL);
Damien Millerb38eff82000-04-01 11:09:21 +10001253}
1254
Damien Millerad833b32000-08-23 10:46:23 +10001255/* scan buf[] for '~' before sending data to the peer */
1256
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001257/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
1258void *
1259client_new_escape_filter_ctx(int escape_char)
1260{
1261 struct escape_filter_ctx *ret;
1262
1263 ret = xmalloc(sizeof(*ret));
1264 ret->escape_pending = 0;
1265 ret->escape_char = escape_char;
1266 return (void *)ret;
1267}
1268
Darren Tucker84c56f52008-06-13 04:55:46 +10001269/* Free the escape filter context on channel free */
1270void
1271client_filter_cleanup(int cid, void *ctx)
1272{
1273 xfree(ctx);
1274}
1275
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001276int
1277client_simple_escape_filter(Channel *c, char *buf, int len)
Damien Millerad833b32000-08-23 10:46:23 +10001278{
Damien Miller5771ed72008-05-19 15:35:33 +10001279 if (c->extended_usage != CHAN_EXTENDED_WRITE)
1280 return 0;
1281
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001282 return process_escapes(c, &c->input, &c->output, &c->extended,
1283 buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001284}
1285
Ben Lindstrombba81212001-06-25 05:01:22 +00001286static void
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001287client_channel_closed(int id, void *arg)
1288{
Damien Miller3ec27592001-10-12 11:35:04 +10001289 channel_cancel_cleanup(id);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001290 session_closed = 1;
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001291 leave_raw_mode();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001292}
1293
Damien Millerb38eff82000-04-01 11:09:21 +10001294/*
Damien Miller5428f641999-11-25 11:54:57 +11001295 * Implements the interactive session with the server. This is called after
1296 * the user has been authenticated, and a command has been started on the
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001297 * remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
1298 * used as an escape character for terminating or suspending the session.
Damien Miller5428f641999-11-25 11:54:57 +11001299 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001300
Damien Miller4af51302000-04-16 11:18:38 +10001301int
Damien Millerad833b32000-08-23 10:46:23 +10001302client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303{
Damien Miller5e953212001-01-30 09:14:00 +11001304 fd_set *readset = NULL, *writeset = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001305 double start_time, total_time;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001306 int max_fd = 0, max_fd2 = 0, len, rekeying = 0;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001307 u_int64_t ibytes, obytes;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001308 u_int nalloc = 0;
Damien Miller95def091999-11-25 00:26:21 +11001309 char buf[100];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310
Damien Miller95def091999-11-25 00:26:21 +11001311 debug("Entering interactive session.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001312
Damien Miller95def091999-11-25 00:26:21 +11001313 start_time = get_current_time();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001314
Damien Miller95def091999-11-25 00:26:21 +11001315 /* Initialize variables. */
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001316 escape_pending1 = 0;
Damien Miller95def091999-11-25 00:26:21 +11001317 last_was_cr = 1;
1318 exit_status = -1;
1319 stdin_eof = 0;
1320 buffer_high = 64 * 1024;
1321 connection_in = packet_get_connection_in();
1322 connection_out = packet_get_connection_out();
Damien Miller5e953212001-01-30 09:14:00 +11001323 max_fd = MAX(connection_in, connection_out);
Damien Millerb1cbfa22008-05-19 16:00:08 +10001324 if (muxserver_sock != -1)
1325 max_fd = MAX(max_fd, muxserver_sock);
Damien Miller5e953212001-01-30 09:14:00 +11001326
1327 if (!compat20) {
Ben Lindstrom302ea6f2001-04-16 02:01:25 +00001328 /* enable nonblocking unless tty */
1329 if (!isatty(fileno(stdin)))
1330 set_nonblock(fileno(stdin));
1331 if (!isatty(fileno(stdout)))
1332 set_nonblock(fileno(stdout));
1333 if (!isatty(fileno(stderr)))
1334 set_nonblock(fileno(stderr));
Damien Miller5e953212001-01-30 09:14:00 +11001335 max_fd = MAX(max_fd, fileno(stdin));
1336 max_fd = MAX(max_fd, fileno(stdout));
1337 max_fd = MAX(max_fd, fileno(stderr));
1338 }
Damien Miller95def091999-11-25 00:26:21 +11001339 quit_pending = 0;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001340 escape_char1 = escape_char_arg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341
Damien Miller95def091999-11-25 00:26:21 +11001342 /* Initialize buffers. */
1343 buffer_init(&stdin_buffer);
1344 buffer_init(&stdout_buffer);
1345 buffer_init(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001346
Damien Millerb38eff82000-04-01 11:09:21 +10001347 client_init_dispatch();
1348
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001349 /*
1350 * Set signal handlers, (e.g. to restore non-blocking mode)
1351 * but don't overwrite SIG_IGN, matches behaviour from rsh(1)
1352 */
Darren Tucker07336da2004-11-05 20:02:16 +11001353 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
1354 signal(SIGHUP, signal_handler);
Ben Lindstromf49dbff2002-12-23 02:01:55 +00001355 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
1356 signal(SIGINT, signal_handler);
1357 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
1358 signal(SIGQUIT, signal_handler);
1359 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
1360 signal(SIGTERM, signal_handler);
Darren Tucker5d78de62004-11-05 20:35:44 +11001361 signal(SIGWINCH, window_change_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001362
Damien Miller95def091999-11-25 00:26:21 +11001363 if (have_pty)
1364 enter_raw_mode();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001365
Ben Lindstrom5b828322001-02-09 01:34:36 +00001366 if (compat20) {
1367 session_ident = ssh2_chan_id;
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001368 if (escape_char_arg != SSH_ESCAPECHAR_NONE)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001369 channel_register_filter(session_ident,
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001370 client_simple_escape_filter, NULL,
Darren Tucker84c56f52008-06-13 04:55:46 +10001371 client_filter_cleanup,
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001372 client_new_escape_filter_ctx(escape_char_arg));
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001373 if (session_ident != -1)
1374 channel_register_cleanup(session_ident,
Damien Miller39eda6e2005-11-05 14:52:50 +11001375 client_channel_closed, 0);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001376 } else {
1377 /* Check if we should immediately send eof on stdin. */
Damien Miller1383bd82000-04-06 12:32:37 +10001378 client_check_initial_eof_on_stdin();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001379 }
Damien Millerad833b32000-08-23 10:46:23 +10001380
Damien Miller95def091999-11-25 00:26:21 +11001381 /* Main loop of the client for the interactive session mode. */
1382 while (!quit_pending) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001383
Damien Miller5428f641999-11-25 11:54:57 +11001384 /* Process buffered packets sent by the server. */
Damien Miller95def091999-11-25 00:26:21 +11001385 client_process_buffered_input_packets();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001387 if (compat20 && session_closed && !channel_still_open())
Damien Miller1383bd82000-04-06 12:32:37 +10001388 break;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001389
1390 rekeying = (xxx_kex != NULL && !xxx_kex->done);
Damien Miller1383bd82000-04-06 12:32:37 +10001391
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001392 if (rekeying) {
1393 debug("rekeying in progress");
1394 } else {
1395 /*
1396 * Make packets of buffered stdin data, and buffer
1397 * them for sending to the server.
1398 */
1399 if (!compat20)
1400 client_make_packets_from_stdin_data();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001401
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001402 /*
1403 * Make packets from buffered channel data, and
1404 * enqueue them for sending to the server.
1405 */
1406 if (packet_not_very_much_data_to_write())
1407 channel_output_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001408
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001409 /*
1410 * Check if the window size has changed, and buffer a
1411 * message about it to the server if so.
1412 */
1413 client_check_window_change();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001415 if (quit_pending)
1416 break;
1417 }
Damien Miller5428f641999-11-25 11:54:57 +11001418 /*
1419 * Wait until we have something to do (something becomes
1420 * available on one of the descriptors).
1421 */
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001422 max_fd2 = max_fd;
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001423 client_wait_until_can_do_something(&readset, &writeset,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001424 &max_fd2, &nalloc, rekeying);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001425
Damien Miller95def091999-11-25 00:26:21 +11001426 if (quit_pending)
1427 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001429 /* Do channel operations unless rekeying in progress. */
1430 if (!rekeying) {
1431 channel_after_select(readset, writeset);
Damien Millera5539d22003-04-09 20:50:06 +10001432 if (need_rekeying || packet_need_rekeying()) {
1433 debug("need rekeying");
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001434 xxx_kex->done = 0;
1435 kex_send_kexinit(xxx_kex);
1436 need_rekeying = 0;
1437 }
1438 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Damien Miller1383bd82000-04-06 12:32:37 +10001440 /* Buffer input from the connection. */
Damien Miller5e953212001-01-30 09:14:00 +11001441 client_process_net_input(readset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001442
Damien Miller0e220db2004-06-15 10:34:08 +10001443 /* Accept control connections. */
Damien Millerb1cbfa22008-05-19 16:00:08 +10001444 if (muxserver_sock != -1 &&FD_ISSET(muxserver_sock, readset)) {
1445 if (muxserver_accept_control())
1446 quit_pending = 1;
1447 }
Damien Miller0e220db2004-06-15 10:34:08 +10001448
Damien Miller1383bd82000-04-06 12:32:37 +10001449 if (quit_pending)
1450 break;
1451
1452 if (!compat20) {
1453 /* Buffer data from stdin */
Damien Miller5e953212001-01-30 09:14:00 +11001454 client_process_input(readset);
Damien Miller1383bd82000-04-06 12:32:37 +10001455 /*
1456 * Process output to stdout and stderr. Output to
1457 * the connection is processed elsewhere (above).
1458 */
Damien Miller5e953212001-01-30 09:14:00 +11001459 client_process_output(writeset);
Damien Miller1383bd82000-04-06 12:32:37 +10001460 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001461
Darren Tucker4d5cd332008-06-13 04:51:14 +10001462 /*
1463 * Send as much buffered packet data as possible to the
1464 * sender.
1465 */
Damien Miller5e953212001-01-30 09:14:00 +11001466 if (FD_ISSET(connection_out, writeset))
Damien Miller95def091999-11-25 00:26:21 +11001467 packet_write_poll();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001468 }
Damien Miller5e953212001-01-30 09:14:00 +11001469 if (readset)
1470 xfree(readset);
1471 if (writeset)
1472 xfree(writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473
Damien Miller95def091999-11-25 00:26:21 +11001474 /* Terminate the session. */
1475
1476 /* Stop watching for window change. */
Darren Tucker5d78de62004-11-05 20:35:44 +11001477 signal(SIGWINCH, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001478
Ben Lindstrom601e4362001-06-21 03:19:23 +00001479 channel_free_all();
Damien Miller95def091999-11-25 00:26:21 +11001480
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001481 if (have_pty)
1482 leave_raw_mode();
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001483
1484 /* restore blocking io */
1485 if (!isatty(fileno(stdin)))
1486 unset_nonblock(fileno(stdin));
1487 if (!isatty(fileno(stdout)))
1488 unset_nonblock(fileno(stdout));
1489 if (!isatty(fileno(stderr)))
1490 unset_nonblock(fileno(stderr));
1491
Damien Millerd6965512003-12-17 16:31:53 +11001492 /*
1493 * If there was no shell or command requested, there will be no remote
1494 * exit status to be returned. In that case, clear error code if the
1495 * connection was deliberately terminated at this end.
1496 */
1497 if (no_shell_flag && received_signal == SIGTERM) {
1498 received_signal = 0;
1499 exit_status = 0;
1500 }
1501
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10001502 if (received_signal)
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001503 fatal("Killed by signal %d.", (int) received_signal);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001504
1505 /*
1506 * In interactive mode (with pseudo tty) display a message indicating
1507 * that the connection has been closed.
1508 */
1509 if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001510 snprintf(buf, sizeof buf,
1511 "Connection to %.64s closed.\r\n", host);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001512 buffer_append(&stderr_buffer, buf, strlen(buf));
1513 }
1514
Damien Miller95def091999-11-25 00:26:21 +11001515 /* Output any buffered data for stdout. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001516 while (buffer_len(&stdout_buffer) > 0) {
1517 len = write(fileno(stdout), buffer_ptr(&stdout_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001518 buffer_len(&stdout_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001519 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001520 error("Write failed flushing stdout buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001521 break;
1522 }
Damien Miller95def091999-11-25 00:26:21 +11001523 buffer_consume(&stdout_buffer, len);
1524 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001525
Damien Miller95def091999-11-25 00:26:21 +11001526 /* Output any buffered data for stderr. */
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001527 while (buffer_len(&stderr_buffer) > 0) {
1528 len = write(fileno(stderr), buffer_ptr(&stderr_buffer),
Damien Miller037a0dc1999-12-07 15:38:31 +11001529 buffer_len(&stderr_buffer));
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001530 if (len <= 0) {
Damien Miller95def091999-11-25 00:26:21 +11001531 error("Write failed flushing stderr buffer.");
Ben Lindstromc93e84c2001-05-12 00:08:37 +00001532 break;
1533 }
Damien Miller95def091999-11-25 00:26:21 +11001534 buffer_consume(&stderr_buffer, len);
1535 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001536
Damien Miller95def091999-11-25 00:26:21 +11001537 /* Clear and free any buffers. */
1538 memset(buf, 0, sizeof(buf));
1539 buffer_free(&stdin_buffer);
1540 buffer_free(&stdout_buffer);
1541 buffer_free(&stderr_buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001542
Damien Miller95def091999-11-25 00:26:21 +11001543 /* Report bytes transferred, and transfer rates. */
1544 total_time = get_current_time() - start_time;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001545 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
1546 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
1547 verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
1548 obytes, ibytes, total_time);
Damien Miller95def091999-11-25 00:26:21 +11001549 if (total_time > 0)
Damien Millerb61f3fc2008-07-11 17:36:48 +10001550 verbose("Bytes per second: sent %.1f, received %.1f",
1551 obytes / total_time, ibytes / total_time);
Damien Miller95def091999-11-25 00:26:21 +11001552 /* Return the exit status of the program. */
1553 debug("Exit status %d", exit_status);
1554 return exit_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001555}
Damien Millerb38eff82000-04-01 11:09:21 +10001556
1557/*********/
1558
Ben Lindstrombba81212001-06-25 05:01:22 +00001559static void
Damien Miller630d6f42002-01-22 23:17:30 +11001560client_input_stdout_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001561{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001562 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001563 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001564 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001565 buffer_append(&stdout_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001566 memset(data, 0, data_len);
1567 xfree(data);
1568}
Ben Lindstrombba81212001-06-25 05:01:22 +00001569static void
Damien Miller630d6f42002-01-22 23:17:30 +11001570client_input_stderr_data(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001571{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001572 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001573 char *data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001574 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001575 buffer_append(&stderr_buffer, data, data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001576 memset(data, 0, data_len);
1577 xfree(data);
1578}
Ben Lindstrombba81212001-06-25 05:01:22 +00001579static void
Damien Miller630d6f42002-01-22 23:17:30 +11001580client_input_exit_status(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001581{
Damien Millerb38eff82000-04-01 11:09:21 +10001582 exit_status = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001583 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001584 /* Acknowledge the exit. */
1585 packet_start(SSH_CMSG_EXIT_CONFIRMATION);
1586 packet_send();
1587 /*
1588 * Must wait for packet to be sent since we are
1589 * exiting the loop.
1590 */
1591 packet_write_wait();
1592 /* Flag that we want to exit. */
1593 quit_pending = 1;
1594}
Darren Tucker5dcdd212003-10-02 16:17:00 +10001595static void
1596client_input_agent_open(int type, u_int32_t seq, void *ctxt)
1597{
1598 Channel *c = NULL;
1599 int remote_id, sock;
1600
1601 /* Read the remote channel number from the message. */
1602 remote_id = packet_get_int();
1603 packet_check_eom();
1604
1605 /*
1606 * Get a connection to the local authentication agent (this may again
1607 * get forwarded).
1608 */
1609 sock = ssh_get_authentication_socket();
1610
1611 /*
1612 * If we could not connect the agent, send an error message back to
1613 * the server. This should never happen unless the agent dies,
1614 * because authentication forwarding is only enabled if we have an
1615 * agent.
1616 */
1617 if (sock >= 0) {
1618 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
1619 -1, 0, 0, 0, "authentication agent connection", 1);
1620 c->remote_id = remote_id;
1621 c->force_drain = 1;
1622 }
1623 if (c == NULL) {
1624 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1625 packet_put_int(remote_id);
1626 } else {
1627 /* Send a confirmation to the remote host. */
1628 debug("Forwarding authentication connection.");
1629 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1630 packet_put_int(remote_id);
1631 packet_put_int(c->self);
1632 }
1633 packet_send();
1634}
Damien Millerb38eff82000-04-01 11:09:21 +10001635
Ben Lindstrombba81212001-06-25 05:01:22 +00001636static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001637client_request_forwarded_tcpip(const char *request_type, int rchan)
1638{
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001639 Channel *c = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001640 char *listen_address, *originator_address;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001641 u_short listen_port, originator_port;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001642
1643 /* Get rest of the packet */
1644 listen_address = packet_get_string(NULL);
1645 listen_port = packet_get_int();
1646 originator_address = packet_get_string(NULL);
1647 originator_port = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001648 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001649
Damien Millerbd740252008-05-19 15:37:09 +10001650 debug("client_request_forwarded_tcpip: listen %s port %d, "
1651 "originator %s port %d", listen_address, listen_port,
1652 originator_address, originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001653
Damien Millerbd740252008-05-19 15:37:09 +10001654 c = channel_connect_by_listen_address(listen_port,
1655 "forwarded-tcpip", originator_address);
1656
Damien Miller0bc1bd82000-11-13 22:57:25 +11001657 xfree(originator_address);
1658 xfree(listen_address);
1659 return c;
1660}
1661
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001662static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001663client_request_x11(const char *request_type, int rchan)
1664{
1665 Channel *c = NULL;
1666 char *originator;
Damien Miller3dc71ad2009-01-28 16:31:22 +11001667 u_short originator_port;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001668 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669
1670 if (!options.forward_x11) {
1671 error("Warning: ssh server tried X11 forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001672 error("Warning: this is probably a break-in attempt by a "
1673 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001674 return NULL;
1675 }
1676 originator = packet_get_string(NULL);
1677 if (datafellows & SSH_BUG_X11FWD) {
1678 debug2("buggy server: x11 request w/o originator_port");
1679 originator_port = 0;
1680 } else {
1681 originator_port = packet_get_int();
1682 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001683 packet_check_eom();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001684 /* XXX check permission */
Damien Millerd83ff352001-01-30 09:19:34 +11001685 debug("client_request_x11: request from %s %d", originator,
1686 originator_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001687 xfree(originator);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001688 sock = x11_connect_display();
1689 if (sock < 0)
1690 return NULL;
1691 c = channel_new("x11",
1692 SSH_CHANNEL_X11_OPEN, sock, sock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001693 CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001694 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001695 return c;
1696}
1697
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001698static Channel *
Damien Miller0bc1bd82000-11-13 22:57:25 +11001699client_request_agent(const char *request_type, int rchan)
1700{
1701 Channel *c = NULL;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001702 int sock;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001703
1704 if (!options.forward_agent) {
1705 error("Warning: ssh server tried agent forwarding.");
Darren Tucker4d5cd332008-06-13 04:51:14 +10001706 error("Warning: this is probably a break-in attempt by a "
1707 "malicious server.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001708 return NULL;
1709 }
Darren Tucker82a3d2b2007-02-19 22:10:25 +11001710 sock = ssh_get_authentication_socket();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001711 if (sock < 0)
1712 return NULL;
1713 c = channel_new("authentication agent connection",
1714 SSH_CHANNEL_OPEN, sock, sock, -1,
Darren Tucker5baa1702007-12-29 09:37:10 +11001715 CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001716 "authentication agent connection", 1);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001717 c->force_drain = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001718 return c;
1719}
1720
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001721int
1722client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
1723{
1724 Channel *c;
1725 int fd;
1726
1727 if (tun_mode == SSH_TUNMODE_NO)
1728 return 0;
1729
1730 if (!compat20) {
Damien Millerb3f2c9f2009-01-28 16:15:30 +11001731 error("Tunnel forwarding is not supported for protocol 1");
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001732 return -1;
1733 }
1734
1735 debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
1736
1737 /* Open local tunnel device */
1738 if ((fd = tun_open(local_tun, tun_mode)) == -1) {
1739 error("Tunnel device open failed.");
1740 return -1;
1741 }
1742
1743 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1744 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
1745 c->datagram = 1;
1746
1747#if defined(SSH_TUN_FILTER)
1748 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1749 channel_register_filter(c->self, sys_tun_infilter,
Darren Tucker1cf65ae2008-06-13 05:09:18 +10001750 sys_tun_outfilter, NULL, NULL);
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001751#endif
1752
1753 packet_start(SSH2_MSG_CHANNEL_OPEN);
1754 packet_put_cstring("tun@openssh.com");
1755 packet_put_int(c->self);
1756 packet_put_int(c->local_window_max);
1757 packet_put_int(c->local_maxpacket);
1758 packet_put_int(tun_mode);
1759 packet_put_int(remote_tun);
1760 packet_send();
1761
1762 return 0;
1763}
1764
Damien Millerbd483e72000-04-30 10:00:53 +10001765/* XXXX move to generic input handler */
Ben Lindstrombba81212001-06-25 05:01:22 +00001766static void
Damien Miller630d6f42002-01-22 23:17:30 +11001767client_input_channel_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10001768{
1769 Channel *c = NULL;
1770 char *ctype;
Damien Millerbd483e72000-04-30 10:00:53 +10001771 int rchan;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001772 u_int rmaxpack, rwindow, len;
Damien Millerbd483e72000-04-30 10:00:53 +10001773
1774 ctype = packet_get_string(&len);
1775 rchan = packet_get_int();
1776 rwindow = packet_get_int();
1777 rmaxpack = packet_get_int();
1778
Damien Millere247cc42000-05-07 12:03:14 +10001779 debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
Damien Millerbd483e72000-04-30 10:00:53 +10001780 ctype, rchan, rwindow, rmaxpack);
1781
Damien Miller0bc1bd82000-11-13 22:57:25 +11001782 if (strcmp(ctype, "forwarded-tcpip") == 0) {
1783 c = client_request_forwarded_tcpip(ctype, rchan);
1784 } else if (strcmp(ctype, "x11") == 0) {
1785 c = client_request_x11(ctype, rchan);
1786 } else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
1787 c = client_request_agent(ctype, rchan);
Damien Millerbd483e72000-04-30 10:00:53 +10001788 }
1789/* XXX duplicate : */
1790 if (c != NULL) {
1791 debug("confirm %s", ctype);
1792 c->remote_id = rchan;
1793 c->remote_window = rwindow;
1794 c->remote_maxpacket = rmaxpack;
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001795 if (c->type != SSH_CHANNEL_CONNECTING) {
1796 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1797 packet_put_int(c->remote_id);
1798 packet_put_int(c->self);
1799 packet_put_int(c->local_window);
1800 packet_put_int(c->local_maxpacket);
1801 packet_send();
1802 }
Damien Millerbd483e72000-04-30 10:00:53 +10001803 } else {
1804 debug("failure %s", ctype);
1805 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1806 packet_put_int(rchan);
1807 packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
Ben Lindstromf3436742001-04-29 19:52:00 +00001808 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Ben Lindstroma69d89b2001-05-09 00:01:18 +00001809 packet_put_cstring("open failed");
Ben Lindstromf3436742001-04-29 19:52:00 +00001810 packet_put_cstring("");
1811 }
Damien Millerbd483e72000-04-30 10:00:53 +10001812 packet_send();
1813 }
1814 xfree(ctype);
1815}
Ben Lindstrombba81212001-06-25 05:01:22 +00001816static void
Damien Miller630d6f42002-01-22 23:17:30 +11001817client_input_channel_req(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom5b828322001-02-09 01:34:36 +00001818{
1819 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001820 int exitval, id, reply, success = 0;
Ben Lindstrom5b828322001-02-09 01:34:36 +00001821 char *rtype;
1822
1823 id = packet_get_int();
1824 rtype = packet_get_string(NULL);
1825 reply = packet_get_char();
1826
1827 debug("client_input_channel_req: channel %d rtype %s reply %d",
1828 id, rtype, reply);
1829
Damien Miller3bbd8782004-06-18 22:23:22 +10001830 if (id == -1) {
1831 error("client_input_channel_req: request for channel -1");
1832 } else if ((c = channel_lookup(id)) == NULL) {
Darren Tucker4d5cd332008-06-13 04:51:14 +10001833 error("client_input_channel_req: channel %d: "
1834 "unknown channel", id);
Damien Millerbab9bd42008-05-19 16:06:47 +10001835 } else if (strcmp(rtype, "eow@openssh.com") == 0) {
1836 packet_check_eom();
1837 chan_rcvd_eow(c);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001838 } else if (strcmp(rtype, "exit-status") == 0) {
Damien Miller0e220db2004-06-15 10:34:08 +10001839 exitval = packet_get_int();
1840 if (id == session_ident) {
1841 success = 1;
1842 exit_status = exitval;
1843 } else if (c->ctl_fd == -1) {
1844 error("client_input_channel_req: unexpected channel %d",
1845 session_ident);
1846 } else {
1847 atomicio(vwrite, c->ctl_fd, &exitval, sizeof(exitval));
1848 success = 1;
1849 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001850 packet_check_eom();
Ben Lindstrom5b828322001-02-09 01:34:36 +00001851 }
1852 if (reply) {
1853 packet_start(success ?
1854 SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
Damien Miller8533c782008-12-08 09:54:40 +11001855 packet_put_int(c->remote_id);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001856 packet_send();
1857 }
1858 xfree(rtype);
1859}
Damien Millerc3fa4072002-01-22 23:21:58 +11001860static void
1861client_input_global_request(int type, u_int32_t seq, void *ctxt)
1862{
1863 char *rtype;
1864 int want_reply;
1865 int success = 0;
1866
1867 rtype = packet_get_string(NULL);
1868 want_reply = packet_get_char();
Damien Miller509b0102003-12-17 16:33:10 +11001869 debug("client_input_global_request: rtype %s want_reply %d",
1870 rtype, want_reply);
Damien Millerc3fa4072002-01-22 23:21:58 +11001871 if (want_reply) {
1872 packet_start(success ?
1873 SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
1874 packet_send();
1875 packet_write_wait();
1876 }
1877 xfree(rtype);
1878}
Damien Millerbd483e72000-04-30 10:00:53 +10001879
Damien Miller0e220db2004-06-15 10:34:08 +10001880void
Darren Tuckerfc959702004-07-17 16:12:08 +10001881client_session2_setup(int id, int want_tty, int want_subsystem,
Damien Miller5771ed72008-05-19 15:35:33 +10001882 const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
Damien Miller0e220db2004-06-15 10:34:08 +10001883{
1884 int len;
Darren Tucker5d78de62004-11-05 20:35:44 +11001885 Channel *c = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +10001886
1887 debug2("%s: id %d", __func__, id);
1888
Darren Tucker5d78de62004-11-05 20:35:44 +11001889 if ((c = channel_lookup(id)) == NULL)
1890 fatal("client_session2_setup: channel %d: unknown channel", id);
1891
Damien Miller0e220db2004-06-15 10:34:08 +10001892 if (want_tty) {
1893 struct winsize ws;
Damien Miller0e220db2004-06-15 10:34:08 +10001894
1895 /* Store window size in the packet. */
1896 if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
1897 memset(&ws, 0, sizeof(ws));
1898
Damien Miller5771ed72008-05-19 15:35:33 +10001899 channel_request_start(id, "pty-req", 1);
1900 client_expect_confirm(id, "PTY allocation", 0);
Damien Miller0e220db2004-06-15 10:34:08 +10001901 packet_put_cstring(term != NULL ? term : "");
Damien Miller71a73672006-03-26 14:04:36 +11001902 packet_put_int((u_int)ws.ws_col);
1903 packet_put_int((u_int)ws.ws_row);
1904 packet_put_int((u_int)ws.ws_xpixel);
1905 packet_put_int((u_int)ws.ws_ypixel);
Darren Tuckerdf189fb2008-06-08 12:55:32 +10001906 if (tiop == NULL)
1907 tiop = get_saved_tio();
1908 tty_make_modes(-1, tiop);
Damien Miller0e220db2004-06-15 10:34:08 +10001909 packet_send();
1910 /* XXX wait for reply */
Darren Tucker5d78de62004-11-05 20:35:44 +11001911 c->client_tty = 1;
Damien Miller0e220db2004-06-15 10:34:08 +10001912 }
1913
1914 /* Transfer any environment variables from client to server */
Damien Miller3756dce2004-06-18 01:17:29 +10001915 if (options.num_send_env != 0 && env != NULL) {
Damien Miller0e220db2004-06-15 10:34:08 +10001916 int i, j, matched;
Damien Miller0e220db2004-06-15 10:34:08 +10001917 char *name, *val;
1918
1919 debug("Sending environment.");
Damien Miller3756dce2004-06-18 01:17:29 +10001920 for (i = 0; env[i] != NULL; i++) {
Damien Miller0e220db2004-06-15 10:34:08 +10001921 /* Split */
Damien Miller3756dce2004-06-18 01:17:29 +10001922 name = xstrdup(env[i]);
Damien Miller0e220db2004-06-15 10:34:08 +10001923 if ((val = strchr(name, '=')) == NULL) {
Damien Miller0a0176e2005-11-05 15:07:59 +11001924 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001925 continue;
1926 }
1927 *val++ = '\0';
1928
1929 matched = 0;
1930 for (j = 0; j < options.num_send_env; j++) {
1931 if (match_pattern(name, options.send_env[j])) {
1932 matched = 1;
1933 break;
1934 }
1935 }
1936 if (!matched) {
1937 debug3("Ignored env %s", name);
Damien Miller0a0176e2005-11-05 15:07:59 +11001938 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001939 continue;
1940 }
1941
1942 debug("Sending env %s = %s", name, val);
1943 channel_request_start(id, "env", 0);
1944 packet_put_cstring(name);
1945 packet_put_cstring(val);
1946 packet_send();
Damien Miller0a0176e2005-11-05 15:07:59 +11001947 xfree(name);
Damien Miller0e220db2004-06-15 10:34:08 +10001948 }
1949 }
1950
1951 len = buffer_len(cmd);
1952 if (len > 0) {
1953 if (len > 900)
1954 len = 900;
1955 if (want_subsystem) {
Damien Miller5771ed72008-05-19 15:35:33 +10001956 debug("Sending subsystem: %.*s",
1957 len, (u_char*)buffer_ptr(cmd));
1958 channel_request_start(id, "subsystem", 1);
1959 client_expect_confirm(id, "subsystem", 1);
Damien Miller0e220db2004-06-15 10:34:08 +10001960 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10001961 debug("Sending command: %.*s",
1962 len, (u_char*)buffer_ptr(cmd));
1963 channel_request_start(id, "exec", 1);
1964 client_expect_confirm(id, "exec", 1);
Damien Miller0e220db2004-06-15 10:34:08 +10001965 }
1966 packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
1967 packet_send();
1968 } else {
Damien Miller5771ed72008-05-19 15:35:33 +10001969 channel_request_start(id, "shell", 1);
1970 client_expect_confirm(id, "shell", 1);
Damien Miller0e220db2004-06-15 10:34:08 +10001971 packet_send();
1972 }
1973}
1974
Ben Lindstrombba81212001-06-25 05:01:22 +00001975static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001976client_init_dispatch_20(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001977{
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001978 dispatch_init(&dispatch_protocol_error);
Damien Miller2797f7f2002-04-23 21:09:44 +10001979
Damien Miller1383bd82000-04-06 12:32:37 +10001980 dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
1981 dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
1982 dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
1983 dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
Damien Millerbd483e72000-04-30 10:00:53 +10001984 dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
Damien Miller1383bd82000-04-06 12:32:37 +10001985 dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
1986 dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
Ben Lindstrom5b828322001-02-09 01:34:36 +00001987 dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
Damien Miller1383bd82000-04-06 12:32:37 +10001988 dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
Damien Millerb84886b2008-05-19 15:05:07 +10001989 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
1990 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
Damien Millerc3fa4072002-01-22 23:21:58 +11001991 dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001992
1993 /* rekeying */
1994 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
Damien Miller2797f7f2002-04-23 21:09:44 +10001995
1996 /* global request reply messages */
1997 dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
1998 dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
Damien Miller1383bd82000-04-06 12:32:37 +10001999}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002000
Ben Lindstrombba81212001-06-25 05:01:22 +00002001static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002002client_init_dispatch_13(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002003{
2004 dispatch_init(NULL);
2005 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close);
2006 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, &channel_input_close_confirmation);
2007 dispatch_set(SSH_MSG_CHANNEL_DATA, &channel_input_data);
Damien Millerb38eff82000-04-01 11:09:21 +10002008 dispatch_set(SSH_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
2009 dispatch_set(SSH_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
2010 dispatch_set(SSH_MSG_PORT_OPEN, &channel_input_port_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002011 dispatch_set(SSH_SMSG_EXITSTATUS, &client_input_exit_status);
2012 dispatch_set(SSH_SMSG_STDERR_DATA, &client_input_stderr_data);
2013 dispatch_set(SSH_SMSG_STDOUT_DATA, &client_input_stdout_data);
Damien Miller69b69aa2000-10-28 14:19:58 +11002014
2015 dispatch_set(SSH_SMSG_AGENT_OPEN, options.forward_agent ?
Darren Tucker5dcdd212003-10-02 16:17:00 +10002016 &client_input_agent_open : &deny_input_open);
Damien Miller69b69aa2000-10-28 14:19:58 +11002017 dispatch_set(SSH_SMSG_X11_OPEN, options.forward_x11 ?
2018 &x11_input_open : &deny_input_open);
Damien Millerb38eff82000-04-01 11:09:21 +10002019}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002020
Ben Lindstrombba81212001-06-25 05:01:22 +00002021static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002022client_init_dispatch_15(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002023{
2024 client_init_dispatch_13();
2025 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof);
2026 dispatch_set(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION, & channel_input_oclose);
2027}
Darren Tucker4d5cd332008-06-13 04:51:14 +10002028
Ben Lindstromdb47f382001-07-04 05:10:27 +00002029static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00002030client_init_dispatch(void)
Damien Millerb38eff82000-04-01 11:09:21 +10002031{
Damien Miller1383bd82000-04-06 12:32:37 +10002032 if (compat20)
2033 client_init_dispatch_20();
2034 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002035 client_init_dispatch_13();
2036 else
2037 client_init_dispatch_15();
2038}
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002039
2040/* client specific fatal cleanup */
2041void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002042cleanup_exit(int i)
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002043{
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002044 leave_raw_mode();
2045 leave_non_blocking();
Damien Millerb1cbfa22008-05-19 16:00:08 +10002046 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10002047 unlink(options.control_path);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002048 _exit(i);
Darren Tucker9a2c4cd2003-09-22 21:16:05 +10002049}