2020-04-03 06:03:51 +02:00
|
|
|
/* $OpenBSD: ssh.c,v 1.524 2020/04/03 04:03:51 djm 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
|
|
|
|
* Ssh client program. This program can be used to log into a remote machine.
|
|
|
|
* The software supports strong authentication, encryption, and forwarding
|
|
|
|
* of X11, TCP/IP, and authentication connections.
|
|
|
|
*
|
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".
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999 Niels Provos. All rights reserved.
|
2003-10-15 07:54:32 +02:00
|
|
|
* Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
|
2000-09-16 04:29:08 +02:00
|
|
|
*
|
|
|
|
* Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
|
|
|
|
* in Canada (German citizen).
|
|
|
|
*
|
|
|
|
* 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:22:47 +01:00
|
|
|
|
2006-03-15 01:45:54 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
2006-03-15 01:22:47 +01:00
|
|
|
#include <sys/resource.h>
|
2006-03-15 01:28:34 +01:00
|
|
|
#include <sys/ioctl.h>
|
2006-07-10 13:08:03 +02:00
|
|
|
#include <sys/socket.h>
|
2010-09-24 14:02:56 +02:00
|
|
|
#include <sys/wait.h>
|
2006-03-15 01:16:59 +01:00
|
|
|
|
2006-03-15 01:53:45 +01:00
|
|
|
#include <ctype.h>
|
2006-07-12 14:24:22 +02:00
|
|
|
#include <errno.h>
|
2006-07-10 13:13:46 +02:00
|
|
|
#include <fcntl.h>
|
2006-07-24 06:51:00 +02:00
|
|
|
#include <netdb.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-07-10 12:53:08 +02:00
|
|
|
#include <pwd.h>
|
2006-03-15 01:52:09 +01:00
|
|
|
#include <signal.h>
|
2006-09-01 07:38:36 +02:00
|
|
|
#include <stdarg.h>
|
2006-07-24 05:53:19 +02:00
|
|
|
#include <stddef.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>
|
2019-11-18 17:10:05 +01:00
|
|
|
#include <stdarg.h>
|
2006-07-24 06:01:23 +02:00
|
|
|
#include <unistd.h>
|
2015-01-21 00:14:00 +01:00
|
|
|
#include <limits.h>
|
2016-07-17 06:20:16 +02:00
|
|
|
#include <locale.h>
|
2000-04-29 15:57:08 +02:00
|
|
|
|
2006-09-02 07:32:40 +02:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2014-05-15 06:24:09 +02:00
|
|
|
#ifdef WITH_OPENSSL
|
2000-04-29 15:57:08 +02:00
|
|
|
#include <openssl/evp.h>
|
2000-11-13 12:57:25 +01:00
|
|
|
#include <openssl/err.h>
|
2014-05-15 06:24:09 +02:00
|
|
|
#endif
|
2008-02-28 09:13:52 +01:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
2008-05-19 07:05:07 +02:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
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"
|
2010-07-02 05:34:24 +02:00
|
|
|
#include "canohost.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "compat.h"
|
|
|
|
#include "cipher.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "packet.h"
|
2018-07-09 23:03:30 +02:00
|
|
|
#include "sshbuf.h"
|
2001-06-09 02:36:26 +02:00
|
|
|
#include "channels.h"
|
2018-07-11 20:53:29 +02:00
|
|
|
#include "sshkey.h"
|
2000-07-21 02:19:44 +02:00
|
|
|
#include "authfd.h"
|
2000-04-29 15:57:08 +02:00
|
|
|
#include "authfile.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "pathnames.h"
|
2004-06-15 02:34:08 +02:00
|
|
|
#include "dispatch.h"
|
2001-01-18 03:04:35 +01:00
|
|
|
#include "clientloop.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"
|
|
|
|
#include "sshconnect.h"
|
2001-02-15 04:01:59 +01:00
|
|
|
#include "kex.h"
|
|
|
|
#include "mac.h"
|
2004-05-13 08:06:46 +02:00
|
|
|
#include "sshpty.h"
|
2004-05-02 14:11:30 +02:00
|
|
|
#include "match.h"
|
2004-06-15 02:34:08 +02:00
|
|
|
#include "msg.h"
|
2006-07-10 12:23:39 +02:00
|
|
|
#include "version.h"
|
2015-01-14 21:05:27 +01:00
|
|
|
#include "ssherr.h"
|
2015-07-30 02:01:34 +02:00
|
|
|
#include "myproposal.h"
|
2016-12-12 03:57:10 +01:00
|
|
|
#include "utf8.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2010-02-11 23:21:02 +01:00
|
|
|
#ifdef ENABLE_PKCS11
|
|
|
|
#include "ssh-pkcs11.h"
|
2001-08-06 23:59:25 +02:00
|
|
|
#endif
|
2001-07-04 06:52:03 +02:00
|
|
|
|
1999-11-15 07:10:57 +01:00
|
|
|
extern char *__progname;
|
|
|
|
|
2011-06-03 04:10:22 +02:00
|
|
|
/* Saves a copy of argv for setproctitle emulation */
|
|
|
|
#ifndef HAVE_SETPROCTITLE
|
|
|
|
static char **saved_av;
|
|
|
|
#endif
|
|
|
|
|
2008-06-12 20:52:53 +02:00
|
|
|
/* Flag indicating whether debug mode is on. May be set on the command line. */
|
1999-10-27 05:42:43 +02:00
|
|
|
int debug_flag = 0;
|
|
|
|
|
2011-05-15 00:45:50 +02:00
|
|
|
/* Flag indicating whether a tty should be requested */
|
1999-10-27 05:42:43 +02:00
|
|
|
int tty_flag = 0;
|
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
/* don't exec a shell */
|
|
|
|
int no_shell_flag = 0;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Flag indicating that nothing should be read from stdin. This can be set
|
|
|
|
* on the command line.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
int stdin_null_flag = 0;
|
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
/*
|
|
|
|
* Flag indicating that the current process should be backgrounded and
|
|
|
|
* a new slave launched in the foreground for ControlPersist.
|
|
|
|
*/
|
|
|
|
int need_controlpersist_detach = 0;
|
|
|
|
|
|
|
|
/* Copies of flags for ControlPersist foreground slave */
|
2011-05-15 00:45:50 +02:00
|
|
|
int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
|
2010-08-03 08:04:46 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Flag indicating that ssh should fork after authentication. This is useful
|
2002-06-06 21:51:58 +02:00
|
|
|
* so that the passphrase can be entered manually, and then ssh goes to the
|
1999-11-25 01:54:57 +01:00
|
|
|
* background.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
int fork_after_authentication_flag = 0;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* General data structure for command line options and options configurable
|
|
|
|
* in configuration files. See readconf.h.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
Options options;
|
|
|
|
|
2001-09-12 19:48:04 +02:00
|
|
|
/* optional user configfile */
|
|
|
|
char *config = NULL;
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Name of the host we are connecting to. This is the name given on the
|
2019-06-12 13:31:50 +02:00
|
|
|
* command line, or the Hostname specified for the user-supplied name in a
|
1999-11-25 01:54:57 +01:00
|
|
|
* configuration file.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
char *host;
|
|
|
|
|
2019-12-21 03:19:13 +01:00
|
|
|
/*
|
|
|
|
* A config can specify a path to forward, overriding SSH_AUTH_SOCK. If this is
|
|
|
|
* not NULL, forward the socket at this path instead.
|
|
|
|
*/
|
|
|
|
char *forward_agent_sock_path = NULL;
|
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
/* Various strings used to to percent_expand() arguments */
|
|
|
|
static char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
|
|
|
|
static char uidstr[32], *host_arg, *conn_hash_hex;
|
2020-04-03 04:27:12 +02:00
|
|
|
#define DEFAULT_CLIENT_PERCENT_EXPAND_ARGS \
|
|
|
|
"C", conn_hash_hex, \
|
|
|
|
"L", shorthost, \
|
|
|
|
"i", uidstr, \
|
|
|
|
"l", thishost, \
|
|
|
|
"n", host_arg, \
|
|
|
|
"p", portstr
|
2017-10-23 07:08:00 +02:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* socket address the host resolves to */
|
2000-01-14 05:45:46 +01:00
|
|
|
struct sockaddr_storage hostaddr;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-04-13 01:34:34 +02:00
|
|
|
/* Private host keys. */
|
2002-06-06 21:57:33 +02:00
|
|
|
Sensitive sensitive_data;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
/* command to be executed */
|
2018-07-09 23:03:30 +02:00
|
|
|
struct sshbuf *command;
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2001-01-29 23:30:01 +01:00
|
|
|
/* Should we execute a command or invoke a subsystem? */
|
|
|
|
int subsystem_flag = 0;
|
|
|
|
|
2002-04-23 13:09:44 +02:00
|
|
|
/* # of replies received for global requests */
|
2020-04-03 04:40:32 +02:00
|
|
|
static int forward_confirms_pending = -1;
|
2002-04-23 13:09:44 +02:00
|
|
|
|
2008-05-19 08:00:08 +02:00
|
|
|
/* mux.c */
|
|
|
|
extern int muxserver_sock;
|
|
|
|
extern u_int muxclient_command;
|
2004-06-15 02:34:08 +02:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/* Prints a help message to the user. This function never returns. */
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2001-02-09 03:11:24 +01:00
|
|
|
usage(void)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2004-03-21 23:34:58 +01:00
|
|
|
fprintf(stderr,
|
2018-02-23 03:34:33 +01:00
|
|
|
"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n"
|
|
|
|
" [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n"
|
|
|
|
" [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n"
|
|
|
|
" [-i identity_file] [-J [user@]host[:port]] [-L address]\n"
|
|
|
|
" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
|
|
|
|
" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
|
|
|
|
" [-w local_tun[:remote_tun]] destination [command]\n"
|
2004-03-21 23:34:58 +01:00
|
|
|
);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
static int ssh_session2(struct ssh *, struct passwd *);
|
|
|
|
static void load_public_identity_files(struct passwd *);
|
2010-09-24 14:02:56 +02:00
|
|
|
static void main_sigchld_handler(int);
|
2008-05-19 08:00:08 +02:00
|
|
|
|
2011-05-29 13:42:31 +02:00
|
|
|
/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
|
|
|
|
static void
|
|
|
|
tilde_expand_paths(char **paths, u_int num_paths)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
for (i = 0; i < num_paths; i++) {
|
2018-07-27 07:34:42 +02:00
|
|
|
cp = tilde_expand_filename(paths[i], getuid());
|
2013-06-01 23:31:17 +02:00
|
|
|
free(paths[i]);
|
2011-05-29 13:42:31 +02:00
|
|
|
paths[i] = cp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
/*
|
|
|
|
* Attempt to resolve a host name / port to a set of addresses and
|
|
|
|
* optionally return any CNAMEs encountered along the way.
|
|
|
|
* Returns NULL on failure.
|
|
|
|
* NB. this function must operate with a options having undefined members.
|
|
|
|
*/
|
2013-10-17 02:47:23 +02:00
|
|
|
static struct addrinfo *
|
2014-02-24 05:57:55 +01:00
|
|
|
resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
|
2013-10-17 02:47:23 +02:00
|
|
|
{
|
|
|
|
char strport[NI_MAXSERV];
|
|
|
|
struct addrinfo hints, *res;
|
2019-04-23 13:56:41 +02:00
|
|
|
int gaierr;
|
|
|
|
LogLevel loglevel = SYSLOG_LEVEL_DEBUG1;
|
2013-10-17 02:47:23 +02:00
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
if (port <= 0)
|
|
|
|
port = default_ssh_port();
|
2020-03-06 19:20:02 +01:00
|
|
|
if (cname != NULL)
|
|
|
|
*cname = '\0';
|
2014-02-24 05:57:55 +01:00
|
|
|
|
2015-10-16 01:51:40 +02:00
|
|
|
snprintf(strport, sizeof strport, "%d", port);
|
2014-02-04 01:18:20 +01:00
|
|
|
memset(&hints, 0, sizeof(hints));
|
2014-02-24 05:57:55 +01:00
|
|
|
hints.ai_family = options.address_family == -1 ?
|
|
|
|
AF_UNSPEC : options.address_family;
|
2013-10-17 02:47:23 +02:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
if (cname != NULL)
|
|
|
|
hints.ai_flags = AI_CANONNAME;
|
|
|
|
if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
|
|
|
|
if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
|
|
|
|
loglevel = SYSLOG_LEVEL_ERROR;
|
|
|
|
do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
|
|
|
|
__progname, name, ssh_gai_strerror(gaierr));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (cname != NULL && res->ai_canonname != NULL) {
|
|
|
|
if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
|
|
|
|
error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
|
|
|
|
__func__, name, res->ai_canonname, (u_long)clen);
|
|
|
|
if (clen > 0)
|
|
|
|
*cname = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-01-23 06:06:25 +01:00
|
|
|
/* Returns non-zero if name can only be an address and not a hostname */
|
|
|
|
static int
|
|
|
|
is_addr_fast(const char *name)
|
|
|
|
{
|
|
|
|
return (strchr(name, '%') != NULL || strchr(name, ':') != NULL ||
|
|
|
|
strspn(name, "0123456789.") == strlen(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns non-zero if name represents a valid, single address */
|
|
|
|
static int
|
|
|
|
is_addr(const char *name)
|
|
|
|
{
|
|
|
|
char strport[NI_MAXSERV];
|
|
|
|
struct addrinfo hints, *res;
|
|
|
|
|
|
|
|
if (is_addr_fast(name))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
snprintf(strport, sizeof strport, "%u", default_ssh_port());
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_family = options.address_family == -1 ?
|
|
|
|
AF_UNSPEC : options.address_family;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
|
|
|
|
if (getaddrinfo(name, strport, &hints, &res) != 0)
|
|
|
|
return 0;
|
|
|
|
if (res == NULL || res->ai_next != NULL) {
|
|
|
|
freeaddrinfo(res);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
freeaddrinfo(res);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-01-16 08:19:48 +01:00
|
|
|
/*
|
|
|
|
* Attempt to resolve a numeric host address / port to a single address.
|
|
|
|
* Returns a canonical address string.
|
|
|
|
* Returns NULL on failure.
|
|
|
|
* NB. this function must operate with a options having undefined members.
|
|
|
|
*/
|
|
|
|
static struct addrinfo *
|
|
|
|
resolve_addr(const char *name, int port, char *caddr, size_t clen)
|
|
|
|
{
|
|
|
|
char addr[NI_MAXHOST], strport[NI_MAXSERV];
|
|
|
|
struct addrinfo hints, *res;
|
|
|
|
int gaierr;
|
|
|
|
|
|
|
|
if (port <= 0)
|
|
|
|
port = default_ssh_port();
|
|
|
|
snprintf(strport, sizeof strport, "%u", port);
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_family = options.address_family == -1 ?
|
|
|
|
AF_UNSPEC : options.address_family;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
|
|
|
|
if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
|
|
|
|
debug2("%s: could not resolve name %.100s as address: %s",
|
|
|
|
__func__, name, ssh_gai_strerror(gaierr));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (res == NULL) {
|
|
|
|
debug("%s: getaddrinfo %.100s returned no addresses",
|
|
|
|
__func__, name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (res->ai_next != NULL) {
|
|
|
|
debug("%s: getaddrinfo %.100s returned multiple addresses",
|
|
|
|
__func__, name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
|
|
|
|
addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
|
|
|
|
debug("%s: Could not format address for name %.100s: %s",
|
|
|
|
__func__, name, ssh_gai_strerror(gaierr));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (strlcpy(caddr, addr, clen) >= clen) {
|
|
|
|
error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
|
|
|
|
__func__, name, addr, (u_long)clen);
|
|
|
|
if (clen > 0)
|
|
|
|
*caddr = '\0';
|
|
|
|
fail:
|
|
|
|
freeaddrinfo(res);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2013-10-17 02:47:23 +02:00
|
|
|
/*
|
|
|
|
* Check whether the cname is a permitted replacement for the hostname
|
|
|
|
* and perform the replacement if it is.
|
2014-02-24 05:57:55 +01:00
|
|
|
* NB. this function must operate with a options having undefined members.
|
2013-10-17 02:47:23 +02:00
|
|
|
*/
|
|
|
|
static int
|
2016-07-15 02:24:30 +02:00
|
|
|
check_follow_cname(int direct, char **namep, const char *cname)
|
2013-10-17 02:47:23 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct allowed_cname *rule;
|
|
|
|
|
|
|
|
if (*cname == '\0' || options.num_permitted_cnames == 0 ||
|
|
|
|
strcmp(*namep, cname) == 0)
|
|
|
|
return 0;
|
2013-10-17 02:48:13 +02:00
|
|
|
if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
|
2013-10-17 02:47:23 +02:00
|
|
|
return 0;
|
|
|
|
/*
|
2013-10-17 02:48:13 +02:00
|
|
|
* Don't attempt to canonicalize names that will be interpreted by
|
2016-07-15 02:24:30 +02:00
|
|
|
* a proxy or jump host unless the user specifically requests so.
|
2013-10-17 02:47:23 +02:00
|
|
|
*/
|
2016-07-15 02:24:30 +02:00
|
|
|
if (!direct &&
|
2013-10-17 02:48:13 +02:00
|
|
|
options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
|
2013-10-17 02:47:23 +02:00
|
|
|
return 0;
|
|
|
|
debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
|
|
|
|
for (i = 0; i < options.num_permitted_cnames; i++) {
|
|
|
|
rule = options.permitted_cnames + i;
|
2015-05-04 08:10:48 +02:00
|
|
|
if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
|
|
|
|
match_pattern_list(cname, rule->target_list, 1) != 1)
|
2013-10-17 02:47:23 +02:00
|
|
|
continue;
|
2013-10-17 02:48:13 +02:00
|
|
|
verbose("Canonicalized DNS aliased hostname "
|
2013-10-17 02:47:23 +02:00
|
|
|
"\"%s\" => \"%s\"", *namep, cname);
|
|
|
|
free(*namep);
|
|
|
|
*namep = xstrdup(cname);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attempt to resolve the supplied hostname after applying the user's
|
2013-10-17 02:48:31 +02:00
|
|
|
* canonicalization rules. Returns the address list for the host or NULL
|
|
|
|
* if no name was found after canonicalization.
|
2014-02-24 05:57:55 +01:00
|
|
|
* NB. this function must operate with a options having undefined members.
|
2013-10-17 02:47:23 +02:00
|
|
|
*/
|
|
|
|
static struct addrinfo *
|
2014-02-24 05:57:55 +01:00
|
|
|
resolve_canonicalize(char **hostp, int port)
|
2013-10-17 02:47:23 +02:00
|
|
|
{
|
2016-07-15 02:24:30 +02:00
|
|
|
int i, direct, ndots;
|
2015-01-16 08:19:48 +01:00
|
|
|
char *cp, *fullhost, newname[NI_MAXHOST];
|
2013-10-17 02:47:23 +02:00
|
|
|
struct addrinfo *addrs;
|
|
|
|
|
|
|
|
/*
|
2018-01-23 06:06:25 +01:00
|
|
|
* Attempt to canonicalise addresses, regardless of
|
|
|
|
* whether hostname canonicalisation was requested
|
2013-10-17 02:47:23 +02:00
|
|
|
*/
|
2015-01-16 08:19:48 +01:00
|
|
|
if ((addrs = resolve_addr(*hostp, port,
|
|
|
|
newname, sizeof(newname))) != NULL) {
|
|
|
|
debug2("%s: hostname %.100s is address", __func__, *hostp);
|
|
|
|
if (strcasecmp(*hostp, newname) != 0) {
|
|
|
|
debug2("%s: canonicalised address \"%s\" => \"%s\"",
|
|
|
|
__func__, *hostp, newname);
|
|
|
|
free(*hostp);
|
|
|
|
*hostp = xstrdup(newname);
|
|
|
|
}
|
|
|
|
return addrs;
|
|
|
|
}
|
|
|
|
|
2018-01-23 06:06:25 +01:00
|
|
|
/*
|
|
|
|
* If this looks like an address but didn't parse as one, it might
|
|
|
|
* be an address with an invalid interface scope. Skip further
|
|
|
|
* attempts at canonicalisation.
|
|
|
|
*/
|
|
|
|
if (is_addr_fast(*hostp)) {
|
|
|
|
debug("%s: hostname %.100s is an unrecognised address",
|
|
|
|
__func__, *hostp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't attempt to canonicalize names that will be interpreted by
|
|
|
|
* a proxy unless the user specifically requests so.
|
|
|
|
*/
|
|
|
|
direct = option_clear_or_none(options.proxy_command) &&
|
|
|
|
options.jump_host == NULL;
|
|
|
|
if (!direct &&
|
|
|
|
options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
|
|
|
|
return NULL;
|
|
|
|
|
2015-10-16 20:40:49 +02:00
|
|
|
/* If domain name is anchored, then resolve it now */
|
|
|
|
if ((*hostp)[strlen(*hostp) - 1] == '.') {
|
|
|
|
debug3("%s: name is fully qualified", __func__);
|
|
|
|
fullhost = xstrdup(*hostp);
|
|
|
|
if ((addrs = resolve_host(fullhost, port, 0,
|
|
|
|
newname, sizeof(newname))) != NULL)
|
|
|
|
goto found;
|
|
|
|
free(fullhost);
|
|
|
|
goto notfound;
|
|
|
|
}
|
|
|
|
|
2013-10-17 02:48:31 +02:00
|
|
|
/* Don't apply canonicalization to sufficiently-qualified hostnames */
|
2013-10-17 02:47:23 +02:00
|
|
|
ndots = 0;
|
|
|
|
for (cp = *hostp; *cp != '\0'; cp++) {
|
|
|
|
if (*cp == '.')
|
|
|
|
ndots++;
|
|
|
|
}
|
2013-10-17 02:48:13 +02:00
|
|
|
if (ndots > options.canonicalize_max_dots) {
|
|
|
|
debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
|
|
|
|
__func__, *hostp, options.canonicalize_max_dots);
|
2013-10-17 02:47:23 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* Attempt each supplied suffix */
|
|
|
|
for (i = 0; i < options.num_canonical_domains; i++) {
|
|
|
|
xasprintf(&fullhost, "%s.%s.", *hostp,
|
|
|
|
options.canonical_domains[i]);
|
2014-02-24 05:57:55 +01:00
|
|
|
debug3("%s: attempting \"%s\" => \"%s\"", __func__,
|
|
|
|
*hostp, fullhost);
|
|
|
|
if ((addrs = resolve_host(fullhost, port, 0,
|
2015-01-16 08:19:48 +01:00
|
|
|
newname, sizeof(newname))) == NULL) {
|
2013-10-17 02:47:23 +02:00
|
|
|
free(fullhost);
|
|
|
|
continue;
|
|
|
|
}
|
2015-10-16 20:40:49 +02:00
|
|
|
found:
|
2013-10-17 02:47:23 +02:00
|
|
|
/* Remove trailing '.' */
|
|
|
|
fullhost[strlen(fullhost) - 1] = '\0';
|
|
|
|
/* Follow CNAME if requested */
|
2016-07-15 02:24:30 +02:00
|
|
|
if (!check_follow_cname(direct, &fullhost, newname)) {
|
2013-10-17 02:48:13 +02:00
|
|
|
debug("Canonicalized hostname \"%s\" => \"%s\"",
|
2013-10-17 02:47:23 +02:00
|
|
|
*hostp, fullhost);
|
|
|
|
}
|
|
|
|
free(*hostp);
|
|
|
|
*hostp = fullhost;
|
|
|
|
return addrs;
|
|
|
|
}
|
2015-10-16 20:40:49 +02:00
|
|
|
notfound:
|
2013-10-17 02:48:13 +02:00
|
|
|
if (!options.canonicalize_fallback_local)
|
2014-02-24 05:57:55 +01:00
|
|
|
fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
|
|
|
|
debug2("%s: host %s not found in any suffix", __func__, *hostp);
|
2013-10-17 02:47:23 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-11 20:53:29 +02:00
|
|
|
/*
|
|
|
|
* Check the result of hostkey loading, ignoring some errors and
|
|
|
|
* fatal()ing for others.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
check_load(int r, const char *path, const char *message)
|
|
|
|
{
|
|
|
|
switch (r) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case SSH_ERR_INTERNAL_ERROR:
|
|
|
|
case SSH_ERR_ALLOC_FAIL:
|
|
|
|
fatal("load %s \"%s\": %s", message, path, ssh_err(r));
|
|
|
|
case SSH_ERR_SYSTEM_ERROR:
|
|
|
|
/* Ignore missing files */
|
|
|
|
if (errno == ENOENT)
|
|
|
|
break;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
default:
|
|
|
|
error("load %s \"%s\": %s", message, path, ssh_err(r));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
/*
|
|
|
|
* Read per-user configuration file. Ignore the system wide config
|
|
|
|
* file if the user specifies a config file on the command line.
|
|
|
|
*/
|
|
|
|
static void
|
2018-11-23 06:08:07 +01:00
|
|
|
process_config_files(const char *host_name, struct passwd *pw, int final_pass,
|
|
|
|
int *want_final_pass)
|
2014-02-24 05:57:55 +01:00
|
|
|
{
|
2015-01-21 00:14:00 +01:00
|
|
|
char buf[PATH_MAX];
|
2014-02-24 05:57:55 +01:00
|
|
|
int r;
|
|
|
|
|
|
|
|
if (config != NULL) {
|
|
|
|
if (strcasecmp(config, "none") != 0 &&
|
2017-10-23 07:08:00 +02:00
|
|
|
!read_config_file(config, pw, host, host_name, &options,
|
2018-11-23 06:08:07 +01:00
|
|
|
SSHCONF_USERCONF | (final_pass ? SSHCONF_FINAL : 0),
|
|
|
|
want_final_pass))
|
2014-02-24 05:57:55 +01:00
|
|
|
fatal("Can't open user config file %.100s: "
|
|
|
|
"%.100s", config, strerror(errno));
|
|
|
|
} else {
|
|
|
|
r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
|
|
|
|
_PATH_SSH_USER_CONFFILE);
|
|
|
|
if (r > 0 && (size_t)r < sizeof(buf))
|
2017-10-23 07:08:00 +02:00
|
|
|
(void)read_config_file(buf, pw, host, host_name,
|
2014-10-09 00:20:25 +02:00
|
|
|
&options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
|
2018-11-23 06:08:07 +01:00
|
|
|
(final_pass ? SSHCONF_FINAL : 0), want_final_pass);
|
2014-02-24 05:57:55 +01:00
|
|
|
|
|
|
|
/* Read systemwide configuration file after user config. */
|
2014-10-09 00:20:25 +02:00
|
|
|
(void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
|
2017-10-23 07:08:00 +02:00
|
|
|
host, host_name, &options,
|
2018-11-23 06:08:07 +01:00
|
|
|
final_pass ? SSHCONF_FINAL : 0, want_final_pass);
|
2014-10-09 00:20:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rewrite the port number in an addrinfo list of addresses */
|
|
|
|
static void
|
|
|
|
set_addrinfo_port(struct addrinfo *addrs, int port)
|
|
|
|
{
|
|
|
|
struct addrinfo *addr;
|
|
|
|
|
|
|
|
for (addr = addrs; addr != NULL; addr = addr->ai_next) {
|
|
|
|
switch (addr->ai_family) {
|
|
|
|
case AF_INET:
|
|
|
|
((struct sockaddr_in *)addr->ai_addr)->
|
|
|
|
sin_port = htons(port);
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
((struct sockaddr_in6 *)addr->ai_addr)->
|
|
|
|
sin6_port = htons(port);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-24 05:57:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* Main program for the ssh client.
|
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
int
|
|
|
|
main(int ac, char **av)
|
|
|
|
{
|
2016-03-07 20:02:43 +01:00
|
|
|
struct ssh *ssh = NULL;
|
2017-08-12 08:46:01 +02:00
|
|
|
int i, r, opt, exit_status, use_syslog, direct, timeout_ms;
|
2018-11-23 06:08:07 +01:00
|
|
|
int was_addr, config_test = 0, opt_terminated = 0, want_final_pass = 0;
|
2017-10-23 07:08:00 +02:00
|
|
|
char *p, *cp, *line, *argv0, buf[PATH_MAX], *logfile;
|
|
|
|
char cname[NI_MAXHOST];
|
1999-11-24 14:26:21 +01:00
|
|
|
struct stat st;
|
2001-03-05 06:56:40 +01:00
|
|
|
struct passwd *pw;
|
2001-09-24 22:00:10 +02:00
|
|
|
extern int optind, optreset;
|
2001-07-14 05:22:53 +02:00
|
|
|
extern char *optarg;
|
2014-07-18 06:11:24 +02:00
|
|
|
struct Forward fwd;
|
2013-10-17 02:47:23 +02:00
|
|
|
struct addrinfo *addrs = NULL;
|
2020-01-23 11:24:29 +01:00
|
|
|
size_t n, len;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2005-10-03 10:11:24 +02:00
|
|
|
/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
|
|
|
|
sanitise_stdfd();
|
|
|
|
|
2003-08-22 01:34:41 +02:00
|
|
|
__progname = ssh_get_progname(av[0]);
|
2000-07-09 14:42:32 +02:00
|
|
|
|
2011-06-03 04:10:22 +02:00
|
|
|
#ifndef HAVE_SETPROCTITLE
|
|
|
|
/* Prepare for later setproctitle emulation */
|
|
|
|
/* Save argv so it isn't clobbered by setproctitle() emulation */
|
|
|
|
saved_av = xcalloc(ac + 1, sizeof(*saved_av));
|
|
|
|
for (i = 0; i < ac; i++)
|
|
|
|
saved_av[i] = xstrdup(av[i]);
|
|
|
|
saved_av[i] = NULL;
|
|
|
|
compat_init_setproctitle(ac, av);
|
|
|
|
av = saved_av;
|
|
|
|
#endif
|
|
|
|
|
2018-11-23 00:40:06 +01:00
|
|
|
seed_rng();
|
|
|
|
|
2010-08-16 17:59:31 +02:00
|
|
|
/*
|
|
|
|
* Discard other fds that are hanging around. These can cause problem
|
|
|
|
* with backgrounded ssh processes started by ControlPersist.
|
|
|
|
*/
|
|
|
|
closefrom(STDERR_FILENO + 1);
|
|
|
|
|
2001-04-08 20:26:59 +02:00
|
|
|
/* Get user data. */
|
2018-07-27 07:34:42 +02:00
|
|
|
pw = getpwuid(getuid());
|
2001-04-08 20:26:59 +02:00
|
|
|
if (!pw) {
|
2018-07-27 07:34:42 +02:00
|
|
|
logit("No user exists for uid %lu", (u_long)getuid());
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
2001-04-08 20:26:59 +02:00
|
|
|
}
|
|
|
|
/* Take a copy of the returned structure. */
|
|
|
|
pw = pwcopy(pw);
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Set our umask to something reasonable, as some files are created
|
|
|
|
* with the default umask. This will make them world-readable but
|
|
|
|
* writable only by the owner, which is ok for all files for which we
|
|
|
|
* don't set the modes explicitly.
|
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
umask(022);
|
|
|
|
|
2016-12-12 03:57:10 +01:00
|
|
|
msetlocale();
|
2016-07-17 06:20:16 +02:00
|
|
|
|
2008-06-12 20:52:53 +02:00
|
|
|
/*
|
|
|
|
* Initialize option structure to indicate that no values have been
|
|
|
|
* set.
|
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
initialize_options(&options);
|
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
/*
|
|
|
|
* Prepare main ssh transport/connection structures
|
|
|
|
*/
|
|
|
|
if ((ssh = ssh_alloc_session_state()) == NULL)
|
|
|
|
fatal("Couldn't allocate session state");
|
|
|
|
channel_init_channels(ssh);
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Parse command-line arguments. */
|
|
|
|
host = NULL;
|
2008-11-03 09:22:37 +01:00
|
|
|
use_syslog = 0;
|
2013-04-23 07:21:06 +02:00
|
|
|
logfile = NULL;
|
2009-06-21 09:48:00 +02:00
|
|
|
argv0 = av[0];
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2006-03-15 02:03:53 +01:00
|
|
|
again:
|
2008-06-12 20:52:53 +02:00
|
|
|
while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
|
2018-02-23 03:34:33 +01:00
|
|
|
"AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
|
1999-11-24 14:26:21 +01:00
|
|
|
switch (opt) {
|
2001-02-09 03:36:43 +01:00
|
|
|
case '1':
|
2017-05-01 01:11:45 +02:00
|
|
|
fatal("SSH protocol v.1 is no longer supported");
|
2001-02-09 03:36:43 +01:00
|
|
|
break;
|
2000-04-16 03:18:38 +02:00
|
|
|
case '2':
|
2017-05-01 01:11:45 +02:00
|
|
|
/* Ignored */
|
2000-04-16 03:18:38 +02:00
|
|
|
break;
|
2000-01-14 05:45:46 +01:00
|
|
|
case '4':
|
2003-07-03 12:37:47 +02:00
|
|
|
options.address_family = AF_INET;
|
2000-01-14 05:45:46 +01:00
|
|
|
break;
|
|
|
|
case '6':
|
2003-07-03 12:37:47 +02:00
|
|
|
options.address_family = AF_INET6;
|
2000-01-14 05:45:46 +01:00
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'n':
|
|
|
|
stdin_null_flag = 1;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
fork_after_authentication_flag = 1;
|
|
|
|
stdin_null_flag = 1;
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
options.forward_x11 = 0;
|
|
|
|
break;
|
|
|
|
case 'X':
|
|
|
|
options.forward_x11 = 1;
|
|
|
|
break;
|
2008-11-03 09:22:37 +01:00
|
|
|
case 'y':
|
|
|
|
use_syslog = 1;
|
|
|
|
break;
|
2013-04-23 07:21:06 +02:00
|
|
|
case 'E':
|
2015-09-04 10:21:47 +02:00
|
|
|
logfile = optarg;
|
2013-04-23 07:21:06 +02:00
|
|
|
break;
|
2014-10-09 00:20:25 +02:00
|
|
|
case 'G':
|
|
|
|
config_test = 1;
|
|
|
|
break;
|
2003-10-15 07:54:32 +02:00
|
|
|
case 'Y':
|
|
|
|
options.forward_x11 = 1;
|
|
|
|
options.forward_x11_trusted = 1;
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'g':
|
2014-07-18 06:11:24 +02:00
|
|
|
options.fwd_opts.gateway_ports = 1;
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2004-11-07 10:06:19 +01:00
|
|
|
case 'O':
|
2016-06-03 05:14:41 +02:00
|
|
|
if (options.stdio_forward_host != NULL)
|
2010-01-26 03:26:22 +01:00
|
|
|
fatal("Cannot specify multiplexing "
|
|
|
|
"command with -W");
|
|
|
|
else if (muxclient_command != 0)
|
|
|
|
fatal("Multiplexing command already specified");
|
2004-11-07 10:06:19 +01:00
|
|
|
if (strcmp(optarg, "check") == 0)
|
2008-05-19 08:00:08 +02:00
|
|
|
muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
|
2010-05-21 06:57:35 +02:00
|
|
|
else if (strcmp(optarg, "forward") == 0)
|
|
|
|
muxclient_command = SSHMUX_COMMAND_FORWARD;
|
2004-11-07 10:06:19 +01:00
|
|
|
else if (strcmp(optarg, "exit") == 0)
|
2008-05-19 08:00:08 +02:00
|
|
|
muxclient_command = SSHMUX_COMMAND_TERMINATE;
|
2011-05-05 06:16:22 +02:00
|
|
|
else if (strcmp(optarg, "stop") == 0)
|
|
|
|
muxclient_command = SSHMUX_COMMAND_STOP;
|
2011-09-22 13:38:52 +02:00
|
|
|
else if (strcmp(optarg, "cancel") == 0)
|
|
|
|
muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
|
2016-09-30 11:19:13 +02:00
|
|
|
else if (strcmp(optarg, "proxy") == 0)
|
|
|
|
muxclient_command = SSHMUX_COMMAND_PROXY;
|
2004-11-07 10:06:19 +01:00
|
|
|
else
|
|
|
|
fatal("Invalid multiplex command.");
|
|
|
|
break;
|
2002-09-04 08:46:06 +02:00
|
|
|
case 'P': /* deprecated */
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2013-12-05 00:19:54 +01:00
|
|
|
case 'Q':
|
2013-04-23 11:24:32 +02:00
|
|
|
cp = NULL;
|
2020-02-07 04:54:44 +01:00
|
|
|
if (strcmp(optarg, "cipher") == 0 ||
|
|
|
|
strcasecmp(optarg, "Ciphers") == 0)
|
2013-11-21 04:12:23 +01:00
|
|
|
cp = cipher_alg_list('\n', 0);
|
2013-12-05 00:19:54 +01:00
|
|
|
else if (strcmp(optarg, "cipher-auth") == 0)
|
2013-11-21 04:12:23 +01:00
|
|
|
cp = cipher_alg_list('\n', 1);
|
2020-02-07 04:54:44 +01:00
|
|
|
else if (strcmp(optarg, "mac") == 0 ||
|
|
|
|
strcasecmp(optarg, "MACs") == 0)
|
2013-11-08 02:16:49 +01:00
|
|
|
cp = mac_alg_list('\n');
|
2020-02-07 04:54:44 +01:00
|
|
|
else if (strcmp(optarg, "kex") == 0 ||
|
|
|
|
strcasecmp(optarg, "KexAlgorithms") == 0)
|
2013-11-08 02:16:49 +01:00
|
|
|
cp = kex_alg_list('\n');
|
2013-12-05 00:19:54 +01:00
|
|
|
else if (strcmp(optarg, "key") == 0)
|
2017-03-10 05:07:20 +01:00
|
|
|
cp = sshkey_alg_list(0, 0, 0, '\n');
|
2013-12-07 01:24:01 +01:00
|
|
|
else if (strcmp(optarg, "key-cert") == 0)
|
2017-03-10 05:07:20 +01:00
|
|
|
cp = sshkey_alg_list(1, 0, 0, '\n');
|
2013-12-07 01:24:01 +01:00
|
|
|
else if (strcmp(optarg, "key-plain") == 0)
|
2017-03-10 05:07:20 +01:00
|
|
|
cp = sshkey_alg_list(0, 1, 0, '\n');
|
2020-02-07 04:54:44 +01:00
|
|
|
else if (strcmp(optarg, "key-sig") == 0 ||
|
|
|
|
strcasecmp(optarg, "PubkeyAcceptedKeyTypes") == 0 ||
|
|
|
|
strcasecmp(optarg, "HostKeyAlgorithms") == 0 ||
|
|
|
|
strcasecmp(optarg, "HostbasedKeyTypes") == 0 ||
|
|
|
|
strcasecmp(optarg, "HostbasedAcceptedKeyTypes") == 0)
|
|
|
|
cp = sshkey_alg_list(0, 0, 1, '\n');
|
2018-09-12 03:30:10 +02:00
|
|
|
else if (strcmp(optarg, "sig") == 0)
|
2018-09-20 05:31:49 +02:00
|
|
|
cp = sshkey_alg_list(0, 1, 1, '\n');
|
2018-09-12 03:30:10 +02:00
|
|
|
else if (strcmp(optarg, "protocol-version") == 0)
|
2015-03-03 07:48:58 +01:00
|
|
|
cp = xstrdup("2");
|
2020-01-23 11:24:29 +01:00
|
|
|
else if (strcmp(optarg, "compression") == 0) {
|
|
|
|
cp = xstrdup(compression_alg_list(0));
|
|
|
|
len = strlen(cp);
|
|
|
|
for (n = 0; n < len; n++)
|
|
|
|
if (cp[n] == ',')
|
|
|
|
cp[n] = '\n';
|
|
|
|
} else if (strcmp(optarg, "help") == 0) {
|
2018-09-12 03:30:10 +02:00
|
|
|
cp = xstrdup(
|
2020-01-23 11:24:29 +01:00
|
|
|
"cipher\ncipher-auth\ncompression\nkex\n"
|
2020-02-07 04:54:44 +01:00
|
|
|
"key\nkey-cert\nkey-plain\nkey-sig\nmac\n"
|
2018-09-12 03:30:10 +02:00
|
|
|
"protocol-version\nsig");
|
2015-03-03 07:48:58 +01:00
|
|
|
}
|
2013-04-23 11:24:32 +02:00
|
|
|
if (cp == NULL)
|
|
|
|
fatal("Unsupported query \"%s\"", optarg);
|
|
|
|
printf("%s\n", cp);
|
|
|
|
free(cp);
|
|
|
|
exit(0);
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'a':
|
|
|
|
options.forward_agent = 0;
|
|
|
|
break;
|
2000-05-30 05:44:51 +02:00
|
|
|
case 'A':
|
|
|
|
options.forward_agent = 1;
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'k':
|
2003-11-24 03:10:09 +01:00
|
|
|
options.gss_deleg_creds = 0;
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2007-06-12 15:43:16 +02:00
|
|
|
case 'K':
|
|
|
|
options.gss_authentication = 1;
|
|
|
|
options.gss_deleg_creds = 1;
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'i':
|
2018-07-27 07:34:42 +02:00
|
|
|
p = tilde_expand_filename(optarg, getuid());
|
2019-06-28 15:35:04 +02:00
|
|
|
if (stat(p, &st) == -1)
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr, "Warning: Identity file %s "
|
2015-10-26 00:42:00 +01:00
|
|
|
"not accessible: %s.\n", p,
|
2005-03-01 11:15:46 +01:00
|
|
|
strerror(errno));
|
2015-10-26 00:42:00 +01:00
|
|
|
else
|
|
|
|
add_identity_file(&options, NULL, p, 1);
|
|
|
|
free(p);
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2001-07-04 06:52:03 +02:00
|
|
|
case 'I':
|
2010-02-11 23:21:02 +01:00
|
|
|
#ifdef ENABLE_PKCS11
|
2015-09-04 10:21:47 +02:00
|
|
|
free(options.pkcs11_provider);
|
2010-02-11 23:21:02 +01:00
|
|
|
options.pkcs11_provider = xstrdup(optarg);
|
2001-08-06 23:59:25 +02:00
|
|
|
#else
|
2010-02-11 23:21:02 +01:00
|
|
|
fprintf(stderr, "no support for PKCS#11.\n");
|
2001-08-06 23:59:25 +02:00
|
|
|
#endif
|
2001-07-04 06:52:03 +02:00
|
|
|
break;
|
2016-07-15 02:24:30 +02:00
|
|
|
case 'J':
|
2019-06-14 06:13:58 +02:00
|
|
|
if (options.jump_host != NULL) {
|
|
|
|
fatal("Only a single -J option is permitted "
|
|
|
|
"(use commas to separate multiple "
|
|
|
|
"jump hops)");
|
|
|
|
}
|
2016-07-15 02:24:30 +02:00
|
|
|
if (options.proxy_command != NULL)
|
|
|
|
fatal("Cannot specify -J with ProxyCommand");
|
|
|
|
if (parse_jump(optarg, &options, 1) == -1)
|
|
|
|
fatal("Invalid -J argument");
|
|
|
|
options.proxy_command = xstrdup("none");
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 't':
|
2011-05-15 00:45:50 +02:00
|
|
|
if (options.request_tty == REQUEST_TTY_YES)
|
|
|
|
options.request_tty = REQUEST_TTY_FORCE;
|
|
|
|
else
|
|
|
|
options.request_tty = REQUEST_TTY_YES;
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
|
|
|
case 'v':
|
2003-07-19 11:54:31 +02:00
|
|
|
if (debug_flag == 0) {
|
2000-09-16 04:29:08 +02:00
|
|
|
debug_flag = 1;
|
|
|
|
options.log_level = SYSLOG_LEVEL_DEBUG1;
|
2003-07-19 11:54:31 +02:00
|
|
|
} else {
|
2016-07-15 02:24:30 +02:00
|
|
|
if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
|
|
|
|
debug_flag++;
|
2003-07-19 11:54:31 +02:00
|
|
|
options.log_level++;
|
2016-07-15 02:24:30 +02:00
|
|
|
}
|
2003-07-19 11:54:31 +02:00
|
|
|
}
|
2013-04-23 07:21:06 +02:00
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'V':
|
2004-03-21 23:36:00 +01:00
|
|
|
fprintf(stderr, "%s, %s\n",
|
2014-05-15 06:24:09 +02:00
|
|
|
SSH_RELEASE,
|
|
|
|
#ifdef WITH_OPENSSL
|
2018-10-23 07:56:35 +02:00
|
|
|
OpenSSL_version(OPENSSL_VERSION)
|
2014-05-15 06:24:09 +02:00
|
|
|
#else
|
|
|
|
"without OpenSSL"
|
|
|
|
#endif
|
|
|
|
);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (opt == 'V')
|
|
|
|
exit(0);
|
|
|
|
break;
|
2005-12-13 09:29:02 +01:00
|
|
|
case 'w':
|
2005-12-13 09:33:19 +01:00
|
|
|
if (options.tun_open == -1)
|
|
|
|
options.tun_open = SSH_TUNMODE_DEFAULT;
|
2005-12-13 09:29:02 +01:00
|
|
|
options.tun_local = a2tun(optarg, &options.tun_remote);
|
2005-12-13 09:33:19 +01:00
|
|
|
if (options.tun_local == SSH_TUNID_ERR) {
|
2008-06-12 20:52:53 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"Bad tun device '%s'\n", optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
2005-12-13 09:29:02 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-01-12 09:40:27 +01:00
|
|
|
case 'W':
|
2016-06-03 05:14:41 +02:00
|
|
|
if (options.stdio_forward_host != NULL)
|
2010-01-26 03:26:22 +01:00
|
|
|
fatal("stdio forward already specified");
|
|
|
|
if (muxclient_command != 0)
|
|
|
|
fatal("Cannot specify stdio forward with -O");
|
2010-01-12 09:40:27 +01:00
|
|
|
if (parse_forward(&fwd, optarg, 1, 0)) {
|
2016-06-03 05:14:41 +02:00
|
|
|
options.stdio_forward_host = fwd.listen_host;
|
|
|
|
options.stdio_forward_port = fwd.listen_port;
|
2013-06-01 23:31:17 +02:00
|
|
|
free(fwd.connect_host);
|
2010-01-12 09:40:27 +01:00
|
|
|
} else {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Bad stdio forwarding specification '%s'\n",
|
|
|
|
optarg);
|
|
|
|
exit(255);
|
|
|
|
}
|
2011-05-15 00:45:50 +02:00
|
|
|
options.request_tty = REQUEST_TTY_NO;
|
2010-01-12 09:40:27 +01:00
|
|
|
no_shell_flag = 1;
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'q':
|
|
|
|
options.log_level = SYSLOG_LEVEL_QUIET;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
if (optarg[0] == '^' && optarg[2] == 0 &&
|
2001-07-14 04:18:10 +02:00
|
|
|
(u_char) optarg[1] >= 64 &&
|
|
|
|
(u_char) optarg[1] < 128)
|
2000-12-22 02:43:59 +01:00
|
|
|
options.escape_char = (u_char) optarg[1] & 31;
|
1999-11-24 14:26:21 +01:00
|
|
|
else if (strlen(optarg) == 1)
|
2000-12-22 02:43:59 +01:00
|
|
|
options.escape_char = (u_char) optarg[0];
|
1999-11-24 14:26:21 +01:00
|
|
|
else if (strcmp(optarg, "none") == 0)
|
2001-06-05 22:32:21 +02:00
|
|
|
options.escape_char = SSH_ESCAPECHAR_NONE;
|
1999-11-24 14:26:21 +01:00
|
|
|
else {
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr, "Bad escape character '%s'.\n",
|
|
|
|
optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
2019-09-06 16:45:34 +02:00
|
|
|
if (!ciphers_valid(*optarg == '+' || *optarg == '^' ?
|
2015-07-30 02:01:34 +02:00
|
|
|
optarg + 1 : optarg)) {
|
|
|
|
fprintf(stderr, "Unknown cipher type '%s'\n",
|
|
|
|
optarg);
|
|
|
|
exit(255);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2017-05-01 01:15:04 +02:00
|
|
|
free(options.ciphers);
|
|
|
|
options.ciphers = xstrdup(optarg);
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2001-02-15 04:01:59 +01:00
|
|
|
case 'm':
|
2015-09-04 10:21:47 +02:00
|
|
|
if (mac_valid(optarg)) {
|
|
|
|
free(options.macs);
|
2001-02-15 04:01:59 +01:00
|
|
|
options.macs = xstrdup(optarg);
|
2015-09-04 10:21:47 +02:00
|
|
|
} else {
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr, "Unknown mac type '%s'\n",
|
|
|
|
optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
2001-02-15 04:01:59 +01:00
|
|
|
}
|
|
|
|
break;
|
2004-06-15 02:34:08 +02:00
|
|
|
case 'M':
|
2005-06-16 05:19:41 +02:00
|
|
|
if (options.control_master == SSHCTL_MASTER_YES)
|
|
|
|
options.control_master = SSHCTL_MASTER_ASK;
|
|
|
|
else
|
|
|
|
options.control_master = SSHCTL_MASTER_YES;
|
2004-06-15 02:34:08 +02:00
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'p':
|
2017-10-22 01:06:24 +02:00
|
|
|
if (options.port == -1) {
|
|
|
|
options.port = a2port(optarg);
|
|
|
|
if (options.port <= 0) {
|
|
|
|
fprintf(stderr, "Bad port '%s'\n",
|
|
|
|
optarg);
|
|
|
|
exit(255);
|
|
|
|
}
|
2001-04-12 01:06:28 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
|
|
|
case 'l':
|
2017-10-22 01:06:24 +02:00
|
|
|
if (options.user == NULL)
|
|
|
|
options.user = optarg;
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2001-09-12 19:56:15 +02:00
|
|
|
|
|
|
|
case 'L':
|
2009-02-14 06:28:21 +01:00
|
|
|
if (parse_forward(&fwd, optarg, 0, 0))
|
2005-03-01 11:24:33 +01:00
|
|
|
add_local_forward(&options, &fwd);
|
|
|
|
else {
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr,
|
2005-03-01 11:24:33 +01:00
|
|
|
"Bad local forwarding specification '%s'\n",
|
2001-07-14 04:18:10 +02:00
|
|
|
optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
2005-03-01 11:24:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
2017-09-21 21:16:53 +02:00
|
|
|
if (parse_forward(&fwd, optarg, 0, 1) ||
|
|
|
|
parse_forward(&fwd, optarg, 1, 1)) {
|
2005-03-01 11:24:33 +01:00
|
|
|
add_remote_forward(&options, &fwd);
|
|
|
|
} else {
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr,
|
2005-03-01 11:24:33 +01:00
|
|
|
"Bad remote forwarding specification "
|
|
|
|
"'%s'\n", optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
break;
|
2001-04-08 20:30:26 +02:00
|
|
|
|
|
|
|
case 'D':
|
2009-02-14 06:28:21 +01:00
|
|
|
if (parse_forward(&fwd, optarg, 1, 0)) {
|
2008-11-03 09:27:34 +01:00
|
|
|
add_local_forward(&options, &fwd);
|
2005-03-01 11:24:33 +01:00
|
|
|
} else {
|
2008-11-03 09:27:34 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"Bad dynamic forwarding specification "
|
|
|
|
"'%s'\n", optarg);
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
2001-04-12 01:06:28 +02:00
|
|
|
}
|
2001-04-08 20:30:26 +02:00
|
|
|
break;
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'C':
|
2020-01-23 11:24:29 +01:00
|
|
|
#ifdef WITH_ZLIB
|
1999-11-24 14:26:21 +01:00
|
|
|
options.compression = 1;
|
2020-01-23 11:24:29 +01:00
|
|
|
#else
|
|
|
|
error("Compression not supported, disabling.");
|
|
|
|
#endif
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2000-04-06 04:32:37 +02:00
|
|
|
case 'N':
|
|
|
|
no_shell_flag = 1;
|
2011-05-15 00:45:50 +02:00
|
|
|
options.request_tty = REQUEST_TTY_NO;
|
2000-04-06 04:32:37 +02:00
|
|
|
break;
|
|
|
|
case 'T':
|
2011-05-15 00:45:50 +02:00
|
|
|
options.request_tty = REQUEST_TTY_NO;
|
2000-04-06 04:32:37 +02:00
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
case 'o':
|
2003-12-17 06:30:06 +01:00
|
|
|
line = xstrdup(optarg);
|
2014-10-09 00:20:25 +02:00
|
|
|
if (process_config_line(&options, pw,
|
|
|
|
host ? host : "", host ? host : "", line,
|
|
|
|
"command-line", 0, NULL, SSHCONF_USERCONF) != 0)
|
2005-12-20 06:15:51 +01:00
|
|
|
exit(255);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(line);
|
1999-11-24 14:26:21 +01:00
|
|
|
break;
|
2001-01-29 23:30:01 +01:00
|
|
|
case 's':
|
|
|
|
subsystem_flag = 1;
|
|
|
|
break;
|
2004-06-15 02:34:08 +02:00
|
|
|
case 'S':
|
2015-12-10 18:08:40 +01:00
|
|
|
free(options.control_path);
|
2004-06-15 02:34:08 +02:00
|
|
|
options.control_path = xstrdup(optarg);
|
|
|
|
break;
|
2001-04-30 15:06:24 +02:00
|
|
|
case 'b':
|
|
|
|
options.bind_address = optarg;
|
|
|
|
break;
|
2018-02-23 03:34:33 +01:00
|
|
|
case 'B':
|
|
|
|
options.bind_interface = optarg;
|
|
|
|
break;
|
2001-09-12 19:48:04 +02:00
|
|
|
case 'F':
|
|
|
|
config = optarg;
|
|
|
|
break;
|
1999-11-24 14:26:21 +01:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-12 08:46:01 +02:00
|
|
|
if (optind > 1 && strcmp(av[optind - 1], "--") == 0)
|
|
|
|
opt_terminated = 1;
|
|
|
|
|
2001-07-14 04:18:10 +02:00
|
|
|
ac -= optind;
|
|
|
|
av += optind;
|
|
|
|
|
2010-01-08 08:53:43 +01:00
|
|
|
if (ac > 0 && !host) {
|
2017-10-22 01:06:24 +02:00
|
|
|
int tport;
|
|
|
|
char *tuser;
|
|
|
|
switch (parse_ssh_uri(*av, &tuser, &host, &tport)) {
|
|
|
|
case -1:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
if (options.user == NULL) {
|
|
|
|
options.user = tuser;
|
|
|
|
tuser = NULL;
|
|
|
|
}
|
|
|
|
free(tuser);
|
|
|
|
if (options.port == -1 && tport != -1)
|
|
|
|
options.port = tport;
|
|
|
|
break;
|
|
|
|
default:
|
2001-07-14 04:18:10 +02:00
|
|
|
p = xstrdup(*av);
|
2002-12-23 03:14:51 +01:00
|
|
|
cp = strrchr(p, '@');
|
2017-10-22 01:06:24 +02:00
|
|
|
if (cp != NULL) {
|
|
|
|
if (cp == p)
|
|
|
|
usage();
|
|
|
|
if (options.user == NULL) {
|
|
|
|
options.user = p;
|
|
|
|
p = NULL;
|
|
|
|
}
|
|
|
|
*cp++ = '\0';
|
|
|
|
host = xstrdup(cp);
|
|
|
|
free(p);
|
|
|
|
} else
|
|
|
|
host = p;
|
|
|
|
break;
|
|
|
|
}
|
2017-08-12 08:46:01 +02:00
|
|
|
if (ac > 1 && !opt_terminated) {
|
2002-12-23 03:24:54 +01:00
|
|
|
optind = optreset = 1;
|
2001-07-14 04:18:10 +02:00
|
|
|
goto again;
|
|
|
|
}
|
2002-12-23 03:24:54 +01:00
|
|
|
ac--, av++;
|
2001-07-14 04:18:10 +02:00
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Check that we got a host name. */
|
|
|
|
if (!host)
|
1999-10-27 05:42:43 +02:00
|
|
|
usage();
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2013-10-17 02:47:23 +02:00
|
|
|
host_arg = xstrdup(host);
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* Initialize the command to execute on remote host. */
|
2018-07-09 23:03:30 +02:00
|
|
|
if ((command = sshbuf_new()) == NULL)
|
|
|
|
fatal("sshbuf_new failed");
|
1999-11-24 14:26:21 +01:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Save the command to execute on the remote host in a buffer. There
|
|
|
|
* is no limit on the length of the command, except by the maximum
|
|
|
|
* packet size. Also sets the tty flag if there is no command.
|
|
|
|
*/
|
2001-07-14 04:18:10 +02:00
|
|
|
if (!ac) {
|
1999-11-24 14:26:21 +01:00
|
|
|
/* No command specified - execute shell on a tty. */
|
2001-01-29 23:30:01 +01:00
|
|
|
if (subsystem_flag) {
|
2001-07-14 04:18:10 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"You must specify a subsystem to invoke.\n");
|
2001-01-29 23:30:01 +01:00
|
|
|
usage();
|
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
} else {
|
2001-07-14 04:18:10 +02:00
|
|
|
/* A command has been specified. Store it into the buffer. */
|
|
|
|
for (i = 0; i < ac; i++) {
|
2018-07-09 23:03:30 +02:00
|
|
|
if ((r = sshbuf_putf(command, "%s%s",
|
|
|
|
i ? " " : "", av[i])) != 0)
|
|
|
|
fatal("%s: buffer error: %s",
|
|
|
|
__func__, ssh_err(r));
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-03-05 08:24:46 +01:00
|
|
|
/*
|
|
|
|
* Initialize "log" output. Since we are the client all output
|
2013-04-23 07:21:06 +02:00
|
|
|
* goes to stderr unless otherwise specified by -y or -E.
|
2001-03-05 08:24:46 +01:00
|
|
|
*/
|
2013-04-23 07:21:06 +02:00
|
|
|
if (use_syslog && logfile != NULL)
|
|
|
|
fatal("Can't specify both -y and -E");
|
2015-09-04 10:21:47 +02:00
|
|
|
if (logfile != NULL)
|
2013-04-23 07:21:06 +02:00
|
|
|
log_redirect_stderr_to(logfile);
|
2009-06-21 09:48:00 +02:00
|
|
|
log_init(argv0,
|
2017-10-27 03:57:06 +02:00
|
|
|
options.log_level == SYSLOG_LEVEL_NOT_SET ?
|
2017-04-28 05:20:27 +02:00
|
|
|
SYSLOG_LEVEL_INFO : options.log_level,
|
2017-10-27 03:57:06 +02:00
|
|
|
options.log_facility == SYSLOG_FACILITY_NOT_SET ?
|
2017-04-28 05:20:27 +02:00
|
|
|
SYSLOG_FACILITY_USER : options.log_facility,
|
|
|
|
!use_syslog);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2013-04-23 07:21:06 +02:00
|
|
|
if (debug_flag)
|
2014-05-15 06:24:09 +02:00
|
|
|
logit("%s, %s", SSH_RELEASE,
|
|
|
|
#ifdef WITH_OPENSSL
|
2018-10-23 07:56:35 +02:00
|
|
|
OpenSSL_version(OPENSSL_VERSION)
|
2014-05-15 06:24:09 +02:00
|
|
|
#else
|
|
|
|
"without OpenSSL"
|
|
|
|
#endif
|
|
|
|
);
|
2013-04-23 07:21:06 +02:00
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
/* Parse the configuration files */
|
2018-11-23 06:08:07 +01:00
|
|
|
process_config_files(host_arg, pw, 0, &want_final_pass);
|
|
|
|
if (want_final_pass)
|
|
|
|
debug("configuration requests final Match pass");
|
2014-02-24 05:57:55 +01:00
|
|
|
|
|
|
|
/* Hostname canonicalisation needs a few options filled. */
|
|
|
|
fill_default_options_for_canonicalization(&options);
|
|
|
|
|
|
|
|
/* If the user has replaced the hostname then take it into use now */
|
|
|
|
if (options.hostname != NULL) {
|
|
|
|
/* NB. Please keep in sync with readconf.c:match_cfg_line() */
|
|
|
|
cp = percent_expand(options.hostname,
|
|
|
|
"h", host, (char *)NULL);
|
|
|
|
free(host);
|
|
|
|
host = cp;
|
2014-10-09 00:20:25 +02:00
|
|
|
free(options.hostname);
|
|
|
|
options.hostname = xstrdup(host);
|
2014-02-24 05:57:55 +01:00
|
|
|
}
|
|
|
|
|
2018-01-23 06:06:25 +01:00
|
|
|
/* Don't lowercase addresses, they will be explicitly canonicalised */
|
|
|
|
if ((was_addr = is_addr(host)) == 0)
|
|
|
|
lowercase(host);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to canonicalize if requested by configuration or the
|
|
|
|
* hostname is an address.
|
|
|
|
*/
|
|
|
|
if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr)
|
2014-02-24 05:57:55 +01:00
|
|
|
addrs = resolve_canonicalize(&host, options.port);
|
|
|
|
|
2001-09-12 19:48:04 +02:00
|
|
|
/*
|
2014-02-27 00:17:13 +01:00
|
|
|
* If CanonicalizePermittedCNAMEs have been specified but
|
|
|
|
* other canonicalization did not happen (by not being requested
|
|
|
|
* or by failing with fallback) then the hostname may still be changed
|
2017-10-27 03:57:06 +02:00
|
|
|
* as a result of CNAME following.
|
2014-02-27 00:17:13 +01:00
|
|
|
*
|
|
|
|
* Try to resolve the bare hostname name using the system resolver's
|
|
|
|
* usual search rules and then apply the CNAME follow rules.
|
|
|
|
*
|
|
|
|
* Skip the lookup if a ProxyCommand is being used unless the user
|
|
|
|
* has specifically requested canonicalisation for this case via
|
|
|
|
* CanonicalizeHostname=always
|
2001-09-12 19:48:04 +02:00
|
|
|
*/
|
2016-07-15 02:24:30 +02:00
|
|
|
direct = option_clear_or_none(options.proxy_command) &&
|
|
|
|
options.jump_host == NULL;
|
|
|
|
if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
|
|
|
|
options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
|
2014-07-02 07:28:40 +02:00
|
|
|
if ((addrs = resolve_host(host, options.port,
|
2018-09-21 05:11:36 +02:00
|
|
|
direct, cname, sizeof(cname))) == NULL) {
|
2014-07-02 07:28:40 +02:00
|
|
|
/* Don't fatal proxied host names not in the DNS */
|
2018-09-21 05:11:36 +02:00
|
|
|
if (direct)
|
2014-07-02 07:28:40 +02:00
|
|
|
cleanup_exit(255); /* logged in resolve_host */
|
|
|
|
} else
|
2016-07-15 02:24:30 +02:00
|
|
|
check_follow_cname(direct, &host, cname);
|
2014-02-24 05:57:55 +01:00
|
|
|
}
|
2001-09-12 19:48:04 +02:00
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
/*
|
2014-10-09 00:20:25 +02:00
|
|
|
* If canonicalisation is enabled then re-parse the configuration
|
|
|
|
* files as new stanzas may match.
|
2014-02-24 05:57:55 +01:00
|
|
|
*/
|
2018-11-23 06:08:07 +01:00
|
|
|
if (options.canonicalize_hostname != 0 && !want_final_pass) {
|
|
|
|
debug("hostname canonicalisation enabled, "
|
|
|
|
"will re-parse configuration");
|
|
|
|
want_final_pass = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (want_final_pass) {
|
|
|
|
debug("re-parsing configuration");
|
2014-10-09 00:20:25 +02:00
|
|
|
free(options.hostname);
|
|
|
|
options.hostname = xstrdup(host);
|
2018-11-23 06:08:07 +01:00
|
|
|
process_config_files(host_arg, pw, 1, NULL);
|
2014-10-09 00:20:25 +02:00
|
|
|
/*
|
|
|
|
* Address resolution happens early with canonicalisation
|
|
|
|
* enabled and the port number may have changed since, so
|
|
|
|
* reset it in address list
|
|
|
|
*/
|
|
|
|
if (addrs != NULL && options.port > 0)
|
|
|
|
set_addrinfo_port(addrs, options.port);
|
2001-09-12 19:48:04 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
|
|
|
|
/* Fill configuration defaults. */
|
|
|
|
fill_default_options(&options);
|
|
|
|
|
2016-07-15 02:24:30 +02:00
|
|
|
/*
|
|
|
|
* If ProxyJump option specified, then construct a ProxyCommand now.
|
|
|
|
*/
|
|
|
|
if (options.jump_host != NULL) {
|
|
|
|
char port_s[8];
|
2018-06-01 05:11:49 +02:00
|
|
|
const char *sshbin = argv0;
|
2020-02-18 09:49:49 +01:00
|
|
|
int port = options.port, jumpport = options.jump_port;
|
|
|
|
|
|
|
|
if (port <= 0)
|
|
|
|
port = default_ssh_port();
|
|
|
|
if (jumpport <= 0)
|
|
|
|
jumpport = default_ssh_port();
|
|
|
|
if (strcmp(options.jump_host, host) == 0 && port == jumpport)
|
|
|
|
fatal("jumphost loop via %s", options.jump_host);
|
2018-06-01 05:11:49 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to use SSH indicated by argv[0], but fall back to
|
|
|
|
* "ssh" if it appears unavailable.
|
|
|
|
*/
|
|
|
|
if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0)
|
|
|
|
sshbin = "ssh";
|
2016-07-15 02:24:30 +02:00
|
|
|
|
|
|
|
/* Consistency check */
|
|
|
|
if (options.proxy_command != NULL)
|
|
|
|
fatal("inconsistent options: ProxyCommand+ProxyJump");
|
|
|
|
/* Never use FD passing for ProxyJump */
|
|
|
|
options.proxy_use_fdpass = 0;
|
|
|
|
snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
|
|
|
|
xasprintf(&options.proxy_command,
|
2018-06-01 05:11:49 +02:00
|
|
|
"%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
|
|
|
|
sshbin,
|
2016-07-15 02:24:30 +02:00
|
|
|
/* Optional "-l user" argument if jump_user set */
|
|
|
|
options.jump_user == NULL ? "" : " -l ",
|
|
|
|
options.jump_user == NULL ? "" : options.jump_user,
|
|
|
|
/* Optional "-p port" argument if jump_port set */
|
|
|
|
options.jump_port <= 0 ? "" : " -p ",
|
|
|
|
options.jump_port <= 0 ? "" : port_s,
|
|
|
|
/* Optional additional jump hosts ",..." */
|
|
|
|
options.jump_extra == NULL ? "" : " -J ",
|
|
|
|
options.jump_extra == NULL ? "" : options.jump_extra,
|
|
|
|
/* Optional "-F" argumment if -F specified */
|
|
|
|
config == NULL ? "" : " -F ",
|
|
|
|
config == NULL ? "" : config,
|
|
|
|
/* Optional "-v" arguments if -v set */
|
|
|
|
debug_flag ? " -" : "",
|
|
|
|
debug_flag, "vvv",
|
|
|
|
/* Mandatory hostname */
|
|
|
|
options.jump_host);
|
|
|
|
debug("Setting implicit ProxyCommand from ProxyJump: %s",
|
|
|
|
options.proxy_command);
|
|
|
|
}
|
|
|
|
|
2014-02-24 05:57:55 +01:00
|
|
|
if (options.port == 0)
|
|
|
|
options.port = default_ssh_port();
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_set_af(ssh, options.address_family);
|
2003-07-03 12:37:47 +02:00
|
|
|
|
2013-10-15 03:14:12 +02:00
|
|
|
/* Tidy and check options */
|
|
|
|
if (options.host_key_alias != NULL)
|
|
|
|
lowercase(options.host_key_alias);
|
|
|
|
if (options.proxy_command != NULL &&
|
|
|
|
strcmp(options.proxy_command, "-") == 0 &&
|
|
|
|
options.proxy_use_fdpass)
|
|
|
|
fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
|
2020-01-27 21:51:32 +01:00
|
|
|
if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
|
|
|
|
if (options.control_persist && options.control_path != NULL) {
|
|
|
|
debug("UpdateHostKeys=ask is incompatible with "
|
|
|
|
"ControlPersist; disabling");
|
|
|
|
options.update_hostkeys = 0;
|
|
|
|
} else if (sshbuf_len(command) != 0 ||
|
|
|
|
options.remote_command != NULL ||
|
|
|
|
options.request_tty == REQUEST_TTY_NO) {
|
|
|
|
debug("UpdateHostKeys=ask is incompatible with "
|
|
|
|
"remote command execution; disabling");
|
|
|
|
options.update_hostkeys = 0;
|
2020-01-28 08:24:15 +01:00
|
|
|
} else if (options.log_level < SYSLOG_LEVEL_INFO) {
|
|
|
|
/* no point logging anything; user won't see it */
|
|
|
|
options.update_hostkeys = 0;
|
2020-01-27 21:51:32 +01:00
|
|
|
}
|
2015-02-20 23:17:21 +01:00
|
|
|
}
|
2015-11-19 09:23:27 +01:00
|
|
|
if (options.connection_attempts <= 0)
|
|
|
|
fatal("Invalid number of ConnectionAttempts");
|
2013-10-15 03:14:12 +02:00
|
|
|
|
2018-07-09 23:03:30 +02:00
|
|
|
if (sshbuf_len(command) != 0 && options.remote_command != NULL)
|
2017-05-30 20:58:37 +02:00
|
|
|
fatal("Cannot execute command-line and remote command.");
|
|
|
|
|
|
|
|
/* Cannot fork to background if no command. */
|
2018-07-09 23:03:30 +02:00
|
|
|
if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
|
2017-05-30 20:58:37 +02:00
|
|
|
options.remote_command == NULL && !no_shell_flag)
|
|
|
|
fatal("Cannot fork into background without a command "
|
|
|
|
"to execute.");
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
/* reinit */
|
2017-04-28 05:20:27 +02:00
|
|
|
log_init(argv0, options.log_level, options.log_facility, !use_syslog);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2012-07-06 05:45:01 +02:00
|
|
|
if (options.request_tty == REQUEST_TTY_YES ||
|
|
|
|
options.request_tty == REQUEST_TTY_FORCE)
|
|
|
|
tty_flag = 1;
|
|
|
|
|
|
|
|
/* Allocate a tty by default if no command specified. */
|
2018-07-09 23:03:30 +02:00
|
|
|
if (sshbuf_len(command) == 0 && options.remote_command == NULL)
|
2012-07-06 05:45:01 +02:00
|
|
|
tty_flag = options.request_tty != REQUEST_TTY_NO;
|
|
|
|
|
|
|
|
/* Force no tty */
|
2016-09-30 11:19:13 +02:00
|
|
|
if (options.request_tty == REQUEST_TTY_NO ||
|
|
|
|
(muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
|
2012-07-06 05:45:01 +02:00
|
|
|
tty_flag = 0;
|
|
|
|
/* Do not allocate a tty if stdin is not a tty. */
|
|
|
|
if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
|
|
|
|
options.request_tty != REQUEST_TTY_FORCE) {
|
|
|
|
if (tty_flag)
|
|
|
|
logit("Pseudo-terminal will not be allocated because "
|
|
|
|
"stdin is not a terminal.");
|
|
|
|
tty_flag = 0;
|
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
if (options.user == NULL)
|
|
|
|
options.user = xstrdup(pw->pw_name);
|
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
/* Set up strings used to percent_expand() arguments */
|
2011-05-15 00:44:02 +02:00
|
|
|
if (gethostname(thishost, sizeof(thishost)) == -1)
|
|
|
|
fatal("gethostname: %s", strerror(errno));
|
|
|
|
strlcpy(shorthost, thishost, sizeof(shorthost));
|
|
|
|
shorthost[strcspn(thishost, ".")] = '\0';
|
|
|
|
snprintf(portstr, sizeof(portstr), "%d", options.port);
|
2018-06-01 05:33:53 +02:00
|
|
|
snprintf(uidstr, sizeof(uidstr), "%llu",
|
|
|
|
(unsigned long long)pw->pw_uid);
|
2008-06-12 20:56:37 +02:00
|
|
|
|
2020-04-03 04:27:12 +02:00
|
|
|
conn_hash_hex = ssh_connection_hash(thishost, host, portstr,
|
|
|
|
options.user);
|
2014-07-03 13:27:46 +02:00
|
|
|
|
2017-10-23 07:08:00 +02:00
|
|
|
/*
|
|
|
|
* Expand tokens in arguments. NB. LocalCommand is expanded later,
|
|
|
|
* after port-forwarding is set up, so it may pick up any local
|
|
|
|
* tunnel interface name allocated.
|
|
|
|
*/
|
2017-05-30 20:58:37 +02:00
|
|
|
if (options.remote_command != NULL) {
|
|
|
|
debug3("expanding RemoteCommand: %s", options.remote_command);
|
|
|
|
cp = options.remote_command;
|
|
|
|
options.remote_command = percent_expand(cp,
|
2020-04-03 04:27:12 +02:00
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
2017-05-30 20:58:37 +02:00
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
|
|
|
debug3("expanded RemoteCommand: %s", options.remote_command);
|
|
|
|
free(cp);
|
2018-07-09 23:03:30 +02:00
|
|
|
if ((r = sshbuf_put(command, options.remote_command,
|
|
|
|
strlen(options.remote_command))) != 0)
|
|
|
|
fatal("%s: buffer error: %s", __func__, ssh_err(r));
|
2017-05-30 20:58:37 +02:00
|
|
|
}
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
if (options.control_path != NULL) {
|
2018-07-27 07:34:42 +02:00
|
|
|
cp = tilde_expand_filename(options.control_path, getuid());
|
2013-06-01 23:31:17 +02:00
|
|
|
free(options.control_path);
|
2014-07-03 13:27:46 +02:00
|
|
|
options.control_path = percent_expand(cp,
|
2020-04-03 04:27:12 +02:00
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
|
|
|
"d", pw->pw_dir,
|
2014-07-03 13:27:46 +02:00
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
2011-05-15 00:44:02 +02:00
|
|
|
(char *)NULL);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cp);
|
2004-06-15 02:34:08 +02:00
|
|
|
}
|
2014-07-03 13:27:46 +02:00
|
|
|
|
2020-04-03 04:27:12 +02:00
|
|
|
if (options.identity_agent != NULL) {
|
|
|
|
p = tilde_expand_filename(options.identity_agent, getuid());
|
|
|
|
cp = percent_expand(p,
|
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
|
|
|
free(p);
|
|
|
|
free(options.identity_agent);
|
|
|
|
options.identity_agent = cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.forward_agent_sock_path != NULL) {
|
|
|
|
p = tilde_expand_filename(options.forward_agent_sock_path,
|
|
|
|
getuid());
|
|
|
|
cp = percent_expand(p,
|
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
|
|
|
free(p);
|
|
|
|
free(options.forward_agent_sock_path);
|
|
|
|
options.forward_agent_sock_path = cp;
|
|
|
|
}
|
|
|
|
|
2014-10-09 00:20:25 +02:00
|
|
|
if (config_test) {
|
|
|
|
dump_client_config(&options, host);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2019-10-31 22:18:28 +01:00
|
|
|
/* Expand SecurityKeyProvider if it refers to an environment variable */
|
|
|
|
if (options.sk_provider != NULL && *options.sk_provider == '$' &&
|
|
|
|
strlen(options.sk_provider) > 1) {
|
|
|
|
if ((cp = getenv(options.sk_provider + 1)) == NULL) {
|
2020-02-06 23:30:54 +01:00
|
|
|
debug("Authenticator provider %s did not resolve; "
|
2019-10-31 22:18:28 +01:00
|
|
|
"disabling", options.sk_provider);
|
|
|
|
free(options.sk_provider);
|
|
|
|
options.sk_provider = NULL;
|
|
|
|
} else {
|
|
|
|
debug2("resolved SecurityKeyProvider %s => %s",
|
|
|
|
options.sk_provider, cp);
|
|
|
|
free(options.sk_provider);
|
|
|
|
options.sk_provider = xstrdup(cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-19 08:00:08 +02:00
|
|
|
if (muxclient_command != 0 && options.control_path == NULL)
|
2005-06-01 15:08:51 +02:00
|
|
|
fatal("No ControlPath specified for \"-O\" command");
|
2016-09-30 11:19:13 +02:00
|
|
|
if (options.control_path != NULL) {
|
|
|
|
int sock;
|
|
|
|
if ((sock = muxclient(options.control_path)) >= 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_packet_set_connection(ssh, sock, sock);
|
2019-01-19 22:36:06 +01:00
|
|
|
ssh_packet_set_mux(ssh);
|
2016-09-30 11:19:13 +02:00
|
|
|
goto skip_connect;
|
|
|
|
}
|
|
|
|
}
|
2004-06-15 02:34:08 +02:00
|
|
|
|
2014-02-27 00:17:13 +01:00
|
|
|
/*
|
|
|
|
* If hostname canonicalisation was not enabled, then we may not
|
|
|
|
* have yet resolved the hostname. Do so now.
|
|
|
|
*/
|
|
|
|
if (addrs == NULL && options.proxy_command == NULL) {
|
2015-09-04 06:56:09 +02:00
|
|
|
debug2("resolving \"%s\" port %d", host, options.port);
|
2014-02-27 00:17:13 +01:00
|
|
|
if ((addrs = resolve_host(host, options.port, 1,
|
|
|
|
cname, sizeof(cname))) == NULL)
|
|
|
|
cleanup_exit(255); /* resolve_host logs the error */
|
|
|
|
}
|
|
|
|
|
2007-09-17 04:06:57 +02:00
|
|
|
timeout_ms = options.connection_timeout * 1000;
|
|
|
|
|
2000-12-15 20:55:48 +01:00
|
|
|
/* Open a connection to the remote host. */
|
2020-01-05 17:28:22 +01:00
|
|
|
if (ssh_connect(ssh, host, host_arg, addrs, &hostaddr, options.port,
|
2013-10-17 02:47:23 +02:00
|
|
|
options.address_family, options.connection_attempts,
|
2018-07-19 12:28:47 +02:00
|
|
|
&timeout_ms, options.tcp_keep_alive) != 0)
|
2013-10-17 02:47:23 +02:00
|
|
|
exit(255);
|
|
|
|
|
2013-10-26 01:07:56 +02:00
|
|
|
if (addrs != NULL)
|
|
|
|
freeaddrinfo(addrs);
|
|
|
|
|
2019-01-19 22:36:06 +01:00
|
|
|
ssh_packet_set_timeout(ssh, options.server_alive_interval,
|
2013-10-17 02:47:23 +02:00
|
|
|
options.server_alive_count_max);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2007-09-17 04:06:57 +02:00
|
|
|
if (timeout_ms > 0)
|
|
|
|
debug3("timeout: %d ms remain after connect", timeout_ms);
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
2018-07-16 13:05:41 +02:00
|
|
|
* If we successfully made the connection and we have hostbased auth
|
|
|
|
* enabled, load the public keys so we can later use the ssh-keysign
|
|
|
|
* helper to sign challenges.
|
1999-11-25 01:54:57 +01:00
|
|
|
*/
|
2001-04-13 01:34:34 +02:00
|
|
|
sensitive_data.nkeys = 0;
|
|
|
|
sensitive_data.keys = NULL;
|
2017-05-01 01:18:44 +02:00
|
|
|
if (options.hostbased_authentication) {
|
2018-07-17 00:25:01 +02:00
|
|
|
sensitive_data.nkeys = 10;
|
2006-03-31 14:10:51 +02:00
|
|
|
sensitive_data.keys = xcalloc(sensitive_data.nkeys,
|
2018-07-11 20:53:29 +02:00
|
|
|
sizeof(struct sshkey));
|
|
|
|
|
|
|
|
/* XXX check errors? */
|
2018-07-17 00:25:01 +02:00
|
|
|
#define L_PUBKEY(p,o) do { \
|
|
|
|
if ((o) >= sensitive_data.nkeys) \
|
|
|
|
fatal("%s pubkey out of array bounds", __func__); \
|
2018-07-11 20:53:29 +02:00
|
|
|
check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
|
2018-07-17 00:25:01 +02:00
|
|
|
p, "pubkey"); \
|
|
|
|
} while (0)
|
|
|
|
#define L_CERT(p,o) do { \
|
|
|
|
if ((o) >= sensitive_data.nkeys) \
|
|
|
|
fatal("%s cert out of array bounds", __func__); \
|
|
|
|
check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \
|
|
|
|
} while (0)
|
2002-06-11 18:37:51 +02:00
|
|
|
|
2018-07-16 13:05:41 +02:00
|
|
|
if (options.hostbased_authentication == 1) {
|
2018-07-17 00:25:01 +02:00
|
|
|
L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0);
|
|
|
|
L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1);
|
|
|
|
L_CERT(_PATH_HOST_RSA_KEY_FILE, 2);
|
|
|
|
L_CERT(_PATH_HOST_DSA_KEY_FILE, 3);
|
|
|
|
L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4);
|
|
|
|
L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5);
|
|
|
|
L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6);
|
|
|
|
L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7);
|
|
|
|
L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8);
|
|
|
|
L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9);
|
2002-06-06 21:57:33 +02:00
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
}
|
|
|
|
|
2018-07-18 13:34:04 +02:00
|
|
|
/* Create ~/.ssh * directory if it doesn't already exist. */
|
2011-11-04 00:50:40 +01:00
|
|
|
if (config == NULL) {
|
|
|
|
r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
|
|
|
|
strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
|
2019-06-28 15:35:04 +02:00
|
|
|
if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) == -1) {
|
2010-09-10 04:28:24 +02:00
|
|
|
#ifdef WITH_SELINUX
|
2011-11-04 00:50:40 +01:00
|
|
|
ssh_selinux_setfscreatecon(buf);
|
2010-09-10 04:28:24 +02:00
|
|
|
#endif
|
2011-11-04 00:50:40 +01:00
|
|
|
if (mkdir(buf, 0700) < 0)
|
|
|
|
error("Could not create directory '%.200s'.",
|
|
|
|
buf);
|
2010-09-10 04:28:24 +02:00
|
|
|
#ifdef WITH_SELINUX
|
2011-11-04 00:50:40 +01:00
|
|
|
ssh_selinux_setfscreatecon(NULL);
|
2010-09-10 04:28:24 +02:00
|
|
|
#endif
|
2011-11-04 00:50:40 +01:00
|
|
|
}
|
2010-09-10 04:28:24 +02:00
|
|
|
}
|
2001-03-09 01:12:22 +01:00
|
|
|
/* load options.identity_files */
|
2017-10-23 07:08:00 +02:00
|
|
|
load_public_identity_files(pw);
|
2001-03-09 01:12:22 +01:00
|
|
|
|
2018-04-10 02:10:49 +02:00
|
|
|
/* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */
|
2016-05-04 16:29:58 +02:00
|
|
|
if (options.identity_agent &&
|
|
|
|
strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
|
2016-05-04 14:21:53 +02:00
|
|
|
if (strcmp(options.identity_agent, "none") == 0) {
|
|
|
|
unsetenv(SSH_AUTHSOCKET_ENV_NAME);
|
|
|
|
} else {
|
2020-04-03 04:27:12 +02:00
|
|
|
cp = options.identity_agent;
|
2018-10-03 08:38:35 +02:00
|
|
|
if (cp[0] == '$') {
|
|
|
|
if (!valid_env_name(cp + 1)) {
|
|
|
|
fatal("Invalid IdentityAgent "
|
|
|
|
"environment variable name %s", cp);
|
|
|
|
}
|
|
|
|
if ((p = getenv(cp + 1)) == NULL)
|
|
|
|
unsetenv(SSH_AUTHSOCKET_ENV_NAME);
|
|
|
|
else
|
|
|
|
setenv(SSH_AUTHSOCKET_ENV_NAME, p, 1);
|
|
|
|
} else {
|
|
|
|
/* identity_agent specifies a path directly */
|
|
|
|
setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
|
|
|
|
}
|
2016-05-04 14:21:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 04:27:12 +02:00
|
|
|
if (options.forward_agent && options.forward_agent_sock_path != NULL) {
|
2019-12-21 03:19:13 +01:00
|
|
|
if (cp[0] == '$') {
|
|
|
|
if (!valid_env_name(cp + 1)) {
|
|
|
|
fatal("Invalid ForwardAgent environment variable name %s", cp);
|
|
|
|
}
|
|
|
|
if ((p = getenv(cp + 1)) != NULL)
|
|
|
|
forward_agent_sock_path = p;
|
|
|
|
else
|
|
|
|
options.forward_agent = 0;
|
|
|
|
free(cp);
|
|
|
|
} else {
|
|
|
|
forward_agent_sock_path = cp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-09 01:12:22 +01:00
|
|
|
/* Expand ~ in known host file names. */
|
2011-05-29 13:42:31 +02:00
|
|
|
tilde_expand_paths(options.system_hostfiles,
|
|
|
|
options.num_system_hostfiles);
|
|
|
|
tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2020-01-23 08:10:22 +01:00
|
|
|
ssh_signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
|
|
|
|
ssh_signal(SIGCHLD, main_sigchld_handler);
|
2001-11-12 00:52:03 +01:00
|
|
|
|
2008-06-12 20:52:53 +02:00
|
|
|
/* Log into the remote system. Never returns if the login fails. */
|
2018-12-27 04:25:24 +01:00
|
|
|
ssh_login(ssh, &sensitive_data, host, (struct sockaddr *)&hostaddr,
|
2010-12-01 02:21:51 +01:00
|
|
|
options.port, pw, timeout_ms);
|
2001-04-13 01:34:34 +02:00
|
|
|
|
2019-01-19 22:36:06 +01:00
|
|
|
if (ssh_packet_connection_is_on_socket(ssh)) {
|
2010-06-26 02:02:03 +02:00
|
|
|
verbose("Authenticated to %s ([%s]:%d).", host,
|
2016-03-07 20:02:43 +01:00
|
|
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
2010-06-26 02:02:03 +02:00
|
|
|
} else {
|
|
|
|
verbose("Authenticated to %s (via proxy).", host);
|
|
|
|
}
|
|
|
|
|
2001-04-13 01:34:34 +02:00
|
|
|
/* We no longer need the private host keys. Clear them now. */
|
|
|
|
if (sensitive_data.nkeys != 0) {
|
|
|
|
for (i = 0; i < sensitive_data.nkeys; i++) {
|
|
|
|
if (sensitive_data.keys[i] != NULL) {
|
|
|
|
/* Destroys contents safely */
|
|
|
|
debug3("clear hostkey %d", i);
|
2018-07-11 20:53:29 +02:00
|
|
|
sshkey_free(sensitive_data.keys[i]);
|
2001-04-13 01:34:34 +02:00
|
|
|
sensitive_data.keys[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(sensitive_data.keys);
|
2001-04-13 01:34:34 +02:00
|
|
|
}
|
2001-08-06 23:42:00 +02:00
|
|
|
for (i = 0; i < options.num_identity_files; i++) {
|
2013-06-01 23:31:17 +02:00
|
|
|
free(options.identity_files[i]);
|
|
|
|
options.identity_files[i] = NULL;
|
2001-08-06 23:42:00 +02:00
|
|
|
if (options.identity_keys[i]) {
|
2018-07-11 20:53:29 +02:00
|
|
|
sshkey_free(options.identity_keys[i]);
|
2001-08-06 23:42:00 +02:00
|
|
|
options.identity_keys[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2015-09-24 08:15:11 +02:00
|
|
|
for (i = 0; i < options.num_certificate_files; i++) {
|
|
|
|
free(options.certificate_files[i]);
|
|
|
|
options.certificate_files[i] = NULL;
|
|
|
|
}
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2016-09-30 11:19:13 +02:00
|
|
|
skip_connect:
|
2017-10-23 07:08:00 +02:00
|
|
|
exit_status = ssh_session2(ssh, pw);
|
2019-01-19 22:36:06 +01:00
|
|
|
ssh_packet_close(ssh);
|
2002-09-19 04:05:02 +02:00
|
|
|
|
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
|
|
|
/* Kill ProxyCommand if it is running. */
|
|
|
|
ssh_kill_proxy_command();
|
2002-09-19 04:05:02 +02:00
|
|
|
|
2000-04-06 04:32:37 +02:00
|
|
|
return exit_status;
|
|
|
|
}
|
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
static void
|
|
|
|
control_persist_detach(void)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
2016-04-29 10:07:53 +02:00
|
|
|
int devnull, keep_stderr;
|
2010-08-03 08:04:46 +02:00
|
|
|
|
|
|
|
debug("%s: backgrounding master process", __func__);
|
|
|
|
|
2018-02-13 04:36:56 +01:00
|
|
|
/*
|
|
|
|
* master (current process) into the background, and make the
|
|
|
|
* foreground process a client of the backgrounded master.
|
|
|
|
*/
|
2010-08-03 08:04:46 +02:00
|
|
|
switch ((pid = fork())) {
|
|
|
|
case -1:
|
|
|
|
fatal("%s: fork: %s", __func__, strerror(errno));
|
|
|
|
case 0:
|
|
|
|
/* Child: master process continues mainloop */
|
2018-02-13 04:36:56 +01:00
|
|
|
break;
|
|
|
|
default:
|
2010-08-03 08:04:46 +02:00
|
|
|
/* Parent: set up mux slave to connect to backgrounded master */
|
|
|
|
debug2("%s: background process is %ld", __func__, (long)pid);
|
|
|
|
stdin_null_flag = ostdin_null_flag;
|
2011-05-15 00:45:50 +02:00
|
|
|
options.request_tty = orequest_tty;
|
2010-08-03 08:04:46 +02:00
|
|
|
tty_flag = otty_flag;
|
2018-02-13 04:36:56 +01:00
|
|
|
close(muxserver_sock);
|
|
|
|
muxserver_sock = -1;
|
2010-09-10 03:17:02 +02:00
|
|
|
options.control_master = SSHCTL_MASTER_NO;
|
2018-02-13 04:36:56 +01:00
|
|
|
muxclient(options.control_path);
|
2010-08-03 08:04:46 +02:00
|
|
|
/* muxclient() doesn't return on success. */
|
2018-02-13 04:36:56 +01:00
|
|
|
fatal("Failed to connect to new control master");
|
|
|
|
}
|
2010-08-16 17:59:31 +02:00
|
|
|
if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
|
|
|
|
error("%s: open(\"/dev/null\"): %s", __func__,
|
|
|
|
strerror(errno));
|
|
|
|
} else {
|
2016-04-29 10:07:53 +02:00
|
|
|
keep_stderr = log_is_on_stderr() && debug_flag;
|
2010-08-16 17:59:31 +02:00
|
|
|
if (dup2(devnull, STDIN_FILENO) == -1 ||
|
2016-04-29 10:07:53 +02:00
|
|
|
dup2(devnull, STDOUT_FILENO) == -1 ||
|
|
|
|
(!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
|
2010-08-16 17:59:31 +02:00
|
|
|
error("%s: dup2: %s", __func__, strerror(errno));
|
|
|
|
if (devnull > STDERR_FILENO)
|
|
|
|
close(devnull);
|
|
|
|
}
|
2013-07-25 03:55:52 +02:00
|
|
|
daemon(1, 1);
|
2011-06-03 04:10:22 +02:00
|
|
|
setproctitle("%s [mux]", options.control_path);
|
2010-08-03 08:04:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Do fork() after authentication. Used by "ssh -f" */
|
|
|
|
static void
|
|
|
|
fork_postauth(void)
|
|
|
|
{
|
|
|
|
if (need_controlpersist_detach)
|
|
|
|
control_persist_detach();
|
|
|
|
debug("forking to background");
|
|
|
|
fork_after_authentication_flag = 0;
|
2019-06-28 15:35:04 +02:00
|
|
|
if (daemon(1, 1) == -1)
|
2010-08-03 08:04:46 +02:00
|
|
|
fatal("daemon() failed: %.200s", strerror(errno));
|
|
|
|
}
|
|
|
|
|
2020-04-03 04:40:32 +02:00
|
|
|
static void
|
|
|
|
forwarding_success(void)
|
|
|
|
{
|
2020-04-03 06:03:51 +02:00
|
|
|
if (forward_confirms_pending == -1)
|
|
|
|
return;
|
|
|
|
if (--forward_confirms_pending == 0) {
|
|
|
|
debug("%s: all expected forwarding replies received");
|
2020-04-03 04:40:32 +02:00
|
|
|
if (fork_after_authentication_flag)
|
|
|
|
fork_postauth();
|
2020-04-03 06:03:51 +02:00
|
|
|
} else {
|
|
|
|
debug2("%s: %d expected forwarding replies remaining",
|
|
|
|
__func__, forward_confirms_pending);
|
2020-04-03 04:40:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-12 20:50:27 +02:00
|
|
|
/* Callback for remote forward global requests */
|
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
|
2008-06-12 20:50:27 +02:00
|
|
|
{
|
2014-07-18 06:11:24 +02:00
|
|
|
struct Forward *rfwd = (struct Forward *)ctxt;
|
2019-01-19 22:36:06 +01:00
|
|
|
u_int port;
|
|
|
|
int r;
|
2008-06-12 20:50:27 +02:00
|
|
|
|
2009-02-14 06:28:21 +01:00
|
|
|
/* XXX verbose() on failure? */
|
2014-07-02 07:29:40 +02:00
|
|
|
debug("remote forward %s for: listen %s%s%d, connect %s:%d",
|
2008-06-12 20:50:27 +02:00
|
|
|
type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
|
2014-07-18 06:11:24 +02:00
|
|
|
rfwd->listen_path ? rfwd->listen_path :
|
|
|
|
rfwd->listen_host ? rfwd->listen_host : "",
|
|
|
|
(rfwd->listen_path || rfwd->listen_host) ? ":" : "",
|
|
|
|
rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
|
|
|
|
rfwd->connect_host, rfwd->connect_port);
|
|
|
|
if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
|
2011-10-02 09:59:03 +02:00
|
|
|
if (type == SSH2_MSG_REQUEST_SUCCESS) {
|
2019-01-19 22:36:06 +01:00
|
|
|
if ((r = sshpkt_get_u32(ssh, &port)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(r));
|
|
|
|
if (port > 65535) {
|
|
|
|
error("Invalid allocated port %u for remote "
|
|
|
|
"forward to %s:%d", port,
|
|
|
|
rfwd->connect_host, rfwd->connect_port);
|
|
|
|
/* Ensure failure processing runs below */
|
|
|
|
type = SSH2_MSG_REQUEST_FAILURE;
|
|
|
|
channel_update_permission(ssh,
|
|
|
|
rfwd->handle, -1);
|
|
|
|
} else {
|
|
|
|
rfwd->allocated_port = (int)port;
|
|
|
|
logit("Allocated port %u for remote "
|
|
|
|
"forward to %s:%d",
|
|
|
|
rfwd->allocated_port, rfwd->connect_host,
|
|
|
|
rfwd->connect_port);
|
|
|
|
channel_update_permission(ssh,
|
|
|
|
rfwd->handle, rfwd->allocated_port);
|
|
|
|
}
|
2011-10-02 09:59:03 +02:00
|
|
|
} else {
|
2018-06-06 20:22:41 +02:00
|
|
|
channel_update_permission(ssh, rfwd->handle, -1);
|
2011-10-02 09:59:03 +02:00
|
|
|
}
|
2009-02-14 06:28:21 +01:00
|
|
|
}
|
2017-10-27 03:57:06 +02:00
|
|
|
|
2008-06-12 20:50:27 +02:00
|
|
|
if (type == SSH2_MSG_REQUEST_FAILURE) {
|
2014-07-18 06:11:24 +02:00
|
|
|
if (options.exit_on_forward_failure) {
|
|
|
|
if (rfwd->listen_path != NULL)
|
|
|
|
fatal("Error: remote port forwarding failed "
|
|
|
|
"for listen path %s", rfwd->listen_path);
|
|
|
|
else
|
|
|
|
fatal("Error: remote port forwarding failed "
|
|
|
|
"for listen port %d", rfwd->listen_port);
|
|
|
|
} else {
|
|
|
|
if (rfwd->listen_path != NULL)
|
|
|
|
logit("Warning: remote port forwarding failed "
|
|
|
|
"for listen path %s", rfwd->listen_path);
|
|
|
|
else
|
|
|
|
logit("Warning: remote port forwarding failed "
|
|
|
|
"for listen port %d", rfwd->listen_port);
|
|
|
|
}
|
2008-06-12 20:50:27 +02:00
|
|
|
}
|
2020-04-03 04:40:32 +02:00
|
|
|
forwarding_success();
|
2008-06-12 20:50:27 +02:00
|
|
|
}
|
|
|
|
|
2010-01-12 09:40:27 +01:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg)
|
2010-01-12 09:40:27 +01:00
|
|
|
{
|
|
|
|
debug("stdio forwarding: done");
|
|
|
|
cleanup_exit(0);
|
|
|
|
}
|
|
|
|
|
2014-07-18 07:04:10 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
|
2014-07-18 07:04:10 +02:00
|
|
|
{
|
|
|
|
if (!success)
|
|
|
|
fatal("stdio forwarding failed");
|
|
|
|
}
|
|
|
|
|
2020-04-03 04:40:32 +02:00
|
|
|
static void
|
|
|
|
ssh_tun_confirm(struct ssh *ssh, int id, int success, void *arg)
|
|
|
|
{
|
|
|
|
if (!success) {
|
|
|
|
error("Tunnel forwarding failed");
|
|
|
|
if (options.exit_on_forward_failure)
|
|
|
|
cleanup_exit(255);
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("%s: tunnel forward established, id=%d", __func__, id);
|
|
|
|
forwarding_success();
|
|
|
|
}
|
|
|
|
|
2011-11-04 00:54:22 +01:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_init_stdio_forwarding(struct ssh *ssh)
|
2010-01-12 09:40:27 +01:00
|
|
|
{
|
|
|
|
Channel *c;
|
2010-01-26 03:26:22 +01:00
|
|
|
int in, out;
|
2010-01-12 09:40:27 +01:00
|
|
|
|
2016-06-03 05:14:41 +02:00
|
|
|
if (options.stdio_forward_host == NULL)
|
2011-11-04 00:54:22 +01:00
|
|
|
return;
|
2010-01-26 03:26:22 +01:00
|
|
|
|
2016-06-03 05:14:41 +02:00
|
|
|
debug3("%s: %s:%d", __func__, options.stdio_forward_host,
|
|
|
|
options.stdio_forward_port);
|
2010-01-26 03:26:22 +01:00
|
|
|
|
2019-06-28 15:35:04 +02:00
|
|
|
if ((in = dup(STDIN_FILENO)) == -1 ||
|
|
|
|
(out = dup(STDOUT_FILENO)) == -1)
|
2011-11-04 00:54:22 +01:00
|
|
|
fatal("channel_connect_stdio_fwd: dup() in/out failed");
|
2017-09-12 08:32:07 +02:00
|
|
|
if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host,
|
2016-06-03 05:14:41 +02:00
|
|
|
options.stdio_forward_port, in, out)) == NULL)
|
2011-11-04 00:54:22 +01:00
|
|
|
fatal("%s: channel_connect_stdio_fwd failed", __func__);
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0);
|
|
|
|
channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL);
|
2010-01-12 09:40:27 +01:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2017-10-23 07:08:00 +02:00
|
|
|
ssh_init_forwarding(struct ssh *ssh, char **ifname)
|
2000-11-13 12:57:25 +01:00
|
|
|
{
|
2001-02-05 15:54:34 +01:00
|
|
|
int success = 0;
|
2000-11-13 12:57:25 +01:00
|
|
|
int i;
|
2001-02-05 15:54:34 +01:00
|
|
|
|
2020-04-03 06:03:51 +02:00
|
|
|
if (options.exit_on_forward_failure)
|
|
|
|
forward_confirms_pending = 0; /* track pending requests */
|
2000-11-13 12:57:25 +01:00
|
|
|
/* Initiate local TCP/IP port forwardings. */
|
|
|
|
for (i = 0; i < options.num_local_forwards; i++) {
|
2005-03-01 11:24:33 +01:00
|
|
|
debug("Local connections to %.200s:%d forwarded to remote "
|
|
|
|
"address %.200s:%d",
|
2014-07-18 06:11:24 +02:00
|
|
|
(options.local_forwards[i].listen_path != NULL) ?
|
|
|
|
options.local_forwards[i].listen_path :
|
2005-03-14 13:08:12 +01:00
|
|
|
(options.local_forwards[i].listen_host == NULL) ?
|
2014-07-18 06:11:24 +02:00
|
|
|
(options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
|
2005-03-01 11:24:33 +01:00
|
|
|
options.local_forwards[i].listen_host,
|
|
|
|
options.local_forwards[i].listen_port,
|
2014-07-18 06:11:24 +02:00
|
|
|
(options.local_forwards[i].connect_path != NULL) ?
|
|
|
|
options.local_forwards[i].connect_path :
|
2005-03-01 11:24:33 +01:00
|
|
|
options.local_forwards[i].connect_host,
|
|
|
|
options.local_forwards[i].connect_port);
|
2017-09-12 08:32:07 +02:00
|
|
|
success += channel_setup_local_fwd_listener(ssh,
|
2014-07-18 06:11:24 +02:00
|
|
|
&options.local_forwards[i], &options.fwd_opts);
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2006-07-12 14:17:10 +02:00
|
|
|
if (i > 0 && success != i && options.exit_on_forward_failure)
|
|
|
|
fatal("Could not request local forwarding.");
|
2001-02-05 15:54:34 +01:00
|
|
|
if (i > 0 && success == 0)
|
|
|
|
error("Could not request local forwarding.");
|
2000-11-13 12:57:25 +01:00
|
|
|
|
|
|
|
/* Initiate remote TCP/IP port forwardings. */
|
|
|
|
for (i = 0; i < options.num_remote_forwards; i++) {
|
2005-03-01 11:24:33 +01:00
|
|
|
debug("Remote connections from %.200s:%d forwarded to "
|
|
|
|
"local address %.200s:%d",
|
2014-07-18 06:11:24 +02:00
|
|
|
(options.remote_forwards[i].listen_path != NULL) ?
|
|
|
|
options.remote_forwards[i].listen_path :
|
2005-07-17 09:02:09 +02:00
|
|
|
(options.remote_forwards[i].listen_host == NULL) ?
|
2005-11-05 05:12:59 +01:00
|
|
|
"LOCALHOST" : options.remote_forwards[i].listen_host,
|
2005-03-01 11:24:33 +01:00
|
|
|
options.remote_forwards[i].listen_port,
|
2014-07-18 06:11:24 +02:00
|
|
|
(options.remote_forwards[i].connect_path != NULL) ?
|
|
|
|
options.remote_forwards[i].connect_path :
|
2005-03-01 11:24:33 +01:00
|
|
|
options.remote_forwards[i].connect_host,
|
|
|
|
options.remote_forwards[i].connect_port);
|
2020-04-03 04:40:32 +02:00
|
|
|
if ((options.remote_forwards[i].handle =
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_request_remote_forwarding(ssh,
|
2020-04-03 04:40:32 +02:00
|
|
|
&options.remote_forwards[i])) >= 0) {
|
2017-09-12 08:32:07 +02:00
|
|
|
client_register_global_confirm(
|
|
|
|
ssh_confirm_remote_forward,
|
2011-10-02 09:59:03 +02:00
|
|
|
&options.remote_forwards[i]);
|
2020-04-03 04:40:32 +02:00
|
|
|
forward_confirms_pending++;
|
|
|
|
} else if (options.exit_on_forward_failure)
|
|
|
|
fatal("Could not request remote forwarding.");
|
|
|
|
else
|
|
|
|
logit("Warning: Could not request remote forwarding.");
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
2007-08-08 06:32:41 +02:00
|
|
|
|
|
|
|
/* Initiate tunnel forwarding. */
|
|
|
|
if (options.tun_open != SSH_TUNMODE_NO) {
|
2017-10-23 07:08:00 +02:00
|
|
|
if ((*ifname = client_request_tun_fwd(ssh,
|
|
|
|
options.tun_open, options.tun_local,
|
2020-04-03 04:40:32 +02:00
|
|
|
options.tun_remote, ssh_tun_confirm, NULL)) != NULL)
|
|
|
|
forward_confirms_pending++;
|
|
|
|
else if (options.exit_on_forward_failure)
|
|
|
|
fatal("Could not request tunnel forwarding.");
|
|
|
|
else
|
|
|
|
error("Could not request tunnel forwarding.");
|
2017-10-27 03:57:06 +02:00
|
|
|
}
|
2020-04-03 06:03:51 +02:00
|
|
|
if (forward_confirms_pending > 0) {
|
|
|
|
debug("%s: expecting replies for %d forwards", __func__,
|
|
|
|
forward_confirms_pending);
|
|
|
|
}
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2000-11-13 12:57:25 +01:00
|
|
|
check_agent_present(void)
|
|
|
|
{
|
2015-01-14 21:05:27 +01:00
|
|
|
int r;
|
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
if (options.forward_agent) {
|
2005-11-05 05:14:59 +01:00
|
|
|
/* Clear agent forwarding if we don't have an agent. */
|
2015-01-14 21:05:27 +01:00
|
|
|
if ((r = ssh_get_authentication_socket(NULL)) != 0) {
|
2000-11-13 12:57:25 +01:00
|
|
|
options.forward_agent = 0;
|
2015-01-14 21:05:27 +01:00
|
|
|
if (r != SSH_ERR_AGENT_NOT_PRESENT)
|
|
|
|
debug("ssh_get_authentication_socket: %s",
|
|
|
|
ssh_err(r));
|
|
|
|
}
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-15 02:34:08 +02:00
|
|
|
static void
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
|
2004-06-15 02:34:08 +02:00
|
|
|
{
|
2004-06-17 17:17:29 +02:00
|
|
|
extern char **environ;
|
2005-06-17 04:54:33 +02:00
|
|
|
const char *display;
|
2019-01-19 22:36:06 +01:00
|
|
|
int r, interactive = tty_flag;
|
2016-01-14 00:04:47 +01:00
|
|
|
char *proto = NULL, *data = NULL;
|
2005-06-17 04:54:33 +02:00
|
|
|
|
2010-05-21 06:57:10 +02:00
|
|
|
if (!success)
|
|
|
|
return; /* No need for error message, channels code sens one */
|
|
|
|
|
2005-07-17 09:02:09 +02:00
|
|
|
display = getenv("DISPLAY");
|
2015-04-17 15:16:48 +02:00
|
|
|
if (display == NULL && options.forward_x11)
|
|
|
|
debug("X11 forwarding requested but DISPLAY not set");
|
2017-09-12 08:32:07 +02:00
|
|
|
if (options.forward_x11 && client_x11_get_proto(ssh, display,
|
2016-01-14 00:04:47 +01:00
|
|
|
options.xauth_location, options.forward_x11_trusted,
|
|
|
|
options.forward_x11_timeout, &proto, &data) == 0) {
|
2000-04-30 02:00:53 +02:00
|
|
|
/* Request forwarding with authentication spoofing. */
|
2008-06-12 20:52:53 +02:00
|
|
|
debug("Requesting X11 forwarding with authentication "
|
|
|
|
"spoofing.");
|
2017-09-12 08:32:07 +02:00
|
|
|
x11_request_forwarding_with_spoofing(ssh, id, display, proto,
|
2011-06-23 00:31:57 +02:00
|
|
|
data, 1);
|
2017-09-12 08:32:07 +02:00
|
|
|
client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN);
|
2011-06-23 00:31:57 +02:00
|
|
|
/* XXX exit_on_forward_failure */
|
2001-01-18 03:04:35 +01:00
|
|
|
interactive = 1;
|
2000-04-30 02:00:53 +02:00
|
|
|
}
|
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
check_agent_present();
|
|
|
|
if (options.forward_agent) {
|
|
|
|
debug("Requesting authentication agent forwarding.");
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0);
|
2019-01-19 22:36:06 +01:00
|
|
|
if ((r = sshpkt_send(ssh)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(r));
|
2000-11-13 12:57:25 +01:00
|
|
|
}
|
|
|
|
|
2012-07-02 10:55:09 +02:00
|
|
|
/* Tell the packet module whether this is an interactive session. */
|
2019-01-19 22:36:06 +01:00
|
|
|
ssh_packet_set_interactive(ssh, interactive,
|
2012-07-02 10:55:09 +02:00
|
|
|
options.ip_qos_interactive, options.ip_qos_bulk);
|
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
|
2018-07-09 23:03:30 +02:00
|
|
|
NULL, fileno(stdin), command, environ);
|
2000-04-06 04:32:37 +02:00
|
|
|
}
|
|
|
|
|
2001-09-21 01:13:49 +02:00
|
|
|
/* open new channel for a session */
|
2001-06-25 07:01:22 +02:00
|
|
|
static int
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_session2_open(struct ssh *ssh)
|
2000-04-06 04:32:37 +02:00
|
|
|
{
|
2001-05-05 06:09:47 +02:00
|
|
|
Channel *c;
|
|
|
|
int window, packetmax, in, out, err;
|
2000-08-23 02:46:23 +02:00
|
|
|
|
2000-08-29 02:33:50 +02:00
|
|
|
if (stdin_null_flag) {
|
2001-02-09 03:11:24 +01:00
|
|
|
in = open(_PATH_DEVNULL, O_RDONLY);
|
2000-08-29 02:33:50 +02:00
|
|
|
} else {
|
|
|
|
in = dup(STDIN_FILENO);
|
|
|
|
}
|
2000-08-23 02:46:23 +02:00
|
|
|
out = dup(STDOUT_FILENO);
|
|
|
|
err = dup(STDERR_FILENO);
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2019-06-28 15:35:04 +02:00
|
|
|
if (in == -1 || out == -1 || err == -1)
|
2000-08-29 02:33:50 +02:00
|
|
|
fatal("dup() in/out/err failed");
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2000-10-28 05:19:58 +02:00
|
|
|
/* enable nonblocking unless tty */
|
|
|
|
if (!isatty(in))
|
|
|
|
set_nonblock(in);
|
|
|
|
if (!isatty(out))
|
|
|
|
set_nonblock(out);
|
|
|
|
if (!isatty(err))
|
|
|
|
set_nonblock(err);
|
|
|
|
|
2000-09-16 04:29:08 +02:00
|
|
|
window = CHAN_SES_WINDOW_DEFAULT;
|
|
|
|
packetmax = CHAN_SES_PACKET_DEFAULT;
|
2002-02-19 05:20:57 +01:00
|
|
|
if (tty_flag) {
|
|
|
|
window >>= 1;
|
|
|
|
packetmax >>= 1;
|
2000-04-06 04:32:37 +02:00
|
|
|
}
|
2017-09-12 08:32:07 +02:00
|
|
|
c = channel_new(ssh,
|
2000-04-06 04:32:37 +02:00
|
|
|
"session", SSH_CHANNEL_OPENING, in, out, err,
|
2000-09-16 04:29:08 +02:00
|
|
|
window, packetmax, CHAN_EXTENDED_WRITE,
|
2003-05-14 05:45:42 +02:00
|
|
|
"client-session", /*nonblock*/0);
|
2000-04-06 04:32:37 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
debug3("%s: channel_new: %d", __func__, c->self);
|
2001-04-06 01:37:36 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_send_open(ssh, c->self);
|
2001-09-21 01:13:49 +02:00
|
|
|
if (!no_shell_flag)
|
2017-09-12 08:32:07 +02:00
|
|
|
channel_register_open_confirm(ssh, c->self,
|
2008-05-19 07:05:07 +02:00
|
|
|
ssh_session2_setup, NULL);
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-05-05 06:09:47 +02:00
|
|
|
return c->self;
|
2001-04-06 01:37:36 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 07:01:22 +02:00
|
|
|
static int
|
2017-10-23 07:08:00 +02:00
|
|
|
ssh_session2(struct ssh *ssh, struct passwd *pw)
|
2001-04-06 01:37:36 +02:00
|
|
|
{
|
2019-01-19 22:36:06 +01:00
|
|
|
int r, devnull, id = -1;
|
2017-10-23 07:08:00 +02:00
|
|
|
char *cp, *tun_fwd_ifname = NULL;
|
2001-04-06 01:37:36 +02:00
|
|
|
|
|
|
|
/* XXX should be pre-session */
|
2011-11-04 00:54:22 +01:00
|
|
|
if (!options.control_persist)
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_init_stdio_forwarding(ssh);
|
2017-10-23 07:08:00 +02:00
|
|
|
|
|
|
|
ssh_init_forwarding(ssh, &tun_fwd_ifname);
|
|
|
|
|
|
|
|
if (options.local_command != NULL) {
|
|
|
|
debug3("expanding LocalCommand: %s", options.local_command);
|
|
|
|
cp = options.local_command;
|
|
|
|
options.local_command = percent_expand(cp,
|
2020-04-03 04:27:12 +02:00
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
2017-10-23 07:08:00 +02:00
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
"T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname,
|
|
|
|
(char *)NULL);
|
|
|
|
debug3("expanded LocalCommand: %s", options.local_command);
|
|
|
|
free(cp);
|
|
|
|
}
|
2001-04-06 01:37:36 +02:00
|
|
|
|
2010-08-03 08:04:46 +02:00
|
|
|
/* Start listening for multiplex clients */
|
2019-01-19 22:36:06 +01:00
|
|
|
if (!ssh_packet_get_mux(ssh))
|
2017-09-12 08:32:07 +02:00
|
|
|
muxserver_listen(ssh);
|
2010-08-03 08:04:46 +02:00
|
|
|
|
2018-02-13 04:36:56 +01:00
|
|
|
/*
|
2011-11-04 00:54:22 +01:00
|
|
|
* If we are in control persist mode and have a working mux listen
|
|
|
|
* socket, then prepare to background ourselves and have a foreground
|
|
|
|
* client attach as a control slave.
|
|
|
|
* NB. we must save copies of the flags that we override for
|
2010-08-03 08:04:46 +02:00
|
|
|
* the backgrounding, since we defer attachment of the slave until
|
|
|
|
* after the connection is fully established (in particular,
|
|
|
|
* async rfwd replies have been received for ExitOnForwardFailure).
|
|
|
|
*/
|
2018-02-13 04:36:56 +01:00
|
|
|
if (options.control_persist && muxserver_sock != -1) {
|
2010-08-03 08:04:46 +02:00
|
|
|
ostdin_null_flag = stdin_null_flag;
|
|
|
|
ono_shell_flag = no_shell_flag;
|
2011-05-15 00:45:50 +02:00
|
|
|
orequest_tty = options.request_tty;
|
2010-08-03 08:04:46 +02:00
|
|
|
otty_flag = tty_flag;
|
2018-02-13 04:36:56 +01:00
|
|
|
stdin_null_flag = 1;
|
|
|
|
no_shell_flag = 1;
|
|
|
|
tty_flag = 0;
|
2010-08-03 08:04:46 +02:00
|
|
|
if (!fork_after_authentication_flag)
|
|
|
|
need_controlpersist_detach = 1;
|
|
|
|
fork_after_authentication_flag = 1;
|
2018-02-13 04:36:56 +01:00
|
|
|
}
|
2011-11-04 00:54:22 +01:00
|
|
|
/*
|
|
|
|
* ControlPersist mux listen socket setup failed, attempt the
|
|
|
|
* stdio forward setup that we skipped earlier.
|
|
|
|
*/
|
|
|
|
if (options.control_persist && muxserver_sock == -1)
|
2017-09-12 08:32:07 +02:00
|
|
|
ssh_init_stdio_forwarding(ssh);
|
2010-08-03 08:04:46 +02:00
|
|
|
|
2018-01-23 06:27:21 +01:00
|
|
|
if (!no_shell_flag)
|
2017-09-12 08:32:07 +02:00
|
|
|
id = ssh_session2_open(ssh);
|
2013-07-18 08:13:55 +02:00
|
|
|
else {
|
2019-01-19 22:36:06 +01:00
|
|
|
ssh_packet_set_interactive(ssh,
|
2013-07-18 08:13:55 +02:00
|
|
|
options.control_master == SSHCTL_MASTER_NO,
|
|
|
|
options.ip_qos_interactive, options.ip_qos_bulk);
|
|
|
|
}
|
2001-04-06 01:37:36 +02:00
|
|
|
|
2008-06-11 01:34:01 +02:00
|
|
|
/* If we don't expect to open a new session, then disallow it */
|
2008-11-03 09:20:10 +01:00
|
|
|
if (options.control_master == SSHCTL_MASTER_NO &&
|
|
|
|
(datafellows & SSH_NEW_OPENSSH)) {
|
2008-06-11 01:34:01 +02:00
|
|
|
debug("Requesting no-more-sessions@openssh.com");
|
2019-01-19 22:36:06 +01:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh,
|
|
|
|
"no-more-sessions@openssh.com")) != 0 ||
|
|
|
|
(r = sshpkt_put_u8(ssh, 0)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
|
|
|
fatal("%s: %s", __func__, ssh_err(r));
|
2008-06-11 01:34:01 +02:00
|
|
|
}
|
|
|
|
|
2005-12-13 09:29:02 +01:00
|
|
|
/* Execute a local command */
|
|
|
|
if (options.local_command != NULL &&
|
|
|
|
options.permit_local_command)
|
|
|
|
ssh_local_cmd(options.local_command);
|
|
|
|
|
2017-10-25 02:21:37 +02:00
|
|
|
/*
|
|
|
|
* stdout is now owned by the session channel; clobber it here
|
|
|
|
* so future channel closes are propagated to the local fd.
|
|
|
|
* NB. this can only happen after LocalCommand has completed,
|
|
|
|
* as it may want to write to stdout.
|
|
|
|
*/
|
2017-11-01 01:04:15 +01:00
|
|
|
if (!need_controlpersist_detach) {
|
|
|
|
if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1)
|
|
|
|
error("%s: open %s: %s", __func__,
|
|
|
|
_PATH_DEVNULL, strerror(errno));
|
2019-06-28 15:35:04 +02:00
|
|
|
if (dup2(devnull, STDOUT_FILENO) == -1)
|
2017-11-01 01:04:15 +01:00
|
|
|
fatal("%s: dup2() stdout failed", __func__);
|
|
|
|
if (devnull > STDERR_FILENO)
|
|
|
|
close(devnull);
|
|
|
|
}
|
2017-10-25 02:21:37 +02:00
|
|
|
|
2010-07-16 05:56:23 +02:00
|
|
|
/*
|
|
|
|
* If requested and we are not interested in replies to remote
|
|
|
|
* forwarding requests, then let ssh continue in the background.
|
|
|
|
*/
|
2010-08-03 08:04:46 +02:00
|
|
|
if (fork_after_authentication_flag) {
|
|
|
|
if (options.exit_on_forward_failure &&
|
|
|
|
options.num_remote_forwards > 0) {
|
|
|
|
debug("deferring postauth fork until remote forward "
|
|
|
|
"confirmation received");
|
|
|
|
} else
|
|
|
|
fork_postauth();
|
2008-07-04 04:53:50 +02:00
|
|
|
}
|
2001-04-06 01:37:36 +02:00
|
|
|
|
2017-09-12 08:32:07 +02:00
|
|
|
return client_loop(ssh, tty_flag, tty_flag ?
|
2001-06-05 22:32:21 +02:00
|
|
|
options.escape_char : SSH_ESCAPECHAR_NONE, id);
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2015-09-24 08:15:11 +02:00
|
|
|
/* Loads all IdentityFile and CertificateFile keys */
|
2001-06-25 07:01:22 +02:00
|
|
|
static void
|
2017-10-23 07:08:00 +02:00
|
|
|
load_public_identity_files(struct passwd *pw)
|
2001-03-09 01:12:22 +01:00
|
|
|
{
|
2017-10-23 07:08:00 +02:00
|
|
|
char *filename, *cp;
|
2017-05-30 10:52:19 +02:00
|
|
|
struct sshkey *public;
|
2015-09-24 08:15:11 +02:00
|
|
|
int i;
|
|
|
|
u_int n_ids, n_certs;
|
2010-02-26 21:55:05 +01:00
|
|
|
char *identity_files[SSH_MAX_IDENTITY_FILES];
|
2017-05-30 10:52:19 +02:00
|
|
|
struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
|
2018-07-16 09:06:50 +02:00
|
|
|
int identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
|
2015-09-24 08:15:11 +02:00
|
|
|
char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
|
|
|
|
struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
|
2018-07-16 09:06:50 +02:00
|
|
|
int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
|
2010-02-11 23:21:02 +01:00
|
|
|
#ifdef ENABLE_PKCS11
|
2020-01-25 01:03:36 +01:00
|
|
|
struct sshkey **keys = NULL;
|
|
|
|
char **comments = NULL;
|
2010-02-11 23:21:02 +01:00
|
|
|
int nkeys;
|
2010-02-26 21:55:05 +01:00
|
|
|
#endif /* PKCS11 */
|
2002-03-26 04:17:42 +01:00
|
|
|
|
2015-09-24 08:15:11 +02:00
|
|
|
n_ids = n_certs = 0;
|
2014-02-04 01:18:20 +01:00
|
|
|
memset(identity_files, 0, sizeof(identity_files));
|
|
|
|
memset(identity_keys, 0, sizeof(identity_keys));
|
2018-07-16 09:06:50 +02:00
|
|
|
memset(identity_file_userprovided, 0,
|
|
|
|
sizeof(identity_file_userprovided));
|
2015-09-24 08:15:11 +02:00
|
|
|
memset(certificate_files, 0, sizeof(certificate_files));
|
|
|
|
memset(certificates, 0, sizeof(certificates));
|
2018-07-16 09:06:50 +02:00
|
|
|
memset(certificate_file_userprovided, 0,
|
|
|
|
sizeof(certificate_file_userprovided));
|
2010-02-26 21:55:05 +01:00
|
|
|
|
|
|
|
#ifdef ENABLE_PKCS11
|
2010-02-11 23:21:02 +01:00
|
|
|
if (options.pkcs11_provider != NULL &&
|
2002-03-26 04:17:42 +01:00
|
|
|
options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
|
2010-02-11 23:21:02 +01:00
|
|
|
(pkcs11_init(!options.batch_mode) == 0) &&
|
|
|
|
(nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
|
2020-01-25 01:03:36 +01:00
|
|
|
&keys, &comments)) > 0) {
|
2010-02-11 23:21:02 +01:00
|
|
|
for (i = 0; i < nkeys; i++) {
|
2010-02-26 21:55:05 +01:00
|
|
|
if (n_ids >= SSH_MAX_IDENTITY_FILES) {
|
2018-07-11 20:53:29 +02:00
|
|
|
sshkey_free(keys[i]);
|
2020-01-25 01:03:36 +01:00
|
|
|
free(comments[i]);
|
2010-02-26 21:55:05 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
identity_keys[n_ids] = keys[i];
|
2020-01-25 01:03:36 +01:00
|
|
|
identity_files[n_ids] = comments[i]; /* transferred */
|
2010-02-26 21:55:05 +01:00
|
|
|
n_ids++;
|
2002-03-26 04:17:42 +01:00
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(keys);
|
2020-01-25 01:03:36 +01:00
|
|
|
free(comments);
|
2001-07-04 06:52:03 +02:00
|
|
|
}
|
2010-02-11 23:21:02 +01:00
|
|
|
#endif /* ENABLE_PKCS11 */
|
2010-02-26 21:55:05 +01:00
|
|
|
for (i = 0; i < options.num_identity_files; i++) {
|
2013-04-05 02:22:26 +02:00
|
|
|
if (n_ids >= SSH_MAX_IDENTITY_FILES ||
|
|
|
|
strcasecmp(options.identity_files[i], "none") == 0) {
|
2013-06-01 23:31:17 +02:00
|
|
|
free(options.identity_files[i]);
|
2015-09-24 08:15:11 +02:00
|
|
|
options.identity_files[i] = NULL;
|
2010-02-26 21:55:05 +01:00
|
|
|
continue;
|
|
|
|
}
|
2018-07-27 07:34:42 +02:00
|
|
|
cp = tilde_expand_filename(options.identity_files[i], getuid());
|
2020-04-03 04:27:12 +02:00
|
|
|
filename = percent_expand(cp,
|
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cp);
|
2018-07-11 20:53:29 +02:00
|
|
|
check_load(sshkey_load_public(filename, &public, NULL),
|
|
|
|
filename, "pubkey");
|
2001-08-06 23:12:42 +02:00
|
|
|
debug("identity file %s type %d", filename,
|
|
|
|
public ? public->type : -1);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(options.identity_files[i]);
|
2010-02-26 21:55:05 +01:00
|
|
|
identity_files[n_ids] = filename;
|
|
|
|
identity_keys[n_ids] = public;
|
2018-07-16 09:06:50 +02:00
|
|
|
identity_file_userprovided[n_ids] =
|
|
|
|
options.identity_file_userprovided[i];
|
2010-02-26 21:55:05 +01:00
|
|
|
if (++n_ids >= SSH_MAX_IDENTITY_FILES)
|
|
|
|
continue;
|
|
|
|
|
2015-09-24 08:15:11 +02:00
|
|
|
/*
|
|
|
|
* If no certificates have been explicitly listed then try
|
|
|
|
* to add the default certificate variant too.
|
|
|
|
*/
|
|
|
|
if (options.num_certificate_files != 0)
|
|
|
|
continue;
|
2010-02-26 21:55:05 +01:00
|
|
|
xasprintf(&cp, "%s-cert", filename);
|
2018-07-11 20:53:29 +02:00
|
|
|
check_load(sshkey_load_public(cp, &public, NULL),
|
|
|
|
filename, "pubkey");
|
2010-02-26 21:55:05 +01:00
|
|
|
debug("identity file %s type %d", cp,
|
|
|
|
public ? public->type : -1);
|
|
|
|
if (public == NULL) {
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cp);
|
2010-02-26 21:55:05 +01:00
|
|
|
continue;
|
|
|
|
}
|
2018-07-11 20:53:29 +02:00
|
|
|
if (!sshkey_is_cert(public)) {
|
2010-02-26 21:55:05 +01:00
|
|
|
debug("%s: key %s type %s is not a certificate",
|
2018-07-11 20:53:29 +02:00
|
|
|
__func__, cp, sshkey_type(public));
|
|
|
|
sshkey_free(public);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(cp);
|
2010-02-26 21:55:05 +01:00
|
|
|
continue;
|
|
|
|
}
|
2016-12-06 08:48:01 +01:00
|
|
|
/* NB. leave filename pointing to private key */
|
|
|
|
identity_files[n_ids] = xstrdup(filename);
|
2010-02-26 21:55:05 +01:00
|
|
|
identity_keys[n_ids] = public;
|
2018-07-16 09:06:50 +02:00
|
|
|
identity_file_userprovided[n_ids] =
|
|
|
|
options.identity_file_userprovided[i];
|
2010-02-26 21:55:05 +01:00
|
|
|
n_ids++;
|
2001-08-06 23:12:42 +02:00
|
|
|
}
|
2015-09-24 08:15:11 +02:00
|
|
|
|
|
|
|
if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
|
|
|
|
fatal("%s: too many certificates", __func__);
|
|
|
|
for (i = 0; i < options.num_certificate_files; i++) {
|
|
|
|
cp = tilde_expand_filename(options.certificate_files[i],
|
2018-07-27 07:34:42 +02:00
|
|
|
getuid());
|
2018-06-01 05:33:53 +02:00
|
|
|
filename = percent_expand(cp,
|
2020-04-03 04:27:12 +02:00
|
|
|
DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
|
2018-06-01 05:33:53 +02:00
|
|
|
"d", pw->pw_dir,
|
|
|
|
"h", host,
|
|
|
|
"r", options.user,
|
|
|
|
"u", pw->pw_name,
|
|
|
|
(char *)NULL);
|
2015-09-24 08:15:11 +02:00
|
|
|
free(cp);
|
|
|
|
|
2018-07-11 20:53:29 +02:00
|
|
|
check_load(sshkey_load_public(filename, &public, NULL),
|
|
|
|
filename, "certificate");
|
2015-09-24 08:15:11 +02:00
|
|
|
debug("certificate file %s type %d", filename,
|
|
|
|
public ? public->type : -1);
|
|
|
|
free(options.certificate_files[i]);
|
|
|
|
options.certificate_files[i] = NULL;
|
|
|
|
if (public == NULL) {
|
|
|
|
free(filename);
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-11 20:53:29 +02:00
|
|
|
if (!sshkey_is_cert(public)) {
|
2015-09-24 08:15:11 +02:00
|
|
|
debug("%s: key %s type %s is not a certificate",
|
2018-07-11 20:53:29 +02:00
|
|
|
__func__, filename, sshkey_type(public));
|
|
|
|
sshkey_free(public);
|
2015-09-24 08:15:11 +02:00
|
|
|
free(filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
certificate_files[n_certs] = filename;
|
|
|
|
certificates[n_certs] = public;
|
2018-07-16 09:06:50 +02:00
|
|
|
certificate_file_userprovided[n_certs] =
|
|
|
|
options.certificate_file_userprovided[i];
|
2015-09-24 08:15:11 +02:00
|
|
|
++n_certs;
|
|
|
|
}
|
|
|
|
|
2010-02-26 21:55:05 +01:00
|
|
|
options.num_identity_files = n_ids;
|
|
|
|
memcpy(options.identity_files, identity_files, sizeof(identity_files));
|
|
|
|
memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
|
2018-07-16 09:06:50 +02:00
|
|
|
memcpy(options.identity_file_userprovided,
|
|
|
|
identity_file_userprovided, sizeof(identity_file_userprovided));
|
2010-02-26 21:55:05 +01:00
|
|
|
|
2015-09-24 08:15:11 +02:00
|
|
|
options.num_certificate_files = n_certs;
|
|
|
|
memcpy(options.certificate_files,
|
|
|
|
certificate_files, sizeof(certificate_files));
|
|
|
|
memcpy(options.certificates, certificates, sizeof(certificates));
|
2018-07-16 09:06:50 +02:00
|
|
|
memcpy(options.certificate_file_userprovided,
|
|
|
|
certificate_file_userprovided,
|
|
|
|
sizeof(certificate_file_userprovided));
|
2001-03-09 01:12:22 +01:00
|
|
|
}
|
2010-09-24 14:02:56 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
main_sigchld_handler(int sig)
|
|
|
|
{
|
|
|
|
int save_errno = errno;
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
|
2019-06-28 15:35:04 +02:00
|
|
|
(pid == -1 && errno == EINTR))
|
2010-09-24 14:02:56 +02:00
|
|
|
;
|
|
|
|
errno = save_errno;
|
|
|
|
}
|