2017-05-31 11:15:42 +02:00
|
|
|
/* $OpenBSD: clientloop.c,v 1.299 2017/05/31 09:15:42 deraadt Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-09-16 04:29:08 +02:00
|
|
|
* The main loop for the interactive session (client side).
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* Copyright (c) 1999 Theo de Raadt. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-04-06 04:32:37 +02:00
|
|
|
* SSH2 support added by Markus Friedl.
|
2001-07-04 05:32:30 +02:00
|
|
|
* Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 01:28:34 +01:00
|
|
|
|
2006-03-15 01:45:54 +01:00
|
|
|
#include <sys/types.h>
|
2006-08-05 02:57:45 +02:00
|
|
|
#include <sys/ioctl.h>
|
2006-03-15 01:45:54 +01:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
2006-08-05 02:57:45 +02:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
2006-07-10 13:08:03 +02:00
|
|
|
#include <sys/socket.h>
|
2006-03-15 01:11:28 +01:00
|
|
|
|
2006-03-15 01:53:45 +01:00
|
|
|
#include <ctype.h>
|
2006-07-12 14:22:46 +02:00
|
|
|
#include <errno.h>
|
2006-03-15 04:42:54 +01:00
|
|
|
#ifdef HAVE_PATHS_H
|
2006-03-15 01:16:59 +01:00
|
|
|
#include <paths.h>
|
2006-03-15 04:42:54 +01:00
|
|
|
#endif
|
2006-03-15 01:52:09 +01:00
|
|
|
#include <signal.h>
|
2006-09-01 07:38:36 +02:00
|
|
|
#include <stdarg.h>
|
2006-08-05 03:37:59 +02:00
|
|
|
#include <stdio.h>
|
2006-08-05 03:34:19 +02:00
|
|
|
#include <stdlib.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-03-15 01:11:28 +01:00
|
|
|
#include <termios.h>
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <pwd.h>
|
2006-07-24 06:01:23 +02:00
|
|
|
#include <unistd.h>
|
2015-01-21 00:14:00 +01:00
|
|
|
#include <limits.h>
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2008-05-19 07:05:07 +02:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "ssh.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "ssh2.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "packet.h"
|
|
|
|
#include "buffer.h"
|
2000-04-01 03:09:21 +02:00
|
|
|
#include "compat.h"
|
2001-06-09 02:36:26 +02:00
|
|
|
#include "channels.h"
|
2000-04-01 03:09:21 +02:00
|
|
|
#include "dispatch.h"
|
2000-11-13 12:57:25 +01:00
|
|
|
#include "key.h"
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "cipher.h"
|
2001-04-04 04:03:04 +02:00
|
|
|
#include "kex.h"
|
2015-07-10 08:21:53 +02:00
|
|
|
#include "myproposal.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "log.h"
|
2014-07-18 06:11:24 +02:00
|
|
|
#include "misc.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "readconf.h"
|
2001-01-18 03:04:35 +01:00
|
|
|
#include "clientloop.h"
|
2005-12-13 09:29:36 +01:00
|
|
|
#include "sshconnect.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "authfd.h"
|
|
|
|
#include "atomicio.h"
|
2004-05-13 08:06:46 +02:00
|
|
|
#include "sshpty.h"
|
2004-06-15 02:34:08 +02:00
|
|
|
#include "match.h"
|
|
|
|
#include "msg.h"
|
2015-01-14 21:05:27 +01:00
|
|
|
#include "ssherr.h"
|
2015-01-26 04:04:45 +01:00
|
|
|
#include "hostfile.h"
|
2000-10-28 05:19:58 +02:00
|
|
|
|
|
|
|
/* import options */
|
|
|
|
extern Options options;
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Flag indicating that stdin should be redirected from /dev/null. */
|
|
|
|
extern int stdin_null_flag;
|
|
|
|
|
2003-12-17 06:31:53 +01:00
|
|
|
/* Flag indicating that no shell has been requested */
|
|
|
|
extern int no_shell_flag;
|
|
|
|
|
2016-07-23 04:54:08 +02:00
|
|
|
/* Flag indicating that ssh should daemonise after authentication is complete */
|
|
|
|
extern int fork_after_authentication_flag;
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
/* Control socket */
|
2010-01-26 03:26:22 +01:00
|
|
|
extern int muxserver_sock; /* XXX use mux_client_cleanup() instead */
|
2004-06-15 02:34:08 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Name of the host we are connecting to. This is the name given on the
|
|
|
|
* command line, or the HostName specified for the user-supplied name in a
|
|
|
|
* configuration file.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
extern char *host;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Flag to indicate that we have received a window change signal which has
|
|
|
|
* not yet been processed. This will cause a message indicating the new
|
|
|
|
* window size to be sent to the server a little later. This is volatile
|
|
|
|
* because this is updated in a signal handler.
|
|
|
|
*/
|
2001-12-06 17:48:14 +01:00
|
|
|
static volatile sig_atomic_t received_window_change_signal = 0;
|
|
|
|
static volatile sig_atomic_t received_signal = 0;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2005-11-05 05:14:59 +01:00
|
|
|
/* Flag indicating whether the user's terminal is in non-blocking mode. */
|
1999-10-27 05:42:43 +02:00
|
|
|
static int in_non_blocking_mode = 0;
|
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
/* Time when backgrounded control master using ControlPersist should exit */
|
|
|
|
static time_t control_persist_exit_time = 0;
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Common data for the client loop code. */
|
2010-01-26 03:26:22 +01:00
|
|
|
volatile sig_atomic_t quit_pending; /* Set non-zero to quit the loop. */
|
1999-11-24 14:26:21 +01:00
|
|
|
static int last_was_cr; /* Last character was a newline. */
|
2008-06-12 20:51:14 +02:00
|
|
|
static int exit_status; /* Used to store the command exit status. */
|
2017-05-01 01:21:54 +02:00
|
|
|
static Buffer stderr_buffer; /* Used for final exit message. */
|
1999-11-24 14:26:21 +01:00
|
|
|
static int connection_in; /* Connection to server (input). */
|
|
|
|
static int connection_out; /* Connection to server (output). */
|
2001-04-05 01:46:07 +02:00
|
|
|
static int need_rekeying; /* Set to non-zero if rekeying is requested. */
|
2010-06-26 02:02:24 +02:00
|
|
|
static int session_closed; /* In SSH2: login session closed. */
|
2015-07-01 04:26:31 +02:00
|
|
|
static u_int x11_refuse_time; /* If >0, refuse x11 opens after this time. */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void client_init_dispatch(void);
|
2000-04-06 04:32:37 +02:00
|
|
|
int session_ident = -1;
|
|
|
|
|
2008-06-12 20:49:33 +02:00
|
|
|
/* Track escape per proto2 channel */
|
|
|
|
struct escape_filter_ctx {
|
|
|
|
int escape_pending;
|
|
|
|
int escape_char;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Context for channel confirmation replies */
|
2008-05-19 07:35:33 +02:00
|
|
|
struct channel_reply_ctx {
|
|
|
|
const char *request_type;
|
2011-05-15 00:48:05 +02:00
|
|
|
int id;
|
|
|
|
enum confirm_action action;
|
2008-05-19 07:35:33 +02:00
|
|
|
};
|
|
|
|
|
2008-06-12 20:50:27 +02:00
|
|
|
/* Global request success/failure callbacks */
|
|
|
|
struct global_confirm {
|
|
|
|
TAILQ_ENTRY(global_confirm) entry;
|
|
|
|
global_confirm_cb *cb;
|
|
|
|
void *ctx;
|
|
|
|
int ref_count;
|
|
|
|
};
|
|
|
|
TAILQ_HEAD(global_confirms, global_confirm);
|
|
|
|
static struct global_confirms global_confirms =
|
|
|
|
TAILQ_HEAD_INITIALIZER(global_confirms);
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
void ssh_process_session2_setup(int, int, int, Buffer *);
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Restores stdin to blocking mode. */
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-02-09 03:11:24 +01:00
|
|
|
leave_non_blocking(void)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
if (in_non_blocking_mode) {
|
2004-06-15 07:47:51 +02:00
|
|
|
unset_nonblock(fileno(stdin));
|
1999-11-24 14:26:21 +01:00
|
|
|
in_non_blocking_mode = 0;
|
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Signal handler for the window change signal (SIGWINCH). This just sets a
|
|
|
|
* flag indicating that the window has changed.
|
|
|
|
*/
|
2006-03-26 04:59:20 +02:00
|
|
|
/*ARGSUSED */
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
1999-11-24 14:26:21 +01:00
|
|
|
window_change_handler(int sig)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
received_window_change_signal = 1;
|
|
|
|
signal(SIGWINCH, window_change_handler);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Signal handler for signals that cause the program to terminate. These
|
|
|
|
* signals must be trapped to restore terminal modes.
|
|
|
|
*/
|
2006-03-26 04:59:20 +02:00
|
|
|
/*ARGSUSED */
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
1999-11-24 14:26:21 +01:00
|
|
|
signal_handler(int sig)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-06-09 03:27:31 +02:00
|
|
|
received_signal = sig;
|
|
|
|
quit_pending = 1;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Returns current time in seconds from Jan 1, 1970 with the maximum
|
|
|
|
* available resolution.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static double
|
2001-02-09 03:11:24 +01:00
|
|
|
get_current_time(void)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
/*
|
|
|
|
* Sets control_persist_exit_time to the absolute time when the
|
|
|
|
* backgrounded control master should exit due to expiry of the
|
|
|
|
* ControlPersist timeout. Sets it to 0 if we are not a backgrounded
|
|
|
|
* control master process, or if there is no ControlPersist timeout.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
set_control_persist_exit_time(void)
|
|
|
|
{
|
|
|
|
if (muxserver_sock == -1 || !options.control_persist
|
2011-05-05 06:16:22 +02:00
|
|
|
|| options.control_persist_timeout == 0) {
|
2010-08-03 08:04:46 +02:00
|
|
|
/* not using a ControlPersist timeout */
|
|
|
|
control_persist_exit_time = 0;
|
2011-05-05 06:16:22 +02:00
|
|
|
} else if (channel_still_open()) {
|
2010-08-03 08:04:46 +02:00
|
|
|
/* some client connections are still open */
|
|
|
|
if (control_persist_exit_time > 0)
|
|
|
|
debug2("%s: cancel scheduled exit", __func__);
|
|
|
|
control_persist_exit_time = 0;
|
|
|
|
} else if (control_persist_exit_time <= 0) {
|
|
|
|
/* a client connection has recently closed */
|
2013-06-01 23:46:16 +02:00
|
|
|
control_persist_exit_time = monotime() +
|
2010-08-03 08:04:46 +02:00
|
|
|
(time_t)options.control_persist_timeout;
|
|
|
|
debug2("%s: schedule exit in %d seconds", __func__,
|
|
|
|
options.control_persist_timeout);
|
|
|
|
}
|
|
|
|
/* else we are already counting down to the timeout */
|
|
|
|
}
|
|
|
|
|
2012-02-10 22:18:17 +01:00
|
|
|
#define SSH_X11_VALID_DISPLAY_CHARS ":/.-_"
|
|
|
|
static int
|
|
|
|
client_x11_display_valid(const char *display)
|
|
|
|
{
|
|
|
|
size_t i, dlen;
|
|
|
|
|
2016-01-14 00:04:47 +01:00
|
|
|
if (display == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2012-02-10 22:18:17 +01:00
|
|
|
dlen = strlen(display);
|
|
|
|
for (i = 0; i < dlen; i++) {
|
2013-11-21 03:57:15 +01:00
|
|
|
if (!isalnum((u_char)display[i]) &&
|
2012-02-10 22:18:17 +01:00
|
|
|
strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
|
|
|
|
debug("Invalid character '%c' in DISPLAY", display[i]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-07-01 04:26:31 +02:00
|
|
|
#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
|
|
|
|
#define X11_TIMEOUT_SLACK 60
|
2016-01-14 00:04:47 +01:00
|
|
|
int
|
2005-06-17 04:54:33 +02:00
|
|
|
client_x11_get_proto(const char *display, const char *xauth_path,
|
2010-06-26 02:02:24 +02:00
|
|
|
u_int trusted, u_int timeout, char **_proto, char **_data)
|
2005-06-17 04:54:33 +02:00
|
|
|
{
|
2016-01-14 00:04:47 +01:00
|
|
|
char cmd[1024], line[512], xdisplay[512];
|
|
|
|
char xauthfile[PATH_MAX], xauthdir[PATH_MAX];
|
2005-06-17 04:54:33 +02:00
|
|
|
static char proto[512], data[512];
|
|
|
|
FILE *f;
|
2016-09-17 20:00:27 +02:00
|
|
|
int got_data = 0, generated = 0, do_unlink = 0, r;
|
2005-06-17 04:54:33 +02:00
|
|
|
struct stat st;
|
2015-07-01 04:26:31 +02:00
|
|
|
u_int now, x11_timeout_real;
|
2005-06-17 04:54:33 +02:00
|
|
|
|
|
|
|
*_proto = proto;
|
|
|
|
*_data = data;
|
2016-01-14 00:04:47 +01:00
|
|
|
proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
|
2005-06-17 04:54:33 +02:00
|
|
|
|
2016-01-14 00:04:47 +01:00
|
|
|
if (!client_x11_display_valid(display)) {
|
2016-02-01 22:18:17 +01:00
|
|
|
if (display != NULL)
|
|
|
|
logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
|
|
|
|
display);
|
2016-01-14 00:04:47 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (xauth_path != NULL && stat(xauth_path, &st) == -1) {
|
|
|
|
debug("No xauth program.");
|
|
|
|
xauth_path = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xauth_path != NULL) {
|
2005-06-17 04:54:33 +02:00
|
|
|
/*
|
|
|
|
* Handle FamilyLocal case where $DISPLAY does
|
|
|
|
* not match an authorization entry. For this we
|
|
|
|
* just try "xauth list unix:displaynum.screennum".
|
|
|
|
* XXX: "localhost" match to determine FamilyLocal
|
|
|
|
* is not perfect.
|
|
|
|
*/
|
|
|
|
if (strncmp(display, "localhost:", 10) == 0) {
|
2016-01-14 00:04:47 +01:00
|
|
|
if ((r = snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
|
|
|
|
display + 10)) < 0 ||
|
|
|
|
(size_t)r >= sizeof(xdisplay)) {
|
|
|
|
error("%s: display name too long", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-06-17 04:54:33 +02:00
|
|
|
display = xdisplay;
|
|
|
|
}
|
|
|
|
if (trusted == 0) {
|
2015-07-01 04:26:31 +02:00
|
|
|
/*
|
2016-01-14 00:04:47 +01:00
|
|
|
* Generate an untrusted X11 auth cookie.
|
|
|
|
*
|
2015-07-01 04:26:31 +02:00
|
|
|
* The authentication cookie should briefly outlive
|
|
|
|
* ssh's willingness to forward X11 connections to
|
|
|
|
* avoid nasty fail-open behaviour in the X server.
|
|
|
|
*/
|
2016-01-14 00:04:47 +01:00
|
|
|
mktemp_proto(xauthdir, sizeof(xauthdir));
|
|
|
|
if (mkdtemp(xauthdir) == NULL) {
|
|
|
|
error("%s: mkdtemp: %s",
|
|
|
|
__func__, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
do_unlink = 1;
|
|
|
|
if ((r = snprintf(xauthfile, sizeof(xauthfile),
|
|
|
|
"%s/xauthfile", xauthdir)) < 0 ||
|
|
|
|
(size_t)r >= sizeof(xauthfile)) {
|
|
|
|
error("%s: xauthfile path too long", __func__);
|
|
|
|
unlink(xauthfile);
|
|
|
|
rmdir(xauthdir);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-07-01 04:26:31 +02:00
|
|
|
if (timeout >= UINT_MAX - X11_TIMEOUT_SLACK)
|
|
|
|
x11_timeout_real = UINT_MAX;
|
|
|
|
else
|
|
|
|
x11_timeout_real = timeout + X11_TIMEOUT_SLACK;
|
2016-01-14 00:04:47 +01:00
|
|
|
if ((r = snprintf(cmd, sizeof(cmd),
|
|
|
|
"%s -f %s generate %s " SSH_X11_PROTO
|
|
|
|
" untrusted timeout %u 2>" _PATH_DEVNULL,
|
|
|
|
xauth_path, xauthfile, display,
|
|
|
|
x11_timeout_real)) < 0 ||
|
|
|
|
(size_t)r >= sizeof(cmd))
|
|
|
|
fatal("%s: cmd too long", __func__);
|
|
|
|
debug2("%s: %s", __func__, cmd);
|
|
|
|
if (x11_refuse_time == 0) {
|
|
|
|
now = monotime() + 1;
|
|
|
|
if (UINT_MAX - timeout < now)
|
|
|
|
x11_refuse_time = UINT_MAX;
|
|
|
|
else
|
|
|
|
x11_refuse_time = now + timeout;
|
|
|
|
channel_set_x11_refuse_time(x11_refuse_time);
|
2005-06-17 04:54:33 +02:00
|
|
|
}
|
2016-01-14 00:04:47 +01:00
|
|
|
if (system(cmd) == 0)
|
|
|
|
generated = 1;
|
2005-06-17 04:54:33 +02:00
|
|
|
}
|
2007-08-15 11:13:41 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When in untrusted mode, we read the cookie only if it was
|
|
|
|
* successfully generated as an untrusted one in the step
|
|
|
|
* above.
|
|
|
|
*/
|
|
|
|
if (trusted || generated) {
|
|
|
|
snprintf(cmd, sizeof(cmd),
|
|
|
|
"%s %s%s list %s 2>" _PATH_DEVNULL,
|
|
|
|
xauth_path,
|
|
|
|
generated ? "-f " : "" ,
|
|
|
|
generated ? xauthfile : "",
|
|
|
|
display);
|
|
|
|
debug2("x11_get_proto: %s", cmd);
|
|
|
|
f = popen(cmd, "r");
|
|
|
|
if (f && fgets(line, sizeof(line), f) &&
|
|
|
|
sscanf(line, "%*s %511s %511s", proto, data) == 2)
|
|
|
|
got_data = 1;
|
|
|
|
if (f)
|
|
|
|
pclose(f);
|
2016-01-14 00:04:47 +01:00
|
|
|
}
|
2005-06-17 04:54:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (do_unlink) {
|
|
|
|
unlink(xauthfile);
|
|
|
|
rmdir(xauthdir);
|
|
|
|
}
|
|
|
|
|
2016-01-14 00:04:47 +01:00
|
|
|
/* Don't fall back to fake X11 data for untrusted forwarding */
|
|
|
|
if (!trusted && !got_data) {
|
|
|
|
error("Warning: untrusted X11 forwarding setup failed: "
|
|
|
|
"xauth key data not generated");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-06-17 04:54:33 +02:00
|
|
|
/*
|
|
|
|
* If we didn't get authentication data, just make up some
|
|
|
|
* data. The forwarding code will check the validity of the
|
|
|
|
* response anyway, and substitute this data. The X11
|
|
|
|
* server, however, will ignore this fake data and use
|
|
|
|
* whatever authentication mechanisms it was using otherwise
|
|
|
|
* for the local connection.
|
|
|
|
*/
|
|
|
|
if (!got_data) {
|
2016-09-17 20:00:27 +02:00
|
|
|
u_int8_t rnd[16];
|
|
|
|
u_int i;
|
2005-06-17 04:54:33 +02:00
|
|
|
|
|
|
|
logit("Warning: No xauth data; "
|
|
|
|
"using fake authentication data for X11 forwarding.");
|
|
|
|
strlcpy(proto, SSH_X11_PROTO, sizeof proto);
|
2016-09-17 20:00:27 +02:00
|
|
|
arc4random_buf(rnd, sizeof(rnd));
|
|
|
|
for (i = 0; i < sizeof(rnd); i++) {
|
2005-06-17 04:54:33 +02:00
|
|
|
snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
|
2016-09-17 20:00:27 +02:00
|
|
|
rnd[i]);
|
2005-06-17 04:54:33 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 00:04:47 +01:00
|
|
|
|
|
|
|
return 0;
|
2005-06-17 04:54:33 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Checks if the client window has changed, and sends a packet about it to
|
|
|
|
* the server if so. The actual change is detected elsewhere (by a software
|
|
|
|
* interrupt on Unix); this just checks the flag and sends a message if
|
|
|
|
* appropriate.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-02-09 03:11:24 +01:00
|
|
|
client_check_window_change(void)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2017-05-01 01:13:25 +02:00
|
|
|
if (!received_window_change_signal)
|
2000-04-06 04:32:37 +02:00
|
|
|
return;
|
|
|
|
/** XXX race */
|
|
|
|
received_window_change_signal = 0;
|
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
debug2("%s: changed", __func__);
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
channel_send_window_changes();
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
client_global_request_reply(int type, u_int32_t seq, struct ssh *ssh)
|
2003-12-17 06:33:10 +01:00
|
|
|
{
|
2008-06-12 20:50:27 +02:00
|
|
|
struct global_confirm *gc;
|
|
|
|
|
|
|
|
if ((gc = TAILQ_FIRST(&global_confirms)) == NULL)
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2008-06-12 20:50:27 +02:00
|
|
|
if (gc->cb != NULL)
|
|
|
|
gc->cb(type, seq, gc->ctx);
|
|
|
|
if (--gc->ref_count <= 0) {
|
|
|
|
TAILQ_REMOVE(&global_confirms, gc, entry);
|
2014-02-04 01:18:20 +01:00
|
|
|
explicit_bzero(gc, sizeof(*gc));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(gc);
|
2008-06-12 20:50:27 +02:00
|
|
|
}
|
|
|
|
|
2009-06-21 10:12:20 +02:00
|
|
|
packet_set_alive_timeouts(0);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2003-12-17 06:33:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_alive_check(void)
|
|
|
|
{
|
2009-06-21 10:12:20 +02:00
|
|
|
if (packet_inc_alive_timeouts() > options.server_alive_count_max) {
|
2011-01-11 07:18:56 +01:00
|
|
|
logit("Timeout, server %s not responding.", host);
|
2006-10-23 19:02:41 +02:00
|
|
|
cleanup_exit(255);
|
|
|
|
}
|
2003-12-17 06:33:10 +01:00
|
|
|
packet_start(SSH2_MSG_GLOBAL_REQUEST);
|
|
|
|
packet_put_cstring("keepalive@openssh.com");
|
|
|
|
packet_put_char(1); /* boolean: want reply */
|
|
|
|
packet_send();
|
2008-06-12 20:50:27 +02:00
|
|
|
/* Insert an empty placeholder to maintain ordering */
|
|
|
|
client_register_global_confirm(NULL, NULL);
|
2003-12-17 06:33:10 +01:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Waits until the client can do something (some data becomes available on
|
|
|
|
* one of the file descriptors).
|
|
|
|
*/
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-01-29 23:14:00 +01:00
|
|
|
client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp,
|
2004-08-13 13:18:00 +02:00
|
|
|
int *maxfdp, u_int *nallocp, int rekeying)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2003-12-17 06:33:10 +01:00
|
|
|
struct timeval tv, *tvp;
|
2010-08-03 08:04:46 +02:00
|
|
|
int timeout_secs;
|
2013-06-01 23:46:16 +02:00
|
|
|
time_t minwait_secs = 0, server_alive_time = 0, now = monotime();
|
2003-12-17 06:33:10 +01:00
|
|
|
int ret;
|
|
|
|
|
2001-01-29 23:14:00 +01:00
|
|
|
/* Add any selections by the channel mechanism. */
|
2012-04-22 03:21:10 +02:00
|
|
|
channel_prepare_select(readsetp, writesetp, maxfdp, nallocp,
|
|
|
|
&minwait_secs, rekeying);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
/* channel_prepare_select could have closed the last channel */
|
|
|
|
if (session_closed && !channel_still_open() &&
|
|
|
|
!packet_have_data_to_write()) {
|
|
|
|
/* clear mask since we did not call select() */
|
|
|
|
memset(*readsetp, 0, *nallocp);
|
|
|
|
memset(*writesetp, 0, *nallocp);
|
|
|
|
return;
|
2000-04-06 04:32:37 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2017-05-01 01:21:54 +02:00
|
|
|
FD_SET(connection_in, *readsetp);
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Select server connection if have data to write to the server. */
|
|
|
|
if (packet_have_data_to_write())
|
2001-01-29 23:14:00 +01:00
|
|
|
FD_SET(connection_out, *writesetp);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Wait for something to happen. This will suspend the process until
|
|
|
|
* some selected descriptor can be read, written, or has some other
|
2010-08-03 08:04:46 +02:00
|
|
|
* event pending, or a timeout expires.
|
1999-11-25 01:54:57 +01:00
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
|
2017-05-01 01:13:25 +02:00
|
|
|
if (options.server_alive_interval > 0) {
|
2010-08-03 08:04:46 +02:00
|
|
|
timeout_secs = options.server_alive_interval;
|
2013-05-16 12:28:16 +02:00
|
|
|
server_alive_time = now + options.server_alive_interval;
|
|
|
|
}
|
2017-05-01 01:13:25 +02:00
|
|
|
if (options.rekey_interval > 0 && !rekeying)
|
2016-09-12 03:22:38 +02:00
|
|
|
timeout_secs = MINIMUM(timeout_secs, packet_get_rekey_timeout());
|
2010-08-03 08:04:46 +02:00
|
|
|
set_control_persist_exit_time();
|
|
|
|
if (control_persist_exit_time > 0) {
|
2016-09-12 03:22:38 +02:00
|
|
|
timeout_secs = MINIMUM(timeout_secs,
|
2013-05-16 12:28:16 +02:00
|
|
|
control_persist_exit_time - now);
|
2010-08-03 08:04:46 +02:00
|
|
|
if (timeout_secs < 0)
|
|
|
|
timeout_secs = 0;
|
|
|
|
}
|
2012-04-22 03:21:10 +02:00
|
|
|
if (minwait_secs != 0)
|
2016-09-12 03:22:38 +02:00
|
|
|
timeout_secs = MINIMUM(timeout_secs, (int)minwait_secs);
|
2010-08-03 08:04:46 +02:00
|
|
|
if (timeout_secs == INT_MAX)
|
2003-12-17 06:33:10 +01:00
|
|
|
tvp = NULL;
|
2004-07-17 08:12:08 +02:00
|
|
|
else {
|
2010-08-03 08:04:46 +02:00
|
|
|
tv.tv_sec = timeout_secs;
|
2003-12-17 06:33:10 +01:00
|
|
|
tv.tv_usec = 0;
|
|
|
|
tvp = &tv;
|
|
|
|
}
|
2010-08-03 08:04:46 +02:00
|
|
|
|
2003-12-17 06:33:10 +01:00
|
|
|
ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
|
|
|
|
if (ret < 0) {
|
1999-11-24 14:26:21 +01:00
|
|
|
char buf[100];
|
2001-02-15 04:12:08 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to clear the select masks, because we return.
|
|
|
|
* We have to return, because the mainloop checks for the flags
|
|
|
|
* set by the signal handlers.
|
|
|
|
*/
|
2001-11-12 01:06:32 +01:00
|
|
|
memset(*readsetp, 0, *nallocp);
|
|
|
|
memset(*writesetp, 0, *nallocp);
|
2001-02-15 04:12:08 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if (errno == EINTR)
|
|
|
|
return;
|
|
|
|
/* Note: we might still have data in the buffers. */
|
|
|
|
snprintf(buf, sizeof buf, "select: %s\r\n", strerror(errno));
|
|
|
|
buffer_append(&stderr_buffer, buf, strlen(buf));
|
|
|
|
quit_pending = 1;
|
2013-05-16 12:28:16 +02:00
|
|
|
} else if (ret == 0) {
|
|
|
|
/*
|
|
|
|
* Timeout. Could have been either keepalive or rekeying.
|
|
|
|
* Keepalive we check here, rekeying is checked in clientloop.
|
|
|
|
*/
|
2013-06-01 23:46:16 +02:00
|
|
|
if (server_alive_time != 0 && server_alive_time <= monotime())
|
2013-05-16 12:28:16 +02:00
|
|
|
server_alive_check();
|
|
|
|
}
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2000-08-23 02:46:23 +02:00
|
|
|
client_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Flush stdout and stderr buffers. */
|
2000-08-23 02:46:23 +02:00
|
|
|
if (buffer_len(bout) > 0)
|
2008-06-12 20:51:14 +02:00
|
|
|
atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
|
|
|
|
buffer_len(bout));
|
2000-08-23 02:46:23 +02:00
|
|
|
if (buffer_len(berr) > 0)
|
2008-06-12 20:51:14 +02:00
|
|
|
atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
|
|
|
|
buffer_len(berr));
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Free (and clear) the buffer to reduce the amount of data that gets
|
|
|
|
* written to swap.
|
|
|
|
*/
|
2000-08-23 02:46:23 +02:00
|
|
|
buffer_free(bin);
|
|
|
|
buffer_free(bout);
|
|
|
|
buffer_free(berr);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Send the suspend signal to the program itself. */
|
|
|
|
kill(getpid(), SIGTSTP);
|
|
|
|
|
2004-11-05 10:35:44 +01:00
|
|
|
/* Reset window sizes in case they have changed */
|
|
|
|
received_window_change_signal = 1;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* OK, we have been continued by the user. Reinitialize buffers. */
|
2000-08-23 02:46:23 +02:00
|
|
|
buffer_init(bin);
|
|
|
|
buffer_init(bout);
|
|
|
|
buffer_init(berr);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2011-05-15 00:45:50 +02:00
|
|
|
enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2006-03-26 05:25:37 +02:00
|
|
|
client_process_net_input(fd_set *readset)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2016-01-14 17:17:39 +01:00
|
|
|
int len;
|
2009-08-28 03:21:06 +02:00
|
|
|
char buf[SSH_IOBUFSZ];
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Read input from the server, and add any such data to the buffer of
|
|
|
|
* the packet subsystem.
|
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
if (FD_ISSET(connection_in, readset)) {
|
|
|
|
/* Read as much as possible. */
|
2016-01-14 17:17:39 +01:00
|
|
|
len = read(connection_in, buf, sizeof(buf));
|
|
|
|
if (len == 0) {
|
2008-06-12 20:51:14 +02:00
|
|
|
/*
|
|
|
|
* Received EOF. The remote host has closed the
|
|
|
|
* connection.
|
|
|
|
*/
|
|
|
|
snprintf(buf, sizeof buf,
|
|
|
|
"Connection to %.300s closed by remote host.\r\n",
|
|
|
|
host);
|
1999-10-27 05:42:43 +02:00
|
|
|
buffer_append(&stderr_buffer, buf, strlen(buf));
|
|
|
|
quit_pending = 1;
|
|
|
|
return;
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* There is a kernel bug on Solaris that causes select to
|
|
|
|
* sometimes wake up even though there is no data available.
|
|
|
|
*/
|
2008-07-04 15:10:49 +02:00
|
|
|
if (len < 0 &&
|
|
|
|
(errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
|
1999-11-24 14:26:21 +01:00
|
|
|
len = 0;
|
|
|
|
|
|
|
|
if (len < 0) {
|
2008-06-12 20:51:14 +02:00
|
|
|
/*
|
|
|
|
* An error has encountered. Perhaps there is a
|
|
|
|
* network problem.
|
|
|
|
*/
|
|
|
|
snprintf(buf, sizeof buf,
|
|
|
|
"Read from remote host %.300s: %.100s\r\n",
|
|
|
|
host, strerror(errno));
|
1999-11-24 14:26:21 +01:00
|
|
|
buffer_append(&stderr_buffer, buf, strlen(buf));
|
|
|
|
quit_pending = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
packet_process_incoming(buf, len);
|
|
|
|
}
|
2000-04-06 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
static void
|
2008-05-19 07:35:33 +02:00
|
|
|
client_status_confirm(int type, Channel *c, void *ctx)
|
2004-06-15 02:34:08 +02:00
|
|
|
{
|
2008-05-19 07:35:33 +02:00
|
|
|
struct channel_reply_ctx *cr = (struct channel_reply_ctx *)ctx;
|
|
|
|
char errmsg[256];
|
|
|
|
int tochan;
|
|
|
|
|
2011-05-15 00:48:05 +02:00
|
|
|
/*
|
|
|
|
* If a TTY was explicitly requested, then a failure to allocate
|
|
|
|
* one is fatal.
|
|
|
|
*/
|
|
|
|
if (cr->action == CONFIRM_TTY &&
|
|
|
|
(options.request_tty == REQUEST_TTY_FORCE ||
|
|
|
|
options.request_tty == REQUEST_TTY_YES))
|
|
|
|
cr->action = CONFIRM_CLOSE;
|
|
|
|
|
2008-05-19 07:35:33 +02:00
|
|
|
/* XXX supress on mux _client_ quietmode */
|
|
|
|
tochan = options.log_level >= SYSLOG_LEVEL_ERROR &&
|
2010-01-26 03:26:22 +01:00
|
|
|
c->ctl_chan != -1 && c->extended_usage == CHAN_EXTENDED_WRITE;
|
2008-05-19 07:35:33 +02:00
|
|
|
|
|
|
|
if (type == SSH2_MSG_CHANNEL_SUCCESS) {
|
|
|
|
debug2("%s request accepted on channel %d",
|
|
|
|
cr->request_type, c->self);
|
|
|
|
} else if (type == SSH2_MSG_CHANNEL_FAILURE) {
|
|
|
|
if (tochan) {
|
|
|
|
snprintf(errmsg, sizeof(errmsg),
|
|
|
|
"%s request failed\r\n", cr->request_type);
|
|
|
|
} else {
|
|
|
|
snprintf(errmsg, sizeof(errmsg),
|
|
|
|
"%s request failed on channel %d",
|
|
|
|
cr->request_type, c->self);
|
|
|
|
}
|
|
|
|
/* If error occurred on primary session channel, then exit */
|
2011-05-15 00:48:05 +02:00
|
|
|
if (cr->action == CONFIRM_CLOSE && c->self == session_ident)
|
2008-05-19 07:35:33 +02:00
|
|
|
fatal("%s", errmsg);
|
2011-05-15 00:48:05 +02:00
|
|
|
/*
|
|
|
|
* If error occurred on mux client, append to
|
|
|
|
* their stderr.
|
|
|
|
*/
|
|
|
|
if (tochan) {
|
|
|
|
buffer_append(&c->extended, errmsg,
|
|
|
|
strlen(errmsg));
|
|
|
|
} else
|
2008-05-19 07:35:33 +02:00
|
|
|
error("%s", errmsg);
|
2011-05-15 00:48:05 +02:00
|
|
|
if (cr->action == CONFIRM_TTY) {
|
|
|
|
/*
|
|
|
|
* If a TTY allocation error occurred, then arrange
|
|
|
|
* for the correct TTY to leave raw mode.
|
|
|
|
*/
|
|
|
|
if (c->self == session_ident)
|
|
|
|
leave_raw_mode(0);
|
|
|
|
else
|
|
|
|
mux_tty_alloc_failed(c);
|
|
|
|
} else if (cr->action == CONFIRM_CLOSE) {
|
2008-05-19 07:35:33 +02:00
|
|
|
chan_read_failed(c);
|
|
|
|
chan_write_failed(c);
|
|
|
|
}
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cr);
|
2008-05-19 07:35:33 +02:00
|
|
|
}
|
2004-07-17 08:12:08 +02:00
|
|
|
|
2008-05-19 07:35:33 +02:00
|
|
|
static void
|
|
|
|
client_abandon_status_confirm(Channel *c, void *ctx)
|
|
|
|
{
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ctx);
|
2008-05-19 07:35:33 +02:00
|
|
|
}
|
2004-06-15 02:34:08 +02:00
|
|
|
|
2011-06-23 00:31:57 +02:00
|
|
|
void
|
2011-05-15 00:48:05 +02:00
|
|
|
client_expect_confirm(int id, const char *request,
|
|
|
|
enum confirm_action action)
|
2008-05-19 07:35:33 +02:00
|
|
|
{
|
2013-11-08 02:19:55 +01:00
|
|
|
struct channel_reply_ctx *cr = xcalloc(1, sizeof(*cr));
|
2004-06-15 02:34:08 +02:00
|
|
|
|
2008-05-19 07:35:33 +02:00
|
|
|
cr->request_type = request;
|
2011-05-15 00:48:05 +02:00
|
|
|
cr->action = action;
|
2008-05-19 07:35:33 +02:00
|
|
|
|
|
|
|
channel_register_status_confirm(id, client_status_confirm,
|
|
|
|
client_abandon_status_confirm, cr);
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
|
|
|
|
2008-06-12 20:50:27 +02:00
|
|
|
void
|
|
|
|
client_register_global_confirm(global_confirm_cb *cb, void *ctx)
|
|
|
|
{
|
2008-07-16 14:40:52 +02:00
|
|
|
struct global_confirm *gc, *last_gc;
|
2008-06-12 20:50:27 +02:00
|
|
|
|
|
|
|
/* Coalesce identical callbacks */
|
2008-07-16 14:40:52 +02:00
|
|
|
last_gc = TAILQ_LAST(&global_confirms, global_confirms);
|
|
|
|
if (last_gc && last_gc->cb == cb && last_gc->ctx == ctx) {
|
|
|
|
if (++last_gc->ref_count >= INT_MAX)
|
|
|
|
fatal("%s: last_gc->ref_count = %d",
|
|
|
|
__func__, last_gc->ref_count);
|
2008-06-12 20:50:27 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-08 02:19:55 +01:00
|
|
|
gc = xcalloc(1, sizeof(*gc));
|
2008-06-12 20:50:27 +02:00
|
|
|
gc->cb = cb;
|
|
|
|
gc->ctx = ctx;
|
|
|
|
gc->ref_count = 1;
|
|
|
|
TAILQ_INSERT_TAIL(&global_confirms, gc, entry);
|
|
|
|
}
|
|
|
|
|
2002-03-22 04:24:32 +01:00
|
|
|
static void
|
2002-03-22 04:53:00 +01:00
|
|
|
process_cmdline(void)
|
2002-03-22 04:24:32 +01:00
|
|
|
{
|
|
|
|
void (*handler)(int);
|
2014-07-18 06:11:24 +02:00
|
|
|
char *s, *cmd;
|
|
|
|
int ok, delete = 0, local = 0, remote = 0, dynamic = 0;
|
|
|
|
struct Forward fwd;
|
2002-03-22 04:24:32 +01:00
|
|
|
|
2014-02-04 01:18:20 +01:00
|
|
|
memset(&fwd, 0, sizeof(fwd));
|
2007-12-02 13:12:30 +01:00
|
|
|
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
2002-06-09 21:41:48 +02:00
|
|
|
handler = signal(SIGINT, SIG_IGN);
|
2002-03-22 04:53:00 +01:00
|
|
|
cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
|
2002-03-22 04:24:32 +01:00
|
|
|
if (s == NULL)
|
|
|
|
goto out;
|
2013-11-21 03:57:15 +01:00
|
|
|
while (isspace((u_char)*s))
|
2002-03-22 04:24:32 +01:00
|
|
|
s++;
|
2004-05-24 02:18:05 +02:00
|
|
|
if (*s == '-')
|
|
|
|
s++; /* Skip cmdline '-', if any */
|
2004-05-24 02:13:07 +02:00
|
|
|
if (*s == '\0')
|
2002-03-22 04:24:32 +01:00
|
|
|
goto out;
|
2004-05-24 02:18:05 +02:00
|
|
|
|
2004-05-24 02:34:36 +02:00
|
|
|
if (*s == 'h' || *s == 'H' || *s == '?') {
|
2004-05-24 02:18:05 +02:00
|
|
|
logit("Commands:");
|
2006-07-10 12:16:12 +02:00
|
|
|
logit(" -L[bind_address:]port:host:hostport "
|
|
|
|
"Request local forward");
|
|
|
|
logit(" -R[bind_address:]port:host:hostport "
|
|
|
|
"Request remote forward");
|
2008-11-05 06:30:31 +01:00
|
|
|
logit(" -D[bind_address:]port "
|
|
|
|
"Request dynamic forward");
|
2011-09-22 13:39:48 +02:00
|
|
|
logit(" -KL[bind_address:]port "
|
|
|
|
"Cancel local forward");
|
2006-07-10 12:20:52 +02:00
|
|
|
logit(" -KR[bind_address:]port "
|
2006-07-10 12:16:12 +02:00
|
|
|
"Cancel remote forward");
|
2011-09-22 13:39:48 +02:00
|
|
|
logit(" -KD[bind_address:]port "
|
|
|
|
"Cancel dynamic forward");
|
2005-12-13 09:29:02 +01:00
|
|
|
if (!options.permit_local_command)
|
|
|
|
goto out;
|
2006-07-10 12:16:12 +02:00
|
|
|
logit(" !args "
|
|
|
|
"Execute local command");
|
2005-12-13 09:29:02 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == '!' && options.permit_local_command) {
|
|
|
|
s++;
|
|
|
|
ssh_local_cmd(s);
|
2004-05-24 02:18:05 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == 'K') {
|
|
|
|
delete = 1;
|
|
|
|
s++;
|
|
|
|
}
|
2008-11-05 06:30:31 +01:00
|
|
|
if (*s == 'L')
|
|
|
|
local = 1;
|
|
|
|
else if (*s == 'R')
|
|
|
|
remote = 1;
|
|
|
|
else if (*s == 'D')
|
|
|
|
dynamic = 1;
|
|
|
|
else {
|
2003-04-09 12:59:48 +02:00
|
|
|
logit("Invalid command.");
|
2002-03-22 04:24:32 +01:00
|
|
|
goto out;
|
|
|
|
}
|
2008-11-05 06:30:31 +01:00
|
|
|
|
2013-11-21 03:57:15 +01:00
|
|
|
while (isspace((u_char)*++s))
|
2007-03-21 10:46:03 +01:00
|
|
|
;
|
2002-03-22 04:24:32 +01:00
|
|
|
|
2010-01-26 03:26:22 +01:00
|
|
|
/* XXX update list of forwards in options */
|
2004-05-24 02:18:05 +02:00
|
|
|
if (delete) {
|
2014-07-18 06:11:24 +02:00
|
|
|
/* We pass 1 for dynamicfwd to restrict to 1 or 2 fields. */
|
|
|
|
if (!parse_forward(&fwd, s, 1, 0)) {
|
|
|
|
logit("Bad forwarding close specification.");
|
2002-03-22 04:24:32 +01:00
|
|
|
goto out;
|
|
|
|
}
|
2011-09-22 13:39:48 +02:00
|
|
|
if (remote)
|
2014-07-18 06:11:24 +02:00
|
|
|
ok = channel_request_rforward_cancel(&fwd) == 0;
|
2011-09-22 13:39:48 +02:00
|
|
|
else if (dynamic)
|
2014-07-18 06:11:24 +02:00
|
|
|
ok = channel_cancel_lport_listener(&fwd,
|
|
|
|
0, &options.fwd_opts) > 0;
|
2011-09-22 13:39:48 +02:00
|
|
|
else
|
2014-07-18 06:11:24 +02:00
|
|
|
ok = channel_cancel_lport_listener(&fwd,
|
|
|
|
CHANNEL_CANCEL_PORT_STATIC,
|
|
|
|
&options.fwd_opts) > 0;
|
2011-09-22 13:39:48 +02:00
|
|
|
if (!ok) {
|
2017-01-29 22:35:23 +01:00
|
|
|
logit("Unknown port forwarding.");
|
2011-09-22 13:39:48 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
logit("Canceled forwarding.");
|
2004-05-24 02:18:05 +02:00
|
|
|
} else {
|
2009-02-14 06:28:21 +01:00
|
|
|
if (!parse_forward(&fwd, s, dynamic, remote)) {
|
2004-05-24 02:18:05 +02:00
|
|
|
logit("Bad forwarding specification.");
|
|
|
|
goto out;
|
|
|
|
}
|
2008-11-05 06:30:31 +01:00
|
|
|
if (local || dynamic) {
|
2014-07-18 06:11:24 +02:00
|
|
|
if (!channel_setup_local_fwd_listener(&fwd,
|
|
|
|
&options.fwd_opts)) {
|
2004-05-24 02:18:05 +02:00
|
|
|
logit("Port forwarding failed.");
|
|
|
|
goto out;
|
|
|
|
}
|
2005-03-01 11:24:33 +01:00
|
|
|
} else {
|
2014-07-18 06:11:24 +02:00
|
|
|
if (channel_request_remote_forwarding(&fwd) < 0) {
|
2006-07-12 14:17:10 +02:00
|
|
|
logit("Port forwarding failed.");
|
|
|
|
goto out;
|
|
|
|
}
|
2005-03-01 11:24:33 +01:00
|
|
|
}
|
2004-05-24 02:18:05 +02:00
|
|
|
logit("Forwarding port.");
|
|
|
|
}
|
|
|
|
|
2002-03-22 04:24:32 +01:00
|
|
|
out:
|
|
|
|
signal(SIGINT, handler);
|
2011-05-15 00:45:50 +02:00
|
|
|
enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cmd);
|
|
|
|
free(fwd.listen_host);
|
2014-07-18 06:11:24 +02:00
|
|
|
free(fwd.listen_path);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(fwd.connect_host);
|
2014-07-18 06:11:24 +02:00
|
|
|
free(fwd.connect_path);
|
2002-03-22 04:24:32 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 03:20:20 +02:00
|
|
|
/* reasons to suppress output of an escape command in help output */
|
|
|
|
#define SUPPRESS_NEVER 0 /* never suppress, always show */
|
2017-05-01 01:13:25 +02:00
|
|
|
#define SUPPRESS_MUXCLIENT 1 /* don't show in mux client sessions */
|
|
|
|
#define SUPPRESS_MUXMASTER 2 /* don't show in mux master sessions */
|
|
|
|
#define SUPPRESS_SYSLOG 4 /* don't show when logging to syslog */
|
2012-09-07 03:20:20 +02:00
|
|
|
struct escape_help_text {
|
|
|
|
const char *cmd;
|
|
|
|
const char *text;
|
|
|
|
unsigned int flags;
|
|
|
|
};
|
|
|
|
static struct escape_help_text esc_txt[] = {
|
|
|
|
{".", "terminate session", SUPPRESS_MUXMASTER},
|
|
|
|
{".", "terminate connection (and any multiplexed sessions)",
|
|
|
|
SUPPRESS_MUXCLIENT},
|
2017-05-01 01:13:25 +02:00
|
|
|
{"B", "send a BREAK to the remote system", SUPPRESS_NEVER},
|
2012-09-07 03:20:20 +02:00
|
|
|
{"C", "open a command line", SUPPRESS_MUXCLIENT},
|
2017-05-01 01:13:25 +02:00
|
|
|
{"R", "request rekey", SUPPRESS_NEVER},
|
2012-09-07 03:22:24 +02:00
|
|
|
{"V/v", "decrease/increase verbosity (LogLevel)", SUPPRESS_MUXCLIENT},
|
2012-09-07 03:20:20 +02:00
|
|
|
{"^Z", "suspend ssh", SUPPRESS_MUXCLIENT},
|
|
|
|
{"#", "list forwarded connections", SUPPRESS_NEVER},
|
|
|
|
{"&", "background ssh (when waiting for connections to terminate)",
|
|
|
|
SUPPRESS_MUXCLIENT},
|
|
|
|
{"?", "this message", SUPPRESS_NEVER},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2017-05-01 01:13:25 +02:00
|
|
|
print_escape_help(Buffer *b, int escape_char, int mux_client, int using_stderr)
|
2012-09-07 03:20:20 +02:00
|
|
|
{
|
|
|
|
unsigned int i, suppress_flags;
|
|
|
|
char string[1024];
|
|
|
|
|
|
|
|
snprintf(string, sizeof string, "%c?\r\n"
|
|
|
|
"Supported escape sequences:\r\n", escape_char);
|
|
|
|
buffer_append(b, string, strlen(string));
|
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
suppress_flags =
|
2012-09-07 03:20:20 +02:00
|
|
|
(mux_client ? SUPPRESS_MUXCLIENT : 0) |
|
|
|
|
(mux_client ? 0 : SUPPRESS_MUXMASTER) |
|
|
|
|
(using_stderr ? 0 : SUPPRESS_SYSLOG);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(esc_txt)/sizeof(esc_txt[0]); i++) {
|
|
|
|
if (esc_txt[i].flags & suppress_flags)
|
|
|
|
continue;
|
2012-09-07 03:22:24 +02:00
|
|
|
snprintf(string, sizeof string, " %c%-3s - %s\r\n",
|
2012-09-07 03:20:20 +02:00
|
|
|
escape_char, esc_txt[i].cmd, esc_txt[i].text);
|
|
|
|
buffer_append(b, string, strlen(string));
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(string, sizeof string,
|
2012-09-07 03:22:24 +02:00
|
|
|
" %c%c - send the escape character by typing it twice\r\n"
|
2012-09-07 03:20:20 +02:00
|
|
|
"(Note that escapes are only recognized immediately after "
|
|
|
|
"newline.)\r\n", escape_char, escape_char);
|
|
|
|
buffer_append(b, string, strlen(string));
|
|
|
|
}
|
|
|
|
|
2008-06-12 20:49:33 +02:00
|
|
|
/*
|
2017-05-03 23:08:09 +02:00
|
|
|
* Process the characters one by one.
|
2008-06-12 20:49:33 +02:00
|
|
|
*/
|
2001-06-25 07:01:22 +02:00
|
|
|
static int
|
2008-06-12 20:49:33 +02:00
|
|
|
process_escapes(Channel *c, Buffer *bin, Buffer *bout, Buffer *berr,
|
|
|
|
char *buf, int len)
|
2000-08-23 02:46:23 +02:00
|
|
|
{
|
|
|
|
char string[1024];
|
|
|
|
pid_t pid;
|
|
|
|
int bytes = 0;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_int i;
|
|
|
|
u_char ch;
|
2000-08-23 02:46:23 +02:00
|
|
|
char *s;
|
2017-05-01 01:21:54 +02:00
|
|
|
struct escape_filter_ctx *efc = c->filter_ctx == NULL ?
|
|
|
|
NULL : (struct escape_filter_ctx *)c->filter_ctx;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2017-05-01 01:21:54 +02:00
|
|
|
if (c->filter_ctx == NULL)
|
|
|
|
return 0;
|
2008-06-12 20:49:33 +02:00
|
|
|
|
2005-06-17 04:59:34 +02:00
|
|
|
if (len <= 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
for (i = 0; i < (u_int)len; i++) {
|
2000-08-23 02:46:23 +02:00
|
|
|
/* Get one character at a time. */
|
|
|
|
ch = buf[i];
|
|
|
|
|
2017-05-01 01:21:54 +02:00
|
|
|
if (efc->escape_pending) {
|
2000-08-23 02:46:23 +02:00
|
|
|
/* We have previously seen an escape character. */
|
|
|
|
/* Clear the flag now. */
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_pending = 0;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
|
|
|
/* Process the escaped character. */
|
|
|
|
switch (ch) {
|
|
|
|
case '.':
|
|
|
|
/* Terminate the connection. */
|
2008-06-12 20:49:33 +02:00
|
|
|
snprintf(string, sizeof string, "%c.\r\n",
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_char);
|
2000-08-23 02:46:23 +02:00
|
|
|
buffer_append(berr, string, strlen(string));
|
|
|
|
|
2010-01-26 03:26:22 +01:00
|
|
|
if (c && c->ctl_chan != -1) {
|
2008-06-12 20:49:33 +02:00
|
|
|
chan_read_failed(c);
|
|
|
|
chan_write_failed(c);
|
2013-06-06 00:11:40 +02:00
|
|
|
if (c->detach_user)
|
|
|
|
c->detach_user(c->self, NULL);
|
2013-06-10 05:07:11 +02:00
|
|
|
c->type = SSH_CHANNEL_ABANDONED;
|
|
|
|
buffer_clear(&c->input);
|
|
|
|
chan_ibuf_empty(c);
|
2008-06-12 20:49:33 +02:00
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
quit_pending = 1;
|
2000-08-23 02:46:23 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
case 'Z' - 64:
|
2008-06-12 20:49:33 +02:00
|
|
|
/* XXX support this for mux clients */
|
2010-01-26 03:26:22 +01:00
|
|
|
if (c && c->ctl_chan != -1) {
|
2012-09-07 03:21:42 +02:00
|
|
|
char b[16];
|
2008-06-12 20:49:33 +02:00
|
|
|
noescape:
|
2012-09-07 03:21:42 +02:00
|
|
|
if (ch == 'Z' - 64)
|
|
|
|
snprintf(b, sizeof b, "^Z");
|
|
|
|
else
|
|
|
|
snprintf(b, sizeof b, "%c", ch);
|
2008-06-12 20:49:33 +02:00
|
|
|
snprintf(string, sizeof string,
|
2012-09-07 03:21:42 +02:00
|
|
|
"%c%s escape not available to "
|
2008-06-12 20:49:33 +02:00
|
|
|
"multiplexed sessions\r\n",
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_char, b);
|
2008-06-12 20:49:33 +02:00
|
|
|
buffer_append(berr, string,
|
|
|
|
strlen(string));
|
|
|
|
continue;
|
|
|
|
}
|
2008-06-12 20:51:14 +02:00
|
|
|
/* Suspend the program. Inform the user */
|
2008-06-12 20:49:33 +02:00
|
|
|
snprintf(string, sizeof string,
|
2017-05-01 01:21:54 +02:00
|
|
|
"%c^Z [suspend ssh]\r\n", efc->escape_char);
|
2000-08-23 02:46:23 +02:00
|
|
|
buffer_append(berr, string, strlen(string));
|
|
|
|
|
|
|
|
/* Restore terminal modes and suspend. */
|
|
|
|
client_suspend_self(bin, bout, berr);
|
|
|
|
|
|
|
|
/* We have been continued. */
|
|
|
|
continue;
|
|
|
|
|
2003-05-15 02:20:13 +02:00
|
|
|
case 'B':
|
2017-05-01 01:13:25 +02:00
|
|
|
snprintf(string, sizeof string,
|
2017-05-01 01:21:54 +02:00
|
|
|
"%cB\r\n", efc->escape_char);
|
2017-05-01 01:13:25 +02:00
|
|
|
buffer_append(berr, string, strlen(string));
|
|
|
|
channel_request_start(c->self, "break", 0);
|
|
|
|
packet_put_int(1000);
|
|
|
|
packet_send();
|
2003-05-15 02:20:13 +02:00
|
|
|
continue;
|
|
|
|
|
2001-04-04 04:03:04 +02:00
|
|
|
case 'R':
|
2017-05-01 01:13:25 +02:00
|
|
|
if (datafellows & SSH_BUG_NOREKEY)
|
|
|
|
logit("Server does not "
|
|
|
|
"support re-keying");
|
|
|
|
else
|
|
|
|
need_rekeying = 1;
|
2001-04-04 04:03:04 +02:00
|
|
|
continue;
|
|
|
|
|
2012-09-06 13:25:37 +02:00
|
|
|
case 'V':
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'v':
|
|
|
|
if (c && c->ctl_chan != -1)
|
|
|
|
goto noescape;
|
|
|
|
if (!log_is_on_stderr()) {
|
|
|
|
snprintf(string, sizeof string,
|
|
|
|
"%c%c [Logging to syslog]\r\n",
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_char, ch);
|
2012-09-06 13:25:37 +02:00
|
|
|
buffer_append(berr, string,
|
|
|
|
strlen(string));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ch == 'V' && options.log_level >
|
|
|
|
SYSLOG_LEVEL_QUIET)
|
|
|
|
log_change_level(--options.log_level);
|
|
|
|
if (ch == 'v' && options.log_level <
|
|
|
|
SYSLOG_LEVEL_DEBUG3)
|
|
|
|
log_change_level(++options.log_level);
|
|
|
|
snprintf(string, sizeof string,
|
2017-05-01 01:21:54 +02:00
|
|
|
"%c%c [LogLevel %s]\r\n",
|
|
|
|
efc->escape_char, ch,
|
2012-09-06 13:25:37 +02:00
|
|
|
log_level_name(options.log_level));
|
|
|
|
buffer_append(berr, string, strlen(string));
|
|
|
|
continue;
|
|
|
|
|
2000-08-23 02:46:23 +02:00
|
|
|
case '&':
|
2010-01-26 03:26:22 +01:00
|
|
|
if (c && c->ctl_chan != -1)
|
2008-06-12 20:49:33 +02:00
|
|
|
goto noescape;
|
2000-08-23 02:46:23 +02:00
|
|
|
/*
|
2008-06-12 20:51:14 +02:00
|
|
|
* Detach the program (continue to serve
|
|
|
|
* connections, but put in background and no
|
|
|
|
* more new connections).
|
2000-08-23 02:46:23 +02:00
|
|
|
*/
|
|
|
|
/* Restore tty modes. */
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(
|
|
|
|
options.request_tty == REQUEST_TTY_FORCE);
|
2000-08-23 02:46:23 +02:00
|
|
|
|
|
|
|
/* Stop listening for new connections. */
|
2001-11-12 00:52:25 +01:00
|
|
|
channel_stop_listening();
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2001-11-12 00:52:25 +01:00
|
|
|
snprintf(string, sizeof string,
|
2017-05-01 01:21:54 +02:00
|
|
|
"%c& [backgrounded]\n", efc->escape_char);
|
2001-11-12 00:52:25 +01:00
|
|
|
buffer_append(berr, string, strlen(string));
|
2000-08-23 02:46:23 +02:00
|
|
|
|
|
|
|
/* Fork into background. */
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
|
|
|
error("fork: %.100s", strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pid != 0) { /* This is the parent. */
|
|
|
|
/* The parent just exits. */
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
/* The child continues serving connections. */
|
2017-05-01 01:13:25 +02:00
|
|
|
buffer_append(bin, "\004", 1);
|
|
|
|
/* fake EOF on stdin */
|
|
|
|
return -1;
|
2000-08-23 02:46:23 +02:00
|
|
|
case '?':
|
2017-05-01 01:21:54 +02:00
|
|
|
print_escape_help(berr, efc->escape_char,
|
2012-09-07 03:20:20 +02:00
|
|
|
(c && c->ctl_chan != -1),
|
|
|
|
log_is_on_stderr());
|
2000-08-23 02:46:23 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case '#':
|
2008-06-12 20:49:33 +02:00
|
|
|
snprintf(string, sizeof string, "%c#\r\n",
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_char);
|
2000-08-23 02:46:23 +02:00
|
|
|
buffer_append(berr, string, strlen(string));
|
|
|
|
s = channel_open_message();
|
|
|
|
buffer_append(berr, s, strlen(s));
|
2013-06-01 23:31:17 +02:00
|
|
|
free(s);
|
2000-08-23 02:46:23 +02:00
|
|
|
continue;
|
|
|
|
|
2002-03-22 04:24:32 +01:00
|
|
|
case 'C':
|
2010-01-26 03:26:22 +01:00
|
|
|
if (c && c->ctl_chan != -1)
|
2008-12-09 04:11:32 +01:00
|
|
|
goto noescape;
|
2002-03-22 04:53:00 +01:00
|
|
|
process_cmdline();
|
2002-03-22 04:24:32 +01:00
|
|
|
continue;
|
|
|
|
|
2000-08-23 02:46:23 +02:00
|
|
|
default:
|
2017-05-01 01:21:54 +02:00
|
|
|
if (ch != efc->escape_char) {
|
|
|
|
buffer_put_char(bin, efc->escape_char);
|
2000-08-23 02:46:23 +02:00
|
|
|
bytes++;
|
|
|
|
}
|
|
|
|
/* Escaped characters fall through here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
2008-06-12 20:51:14 +02:00
|
|
|
* The previous character was not an escape char.
|
|
|
|
* Check if this is an escape.
|
2000-08-23 02:46:23 +02:00
|
|
|
*/
|
2017-05-01 01:21:54 +02:00
|
|
|
if (last_was_cr && ch == efc->escape_char) {
|
2008-06-12 20:51:14 +02:00
|
|
|
/*
|
|
|
|
* It is. Set the flag and continue to
|
|
|
|
* next character.
|
|
|
|
*/
|
2017-05-01 01:21:54 +02:00
|
|
|
efc->escape_pending = 1;
|
2000-08-23 02:46:23 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Normal character. Record whether it was a newline,
|
|
|
|
* and append it to the buffer.
|
|
|
|
*/
|
|
|
|
last_was_cr = (ch == '\r' || ch == '\n');
|
|
|
|
buffer_put_char(bin, ch);
|
|
|
|
bytes++;
|
|
|
|
}
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
2000-04-01 03:09:21 +02:00
|
|
|
/*
|
|
|
|
* Get packets from the connection input buffer, and process them as long as
|
|
|
|
* there are packets available.
|
|
|
|
*
|
|
|
|
* Any unknown packets received during the actual
|
|
|
|
* session cause the session to terminate. This is
|
|
|
|
* intended to make debugging easier since no
|
|
|
|
* confirmations are sent. Any compatible protocol
|
|
|
|
* extensions must be negotiated during the
|
|
|
|
* preparatory phase.
|
|
|
|
*/
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-02-09 03:11:24 +01:00
|
|
|
client_process_buffered_input_packets(void)
|
2000-04-01 03:09:21 +02:00
|
|
|
{
|
2017-05-31 09:00:13 +02:00
|
|
|
ssh_dispatch_run_fatal(active_state, DISPATCH_NONBLOCK, &quit_pending);
|
2000-04-01 03:09:21 +02:00
|
|
|
}
|
|
|
|
|
2000-08-23 02:46:23 +02:00
|
|
|
/* scan buf[] for '~' before sending data to the peer */
|
|
|
|
|
2008-06-12 20:49:33 +02:00
|
|
|
/* Helper: allocate a new escape_filter_ctx and fill in its escape char */
|
|
|
|
void *
|
|
|
|
client_new_escape_filter_ctx(int escape_char)
|
|
|
|
{
|
|
|
|
struct escape_filter_ctx *ret;
|
|
|
|
|
2013-11-08 02:19:55 +01:00
|
|
|
ret = xcalloc(1, sizeof(*ret));
|
2008-06-12 20:49:33 +02:00
|
|
|
ret->escape_pending = 0;
|
|
|
|
ret->escape_char = escape_char;
|
|
|
|
return (void *)ret;
|
|
|
|
}
|
|
|
|
|
2008-06-12 20:55:46 +02:00
|
|
|
/* Free the escape filter context on channel free */
|
|
|
|
void
|
|
|
|
client_filter_cleanup(int cid, void *ctx)
|
|
|
|
{
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ctx);
|
2008-06-12 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2008-06-12 20:49:33 +02:00
|
|
|
int
|
|
|
|
client_simple_escape_filter(Channel *c, char *buf, int len)
|
2000-08-23 02:46:23 +02:00
|
|
|
{
|
2008-05-19 07:35:33 +02:00
|
|
|
if (c->extended_usage != CHAN_EXTENDED_WRITE)
|
|
|
|
return 0;
|
|
|
|
|
2008-06-12 20:49:33 +02:00
|
|
|
return process_escapes(c, &c->input, &c->output, &c->extended,
|
|
|
|
buf, len);
|
2000-08-23 02:46:23 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-04-06 01:37:36 +02:00
|
|
|
client_channel_closed(int id, void *arg)
|
|
|
|
{
|
2001-10-12 03:35:04 +02:00
|
|
|
channel_cancel_cleanup(id);
|
2001-04-06 01:37:36 +02:00
|
|
|
session_closed = 1;
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
2001-04-06 01:37:36 +02:00
|
|
|
}
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Implements the interactive session with the server. This is called after
|
|
|
|
* the user has been authenticated, and a command has been started on the
|
2001-06-05 22:32:21 +02:00
|
|
|
* remote host. If escape_char != SSH_ESCAPECHAR_NONE, it is the character
|
|
|
|
* used as an escape character for terminating or suspending the session.
|
1999-11-25 01:54:57 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-04-16 03:18:38 +02:00
|
|
|
int
|
2000-08-23 02:46:23 +02:00
|
|
|
client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-01-29 23:14:00 +01:00
|
|
|
fd_set *readset = NULL, *writeset = NULL;
|
1999-11-24 14:26:21 +01:00
|
|
|
double start_time, total_time;
|
2016-02-08 11:57:07 +01:00
|
|
|
int r, max_fd = 0, max_fd2 = 0, len;
|
2008-07-11 09:36:48 +02:00
|
|
|
u_int64_t ibytes, obytes;
|
2004-08-13 13:18:00 +02:00
|
|
|
u_int nalloc = 0;
|
1999-11-24 14:26:21 +01:00
|
|
|
char buf[100];
|
|
|
|
|
|
|
|
debug("Entering interactive session.");
|
|
|
|
|
2015-12-26 08:46:03 +01:00
|
|
|
if (options.control_master &&
|
2016-07-23 04:54:08 +02:00
|
|
|
!option_clear_or_none(options.control_path)) {
|
2015-12-26 08:46:03 +01:00
|
|
|
debug("pledge: id");
|
2016-07-11 23:38:13 +02:00
|
|
|
if (pledge("stdio rpath wpath cpath unix inet dns recvfd proc exec id tty",
|
2015-12-26 08:46:03 +01:00
|
|
|
NULL) == -1)
|
|
|
|
fatal("%s pledge(): %s", __func__, strerror(errno));
|
|
|
|
|
|
|
|
} else if (options.forward_x11 || options.permit_local_command) {
|
2015-12-03 18:00:18 +01:00
|
|
|
debug("pledge: exec");
|
|
|
|
if (pledge("stdio rpath wpath cpath unix inet dns proc exec tty",
|
|
|
|
NULL) == -1)
|
|
|
|
fatal("%s pledge(): %s", __func__, strerror(errno));
|
|
|
|
|
|
|
|
} else if (options.update_hostkeys) {
|
|
|
|
debug("pledge: filesystem full");
|
|
|
|
if (pledge("stdio rpath wpath cpath unix inet dns proc tty",
|
|
|
|
NULL) == -1)
|
|
|
|
fatal("%s pledge(): %s", __func__, strerror(errno));
|
|
|
|
|
2016-07-23 04:54:08 +02:00
|
|
|
} else if (!option_clear_or_none(options.proxy_command) ||
|
|
|
|
fork_after_authentication_flag) {
|
2015-12-03 18:00:18 +01:00
|
|
|
debug("pledge: proc");
|
|
|
|
if (pledge("stdio cpath unix inet dns proc tty", NULL) == -1)
|
|
|
|
fatal("%s pledge(): %s", __func__, strerror(errno));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
debug("pledge: network");
|
|
|
|
if (pledge("stdio unix inet dns tty", NULL) == -1)
|
|
|
|
fatal("%s pledge(): %s", __func__, strerror(errno));
|
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
start_time = get_current_time();
|
|
|
|
|
|
|
|
/* Initialize variables. */
|
|
|
|
last_was_cr = 1;
|
|
|
|
exit_status = -1;
|
|
|
|
connection_in = packet_get_connection_in();
|
|
|
|
connection_out = packet_get_connection_out();
|
2016-09-12 03:22:38 +02:00
|
|
|
max_fd = MAXIMUM(connection_in, connection_out);
|
2001-01-29 23:14:00 +01:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
quit_pending = 0;
|
|
|
|
|
|
|
|
/* Initialize buffers. */
|
|
|
|
buffer_init(&stderr_buffer);
|
|
|
|
|
2000-04-01 03:09:21 +02:00
|
|
|
client_init_dispatch();
|
|
|
|
|
2002-12-23 03:01:55 +01:00
|
|
|
/*
|
|
|
|
* Set signal handlers, (e.g. to restore non-blocking mode)
|
|
|
|
* but don't overwrite SIG_IGN, matches behaviour from rsh(1)
|
|
|
|
*/
|
2004-11-05 10:02:16 +01:00
|
|
|
if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGHUP, signal_handler);
|
2002-12-23 03:01:55 +01:00
|
|
|
if (signal(SIGINT, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGINT, signal_handler);
|
|
|
|
if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGQUIT, signal_handler);
|
|
|
|
if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGTERM, signal_handler);
|
2004-11-05 10:35:44 +01:00
|
|
|
signal(SIGWINCH, window_change_handler);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
if (have_pty)
|
2011-05-15 00:45:50 +02:00
|
|
|
enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
session_ident = ssh2_chan_id;
|
|
|
|
if (session_ident != -1) {
|
|
|
|
if (escape_char_arg != SSH_ESCAPECHAR_NONE) {
|
|
|
|
channel_register_filter(session_ident,
|
|
|
|
client_simple_escape_filter, NULL,
|
|
|
|
client_filter_cleanup,
|
|
|
|
client_new_escape_filter_ctx(
|
|
|
|
escape_char_arg));
|
2011-05-05 06:16:22 +02:00
|
|
|
}
|
2017-05-01 01:13:25 +02:00
|
|
|
channel_register_cleanup(session_ident,
|
|
|
|
client_channel_closed, 0);
|
2001-02-09 02:34:36 +01:00
|
|
|
}
|
2000-08-23 02:46:23 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Main loop of the client for the interactive session mode. */
|
|
|
|
while (!quit_pending) {
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/* Process buffered packets sent by the server. */
|
1999-11-24 14:26:21 +01:00
|
|
|
client_process_buffered_input_packets();
|
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
if (session_closed && !channel_still_open())
|
2000-04-06 04:32:37 +02:00
|
|
|
break;
|
2001-04-06 01:37:36 +02:00
|
|
|
|
2016-02-08 11:57:07 +01:00
|
|
|
if (ssh_packet_is_rekeying(active_state)) {
|
2001-04-05 01:46:07 +02:00
|
|
|
debug("rekeying in progress");
|
2016-02-08 11:57:07 +01:00
|
|
|
} else if (need_rekeying) {
|
|
|
|
/* manual rekey request */
|
|
|
|
debug("need rekeying");
|
|
|
|
if ((r = kex_start_rekex(active_state)) != 0)
|
|
|
|
fatal("%s: kex_start_rekex: %s", __func__,
|
|
|
|
ssh_err(r));
|
|
|
|
need_rekeying = 0;
|
2001-04-05 01:46:07 +02:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Make packets from buffered channel data, and
|
|
|
|
* enqueue them for sending to the server.
|
|
|
|
*/
|
|
|
|
if (packet_not_very_much_data_to_write())
|
|
|
|
channel_output_poll();
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-04-05 01:46:07 +02:00
|
|
|
/*
|
|
|
|
* Check if the window size has changed, and buffer a
|
|
|
|
* message about it to the server if so.
|
|
|
|
*/
|
|
|
|
client_check_window_change();
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-04-05 01:46:07 +02:00
|
|
|
if (quit_pending)
|
|
|
|
break;
|
|
|
|
}
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Wait until we have something to do (something becomes
|
|
|
|
* available on one of the descriptors).
|
|
|
|
*/
|
2001-07-18 18:01:46 +02:00
|
|
|
max_fd2 = max_fd;
|
2001-04-05 01:46:07 +02:00
|
|
|
client_wait_until_can_do_something(&readset, &writeset,
|
2016-02-08 11:57:07 +01:00
|
|
|
&max_fd2, &nalloc, ssh_packet_is_rekeying(active_state));
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
if (quit_pending)
|
|
|
|
break;
|
|
|
|
|
2001-04-05 01:46:07 +02:00
|
|
|
/* Do channel operations unless rekeying in progress. */
|
2016-02-08 11:57:07 +01:00
|
|
|
if (!ssh_packet_is_rekeying(active_state))
|
2001-04-05 01:46:07 +02:00
|
|
|
channel_after_select(readset, writeset);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
/* Buffer input from the connection. */
|
2001-01-29 23:14:00 +01:00
|
|
|
client_process_net_input(readset);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
if (quit_pending)
|
|
|
|
break;
|
|
|
|
|
2008-06-12 20:51:14 +02:00
|
|
|
/*
|
|
|
|
* Send as much buffered packet data as possible to the
|
|
|
|
* sender.
|
|
|
|
*/
|
2001-01-29 23:14:00 +01:00
|
|
|
if (FD_ISSET(connection_out, writeset))
|
1999-11-24 14:26:21 +01:00
|
|
|
packet_write_poll();
|
2010-08-03 08:04:46 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are a backgrounded control master, and the
|
|
|
|
* timeout has expired without any active client
|
|
|
|
* connections, then quit.
|
|
|
|
*/
|
|
|
|
if (control_persist_exit_time > 0) {
|
2013-06-01 23:46:16 +02:00
|
|
|
if (monotime() >= control_persist_exit_time) {
|
2010-08-03 08:04:46 +02:00
|
|
|
debug("ControlPersist timeout expired");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(readset);
|
|
|
|
free(writeset);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Terminate the session. */
|
|
|
|
|
|
|
|
/* Stop watching for window change. */
|
2004-11-05 10:35:44 +01:00
|
|
|
signal(SIGWINCH, SIG_DFL);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2017-05-01 01:13:25 +02:00
|
|
|
packet_start(SSH2_MSG_DISCONNECT);
|
|
|
|
packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
|
|
|
|
packet_put_cstring("disconnected by user");
|
|
|
|
packet_put_cstring(""); /* language tag */
|
|
|
|
packet_send();
|
|
|
|
packet_write_wait();
|
2009-06-21 10:14:48 +02:00
|
|
|
|
2001-06-21 05:19:23 +02:00
|
|
|
channel_free_all();
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-06-09 03:27:31 +02:00
|
|
|
if (have_pty)
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
2001-05-12 02:08:37 +02:00
|
|
|
|
|
|
|
/* restore blocking io */
|
|
|
|
if (!isatty(fileno(stdin)))
|
|
|
|
unset_nonblock(fileno(stdin));
|
|
|
|
if (!isatty(fileno(stdout)))
|
|
|
|
unset_nonblock(fileno(stdout));
|
|
|
|
if (!isatty(fileno(stderr)))
|
|
|
|
unset_nonblock(fileno(stderr));
|
|
|
|
|
2003-12-17 06:31:53 +01:00
|
|
|
/*
|
|
|
|
* If there was no shell or command requested, there will be no remote
|
|
|
|
* exit status to be returned. In that case, clear error code if the
|
|
|
|
* connection was deliberately terminated at this end.
|
|
|
|
*/
|
|
|
|
if (no_shell_flag && received_signal == SIGTERM) {
|
|
|
|
received_signal = 0;
|
|
|
|
exit_status = 0;
|
|
|
|
}
|
|
|
|
|
2003-09-22 13:16:05 +02:00
|
|
|
if (received_signal)
|
2001-12-06 18:52:16 +01:00
|
|
|
fatal("Killed by signal %d.", (int) received_signal);
|
2001-06-09 03:27:31 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In interactive mode (with pseudo tty) display a message indicating
|
|
|
|
* that the connection has been closed.
|
|
|
|
*/
|
|
|
|
if (have_pty && options.log_level != SYSLOG_LEVEL_QUIET) {
|
2008-06-12 20:51:14 +02:00
|
|
|
snprintf(buf, sizeof buf,
|
|
|
|
"Connection to %.64s closed.\r\n", host);
|
2001-06-09 03:27:31 +02:00
|
|
|
buffer_append(&stderr_buffer, buf, strlen(buf));
|
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Output any buffered data for stderr. */
|
2011-01-16 13:18:33 +01:00
|
|
|
if (buffer_len(&stderr_buffer) > 0) {
|
2011-01-16 13:16:53 +01:00
|
|
|
len = atomicio(vwrite, fileno(stderr),
|
|
|
|
buffer_ptr(&stderr_buffer), buffer_len(&stderr_buffer));
|
2011-01-16 13:18:33 +01:00
|
|
|
if (len < 0 || (u_int)len != buffer_len(&stderr_buffer))
|
1999-11-24 14:26:21 +01:00
|
|
|
error("Write failed flushing stderr buffer.");
|
2011-01-16 13:18:33 +01:00
|
|
|
else
|
|
|
|
buffer_consume(&stderr_buffer, len);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear and free any buffers. */
|
2016-01-23 06:31:35 +01:00
|
|
|
explicit_bzero(buf, sizeof(buf));
|
1999-11-24 14:26:21 +01:00
|
|
|
buffer_free(&stderr_buffer);
|
|
|
|
|
|
|
|
/* Report bytes transferred, and transfer rates. */
|
|
|
|
total_time = get_current_time() - start_time;
|
2015-01-19 20:52:16 +01:00
|
|
|
packet_get_bytes(&ibytes, &obytes);
|
2008-07-11 09:36:48 +02:00
|
|
|
verbose("Transferred: sent %llu, received %llu bytes, in %.1f seconds",
|
2011-01-11 07:20:29 +01:00
|
|
|
(unsigned long long)obytes, (unsigned long long)ibytes, total_time);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (total_time > 0)
|
2008-07-11 09:36:48 +02:00
|
|
|
verbose("Bytes per second: sent %.1f, received %.1f",
|
|
|
|
obytes / total_time, ibytes / total_time);
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Return the exit status of the program. */
|
|
|
|
debug("Exit status %d", exit_status);
|
|
|
|
return exit_status;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2000-04-01 03:09:21 +02:00
|
|
|
|
|
|
|
/*********/
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static Channel *
|
2016-09-30 11:19:13 +02:00
|
|
|
client_request_forwarded_tcpip(const char *request_type, int rchan,
|
|
|
|
u_int rwindow, u_int rmaxpack)
|
2000-11-13 12:57:25 +01:00
|
|
|
{
|
2002-07-04 02:14:17 +02:00
|
|
|
Channel *c = NULL;
|
2016-09-30 11:19:13 +02:00
|
|
|
struct sshbuf *b = NULL;
|
2000-11-13 12:57:25 +01:00
|
|
|
char *listen_address, *originator_address;
|
2009-01-28 06:31:22 +01:00
|
|
|
u_short listen_port, originator_port;
|
2016-09-30 11:19:13 +02:00
|
|
|
int r;
|
2000-11-13 12:57:25 +01:00
|
|
|
|
|
|
|
/* Get rest of the packet */
|
|
|
|
listen_address = packet_get_string(NULL);
|
|
|
|
listen_port = packet_get_int();
|
|
|
|
originator_address = packet_get_string(NULL);
|
|
|
|
originator_port = packet_get_int();
|
2002-01-22 13:11:40 +01:00
|
|
|
packet_check_eom();
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2014-07-18 06:11:24 +02:00
|
|
|
debug("%s: listen %s port %d, originator %s port %d", __func__,
|
|
|
|
listen_address, listen_port, originator_address, originator_port);
|
2008-05-19 07:37:09 +02:00
|
|
|
|
2014-07-02 07:29:40 +02:00
|
|
|
c = channel_connect_by_listen_address(listen_address, listen_port,
|
2008-05-19 07:37:09 +02:00
|
|
|
"forwarded-tcpip", originator_address);
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2016-09-30 11:19:13 +02:00
|
|
|
if (c != NULL && c->type == SSH_CHANNEL_MUX_CLIENT) {
|
|
|
|
if ((b = sshbuf_new()) == NULL) {
|
|
|
|
error("%s: alloc reply", __func__);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/* reconstruct and send to muxclient */
|
|
|
|
if ((r = sshbuf_put_u8(b, 0)) != 0 || /* padlen */
|
|
|
|
(r = sshbuf_put_u8(b, SSH2_MSG_CHANNEL_OPEN)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, request_type)) != 0 ||
|
|
|
|
(r = sshbuf_put_u32(b, rchan)) != 0 ||
|
|
|
|
(r = sshbuf_put_u32(b, rwindow)) != 0 ||
|
|
|
|
(r = sshbuf_put_u32(b, rmaxpack)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, listen_address)) != 0 ||
|
|
|
|
(r = sshbuf_put_u32(b, listen_port)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, originator_address)) != 0 ||
|
|
|
|
(r = sshbuf_put_u32(b, originator_port)) != 0 ||
|
|
|
|
(r = sshbuf_put_stringb(&c->output, b)) != 0) {
|
|
|
|
error("%s: compose for muxclient %s", __func__,
|
|
|
|
ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
sshbuf_free(b);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(originator_address);
|
|
|
|
free(listen_address);
|
2000-11-13 12:57:25 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2014-07-18 06:11:24 +02:00
|
|
|
static Channel *
|
|
|
|
client_request_forwarded_streamlocal(const char *request_type, int rchan)
|
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
|
|
|
char *listen_path;
|
|
|
|
|
|
|
|
/* Get the remote path. */
|
|
|
|
listen_path = packet_get_string(NULL);
|
|
|
|
/* XXX: Skip reserved field for now. */
|
|
|
|
if (packet_get_string_ptr(NULL) == NULL)
|
|
|
|
fatal("%s: packet_get_string_ptr failed", __func__);
|
|
|
|
packet_check_eom();
|
|
|
|
|
|
|
|
debug("%s: %s", __func__, listen_path);
|
|
|
|
|
|
|
|
c = channel_connect_by_listen_path(listen_path,
|
|
|
|
"forwarded-streamlocal@openssh.com", "forwarded-streamlocal");
|
|
|
|
free(listen_path);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2002-07-04 02:14:17 +02:00
|
|
|
static Channel *
|
2000-11-13 12:57:25 +01:00
|
|
|
client_request_x11(const char *request_type, int rchan)
|
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
|
|
|
char *originator;
|
2009-01-28 06:31:22 +01:00
|
|
|
u_short originator_port;
|
2001-05-05 06:09:47 +02:00
|
|
|
int sock;
|
2000-11-13 12:57:25 +01:00
|
|
|
|
|
|
|
if (!options.forward_x11) {
|
|
|
|
error("Warning: ssh server tried X11 forwarding.");
|
2008-06-12 20:51:14 +02:00
|
|
|
error("Warning: this is probably a break-in attempt by a "
|
|
|
|
"malicious server.");
|
2000-11-13 12:57:25 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-07-01 04:26:31 +02:00
|
|
|
if (x11_refuse_time != 0 && (u_int)monotime() >= x11_refuse_time) {
|
2010-06-26 02:02:24 +02:00
|
|
|
verbose("Rejected X11 connection after ForwardX11Timeout "
|
|
|
|
"expired");
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-11-13 12:57:25 +01:00
|
|
|
originator = packet_get_string(NULL);
|
|
|
|
if (datafellows & SSH_BUG_X11FWD) {
|
|
|
|
debug2("buggy server: x11 request w/o originator_port");
|
|
|
|
originator_port = 0;
|
|
|
|
} else {
|
|
|
|
originator_port = packet_get_int();
|
|
|
|
}
|
2002-01-22 13:11:40 +01:00
|
|
|
packet_check_eom();
|
2000-11-13 12:57:25 +01:00
|
|
|
/* XXX check permission */
|
2001-01-29 23:19:34 +01:00
|
|
|
debug("client_request_x11: request from %s %d", originator,
|
|
|
|
originator_port);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(originator);
|
2000-11-13 12:57:25 +01:00
|
|
|
sock = x11_connect_display();
|
2001-05-05 06:09:47 +02:00
|
|
|
if (sock < 0)
|
|
|
|
return NULL;
|
|
|
|
c = channel_new("x11",
|
|
|
|
SSH_CHANNEL_X11_OPEN, sock, sock, -1,
|
2003-05-14 05:45:42 +02:00
|
|
|
CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1);
|
2001-09-18 07:51:13 +02:00
|
|
|
c->force_drain = 1;
|
2000-11-13 12:57:25 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2002-07-04 02:14:17 +02:00
|
|
|
static Channel *
|
2000-11-13 12:57:25 +01:00
|
|
|
client_request_agent(const char *request_type, int rchan)
|
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
int r, sock;
|
2000-11-13 12:57:25 +01:00
|
|
|
|
|
|
|
if (!options.forward_agent) {
|
|
|
|
error("Warning: ssh server tried agent forwarding.");
|
2008-06-12 20:51:14 +02:00
|
|
|
error("Warning: this is probably a break-in attempt by a "
|
|
|
|
"malicious server.");
|
2000-11-13 12:57:25 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_get_authentication_socket(&sock)) != 0) {
|
|
|
|
if (r != SSH_ERR_AGENT_NOT_PRESENT)
|
|
|
|
debug("%s: ssh_get_authentication_socket: %s",
|
|
|
|
__func__, ssh_err(r));
|
2001-05-05 06:09:47 +02:00
|
|
|
return NULL;
|
2015-01-14 21:05:27 +01:00
|
|
|
}
|
2001-05-05 06:09:47 +02:00
|
|
|
c = channel_new("authentication agent connection",
|
|
|
|
SSH_CHANNEL_OPEN, sock, sock, -1,
|
2007-12-28 23:37:10 +01:00
|
|
|
CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0,
|
2003-05-14 05:45:42 +02:00
|
|
|
"authentication agent connection", 1);
|
2001-09-18 07:51:13 +02:00
|
|
|
c->force_drain = 1;
|
2000-11-13 12:57:25 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2007-08-08 06:32:41 +02:00
|
|
|
int
|
|
|
|
client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun)
|
|
|
|
{
|
|
|
|
Channel *c;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (tun_mode == SSH_TUNMODE_NO)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
debug("Requesting tun unit %d in mode %d", local_tun, tun_mode);
|
|
|
|
|
|
|
|
/* Open local tunnel device */
|
|
|
|
if ((fd = tun_open(local_tun, tun_mode)) == -1) {
|
|
|
|
error("Tunnel device open failed.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
|
|
|
|
CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
|
|
|
|
c->datagram = 1;
|
|
|
|
|
|
|
|
#if defined(SSH_TUN_FILTER)
|
|
|
|
if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
|
|
|
|
channel_register_filter(c->self, sys_tun_infilter,
|
2008-06-12 21:09:18 +02:00
|
|
|
sys_tun_outfilter, NULL, NULL);
|
2007-08-08 06:32:41 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
packet_start(SSH2_MSG_CHANNEL_OPEN);
|
|
|
|
packet_put_cstring("tun@openssh.com");
|
|
|
|
packet_put_int(c->self);
|
|
|
|
packet_put_int(c->local_window_max);
|
|
|
|
packet_put_int(c->local_maxpacket);
|
|
|
|
packet_put_int(tun_mode);
|
|
|
|
packet_put_int(remote_tun);
|
|
|
|
packet_send();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-30 02:00:53 +02:00
|
|
|
/* XXXX move to generic input handler */
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
client_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
|
2000-04-30 02:00:53 +02:00
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
|
|
|
char *ctype;
|
|
|
|
int rchan;
|
2002-06-26 01:17:36 +02:00
|
|
|
u_int rmaxpack, rwindow, len;
|
2000-04-30 02:00:53 +02:00
|
|
|
|
|
|
|
ctype = packet_get_string(&len);
|
|
|
|
rchan = packet_get_int();
|
|
|
|
rwindow = packet_get_int();
|
|
|
|
rmaxpack = packet_get_int();
|
|
|
|
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 04:03:14 +02:00
|
|
|
debug("client_input_channel_open: ctype %s rchan %d win %d max %d",
|
2000-04-30 02:00:53 +02:00
|
|
|
ctype, rchan, rwindow, rmaxpack);
|
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
if (strcmp(ctype, "forwarded-tcpip") == 0) {
|
2016-09-30 11:19:13 +02:00
|
|
|
c = client_request_forwarded_tcpip(ctype, rchan, rwindow,
|
|
|
|
rmaxpack);
|
2014-07-18 06:11:24 +02:00
|
|
|
} else if (strcmp(ctype, "forwarded-streamlocal@openssh.com") == 0) {
|
|
|
|
c = client_request_forwarded_streamlocal(ctype, rchan);
|
2000-11-13 12:57:25 +01:00
|
|
|
} else if (strcmp(ctype, "x11") == 0) {
|
|
|
|
c = client_request_x11(ctype, rchan);
|
|
|
|
} else if (strcmp(ctype, "auth-agent@openssh.com") == 0) {
|
|
|
|
c = client_request_agent(ctype, rchan);
|
2000-04-30 02:00:53 +02:00
|
|
|
}
|
2016-09-30 11:19:13 +02:00
|
|
|
if (c != NULL && c->type == SSH_CHANNEL_MUX_CLIENT) {
|
|
|
|
debug3("proxied to downstream: %s", ctype);
|
|
|
|
} else if (c != NULL) {
|
2000-04-30 02:00:53 +02:00
|
|
|
debug("confirm %s", ctype);
|
|
|
|
c->remote_id = rchan;
|
|
|
|
c->remote_window = rwindow;
|
|
|
|
c->remote_maxpacket = rmaxpack;
|
2001-05-09 02:01:18 +02:00
|
|
|
if (c->type != SSH_CHANNEL_CONNECTING) {
|
|
|
|
packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
|
|
|
|
packet_put_int(c->remote_id);
|
|
|
|
packet_put_int(c->self);
|
|
|
|
packet_put_int(c->local_window);
|
|
|
|
packet_put_int(c->local_maxpacket);
|
|
|
|
packet_send();
|
|
|
|
}
|
2000-04-30 02:00:53 +02:00
|
|
|
} else {
|
|
|
|
debug("failure %s", ctype);
|
|
|
|
packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
|
|
|
|
packet_put_int(rchan);
|
|
|
|
packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
|
2001-04-29 21:52:00 +02:00
|
|
|
if (!(datafellows & SSH_BUG_OPENFAILURE)) {
|
2001-05-09 02:01:18 +02:00
|
|
|
packet_put_cstring("open failed");
|
2001-04-29 21:52:00 +02:00
|
|
|
packet_put_cstring("");
|
|
|
|
}
|
2000-04-30 02:00:53 +02:00
|
|
|
packet_send();
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ctype);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2000-04-30 02:00:53 +02:00
|
|
|
}
|
2015-01-26 04:04:45 +01:00
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
client_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
|
2001-02-09 02:34:36 +01:00
|
|
|
{
|
|
|
|
Channel *c = NULL;
|
2004-06-15 02:34:08 +02:00
|
|
|
int exitval, id, reply, success = 0;
|
2001-02-09 02:34:36 +01:00
|
|
|
char *rtype;
|
|
|
|
|
|
|
|
id = packet_get_int();
|
2016-09-30 11:19:13 +02:00
|
|
|
c = channel_lookup(id);
|
2017-05-30 16:23:52 +02:00
|
|
|
if (channel_proxy_upstream(c, type, seq, ssh))
|
2016-09-30 11:19:13 +02:00
|
|
|
return 0;
|
2001-02-09 02:34:36 +01:00
|
|
|
rtype = packet_get_string(NULL);
|
|
|
|
reply = packet_get_char();
|
|
|
|
|
|
|
|
debug("client_input_channel_req: channel %d rtype %s reply %d",
|
|
|
|
id, rtype, reply);
|
|
|
|
|
2004-06-18 14:23:22 +02:00
|
|
|
if (id == -1) {
|
|
|
|
error("client_input_channel_req: request for channel -1");
|
2016-09-30 11:19:13 +02:00
|
|
|
} else if (c == NULL) {
|
2008-06-12 20:51:14 +02:00
|
|
|
error("client_input_channel_req: channel %d: "
|
|
|
|
"unknown channel", id);
|
2008-05-19 08:06:47 +02:00
|
|
|
} else if (strcmp(rtype, "eow@openssh.com") == 0) {
|
|
|
|
packet_check_eom();
|
|
|
|
chan_rcvd_eow(c);
|
2001-02-09 02:34:36 +01:00
|
|
|
} else if (strcmp(rtype, "exit-status") == 0) {
|
2004-06-15 02:34:08 +02:00
|
|
|
exitval = packet_get_int();
|
2010-01-26 03:26:22 +01:00
|
|
|
if (c->ctl_chan != -1) {
|
|
|
|
mux_exit_message(c, exitval);
|
2010-01-08 07:08:35 +01:00
|
|
|
success = 1;
|
|
|
|
} else if (id == session_ident) {
|
|
|
|
/* Record exit value of local session */
|
2004-06-15 02:34:08 +02:00
|
|
|
success = 1;
|
|
|
|
exit_status = exitval;
|
2010-01-08 07:08:35 +01:00
|
|
|
} else {
|
2010-01-30 07:28:34 +01:00
|
|
|
/* Probably for a mux channel that has already closed */
|
|
|
|
debug("%s: no sink for exit-status on channel %d",
|
|
|
|
__func__, id);
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
2002-01-22 13:11:40 +01:00
|
|
|
packet_check_eom();
|
2001-02-09 02:34:36 +01:00
|
|
|
}
|
2014-05-15 05:48:49 +02:00
|
|
|
if (reply && c != NULL && !(c->flags & CHAN_CLOSE_SENT)) {
|
2001-02-09 02:34:36 +01:00
|
|
|
packet_start(success ?
|
|
|
|
SSH2_MSG_CHANNEL_SUCCESS : SSH2_MSG_CHANNEL_FAILURE);
|
2008-12-07 23:54:40 +01:00
|
|
|
packet_put_int(c->remote_id);
|
2001-02-09 02:34:36 +01:00
|
|
|
packet_send();
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(rtype);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2001-02-09 02:34:36 +01:00
|
|
|
}
|
2015-01-26 04:04:45 +01:00
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
struct hostkeys_update_ctx {
|
|
|
|
/* The hostname and (optionally) IP address string for the server */
|
|
|
|
char *host_str, *ip_str;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keys received from the server and a flag for each indicating
|
|
|
|
* whether they already exist in known_hosts.
|
|
|
|
* keys_seen is filled in by hostkeys_find() and later (for new
|
|
|
|
* keys) by client_global_hostkeys_private_confirm().
|
|
|
|
*/
|
|
|
|
struct sshkey **keys;
|
|
|
|
int *keys_seen;
|
2017-05-01 01:21:54 +02:00
|
|
|
size_t nkeys, nnew;
|
2015-02-16 23:13:32 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Keys that are in known_hosts, but were not present in the update
|
|
|
|
* from the server (i.e. scheduled to be deleted).
|
|
|
|
* Filled in by hostkeys_find().
|
|
|
|
*/
|
|
|
|
struct sshkey **old_keys;
|
|
|
|
size_t nold;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
hostkeys_update_ctx_free(struct hostkeys_update_ctx *ctx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (ctx == NULL)
|
|
|
|
return;
|
|
|
|
for (i = 0; i < ctx->nkeys; i++)
|
|
|
|
sshkey_free(ctx->keys[i]);
|
|
|
|
free(ctx->keys);
|
|
|
|
free(ctx->keys_seen);
|
|
|
|
for (i = 0; i < ctx->nold; i++)
|
|
|
|
sshkey_free(ctx->old_keys[i]);
|
|
|
|
free(ctx->old_keys);
|
|
|
|
free(ctx->host_str);
|
|
|
|
free(ctx->ip_str);
|
|
|
|
free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hostkeys_find(struct hostkey_foreach_line *l, void *_ctx)
|
|
|
|
{
|
|
|
|
struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
|
|
|
|
size_t i;
|
|
|
|
struct sshkey **tmp;
|
|
|
|
|
2017-05-01 01:18:44 +02:00
|
|
|
if (l->status != HKF_STATUS_MATCHED || l->key == NULL)
|
2015-02-16 23:13:32 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Mark off keys we've already seen for this host */
|
|
|
|
for (i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (sshkey_equal(l->key, ctx->keys[i])) {
|
|
|
|
debug3("%s: found %s key at %s:%ld", __func__,
|
|
|
|
sshkey_ssh_name(ctx->keys[i]), l->path, l->linenum);
|
|
|
|
ctx->keys_seen[i] = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* This line contained a key that not offered by the server */
|
|
|
|
debug3("%s: deprecated %s key at %s:%ld", __func__,
|
|
|
|
sshkey_ssh_name(l->key), l->path, l->linenum);
|
2017-05-31 11:15:42 +02:00
|
|
|
if ((tmp = recallocarray(ctx->old_keys, ctx->nold, ctx->nold + 1,
|
2015-02-16 23:13:32 +01:00
|
|
|
sizeof(*ctx->old_keys))) == NULL)
|
2017-05-31 11:15:42 +02:00
|
|
|
fatal("%s: recallocarray failed nold = %zu",
|
2015-02-16 23:13:32 +01:00
|
|
|
__func__, ctx->nold);
|
|
|
|
ctx->old_keys = tmp;
|
|
|
|
ctx->old_keys[ctx->nold++] = l->key;
|
|
|
|
l->key = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_known_hosts(struct hostkeys_update_ctx *ctx)
|
|
|
|
{
|
2015-02-23 17:33:25 +01:00
|
|
|
int r, was_raw = 0;
|
|
|
|
int loglevel = options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK ?
|
2015-02-16 23:13:32 +01:00
|
|
|
SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_VERBOSE;
|
|
|
|
char *fp, *response;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (ctx->keys_seen[i] != 2)
|
|
|
|
continue;
|
|
|
|
if ((fp = sshkey_fingerprint(ctx->keys[i],
|
|
|
|
options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
|
|
|
|
fatal("%s: sshkey_fingerprint failed", __func__);
|
|
|
|
do_log2(loglevel, "Learned new hostkey: %s %s",
|
|
|
|
sshkey_type(ctx->keys[i]), fp);
|
|
|
|
free(fp);
|
|
|
|
}
|
|
|
|
for (i = 0; i < ctx->nold; i++) {
|
|
|
|
if ((fp = sshkey_fingerprint(ctx->old_keys[i],
|
|
|
|
options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
|
|
|
|
fatal("%s: sshkey_fingerprint failed", __func__);
|
|
|
|
do_log2(loglevel, "Deprecating obsolete hostkey: %s %s",
|
|
|
|
sshkey_type(ctx->old_keys[i]), fp);
|
|
|
|
free(fp);
|
|
|
|
}
|
|
|
|
if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
|
2015-02-23 17:33:25 +01:00
|
|
|
if (get_saved_tio() != NULL) {
|
|
|
|
leave_raw_mode(1);
|
|
|
|
was_raw = 1;
|
|
|
|
}
|
2015-02-16 23:13:32 +01:00
|
|
|
response = NULL;
|
|
|
|
for (i = 0; !quit_pending && i < 3; i++) {
|
|
|
|
free(response);
|
|
|
|
response = read_passphrase("Accept updated hostkeys? "
|
|
|
|
"(yes/no): ", RP_ECHO);
|
|
|
|
if (strcasecmp(response, "yes") == 0)
|
|
|
|
break;
|
|
|
|
else if (quit_pending || response == NULL ||
|
|
|
|
strcasecmp(response, "no") == 0) {
|
|
|
|
options.update_hostkeys = 0;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
do_log2(loglevel, "Please enter "
|
|
|
|
"\"yes\" or \"no\"");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (quit_pending || i >= 3 || response == NULL)
|
|
|
|
options.update_hostkeys = 0;
|
|
|
|
free(response);
|
2015-02-23 17:33:25 +01:00
|
|
|
if (was_raw)
|
|
|
|
enter_raw_mode(1);
|
2015-02-16 23:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now that all the keys are verified, we can go ahead and replace
|
|
|
|
* them in known_hosts (assuming SSH_UPDATE_HOSTKEYS_ASK didn't
|
|
|
|
* cancel the operation).
|
|
|
|
*/
|
|
|
|
if (options.update_hostkeys != 0 &&
|
|
|
|
(r = hostfile_replace_entries(options.user_hostfiles[0],
|
|
|
|
ctx->host_str, ctx->ip_str, ctx->keys, ctx->nkeys,
|
|
|
|
options.hash_known_hosts, 0,
|
|
|
|
options.fingerprint_hash)) != 0)
|
|
|
|
error("%s: hostfile_replace_entries failed: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_global_hostkeys_private_confirm(int type, u_int32_t seq, void *_ctx)
|
|
|
|
{
|
|
|
|
struct ssh *ssh = active_state; /* XXX */
|
|
|
|
struct hostkeys_update_ctx *ctx = (struct hostkeys_update_ctx *)_ctx;
|
|
|
|
size_t i, ndone;
|
|
|
|
struct sshbuf *signdata;
|
|
|
|
int r;
|
|
|
|
const u_char *sig;
|
|
|
|
size_t siglen;
|
|
|
|
|
|
|
|
if (ctx->nnew == 0)
|
|
|
|
fatal("%s: ctx->nnew == 0", __func__); /* sanity */
|
|
|
|
if (type != SSH2_MSG_REQUEST_SUCCESS) {
|
|
|
|
error("Server failed to confirm ownership of "
|
|
|
|
"private host keys");
|
|
|
|
hostkeys_update_ctx_free(ctx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((signdata = sshbuf_new()) == NULL)
|
|
|
|
fatal("%s: sshbuf_new failed", __func__);
|
|
|
|
/* Don't want to accidentally accept an unbound signature */
|
|
|
|
if (ssh->kex->session_id_len == 0)
|
|
|
|
fatal("%s: ssh->kex->session_id_len == 0", __func__);
|
|
|
|
/*
|
|
|
|
* Expect a signature for each of the ctx->nnew private keys we
|
|
|
|
* haven't seen before. They will be in the same order as the
|
|
|
|
* ctx->keys where the corresponding ctx->keys_seen[i] == 0.
|
|
|
|
*/
|
|
|
|
for (ndone = i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (ctx->keys_seen[i])
|
|
|
|
continue;
|
|
|
|
/* Prepare data to be signed: session ID, unique string, key */
|
|
|
|
sshbuf_reset(signdata);
|
2015-02-20 23:17:21 +01:00
|
|
|
if ( (r = sshbuf_put_cstring(signdata,
|
|
|
|
"hostkeys-prove-00@openssh.com")) != 0 ||
|
|
|
|
(r = sshbuf_put_string(signdata, ssh->kex->session_id,
|
2015-02-16 23:13:32 +01:00
|
|
|
ssh->kex->session_id_len)) != 0 ||
|
|
|
|
(r = sshkey_puts(ctx->keys[i], signdata)) != 0)
|
|
|
|
fatal("%s: failed to prepare signature: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
/* Extract and verify signature */
|
|
|
|
if ((r = sshpkt_get_string_direct(ssh, &sig, &siglen)) != 0) {
|
|
|
|
error("%s: couldn't parse message: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if ((r = sshkey_verify(ctx->keys[i], sig, siglen,
|
|
|
|
sshbuf_ptr(signdata), sshbuf_len(signdata), 0)) != 0) {
|
|
|
|
error("%s: server gave bad signature for %s key %zu",
|
|
|
|
__func__, sshkey_type(ctx->keys[i]), i);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
/* Key is good. Mark it as 'seen' */
|
|
|
|
ctx->keys_seen[i] = 2;
|
|
|
|
ndone++;
|
|
|
|
}
|
|
|
|
if (ndone != ctx->nnew)
|
|
|
|
fatal("%s: ndone != ctx->nnew (%zu / %zu)", __func__,
|
|
|
|
ndone, ctx->nnew); /* Shouldn't happen */
|
|
|
|
ssh_packet_check_eom(ssh);
|
|
|
|
|
|
|
|
/* Make the edits to known_hosts */
|
|
|
|
update_known_hosts(ctx);
|
|
|
|
out:
|
|
|
|
hostkeys_update_ctx_free(ctx);
|
|
|
|
}
|
|
|
|
|
2017-03-10 06:01:13 +01:00
|
|
|
/*
|
|
|
|
* Returns non-zero if the key is accepted by HostkeyAlgorithms.
|
|
|
|
* Made slightly less trivial by the multiple RSA signature algorithm names.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
key_accepted_by_hostkeyalgs(const struct sshkey *key)
|
|
|
|
{
|
|
|
|
const char *ktype = sshkey_ssh_name(key);
|
|
|
|
const char *hostkeyalgs = options.hostkeyalgorithms != NULL ?
|
|
|
|
options.hostkeyalgorithms : KEX_DEFAULT_PK_ALG;
|
|
|
|
|
|
|
|
if (key == NULL || key->type == KEY_UNSPEC)
|
|
|
|
return 0;
|
|
|
|
if (key->type == KEY_RSA &&
|
|
|
|
(match_pattern_list("rsa-sha2-256", hostkeyalgs, 0) == 1 ||
|
|
|
|
match_pattern_list("rsa-sha2-512", hostkeyalgs, 0) == 1))
|
|
|
|
return 1;
|
|
|
|
return match_pattern_list(ktype, hostkeyalgs, 0) == 1;
|
|
|
|
}
|
|
|
|
|
2015-01-26 04:04:45 +01:00
|
|
|
/*
|
2015-02-20 23:17:21 +01:00
|
|
|
* Handle hostkeys-00@openssh.com global request to inform the client of all
|
2015-01-26 04:04:45 +01:00
|
|
|
* the server's hostkeys. The keys are checked against the user's
|
|
|
|
* HostkeyAlgorithms preference before they are accepted.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
client_input_hostkeys(void)
|
|
|
|
{
|
2015-02-16 23:13:32 +01:00
|
|
|
struct ssh *ssh = active_state; /* XXX */
|
2015-01-26 04:04:45 +01:00
|
|
|
const u_char *blob = NULL;
|
2015-02-16 23:13:32 +01:00
|
|
|
size_t i, len = 0;
|
2015-01-26 04:04:45 +01:00
|
|
|
struct sshbuf *buf = NULL;
|
2015-02-16 23:13:32 +01:00
|
|
|
struct sshkey *key = NULL, **tmp;
|
|
|
|
int r;
|
|
|
|
char *fp;
|
2015-01-26 04:04:45 +01:00
|
|
|
static int hostkeys_seen = 0; /* XXX use struct ssh */
|
2015-02-16 23:08:57 +01:00
|
|
|
extern struct sockaddr_storage hostaddr; /* XXX from ssh.c */
|
2015-02-25 20:54:02 +01:00
|
|
|
struct hostkeys_update_ctx *ctx = NULL;
|
2015-01-26 04:04:45 +01:00
|
|
|
|
|
|
|
if (hostkeys_seen)
|
|
|
|
fatal("%s: server already sent hostkeys", __func__);
|
2015-02-16 23:13:32 +01:00
|
|
|
if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK &&
|
|
|
|
options.batch_mode)
|
|
|
|
return 1; /* won't ask in batchmode, so don't even try */
|
2015-01-26 04:04:45 +01:00
|
|
|
if (!options.update_hostkeys || options.num_user_hostfiles <= 0)
|
|
|
|
return 1;
|
2015-02-25 20:54:02 +01:00
|
|
|
|
|
|
|
ctx = xcalloc(1, sizeof(*ctx));
|
2015-02-16 23:13:32 +01:00
|
|
|
while (ssh_packet_remaining(ssh) > 0) {
|
2015-01-26 04:04:45 +01:00
|
|
|
sshkey_free(key);
|
|
|
|
key = NULL;
|
2015-02-16 23:13:32 +01:00
|
|
|
if ((r = sshpkt_get_string_direct(ssh, &blob, &len)) != 0) {
|
|
|
|
error("%s: couldn't parse message: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
2015-02-20 23:17:21 +01:00
|
|
|
if ((r = sshkey_from_blob(blob, len, &key)) != 0) {
|
|
|
|
error("%s: parse key: %s", __func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
2015-01-26 04:04:45 +01:00
|
|
|
fp = sshkey_fingerprint(key, options.fingerprint_hash,
|
|
|
|
SSH_FP_DEFAULT);
|
|
|
|
debug3("%s: received %s key %s", __func__,
|
|
|
|
sshkey_type(key), fp);
|
|
|
|
free(fp);
|
2015-07-10 08:21:53 +02:00
|
|
|
|
2017-03-10 06:01:13 +01:00
|
|
|
if (!key_accepted_by_hostkeyalgs(key)) {
|
2015-01-26 04:04:45 +01:00
|
|
|
debug3("%s: %s key not permitted by HostkeyAlgorithms",
|
|
|
|
__func__, sshkey_ssh_name(key));
|
|
|
|
continue;
|
|
|
|
}
|
2015-02-16 23:13:32 +01:00
|
|
|
/* Skip certs */
|
|
|
|
if (sshkey_is_cert(key)) {
|
|
|
|
debug3("%s: %s key is a certificate; skipping",
|
|
|
|
__func__, sshkey_ssh_name(key));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Ensure keys are unique */
|
|
|
|
for (i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (sshkey_equal(key, ctx->keys[i])) {
|
|
|
|
error("%s: received duplicated %s host key",
|
|
|
|
__func__, sshkey_ssh_name(key));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Key is good, record it */
|
2017-05-31 11:15:42 +02:00
|
|
|
if ((tmp = recallocarray(ctx->keys, ctx->nkeys, ctx->nkeys + 1,
|
2015-02-16 23:13:32 +01:00
|
|
|
sizeof(*ctx->keys))) == NULL)
|
2017-05-31 11:15:42 +02:00
|
|
|
fatal("%s: recallocarray failed nkeys = %zu",
|
2015-02-16 23:13:32 +01:00
|
|
|
__func__, ctx->nkeys);
|
|
|
|
ctx->keys = tmp;
|
|
|
|
ctx->keys[ctx->nkeys++] = key;
|
2015-01-26 04:04:45 +01:00
|
|
|
key = NULL;
|
|
|
|
}
|
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
if (ctx->nkeys == 0) {
|
2015-02-20 23:17:21 +01:00
|
|
|
debug("%s: server sent no hostkeys", __func__);
|
2015-01-26 04:04:45 +01:00
|
|
|
goto out;
|
|
|
|
}
|
2015-02-20 23:17:21 +01:00
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
if ((ctx->keys_seen = calloc(ctx->nkeys,
|
|
|
|
sizeof(*ctx->keys_seen))) == NULL)
|
|
|
|
fatal("%s: calloc failed", __func__);
|
2015-01-26 04:04:45 +01:00
|
|
|
|
2015-02-16 23:08:57 +01:00
|
|
|
get_hostfile_hostname_ipaddr(host,
|
|
|
|
options.check_host_ip ? (struct sockaddr *)&hostaddr : NULL,
|
2015-02-16 23:13:32 +01:00
|
|
|
options.port, &ctx->host_str,
|
|
|
|
options.check_host_ip ? &ctx->ip_str : NULL);
|
|
|
|
|
|
|
|
/* Find which keys we already know about. */
|
|
|
|
if ((r = hostkeys_foreach(options.user_hostfiles[0], hostkeys_find,
|
|
|
|
ctx, ctx->host_str, ctx->ip_str,
|
|
|
|
HKF_WANT_PARSE_KEY|HKF_WANT_MATCH)) != 0) {
|
|
|
|
error("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out if we have any new keys to add */
|
|
|
|
ctx->nnew = 0;
|
|
|
|
for (i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (!ctx->keys_seen[i])
|
|
|
|
ctx->nnew++;
|
|
|
|
}
|
2015-01-26 04:04:45 +01:00
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
debug3("%s: %zu keys from server: %zu new, %zu retained. %zu to remove",
|
|
|
|
__func__, ctx->nkeys, ctx->nnew, ctx->nkeys - ctx->nnew, ctx->nold);
|
2015-02-16 23:08:57 +01:00
|
|
|
|
2015-02-16 23:13:32 +01:00
|
|
|
if (ctx->nnew == 0 && ctx->nold != 0) {
|
|
|
|
/* We have some keys to remove. Just do it. */
|
|
|
|
update_known_hosts(ctx);
|
|
|
|
} else if (ctx->nnew != 0) {
|
|
|
|
/*
|
|
|
|
* We have received hitherto-unseen keys from the server.
|
|
|
|
* Ask the server to confirm ownership of the private halves.
|
|
|
|
*/
|
|
|
|
debug3("%s: asking server to prove ownership for %zu keys",
|
|
|
|
__func__, ctx->nnew);
|
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh,
|
2015-02-20 23:17:21 +01:00
|
|
|
"hostkeys-prove-00@openssh.com")) != 0 ||
|
2015-02-16 23:13:32 +01:00
|
|
|
(r = sshpkt_put_u8(ssh, 1)) != 0) /* bool: want reply */
|
|
|
|
fatal("%s: cannot prepare packet: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
if ((buf = sshbuf_new()) == NULL)
|
|
|
|
fatal("%s: sshbuf_new", __func__);
|
|
|
|
for (i = 0; i < ctx->nkeys; i++) {
|
|
|
|
if (ctx->keys_seen[i])
|
|
|
|
continue;
|
|
|
|
sshbuf_reset(buf);
|
|
|
|
if ((r = sshkey_putb(ctx->keys[i], buf)) != 0)
|
|
|
|
fatal("%s: sshkey_putb: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
|
|
|
|
fatal("%s: sshpkt_put_string: %s",
|
|
|
|
__func__, ssh_err(r));
|
|
|
|
}
|
|
|
|
if ((r = sshpkt_send(ssh)) != 0)
|
|
|
|
fatal("%s: sshpkt_send: %s", __func__, ssh_err(r));
|
|
|
|
client_register_global_confirm(
|
|
|
|
client_global_hostkeys_private_confirm, ctx);
|
|
|
|
ctx = NULL; /* will be freed in callback */
|
2015-01-26 04:04:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Success */
|
|
|
|
out:
|
2015-02-16 23:13:32 +01:00
|
|
|
hostkeys_update_ctx_free(ctx);
|
2015-01-26 04:04:45 +01:00
|
|
|
sshkey_free(key);
|
|
|
|
sshbuf_free(buf);
|
2015-02-16 23:13:32 +01:00
|
|
|
/*
|
|
|
|
* NB. Return success for all cases. The server doesn't need to know
|
|
|
|
* what the client does with its hosts file.
|
|
|
|
*/
|
|
|
|
return 1;
|
2015-01-26 04:04:45 +01:00
|
|
|
}
|
|
|
|
|
2015-01-19 21:07:45 +01:00
|
|
|
static int
|
2017-05-30 16:23:52 +02:00
|
|
|
client_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
|
2002-01-22 13:21:58 +01:00
|
|
|
{
|
|
|
|
char *rtype;
|
|
|
|
int want_reply;
|
|
|
|
int success = 0;
|
|
|
|
|
2015-01-26 04:04:45 +01:00
|
|
|
rtype = packet_get_cstring(NULL);
|
2002-01-22 13:21:58 +01:00
|
|
|
want_reply = packet_get_char();
|
2003-12-17 06:33:10 +01:00
|
|
|
debug("client_input_global_request: rtype %s want_reply %d",
|
|
|
|
rtype, want_reply);
|
2015-02-20 23:17:21 +01:00
|
|
|
if (strcmp(rtype, "hostkeys-00@openssh.com") == 0)
|
2015-01-26 04:04:45 +01:00
|
|
|
success = client_input_hostkeys();
|
2002-01-22 13:21:58 +01:00
|
|
|
if (want_reply) {
|
|
|
|
packet_start(success ?
|
|
|
|
SSH2_MSG_REQUEST_SUCCESS : SSH2_MSG_REQUEST_FAILURE);
|
|
|
|
packet_send();
|
|
|
|
packet_write_wait();
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(rtype);
|
2015-01-19 21:07:45 +01:00
|
|
|
return 0;
|
2002-01-22 13:21:58 +01:00
|
|
|
}
|
2000-04-30 02:00:53 +02:00
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
void
|
2004-07-17 08:12:08 +02:00
|
|
|
client_session2_setup(int id, int want_tty, int want_subsystem,
|
2008-05-19 07:35:33 +02:00
|
|
|
const char *term, struct termios *tiop, int in_fd, Buffer *cmd, char **env)
|
2004-06-15 02:34:08 +02:00
|
|
|
{
|
|
|
|
int len;
|
2004-11-05 10:35:44 +01:00
|
|
|
Channel *c = NULL;
|
2004-06-15 02:34:08 +02:00
|
|
|
|
|
|
|
debug2("%s: id %d", __func__, id);
|
|
|
|
|
2004-11-05 10:35:44 +01:00
|
|
|
if ((c = channel_lookup(id)) == NULL)
|
|
|
|
fatal("client_session2_setup: channel %d: unknown channel", id);
|
|
|
|
|
2010-11-20 05:19:38 +01:00
|
|
|
packet_set_interactive(want_tty,
|
|
|
|
options.ip_qos_interactive, options.ip_qos_bulk);
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
if (want_tty) {
|
|
|
|
struct winsize ws;
|
|
|
|
|
|
|
|
/* Store window size in the packet. */
|
|
|
|
if (ioctl(in_fd, TIOCGWINSZ, &ws) < 0)
|
|
|
|
memset(&ws, 0, sizeof(ws));
|
|
|
|
|
2008-05-19 07:35:33 +02:00
|
|
|
channel_request_start(id, "pty-req", 1);
|
2011-05-15 00:48:05 +02:00
|
|
|
client_expect_confirm(id, "PTY allocation", CONFIRM_TTY);
|
2004-06-15 02:34:08 +02:00
|
|
|
packet_put_cstring(term != NULL ? term : "");
|
2006-03-26 05:04:36 +02:00
|
|
|
packet_put_int((u_int)ws.ws_col);
|
|
|
|
packet_put_int((u_int)ws.ws_row);
|
|
|
|
packet_put_int((u_int)ws.ws_xpixel);
|
|
|
|
packet_put_int((u_int)ws.ws_ypixel);
|
2008-06-08 04:55:32 +02:00
|
|
|
if (tiop == NULL)
|
|
|
|
tiop = get_saved_tio();
|
|
|
|
tty_make_modes(-1, tiop);
|
2004-06-15 02:34:08 +02:00
|
|
|
packet_send();
|
|
|
|
/* XXX wait for reply */
|
2004-11-05 10:35:44 +01:00
|
|
|
c->client_tty = 1;
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Transfer any environment variables from client to server */
|
2004-06-17 17:17:29 +02:00
|
|
|
if (options.num_send_env != 0 && env != NULL) {
|
2004-06-15 02:34:08 +02:00
|
|
|
int i, j, matched;
|
|
|
|
char *name, *val;
|
|
|
|
|
|
|
|
debug("Sending environment.");
|
2004-06-17 17:17:29 +02:00
|
|
|
for (i = 0; env[i] != NULL; i++) {
|
2004-06-15 02:34:08 +02:00
|
|
|
/* Split */
|
2004-06-17 17:17:29 +02:00
|
|
|
name = xstrdup(env[i]);
|
2004-06-15 02:34:08 +02:00
|
|
|
if ((val = strchr(name, '=')) == NULL) {
|
2013-06-01 23:31:17 +02:00
|
|
|
free(name);
|
2004-06-15 02:34:08 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*val++ = '\0';
|
|
|
|
|
|
|
|
matched = 0;
|
|
|
|
for (j = 0; j < options.num_send_env; j++) {
|
|
|
|
if (match_pattern(name, options.send_env[j])) {
|
|
|
|
matched = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!matched) {
|
|
|
|
debug3("Ignored env %s", name);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(name);
|
2004-06-15 02:34:08 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("Sending env %s = %s", name, val);
|
|
|
|
channel_request_start(id, "env", 0);
|
|
|
|
packet_put_cstring(name);
|
|
|
|
packet_put_cstring(val);
|
|
|
|
packet_send();
|
2013-06-01 23:31:17 +02:00
|
|
|
free(name);
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = buffer_len(cmd);
|
|
|
|
if (len > 0) {
|
|
|
|
if (len > 900)
|
|
|
|
len = 900;
|
|
|
|
if (want_subsystem) {
|
2008-05-19 07:35:33 +02:00
|
|
|
debug("Sending subsystem: %.*s",
|
|
|
|
len, (u_char*)buffer_ptr(cmd));
|
|
|
|
channel_request_start(id, "subsystem", 1);
|
2011-05-15 00:48:05 +02:00
|
|
|
client_expect_confirm(id, "subsystem", CONFIRM_CLOSE);
|
2004-06-15 02:34:08 +02:00
|
|
|
} else {
|
2008-05-19 07:35:33 +02:00
|
|
|
debug("Sending command: %.*s",
|
|
|
|
len, (u_char*)buffer_ptr(cmd));
|
|
|
|
channel_request_start(id, "exec", 1);
|
2011-05-15 00:48:05 +02:00
|
|
|
client_expect_confirm(id, "exec", CONFIRM_CLOSE);
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
|
|
|
packet_put_string(buffer_ptr(cmd), buffer_len(cmd));
|
|
|
|
packet_send();
|
|
|
|
} else {
|
2008-05-19 07:35:33 +02:00
|
|
|
channel_request_start(id, "shell", 1);
|
2011-05-15 00:48:05 +02:00
|
|
|
client_expect_confirm(id, "shell", CONFIRM_CLOSE);
|
2004-06-15 02:34:08 +02:00
|
|
|
packet_send();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2017-05-01 01:13:25 +02:00
|
|
|
client_init_dispatch(void)
|
2000-04-06 04:32:37 +02:00
|
|
|
{
|
2001-04-04 19:57:54 +02:00
|
|
|
dispatch_init(&dispatch_protocol_error);
|
2002-04-23 13:09:44 +02:00
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_CLOSE, &channel_input_oclose);
|
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_DATA, &channel_input_data);
|
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_EOF, &channel_input_ieof);
|
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_EXTENDED_DATA, &channel_input_extended_data);
|
2000-04-30 02:00:53 +02:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_OPEN, &client_input_channel_open);
|
2000-04-06 04:32:37 +02:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, &channel_input_open_confirmation);
|
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_OPEN_FAILURE, &channel_input_open_failure);
|
2001-02-09 02:34:36 +01:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_REQUEST, &client_input_channel_req);
|
2000-04-06 04:32:37 +02:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_WINDOW_ADJUST, &channel_input_window_adjust);
|
2008-05-19 07:05:07 +02:00
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &channel_input_status_confirm);
|
|
|
|
dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &channel_input_status_confirm);
|
2002-01-22 13:21:58 +01:00
|
|
|
dispatch_set(SSH2_MSG_GLOBAL_REQUEST, &client_input_global_request);
|
2001-04-04 19:57:54 +02:00
|
|
|
|
|
|
|
/* rekeying */
|
|
|
|
dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
|
2002-04-23 13:09:44 +02:00
|
|
|
|
|
|
|
/* global request reply messages */
|
|
|
|
dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply);
|
|
|
|
dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply);
|
2000-04-06 04:32:37 +02:00
|
|
|
}
|
2008-06-12 20:51:14 +02:00
|
|
|
|
2011-05-05 06:16:22 +02:00
|
|
|
void
|
|
|
|
client_stop_mux(void)
|
|
|
|
{
|
|
|
|
if (options.control_path != NULL && muxserver_sock != -1)
|
|
|
|
unlink(options.control_path);
|
|
|
|
/*
|
2012-09-07 08:38:53 +02:00
|
|
|
* If we are in persist mode, or don't have a shell, signal that we
|
|
|
|
* should close when all active channels are closed.
|
2011-05-05 06:16:22 +02:00
|
|
|
*/
|
2012-09-07 08:38:53 +02:00
|
|
|
if (options.control_persist || no_shell_flag) {
|
2011-05-05 06:16:22 +02:00
|
|
|
session_closed = 1;
|
2011-06-20 06:43:31 +02:00
|
|
|
setproctitle("[stopped mux]");
|
|
|
|
}
|
2011-05-05 06:16:22 +02:00
|
|
|
}
|
|
|
|
|
2003-09-22 13:16:05 +02:00
|
|
|
/* client specific fatal cleanup */
|
|
|
|
void
|
2003-10-02 08:12:36 +02:00
|
|
|
cleanup_exit(int i)
|
2003-09-22 13:16:05 +02:00
|
|
|
{
|
2011-05-15 00:45:50 +02:00
|
|
|
leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
|
2003-09-22 13:16:05 +02:00
|
|
|
leave_non_blocking();
|
2008-05-19 08:00:08 +02:00
|
|
|
if (options.control_path != NULL && muxserver_sock != -1)
|
2004-06-15 02:34:08 +02:00
|
|
|
unlink(options.control_path);
|
2010-10-07 13:07:32 +02:00
|
|
|
ssh_kill_proxy_command();
|
2003-10-02 08:12:36 +02:00
|
|
|
_exit(i);
|
2003-09-22 13:16:05 +02:00
|
|
|
}
|