2021-07-23 08:24:02 +03:00
|
|
|
/* $OpenBSD: sshconnect2.c,v 1.351 2021/07/23 05:24:02 djm Exp $ */
|
2000-04-29 17:57:08 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
2008-11-05 08:20:46 +03:00
|
|
|
* Copyright (c) 2008 Damien Miller. All rights reserved.
|
2000-04-29 17:57:08 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
2006-03-15 03:09:42 +03:00
|
|
|
|
2006-03-15 03:29:24 +03:00
|
|
|
#include <sys/types.h>
|
2006-08-05 06:39:39 +04:00
|
|
|
#include <sys/socket.h>
|
2006-03-15 03:29:24 +03:00
|
|
|
#include <sys/wait.h>
|
2006-03-15 03:45:54 +03:00
|
|
|
#include <sys/stat.h>
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2006-07-12 16:22:46 +04:00
|
|
|
#include <errno.h>
|
2010-01-08 09:07:22 +03:00
|
|
|
#include <fcntl.h>
|
2020-11-13 10:30:44 +03:00
|
|
|
#include <limits.h>
|
2007-05-20 09:11:33 +04:00
|
|
|
#include <netdb.h>
|
2006-08-05 06:39:39 +04:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
2006-08-05 05:37:59 +04:00
|
|
|
#include <stdio.h>
|
2006-07-24 08:13:33 +04:00
|
|
|
#include <string.h>
|
2019-11-13 07:47:52 +03:00
|
|
|
#include <stdarg.h>
|
2006-07-24 08:07:35 +04:00
|
|
|
#include <unistd.h>
|
2013-03-20 05:55:14 +04:00
|
|
|
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
|
2008-07-17 12:57:06 +04:00
|
|
|
#include <vis.h>
|
2008-07-17 13:15:43 +04:00
|
|
|
#endif
|
2006-07-12 16:22:46 +04:00
|
|
|
|
2003-05-14 08:31:11 +04:00
|
|
|
#include "openbsd-compat/sys-queue.h"
|
|
|
|
|
2006-08-05 06:39:39 +04:00
|
|
|
#include "xmalloc.h"
|
2000-04-29 17:57:08 +04:00
|
|
|
#include "ssh.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "ssh2.h"
|
2018-07-10 00:03:30 +03:00
|
|
|
#include "sshbuf.h"
|
2000-04-29 17:57:08 +04:00
|
|
|
#include "packet.h"
|
|
|
|
#include "compat.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "cipher.h"
|
2018-07-10 00:03:30 +03:00
|
|
|
#include "sshkey.h"
|
2000-04-29 17:57:08 +04:00
|
|
|
#include "kex.h"
|
|
|
|
#include "myproposal.h"
|
|
|
|
#include "sshconnect.h"
|
|
|
|
#include "authfile.h"
|
2001-03-29 04:36:16 +04:00
|
|
|
#include "dh.h"
|
2000-08-23 04:46:23 +04:00
|
|
|
#include "authfd.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "log.h"
|
2004-05-13 10:15:47 +04:00
|
|
|
#include "misc.h"
|
2014-07-18 08:11:24 +04:00
|
|
|
#include "readconf.h"
|
2001-03-11 04:49:19 +03:00
|
|
|
#include "match.h"
|
2001-04-04 05:56:17 +04:00
|
|
|
#include "dispatch.h"
|
2001-04-13 03:34:34 +04:00
|
|
|
#include "canohost.h"
|
2002-06-06 23:57:33 +04:00
|
|
|
#include "msg.h"
|
|
|
|
#include "pathnames.h"
|
2006-06-13 07:05:15 +04:00
|
|
|
#include "uidswap.h"
|
2010-12-01 04:21:51 +03:00
|
|
|
#include "hostfile.h"
|
2015-01-14 23:05:27 +03:00
|
|
|
#include "ssherr.h"
|
2016-07-17 07:20:16 +03:00
|
|
|
#include "utf8.h"
|
2019-11-01 00:18:28 +03:00
|
|
|
#include "ssh-sk.h"
|
2019-11-13 01:36:44 +03:00
|
|
|
#include "sk-api.h"
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
|
|
|
#include "ssh-gss.h"
|
|
|
|
#endif
|
|
|
|
|
2000-04-29 17:57:08 +04:00
|
|
|
/* import */
|
|
|
|
extern Options options;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SSH2 key exchange
|
|
|
|
*/
|
|
|
|
|
2020-12-21 02:40:19 +03:00
|
|
|
static char *xxx_host;
|
|
|
|
static struct sockaddr *xxx_hostaddr;
|
|
|
|
static const struct ssh_conn_info *xxx_conn_info;
|
2001-04-04 05:56:17 +04:00
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static int
|
2017-05-30 11:52:19 +03:00
|
|
|
verify_host_key_callback(struct sshkey *hostkey, struct ssh *ssh)
|
2001-04-04 05:56:17 +04:00
|
|
|
{
|
2020-12-21 02:40:19 +03:00
|
|
|
if (verify_host_key(xxx_host, xxx_hostaddr, hostkey,
|
|
|
|
xxx_conn_info) == -1)
|
2001-10-10 09:03:11 +04:00
|
|
|
fatal("Host key verification failed.");
|
2001-04-04 05:56:17 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-18 08:23:03 +03:00
|
|
|
/* Returns the first item from a comma-separated algorithm list */
|
|
|
|
static char *
|
|
|
|
first_alg(const char *algs)
|
|
|
|
{
|
|
|
|
char *ret, *cp;
|
|
|
|
|
|
|
|
ret = xstrdup(algs);
|
|
|
|
if ((cp = strchr(ret, ',')) != NULL)
|
|
|
|
*cp = '\0';
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-12-01 04:21:51 +03:00
|
|
|
static char *
|
2020-12-21 02:40:19 +03:00
|
|
|
order_hostkeyalgs(char *host, struct sockaddr *hostaddr, u_short port,
|
|
|
|
const struct ssh_conn_info *cinfo)
|
2010-12-01 04:21:51 +03:00
|
|
|
{
|
2020-09-18 08:23:03 +03:00
|
|
|
char *oavail = NULL, *avail = NULL, *first = NULL, *last = NULL;
|
|
|
|
char *alg = NULL, *hostname = NULL, *ret = NULL, *best = NULL;
|
2010-12-01 04:21:51 +03:00
|
|
|
size_t maxlen;
|
2020-09-18 08:23:03 +03:00
|
|
|
struct hostkeys *hostkeys = NULL;
|
2010-12-01 04:21:51 +03:00
|
|
|
int ktype;
|
2011-05-29 15:42:31 +04:00
|
|
|
u_int i;
|
2010-12-01 04:21:51 +03:00
|
|
|
|
|
|
|
/* Find all hostkeys for this hostname */
|
|
|
|
get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
|
|
|
|
hostkeys = init_hostkeys();
|
2011-05-29 15:42:31 +04:00
|
|
|
for (i = 0; i < options.num_user_hostfiles; i++)
|
2020-12-21 02:36:51 +03:00
|
|
|
load_hostkeys(hostkeys, hostname, options.user_hostfiles[i], 0);
|
|
|
|
for (i = 0; i < options.num_system_hostfiles; i++) {
|
|
|
|
load_hostkeys(hostkeys, hostname,
|
|
|
|
options.system_hostfiles[i], 0);
|
|
|
|
}
|
2020-12-22 03:15:22 +03:00
|
|
|
if (options.known_hosts_command != NULL) {
|
|
|
|
load_hostkeys_command(hostkeys, options.known_hosts_command,
|
|
|
|
"ORDER", cinfo, NULL, host);
|
|
|
|
}
|
2020-09-18 08:23:03 +03:00
|
|
|
/*
|
|
|
|
* If a plain public key exists that matches the type of the best
|
|
|
|
* preference HostkeyAlgorithms, then use the whole list as is.
|
|
|
|
* Note that we ignore whether the best preference algorithm is a
|
|
|
|
* certificate type, as sshconnect.c will downgrade certs to
|
|
|
|
* plain keys if necessary.
|
|
|
|
*/
|
|
|
|
best = first_alg(options.hostkeyalgorithms);
|
|
|
|
if (lookup_key_in_hostkeys_by_type(hostkeys,
|
2020-10-04 12:45:01 +03:00
|
|
|
sshkey_type_plain(sshkey_type_from_name(best)),
|
|
|
|
sshkey_ecdsa_nid_from_name(best), NULL)) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("have matching best-preference key type %s, "
|
|
|
|
"using HostkeyAlgorithms verbatim", best);
|
2020-09-18 08:23:03 +03:00
|
|
|
ret = xstrdup(options.hostkeyalgorithms);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise, prefer the host key algorithms that match known keys
|
|
|
|
* while keeping the ordering of HostkeyAlgorithms as much as possible.
|
|
|
|
*/
|
2020-02-07 01:48:23 +03:00
|
|
|
oavail = avail = xstrdup(options.hostkeyalgorithms);
|
2010-12-01 04:21:51 +03:00
|
|
|
maxlen = strlen(avail) + 1;
|
|
|
|
first = xmalloc(maxlen);
|
|
|
|
last = xmalloc(maxlen);
|
|
|
|
*first = *last = '\0';
|
|
|
|
|
|
|
|
#define ALG_APPEND(to, from) \
|
|
|
|
do { \
|
|
|
|
if (*to != '\0') \
|
|
|
|
strlcat(to, ",", maxlen); \
|
|
|
|
strlcat(to, from, maxlen); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
while ((alg = strsep(&avail, ",")) && *alg != '\0') {
|
2015-01-14 23:05:27 +03:00
|
|
|
if ((ktype = sshkey_type_from_name(alg)) == KEY_UNSPEC)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("unknown alg %s", alg);
|
2020-05-13 12:52:41 +03:00
|
|
|
/*
|
|
|
|
* If we have a @cert-authority marker in known_hosts then
|
|
|
|
* prefer all certificate algorithms.
|
|
|
|
*/
|
|
|
|
if (sshkey_type_is_cert(ktype) &&
|
|
|
|
lookup_marker_in_hostkeys(hostkeys, MRK_CA)) {
|
|
|
|
ALG_APPEND(first, alg);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* If the key appears in known_hosts then prefer it */
|
2010-12-01 04:21:51 +03:00
|
|
|
if (lookup_key_in_hostkeys_by_type(hostkeys,
|
2020-10-04 12:45:01 +03:00
|
|
|
sshkey_type_plain(ktype),
|
|
|
|
sshkey_ecdsa_nid_from_name(alg), NULL)) {
|
2010-12-01 04:21:51 +03:00
|
|
|
ALG_APPEND(first, alg);
|
2020-05-13 12:52:41 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Otherwise, put it last */
|
|
|
|
ALG_APPEND(last, alg);
|
2010-12-01 04:21:51 +03:00
|
|
|
}
|
|
|
|
#undef ALG_APPEND
|
2015-01-18 16:33:34 +03:00
|
|
|
xasprintf(&ret, "%s%s%s", first,
|
|
|
|
(*first == '\0' || *last == '\0') ? "" : ",", last);
|
2010-12-01 04:21:51 +03:00
|
|
|
if (*first != '\0')
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("prefer hostkeyalgs: %s", first);
|
2020-12-22 03:15:22 +03:00
|
|
|
else
|
|
|
|
debug3_f("no algorithms matched; accept original");
|
2020-09-18 08:23:03 +03:00
|
|
|
out:
|
|
|
|
free(best);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(first);
|
|
|
|
free(last);
|
|
|
|
free(hostname);
|
|
|
|
free(oavail);
|
2010-12-01 04:21:51 +03:00
|
|
|
free_hostkeys(hostkeys);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-04-29 17:57:08 +04:00
|
|
|
void
|
2020-12-21 02:40:19 +03:00
|
|
|
ssh_kex2(struct ssh *ssh, char *host, struct sockaddr *hostaddr, u_short port,
|
|
|
|
const struct ssh_conn_info *cinfo)
|
2000-10-14 09:23:11 +04:00
|
|
|
{
|
2014-04-20 07:17:20 +04:00
|
|
|
char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT };
|
2018-07-04 16:49:31 +03:00
|
|
|
char *s, *all_key;
|
2020-02-07 01:48:23 +03:00
|
|
|
int r, use_known_hosts_order = 0;
|
2001-04-04 05:56:17 +04:00
|
|
|
|
2014-02-09 20:09:48 +04:00
|
|
|
#if defined(GSSAPI) && defined(WITH_OPENSSL)
|
|
|
|
char *orig = NULL, *gss = NULL;
|
|
|
|
char *gss_host = NULL;
|
|
|
|
#endif
|
|
|
|
|
2001-04-04 05:56:17 +04:00
|
|
|
xxx_host = host;
|
|
|
|
xxx_hostaddr = hostaddr;
|
2020-12-21 02:40:19 +03:00
|
|
|
xxx_conn_info = cinfo;
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2020-02-07 01:48:23 +03:00
|
|
|
/*
|
|
|
|
* If the user has not specified HostkeyAlgorithms, or has only
|
|
|
|
* appended or removed algorithms from that list then prefer algorithms
|
|
|
|
* that are in the list that are supported by known_hosts keys.
|
|
|
|
*/
|
|
|
|
if (options.hostkeyalgorithms == NULL ||
|
|
|
|
options.hostkeyalgorithms[0] == '-' ||
|
|
|
|
options.hostkeyalgorithms[0] == '+')
|
|
|
|
use_known_hosts_order = 1;
|
|
|
|
|
|
|
|
/* Expand or fill in HostkeyAlgorithms */
|
|
|
|
all_key = sshkey_alg_list(0, 0, 1, ',');
|
2020-10-30 04:50:07 +03:00
|
|
|
if ((r = kex_assemble_names(&options.hostkeyalgorithms,
|
|
|
|
kex_default_pk_alg(), all_key)) != 0)
|
|
|
|
fatal_fr(r, "kex_assemble_namelist");
|
2020-02-07 01:48:23 +03:00
|
|
|
free(all_key);
|
|
|
|
|
2015-12-04 19:41:28 +03:00
|
|
|
if ((s = kex_names_cat(options.kex_algorithms, "ext-info-c")) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("kex_names_cat");
|
2021-01-27 12:26:53 +03:00
|
|
|
myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(ssh, s);
|
2001-03-30 04:49:35 +04:00
|
|
|
myproposal[PROPOSAL_ENC_ALGS_CTOS] =
|
2021-01-27 12:26:53 +03:00
|
|
|
compat_cipher_proposal(ssh, options.ciphers);
|
2001-03-30 04:49:35 +04:00
|
|
|
myproposal[PROPOSAL_ENC_ALGS_STOC] =
|
2021-01-27 12:26:53 +03:00
|
|
|
compat_cipher_proposal(ssh, options.ciphers);
|
2016-05-24 07:43:45 +03:00
|
|
|
myproposal[PROPOSAL_COMP_ALGS_CTOS] =
|
2020-01-23 13:24:29 +03:00
|
|
|
myproposal[PROPOSAL_COMP_ALGS_STOC] =
|
|
|
|
(char *)compression_alg_list(options.compression);
|
2015-07-30 03:01:34 +03:00
|
|
|
myproposal[PROPOSAL_MAC_ALGS_CTOS] =
|
|
|
|
myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
|
2020-02-07 01:48:23 +03:00
|
|
|
if (use_known_hosts_order) {
|
|
|
|
/* Query known_hosts and prefer algorithms that appear there */
|
2010-12-01 04:21:51 +03:00
|
|
|
myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
|
2021-01-27 12:26:53 +03:00
|
|
|
compat_pkalg_proposal(ssh,
|
2020-12-21 02:40:19 +03:00
|
|
|
order_hostkeyalgs(host, hostaddr, port, cinfo));
|
2020-02-07 01:48:23 +03:00
|
|
|
} else {
|
|
|
|
/* Use specified HostkeyAlgorithms exactly */
|
|
|
|
myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
|
2021-01-27 12:26:53 +03:00
|
|
|
compat_pkalg_proposal(ssh, options.hostkeyalgorithms);
|
2010-12-01 04:21:51 +03:00
|
|
|
}
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2014-02-09 20:09:48 +04:00
|
|
|
#if defined(GSSAPI) && defined(WITH_OPENSSL)
|
|
|
|
if (options.gss_keyex) {
|
|
|
|
/* Add the GSSAPI mechanisms currently supported on this
|
|
|
|
* client to the key exchange algorithm proposal */
|
|
|
|
orig = myproposal[PROPOSAL_KEX_ALGS];
|
|
|
|
|
|
|
|
if (options.gss_server_identity) {
|
|
|
|
gss_host = xstrdup(options.gss_server_identity);
|
|
|
|
} else if (options.gss_trust_dns) {
|
|
|
|
gss_host = remote_hostname(ssh);
|
|
|
|
/* Fall back to specified host if we are using proxy command
|
|
|
|
* and can not use DNS on that socket */
|
|
|
|
if (strcmp(gss_host, "UNKNOWN") == 0) {
|
|
|
|
free(gss_host);
|
|
|
|
gss_host = xstrdup(host);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gss_host = xstrdup(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
gss = ssh_gssapi_client_mechanisms(gss_host,
|
|
|
|
options.gss_client_identity, options.gss_kex_algorithms);
|
|
|
|
if (gss) {
|
|
|
|
debug("Offering GSSAPI proposal: %s", gss);
|
|
|
|
xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
|
|
|
|
"%s,%s", gss, orig);
|
|
|
|
|
|
|
|
/* If we've got GSSAPI algorithms, then we also support the
|
|
|
|
* 'null' hostkey, as a last resort */
|
|
|
|
orig = myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS];
|
|
|
|
xasprintf(&myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS],
|
|
|
|
"%s,null", orig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-16 14:28:16 +04:00
|
|
|
if (options.rekey_limit || options.rekey_interval)
|
2019-01-20 00:34:45 +03:00
|
|
|
ssh_packet_set_rekey_limits(ssh, options.rekey_limit,
|
2017-02-03 05:56:00 +03:00
|
|
|
options.rekey_interval);
|
2003-04-09 14:50:06 +04:00
|
|
|
|
2001-04-04 21:57:54 +04:00
|
|
|
/* start key exchange */
|
2018-12-27 06:25:24 +03:00
|
|
|
if ((r = kex_setup(ssh, myproposal)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_r(r, "kex_setup");
|
2014-05-15 08:24:09 +04:00
|
|
|
#ifdef WITH_OPENSSL
|
2019-01-21 13:40:11 +03:00
|
|
|
ssh->kex->kex[KEX_DH_GRP1_SHA1] = kex_gen_client;
|
|
|
|
ssh->kex->kex[KEX_DH_GRP14_SHA1] = kex_gen_client;
|
|
|
|
ssh->kex->kex[KEX_DH_GRP14_SHA256] = kex_gen_client;
|
|
|
|
ssh->kex->kex[KEX_DH_GRP16_SHA512] = kex_gen_client;
|
|
|
|
ssh->kex->kex[KEX_DH_GRP18_SHA512] = kex_gen_client;
|
2018-12-27 06:25:24 +03:00
|
|
|
ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
|
|
|
|
ssh->kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
|
2015-02-22 21:04:21 +03:00
|
|
|
# ifdef OPENSSL_HAS_ECC
|
2019-01-21 13:40:11 +03:00
|
|
|
ssh->kex->kex[KEX_ECDH_SHA2] = kex_gen_client;
|
2015-02-22 21:04:21 +03:00
|
|
|
# endif
|
2014-02-09 20:09:48 +04:00
|
|
|
# ifdef GSSAPI
|
|
|
|
if (options.gss_keyex) {
|
|
|
|
ssh->kex->kex[KEX_GSS_GRP1_SHA1] = kexgss_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_GRP14_SHA1] = kexgss_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_GRP14_SHA256] = kexgss_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_GRP16_SHA512] = kexgss_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_GEX_SHA1] = kexgssgex_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_NISTP256_SHA256] = kexgss_client;
|
|
|
|
ssh->kex->kex[KEX_GSS_C25519_SHA256] = kexgss_client;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif /* WITH_OPENSSL */
|
2019-01-21 13:40:11 +03:00
|
|
|
ssh->kex->kex[KEX_C25519_SHA256] = kex_gen_client;
|
2020-12-29 03:59:15 +03:00
|
|
|
ssh->kex->kex[KEX_KEM_SNTRUP761X25519_SHA512] = kex_gen_client;
|
2018-12-27 06:25:24 +03:00
|
|
|
ssh->kex->verify_host_key=&verify_host_key_callback;
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2014-02-09 20:09:48 +04:00
|
|
|
#if defined(GSSAPI) && defined(WITH_OPENSSL)
|
|
|
|
if (options.gss_keyex) {
|
|
|
|
ssh->kex->gss_deleg_creds = options.gss_deleg_creds;
|
|
|
|
ssh->kex->gss_trust_dns = options.gss_trust_dns;
|
|
|
|
ssh->kex->gss_client = options.gss_client_identity;
|
|
|
|
ssh->kex->gss_host = gss_host;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-12-27 06:25:24 +03:00
|
|
|
ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &ssh->kex->done);
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2015-12-04 19:41:28 +03:00
|
|
|
/* remove ext-info from the KEX proposals for rekeying */
|
|
|
|
myproposal[PROPOSAL_KEX_ALGS] =
|
2021-01-27 12:26:53 +03:00
|
|
|
compat_kex_proposal(ssh, options.kex_algorithms);
|
2014-02-09 20:09:48 +04:00
|
|
|
#if defined(GSSAPI) && defined(WITH_OPENSSL)
|
|
|
|
/* repair myproposal after it was crumpled by the */
|
|
|
|
/* ext-info removal above */
|
|
|
|
if (gss) {
|
|
|
|
orig = myproposal[PROPOSAL_KEX_ALGS];
|
|
|
|
xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
|
|
|
|
"%s,%s", gss, orig);
|
|
|
|
free(gss);
|
|
|
|
}
|
|
|
|
#endif
|
2018-12-27 06:25:24 +03:00
|
|
|
if ((r = kex_prop2buf(ssh->kex->my, myproposal)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_r(r, "kex_prop2buf");
|
2010-01-08 08:50:41 +03:00
|
|
|
|
2000-10-14 09:23:11 +04:00
|
|
|
#ifdef DEBUG_KEXDH
|
|
|
|
/* send 1st encrypted/maced/compressed message */
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, "markus")) != 0 ||
|
2018-07-11 21:55:11 +03:00
|
|
|
(r = sshpkt_send(ssh)) != 0 ||
|
|
|
|
(r = ssh_packet_write_wait(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2000-10-14 09:23:11 +04:00
|
|
|
#endif
|
2000-04-29 17:57:08 +04:00
|
|
|
}
|
2000-05-30 07:44:51 +04:00
|
|
|
|
2000-04-29 17:57:08 +04:00
|
|
|
/*
|
|
|
|
* Authenticate user
|
|
|
|
*/
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2015-01-14 23:05:27 +03:00
|
|
|
typedef struct cauthctxt Authctxt;
|
|
|
|
typedef struct cauthmethod Authmethod;
|
2003-05-14 07:46:00 +04:00
|
|
|
typedef struct identity Identity;
|
|
|
|
typedef struct idlist Idlist;
|
|
|
|
|
|
|
|
struct identity {
|
|
|
|
TAILQ_ENTRY(identity) next;
|
2015-01-14 23:05:27 +03:00
|
|
|
int agent_fd; /* >=0 if agent supports key */
|
|
|
|
struct sshkey *key; /* public/private key */
|
2003-05-14 07:46:00 +04:00
|
|
|
char *filename; /* comment for agent-only keys */
|
|
|
|
int tried;
|
|
|
|
int isprivate; /* key points to the private key */
|
2013-02-15 05:18:32 +04:00
|
|
|
int userprovided;
|
2003-05-14 07:46:00 +04:00
|
|
|
};
|
|
|
|
TAILQ_HEAD(idlist, identity);
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2015-01-14 23:05:27 +03:00
|
|
|
struct cauthctxt {
|
2000-09-23 10:15:56 +04:00
|
|
|
const char *server_user;
|
2001-04-13 03:34:34 +04:00
|
|
|
const char *local_user;
|
2000-09-23 10:15:56 +04:00
|
|
|
const char *host;
|
|
|
|
const char *service;
|
2015-01-14 23:05:27 +03:00
|
|
|
struct cauthmethod *method;
|
2010-05-10 05:55:38 +04:00
|
|
|
sig_atomic_t success;
|
2001-03-09 03:12:22 +03:00
|
|
|
char *authlist;
|
2019-02-11 12:44:42 +03:00
|
|
|
#ifdef GSSAPI
|
|
|
|
/* gssapi */
|
|
|
|
gss_OID_set gss_supported_mechs;
|
|
|
|
u_int mech_tried;
|
|
|
|
#endif
|
2001-04-13 03:34:34 +04:00
|
|
|
/* pubkey */
|
2015-01-14 23:05:27 +03:00
|
|
|
struct idlist keys;
|
|
|
|
int agent_fd;
|
2001-04-13 03:34:34 +04:00
|
|
|
/* hostbased */
|
2002-06-06 23:57:33 +04:00
|
|
|
Sensitive *sensitive;
|
2015-01-30 14:43:14 +03:00
|
|
|
char *oktypes, *ktypes;
|
|
|
|
const char *active_ktype;
|
2001-09-12 22:29:00 +04:00
|
|
|
/* kbd-interactive */
|
|
|
|
int info_req_seen;
|
2019-01-04 06:27:50 +03:00
|
|
|
int attempt_kbdint;
|
|
|
|
/* password */
|
|
|
|
int attempt_passwd;
|
2003-08-26 05:49:55 +04:00
|
|
|
/* generic */
|
|
|
|
void *methoddata;
|
2000-09-23 10:15:56 +04:00
|
|
|
};
|
2015-01-14 23:05:27 +03:00
|
|
|
|
|
|
|
struct cauthmethod {
|
2000-09-23 10:15:56 +04:00
|
|
|
char *name; /* string to compare against server's list */
|
2019-01-20 00:40:21 +03:00
|
|
|
int (*userauth)(struct ssh *ssh);
|
|
|
|
void (*cleanup)(struct ssh *ssh);
|
2000-09-23 10:15:56 +04:00
|
|
|
int *enabled; /* flag in option struct that enables method */
|
|
|
|
int *batch_flag; /* flag in option struct that disables method */
|
|
|
|
};
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static int input_userauth_service_accept(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_ext_info(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_success(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_failure(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_banner(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_error(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_info_req(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_pk_ok(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_userauth_passwd_changereq(int, u_int32_t, struct ssh *);
|
|
|
|
|
|
|
|
static int userauth_none(struct ssh *);
|
|
|
|
static int userauth_pubkey(struct ssh *);
|
|
|
|
static int userauth_passwd(struct ssh *);
|
|
|
|
static int userauth_kbdint(struct ssh *);
|
|
|
|
static int userauth_hostbased(struct ssh *);
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
2019-02-11 12:44:42 +03:00
|
|
|
static int userauth_gssapi(struct ssh *);
|
|
|
|
static void userauth_gssapi_cleanup(struct ssh *);
|
|
|
|
static int input_gssapi_response(int type, u_int32_t, struct ssh *);
|
|
|
|
static int input_gssapi_token(int type, u_int32_t, struct ssh *);
|
|
|
|
static int input_gssapi_error(int, u_int32_t, struct ssh *);
|
|
|
|
static int input_gssapi_errtok(int, u_int32_t, struct ssh *);
|
2014-02-09 20:09:48 +04:00
|
|
|
static int userauth_gsskeyex(struct ssh *);
|
2003-08-26 05:49:55 +04:00
|
|
|
#endif
|
|
|
|
|
2019-01-20 00:40:21 +03:00
|
|
|
void userauth(struct ssh *, char *);
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2019-02-13 02:53:10 +03:00
|
|
|
static void pubkey_cleanup(struct ssh *);
|
2019-01-20 00:40:21 +03:00
|
|
|
static int sign_and_send_pubkey(struct ssh *ssh, Identity *);
|
2003-05-14 07:46:00 +04:00
|
|
|
static void pubkey_prepare(Authctxt *);
|
2016-12-05 02:54:02 +03:00
|
|
|
static void pubkey_reset(Authctxt *);
|
2017-05-30 11:52:19 +03:00
|
|
|
static struct sshkey *load_identity_file(Identity *);
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static Authmethod *authmethod_get(char *authlist);
|
|
|
|
static Authmethod *authmethod_lookup(const char *name);
|
|
|
|
static char *authmethods_get(void);
|
2000-09-23 10:15:56 +04:00
|
|
|
|
|
|
|
Authmethod authmethods[] = {
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
2014-02-09 20:09:48 +04:00
|
|
|
{"gssapi-keyex",
|
|
|
|
userauth_gsskeyex,
|
|
|
|
NULL,
|
|
|
|
&options.gss_keyex,
|
|
|
|
NULL},
|
2003-11-17 14:18:21 +03:00
|
|
|
{"gssapi-with-mic",
|
2003-08-26 05:49:55 +04:00
|
|
|
userauth_gssapi,
|
2019-02-11 12:44:42 +03:00
|
|
|
userauth_gssapi_cleanup,
|
2003-08-26 05:49:55 +04:00
|
|
|
&options.gss_authentication,
|
|
|
|
NULL},
|
|
|
|
#endif
|
2001-06-05 23:37:25 +04:00
|
|
|
{"hostbased",
|
|
|
|
userauth_hostbased,
|
2008-11-05 08:20:46 +03:00
|
|
|
NULL,
|
2001-06-05 23:37:25 +04:00
|
|
|
&options.hostbased_authentication,
|
|
|
|
NULL},
|
2001-08-07 00:57:11 +04:00
|
|
|
{"publickey",
|
|
|
|
userauth_pubkey,
|
2019-02-13 02:53:10 +03:00
|
|
|
NULL,
|
2001-08-07 00:57:11 +04:00
|
|
|
&options.pubkey_authentication,
|
|
|
|
NULL},
|
2000-10-14 09:23:11 +04:00
|
|
|
{"keyboard-interactive",
|
|
|
|
userauth_kbdint,
|
2008-11-05 08:20:46 +03:00
|
|
|
NULL,
|
2000-10-14 09:23:11 +04:00
|
|
|
&options.kbd_interactive_authentication,
|
|
|
|
&options.batch_mode},
|
2001-08-07 00:57:11 +04:00
|
|
|
{"password",
|
|
|
|
userauth_passwd,
|
2008-11-05 08:20:46 +03:00
|
|
|
NULL,
|
2001-08-07 00:57:11 +04:00
|
|
|
&options.password_authentication,
|
|
|
|
&options.batch_mode},
|
2000-10-14 09:23:11 +04:00
|
|
|
{"none",
|
|
|
|
userauth_none,
|
|
|
|
NULL,
|
2008-11-05 08:20:46 +03:00
|
|
|
NULL,
|
2000-10-14 09:23:11 +04:00
|
|
|
NULL},
|
2008-11-05 08:20:46 +03:00
|
|
|
{NULL, NULL, NULL, NULL, NULL}
|
2000-09-23 10:15:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2018-12-27 06:25:24 +03:00
|
|
|
ssh_userauth2(struct ssh *ssh, const char *local_user,
|
|
|
|
const char *server_user, char *host, Sensitive *sensitive)
|
2000-09-23 10:15:56 +04:00
|
|
|
{
|
|
|
|
Authctxt authctxt;
|
2015-12-04 19:41:28 +03:00
|
|
|
int r;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2001-03-11 04:49:19 +03:00
|
|
|
if (options.preferred_authentications == NULL)
|
|
|
|
options.preferred_authentications = authmethods_get();
|
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
/* setup authentication context */
|
2001-09-12 22:29:00 +04:00
|
|
|
memset(&authctxt, 0, sizeof(authctxt));
|
2000-09-23 10:15:56 +04:00
|
|
|
authctxt.server_user = server_user;
|
2001-04-13 03:34:34 +04:00
|
|
|
authctxt.local_user = local_user;
|
2000-09-23 10:15:56 +04:00
|
|
|
authctxt.host = host;
|
|
|
|
authctxt.service = "ssh-connection"; /* service name */
|
|
|
|
authctxt.success = 0;
|
2000-10-14 09:23:11 +04:00
|
|
|
authctxt.method = authmethod_lookup("none");
|
2001-03-09 03:12:22 +03:00
|
|
|
authctxt.authlist = NULL;
|
2003-08-26 05:49:55 +04:00
|
|
|
authctxt.methoddata = NULL;
|
2002-06-06 23:57:33 +04:00
|
|
|
authctxt.sensitive = sensitive;
|
2015-01-30 14:43:14 +03:00
|
|
|
authctxt.active_ktype = authctxt.oktypes = authctxt.ktypes = NULL;
|
2001-09-12 22:29:00 +04:00
|
|
|
authctxt.info_req_seen = 0;
|
2019-01-04 06:27:50 +03:00
|
|
|
authctxt.attempt_kbdint = 0;
|
|
|
|
authctxt.attempt_passwd = 0;
|
2019-02-11 12:44:42 +03:00
|
|
|
#if GSSAPI
|
|
|
|
authctxt.gss_supported_mechs = NULL;
|
|
|
|
authctxt.mech_tried = 0;
|
|
|
|
#endif
|
2015-01-15 14:04:36 +03:00
|
|
|
authctxt.agent_fd = -1;
|
2018-11-16 05:46:20 +03:00
|
|
|
pubkey_prepare(&authctxt);
|
2018-12-27 06:25:24 +03:00
|
|
|
if (authctxt.method == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("internal error: cannot send userauth none request");
|
2018-12-27 06:25:24 +03:00
|
|
|
}
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2015-12-04 19:41:28 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_SERVICE_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, "ssh-userauth")) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2017-05-30 17:19:15 +03:00
|
|
|
ssh->authctxt = &authctxt;
|
2015-12-04 19:41:28 +03:00
|
|
|
ssh_dispatch_init(ssh, &input_userauth_error);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_EXT_INFO, &input_userauth_ext_info);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_ACCEPT, &input_userauth_service_accept);
|
2017-05-31 10:00:13 +03:00
|
|
|
ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt.success); /* loop until success */
|
2019-02-13 02:53:10 +03:00
|
|
|
pubkey_cleanup(ssh);
|
2017-05-30 17:19:15 +03:00
|
|
|
ssh->authctxt = NULL;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2015-12-04 19:41:28 +03:00
|
|
|
ssh_dispatch_range(ssh, SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
|
2003-05-15 06:01:28 +04:00
|
|
|
|
2016-09-22 05:29:57 +03:00
|
|
|
if (!authctxt.success)
|
|
|
|
fatal("Authentication failed.");
|
2021-07-23 08:24:02 +03:00
|
|
|
if (ssh_packet_connection_is_on_socket(ssh)) {
|
|
|
|
verbose("Authenticated to %s ([%s]:%d) using \"%s\".", host,
|
|
|
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
|
|
|
|
authctxt.method->name);
|
|
|
|
} else {
|
|
|
|
verbose("Authenticated to %s (via proxy) using \"%s\".", host,
|
|
|
|
authctxt.method->name);
|
|
|
|
}
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
2003-05-15 06:01:28 +04:00
|
|
|
|
2015-12-04 19:41:28 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_service_accept(int type, u_int32_t seq, struct ssh *ssh)
|
2015-12-04 19:41:28 +03:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (ssh_packet_remaining(ssh) > 0) {
|
|
|
|
char *reply;
|
|
|
|
|
|
|
|
if ((r = sshpkt_get_cstring(ssh, &reply, NULL)) != 0)
|
|
|
|
goto out;
|
|
|
|
debug2("service_accept: %s", reply);
|
|
|
|
free(reply);
|
|
|
|
} else {
|
|
|
|
debug2("buggy server: service_accept w/o service");
|
|
|
|
}
|
|
|
|
if ((r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
goto out;
|
|
|
|
debug("SSH2_MSG_SERVICE_ACCEPT received");
|
|
|
|
|
|
|
|
/* initial userauth request */
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_none(ssh);
|
2015-12-04 19:41:28 +03:00
|
|
|
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_EXT_INFO, &input_userauth_error);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
|
|
|
|
r = 0;
|
|
|
|
out:
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_ext_info(int type, u_int32_t seqnr, struct ssh *ssh)
|
2015-12-04 19:41:28 +03:00
|
|
|
{
|
2017-05-30 17:23:52 +03:00
|
|
|
return kex_input_ext_info(type, seqnr, ssh);
|
2015-12-04 19:41:28 +03:00
|
|
|
}
|
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
void
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth(struct ssh *ssh, char *authlist)
|
2001-03-09 03:12:22 +03:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
|
2008-11-05 08:20:46 +03:00
|
|
|
if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
|
2019-01-20 00:40:21 +03:00
|
|
|
authctxt->method->cleanup(ssh);
|
2008-11-05 08:20:46 +03:00
|
|
|
|
2013-06-02 01:31:17 +04:00
|
|
|
free(authctxt->methoddata);
|
|
|
|
authctxt->methoddata = NULL;
|
2001-03-09 03:12:22 +03:00
|
|
|
if (authlist == NULL) {
|
|
|
|
authlist = authctxt->authlist;
|
|
|
|
} else {
|
2013-06-02 01:31:17 +04:00
|
|
|
free(authctxt->authlist);
|
2001-03-09 03:12:22 +03:00
|
|
|
authctxt->authlist = authlist;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
Authmethod *method = authmethod_get(authlist);
|
|
|
|
if (method == NULL)
|
2017-06-14 03:31:38 +03:00
|
|
|
fatal("%s@%s: Permission denied (%s).",
|
|
|
|
authctxt->server_user, authctxt->host, authlist);
|
2001-03-09 03:12:22 +03:00
|
|
|
authctxt->method = method;
|
2003-05-15 06:01:28 +04:00
|
|
|
|
|
|
|
/* reset the per method handler */
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_dispatch_range(ssh, SSH2_MSG_USERAUTH_PER_METHOD_MIN,
|
2003-05-15 06:01:28 +04:00
|
|
|
SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
|
|
|
|
|
|
|
|
/* and try new method */
|
2019-01-20 00:40:21 +03:00
|
|
|
if (method->userauth(ssh) != 0) {
|
2001-03-09 03:12:22 +03:00
|
|
|
debug2("we sent a %s packet, wait for reply", method->name);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
debug2("we did not send a packet, disable method");
|
|
|
|
method->enabled = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-06-24 01:23:20 +04:00
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_error(int type, u_int32_t seq, struct ssh *ssh)
|
2000-09-23 10:15:56 +04:00
|
|
|
{
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("bad message during authentication: type %d", type);
|
2015-01-19 23:07:45 +03:00
|
|
|
return 0;
|
2001-01-06 18:18:16 +03:00
|
|
|
}
|
2002-06-24 01:23:20 +04:00
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_banner(int type, u_int32_t seq, struct ssh *ssh)
|
2001-01-06 18:18:16 +03:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
char *msg = NULL;
|
2019-01-20 00:34:45 +03:00
|
|
|
size_t len;
|
|
|
|
int r;
|
2003-10-08 11:37:58 +04:00
|
|
|
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("entering");
|
2019-01-20 00:34:45 +03:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &msg, &len)) != 0 ||
|
2019-01-20 00:40:21 +03:00
|
|
|
(r = sshpkt_get_cstring(ssh, NULL, NULL)) != 0)
|
2019-01-20 00:34:45 +03:00
|
|
|
goto out;
|
2016-07-17 07:20:16 +03:00
|
|
|
if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO)
|
|
|
|
fmprintf(stderr, "%s", msg);
|
2019-01-20 00:34:45 +03:00
|
|
|
r = 0;
|
|
|
|
out:
|
2016-07-17 07:20:16 +03:00
|
|
|
free(msg);
|
2019-01-20 00:34:45 +03:00
|
|
|
return r;
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
2002-06-24 01:23:20 +04:00
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_success(int type, u_int32_t seq, struct ssh *ssh)
|
2000-09-23 10:15:56 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2009-10-24 04:47:58 +04:00
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
if (authctxt == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("no authentication context");
|
2013-06-02 01:31:17 +04:00
|
|
|
free(authctxt->authlist);
|
|
|
|
authctxt->authlist = NULL;
|
2009-10-24 04:47:58 +04:00
|
|
|
if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
|
2019-01-20 00:40:21 +03:00
|
|
|
authctxt->method->cleanup(ssh);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(authctxt->methoddata);
|
|
|
|
authctxt->methoddata = NULL;
|
2000-09-23 10:15:56 +04:00
|
|
|
authctxt->success = 1; /* break out */
|
2015-01-19 23:07:45 +03:00
|
|
|
return 0;
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
2002-06-24 01:23:20 +04:00
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
#if 0
|
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_success_unexpected(int type, u_int32_t seq, struct ssh *ssh)
|
2009-10-24 04:47:58 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2009-10-24 04:47:58 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("no authentication context");
|
2009-10-24 04:47:58 +04:00
|
|
|
|
|
|
|
fatal("Unexpected authentication success during %s.",
|
|
|
|
authctxt->method->name);
|
2015-01-19 23:07:45 +03:00
|
|
|
return 0;
|
2009-10-24 04:47:58 +04:00
|
|
|
}
|
2019-02-11 12:44:42 +03:00
|
|
|
#endif
|
2009-10-24 04:47:58 +04:00
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_failure(int type, u_int32_t seq, struct ssh *ssh)
|
2000-09-23 10:15:56 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2000-09-23 10:15:56 +04:00
|
|
|
char *authlist = NULL;
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char partial;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_userauth_failure: no authentication context");
|
|
|
|
|
2019-07-07 04:05:00 +03:00
|
|
|
if (sshpkt_get_cstring(ssh, &authlist, NULL) != 0 ||
|
|
|
|
sshpkt_get_u8(ssh, &partial) != 0 ||
|
|
|
|
sshpkt_get_end(ssh) != 0)
|
2018-07-10 00:03:30 +03:00
|
|
|
goto out;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2013-04-23 09:15:49 +04:00
|
|
|
if (partial != 0) {
|
2021-07-23 08:24:02 +03:00
|
|
|
verbose("Authenticated using \"%s\" with partial success.",
|
|
|
|
authctxt->method->name);
|
2013-04-23 09:15:49 +04:00
|
|
|
/* reset state */
|
2016-12-05 02:54:02 +03:00
|
|
|
pubkey_reset(authctxt);
|
2013-04-23 09:15:49 +04:00
|
|
|
}
|
2002-12-23 05:44:36 +03:00
|
|
|
debug("Authentications that can continue: %s", authlist);
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth(ssh, authlist);
|
2018-07-10 00:03:30 +03:00
|
|
|
authlist = NULL;
|
|
|
|
out:
|
|
|
|
free(authlist);
|
2015-01-19 23:07:45 +03:00
|
|
|
return 0;
|
2001-03-09 03:12:22 +03:00
|
|
|
}
|
2008-11-03 11:26:18 +03:00
|
|
|
|
2018-09-14 08:26:27 +03:00
|
|
|
/*
|
|
|
|
* Format an identity for logging including filename, key type, fingerprint
|
|
|
|
* and location (agent, etc.). Caller must free.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
format_identity(Identity *id)
|
|
|
|
{
|
|
|
|
char *fp = NULL, *ret = NULL;
|
2019-11-01 00:18:28 +03:00
|
|
|
const char *note = "";
|
2018-09-14 08:26:27 +03:00
|
|
|
|
|
|
|
if (id->key != NULL) {
|
2021-04-03 09:18:40 +03:00
|
|
|
fp = sshkey_fingerprint(id->key, options.fingerprint_hash,
|
2018-09-14 08:26:27 +03:00
|
|
|
SSH_FP_DEFAULT);
|
|
|
|
}
|
2019-11-01 00:18:28 +03:00
|
|
|
if (id->key) {
|
|
|
|
if ((id->key->flags & SSHKEY_FLAG_EXT) != 0)
|
|
|
|
note = " token";
|
2019-11-12 22:33:08 +03:00
|
|
|
else if (sshkey_is_sk(id->key))
|
2020-02-07 01:30:54 +03:00
|
|
|
note = " authenticator";
|
2019-11-01 00:18:28 +03:00
|
|
|
}
|
2018-09-14 08:26:27 +03:00
|
|
|
xasprintf(&ret, "%s %s%s%s%s%s%s",
|
|
|
|
id->filename,
|
|
|
|
id->key ? sshkey_type(id->key) : "", id->key ? " " : "",
|
|
|
|
fp ? fp : "",
|
2019-11-01 00:18:28 +03:00
|
|
|
id->userprovided ? " explicit" : "", note,
|
2018-09-14 08:26:27 +03:00
|
|
|
id->agent_fd != -1 ? " agent" : "");
|
|
|
|
free(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_pk_ok(int type, u_int32_t seq, struct ssh *ssh)
|
2001-03-09 03:12:22 +03:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2017-05-30 11:52:19 +03:00
|
|
|
struct sshkey *key = NULL;
|
2003-05-14 07:46:00 +04:00
|
|
|
Identity *id = NULL;
|
2018-09-14 08:26:27 +03:00
|
|
|
int pktype, found = 0, sent = 0;
|
2018-07-10 00:03:30 +03:00
|
|
|
size_t blen;
|
2018-09-14 08:26:27 +03:00
|
|
|
char *pkalg = NULL, *fp = NULL, *ident = NULL;
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char *pkblob = NULL;
|
|
|
|
int r;
|
2001-03-09 03:12:22 +03:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_userauth_pk_ok: no authentication context");
|
2018-01-23 08:27:21 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &pkalg, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
goto done;
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((pktype = sshkey_type_from_name(pkalg)) == KEY_UNSPEC) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("server sent unknown pkalg %s", pkalg);
|
2003-05-14 07:46:00 +04:00
|
|
|
goto done;
|
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_r(r, "no key from blob. pkalg %s", pkalg);
|
2003-05-14 07:46:00 +04:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (key->type != pktype) {
|
|
|
|
error("input_userauth_pk_ok: type mismatch "
|
|
|
|
"for decoded key (received %d, expected %d)",
|
|
|
|
key->type, pktype);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2003-10-15 09:55:59 +04:00
|
|
|
/*
|
|
|
|
* search keys in the reverse order, because last candidate has been
|
|
|
|
* moved to the end of the queue. this also avoids confusion by
|
|
|
|
* duplicate keys
|
|
|
|
*/
|
2004-04-20 14:07:19 +04:00
|
|
|
TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
|
2018-07-10 00:03:30 +03:00
|
|
|
if (sshkey_equal(key, id->key)) {
|
2018-09-14 08:26:27 +03:00
|
|
|
found = 1;
|
2001-03-09 03:12:22 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
}
|
2018-09-14 08:26:27 +03:00
|
|
|
if (!found || id == NULL) {
|
|
|
|
fp = sshkey_fingerprint(key, options.fingerprint_hash,
|
|
|
|
SSH_FP_DEFAULT);
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("server replied with unknown key: %s %s",
|
2018-09-14 08:26:27 +03:00
|
|
|
sshkey_type(key), fp == NULL ? "<ERROR>" : fp);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ident = format_identity(id);
|
|
|
|
debug("Server accepts key: %s", ident);
|
2019-01-20 00:40:21 +03:00
|
|
|
sent = sign_and_send_pubkey(ssh, id);
|
2018-07-10 00:03:30 +03:00
|
|
|
r = 0;
|
|
|
|
done:
|
|
|
|
sshkey_free(key);
|
2018-09-14 08:26:27 +03:00
|
|
|
free(ident);
|
|
|
|
free(fp);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(pkalg);
|
|
|
|
free(pkblob);
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2002-07-04 04:14:17 +04:00
|
|
|
/* try another method if we did not send a packet */
|
2018-07-10 00:03:30 +03:00
|
|
|
if (r == 0 && sent == 0)
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth(ssh, NULL);
|
2018-07-10 00:03:30 +03:00
|
|
|
return r;
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
#ifdef GSSAPI
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_gssapi(struct ssh *ssh)
|
2003-08-26 05:49:55 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2003-08-26 05:49:55 +04:00
|
|
|
Gssctxt *gssctxt = NULL;
|
|
|
|
OM_uint32 min;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r, ok = 0;
|
2019-02-11 12:44:42 +03:00
|
|
|
gss_OID mech = NULL;
|
2014-02-09 20:09:48 +04:00
|
|
|
char *gss_host = NULL;
|
|
|
|
|
|
|
|
if (options.gss_server_identity) {
|
|
|
|
gss_host = xstrdup(options.gss_server_identity);
|
|
|
|
} else if (options.gss_trust_dns) {
|
|
|
|
gss_host = remote_hostname(ssh);
|
|
|
|
/* Fall back to specified host if we are using proxy command
|
|
|
|
* and can not use DNS on that socket */
|
|
|
|
if (strcmp(gss_host, "UNKNOWN") == 0) {
|
|
|
|
free(gss_host);
|
|
|
|
gss_host = xstrdup(authctxt->host);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gss_host = xstrdup(authctxt->host);
|
|
|
|
}
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
/* Try one GSSAPI method at a time, rather than sending them all at
|
|
|
|
* once. */
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
if (authctxt->gss_supported_mechs == NULL)
|
2014-02-09 20:09:48 +04:00
|
|
|
if (GSS_ERROR(gss_indicate_mechs(&min,
|
|
|
|
&authctxt->gss_supported_mechs))) {
|
|
|
|
authctxt->gss_supported_mechs = NULL;
|
|
|
|
free(gss_host);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
/* Check to see whether the mechanism is usable before we offer it */
|
|
|
|
while (authctxt->mech_tried < authctxt->gss_supported_mechs->count &&
|
|
|
|
!ok) {
|
|
|
|
mech = &authctxt->gss_supported_mechs->
|
|
|
|
elements[authctxt->mech_tried];
|
2003-08-26 05:49:55 +04:00
|
|
|
/* My DER encoding requires length<128 */
|
2019-02-11 12:44:42 +03:00
|
|
|
if (mech->length < 128 && ssh_gssapi_check_mechanism(&gssctxt,
|
2014-02-09 20:09:48 +04:00
|
|
|
mech, gss_host, options.gss_client_identity)) {
|
2003-08-26 05:49:55 +04:00
|
|
|
ok = 1; /* Mechanism works */
|
|
|
|
} else {
|
2019-02-11 12:44:42 +03:00
|
|
|
authctxt->mech_tried++;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-09 20:09:48 +04:00
|
|
|
free(gss_host);
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
if (!ok || mech == NULL)
|
2005-06-17 06:59:34 +04:00
|
|
|
return 0;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
authctxt->methoddata=(void *)gssctxt;
|
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, 1)) != 0 ||
|
2019-02-11 12:44:42 +03:00
|
|
|
(r = sshpkt_put_u32(ssh, (mech->length) + 2)) != 0 ||
|
2018-07-10 00:03:30 +03:00
|
|
|
(r = sshpkt_put_u8(ssh, SSH_GSS_OIDTYPE)) != 0 ||
|
2019-02-11 12:44:42 +03:00
|
|
|
(r = sshpkt_put_u8(ssh, mech->length)) != 0 ||
|
|
|
|
(r = sshpkt_put(ssh, mech->elements, mech->length)) != 0 ||
|
2018-07-10 00:03:30 +03:00
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
authctxt->mech_tried++; /* Move along to next candidate */
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static void
|
|
|
|
userauth_gssapi_cleanup(struct ssh *ssh)
|
|
|
|
{
|
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
|
|
|
Gssctxt *gssctxt = (Gssctxt *)authctxt->methoddata;
|
|
|
|
|
|
|
|
ssh_gssapi_delete_ctx(&gssctxt);
|
|
|
|
authctxt->methoddata = NULL;
|
|
|
|
|
|
|
|
free(authctxt->gss_supported_mechs);
|
|
|
|
authctxt->gss_supported_mechs = NULL;
|
|
|
|
}
|
|
|
|
|
2003-11-17 13:20:18 +03:00
|
|
|
static OM_uint32
|
2017-05-31 08:08:46 +03:00
|
|
|
process_gssapi_token(struct ssh *ssh, gss_buffer_t recv_tok)
|
2003-11-17 13:20:18 +03:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2003-11-17 13:20:18 +03:00
|
|
|
Gssctxt *gssctxt = authctxt->methoddata;
|
|
|
|
gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
|
2005-08-31 13:46:26 +04:00
|
|
|
gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
|
|
|
|
gss_buffer_desc gssbuf;
|
2003-11-17 14:18:21 +03:00
|
|
|
OM_uint32 status, ms, flags;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 13:20:18 +03:00
|
|
|
status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
|
2003-11-17 14:18:21 +03:00
|
|
|
recv_tok, &send_tok, &flags);
|
2003-11-17 13:20:18 +03:00
|
|
|
|
|
|
|
if (send_tok.length > 0) {
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char type = GSS_ERROR(status) ?
|
|
|
|
SSH2_MSG_USERAUTH_GSSAPI_ERRTOK :
|
|
|
|
SSH2_MSG_USERAUTH_GSSAPI_TOKEN;
|
|
|
|
|
|
|
|
if ((r = sshpkt_start(ssh, type)) != 0 ||
|
|
|
|
(r = sshpkt_put_string(ssh, send_tok.value,
|
|
|
|
send_tok.length)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send %u packet", type);
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 13:20:18 +03:00
|
|
|
gss_release_buffer(&ms, &send_tok);
|
|
|
|
}
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 13:20:18 +03:00
|
|
|
if (status == GSS_S_COMPLETE) {
|
2003-11-17 14:18:21 +03:00
|
|
|
/* send either complete or MIC, depending on mechanism */
|
|
|
|
if (!(flags & GSS_C_INTEG_FLAG)) {
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh,
|
|
|
|
SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send completion");
|
2003-11-17 14:18:21 +03:00
|
|
|
} else {
|
2018-07-10 00:03:30 +03:00
|
|
|
struct sshbuf *b;
|
|
|
|
|
|
|
|
if ((b = sshbuf_new()) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_new failed");
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_gssapi_buildmic(b, authctxt->server_user,
|
2021-01-27 13:05:28 +03:00
|
|
|
authctxt->service, "gssapi-with-mic",
|
|
|
|
ssh->kex->session_id);
|
2003-11-17 14:18:21 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((gssbuf.value = sshbuf_mutable_ptr(b)) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_mutable_ptr failed");
|
2018-07-10 00:03:30 +03:00
|
|
|
gssbuf.length = sshbuf_len(b);
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 14:18:21 +03:00
|
|
|
status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 14:18:21 +03:00
|
|
|
if (!GSS_ERROR(status)) {
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh,
|
|
|
|
SSH2_MSG_USERAUTH_GSSAPI_MIC)) != 0 ||
|
|
|
|
(r = sshpkt_put_string(ssh, mic.value,
|
|
|
|
mic.length)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send MIC");
|
2003-11-17 14:18:21 +03:00
|
|
|
}
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
sshbuf_free(b);
|
2003-11-17 14:18:21 +03:00
|
|
|
gss_release_buffer(&ms, &mic);
|
2003-11-21 15:56:47 +03:00
|
|
|
}
|
2003-11-17 13:20:18 +03:00
|
|
|
}
|
2003-11-21 15:56:47 +03:00
|
|
|
|
2003-11-17 13:20:18 +03:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_gssapi_response(int type, u_int32_t plen, struct ssh *ssh)
|
2003-08-26 05:49:55 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2003-08-26 05:49:55 +04:00
|
|
|
Gssctxt *gssctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
size_t oidlen;
|
|
|
|
u_char *oidv = NULL;
|
|
|
|
int r;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_gssapi_response: no authentication context");
|
|
|
|
gssctxt = authctxt->methoddata;
|
|
|
|
|
|
|
|
/* Setup our OID */
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_string(ssh, &oidv, &oidlen)) != 0)
|
|
|
|
goto done;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2003-11-03 12:09:03 +03:00
|
|
|
if (oidlen <= 2 ||
|
|
|
|
oidv[0] != SSH_GSS_OIDTYPE ||
|
|
|
|
oidv[1] != oidlen - 2) {
|
|
|
|
debug("Badly encoded mechanism OID received");
|
2019-01-21 04:05:00 +03:00
|
|
|
userauth(ssh, NULL);
|
2018-07-10 00:03:30 +03:00
|
|
|
goto ok;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
|
|
|
|
2003-11-03 12:09:03 +03:00
|
|
|
if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
|
|
|
|
fatal("Server returned different OID than expected");
|
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
goto done;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2017-05-31 08:08:46 +03:00
|
|
|
if (GSS_ERROR(process_gssapi_token(ssh, GSS_C_NO_BUFFER))) {
|
2003-08-26 05:49:55 +04:00
|
|
|
/* Start again with next method on list */
|
|
|
|
debug("Trying to start again");
|
2019-01-21 04:05:00 +03:00
|
|
|
userauth(ssh, NULL);
|
2018-07-10 00:03:30 +03:00
|
|
|
goto ok;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
ok:
|
|
|
|
r = 0;
|
|
|
|
done:
|
|
|
|
free(oidv);
|
|
|
|
return r;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh)
|
2003-08-26 05:49:55 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2003-08-26 05:49:55 +04:00
|
|
|
gss_buffer_desc recv_tok;
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char *p = NULL;
|
|
|
|
size_t len;
|
2003-11-17 13:20:18 +03:00
|
|
|
OM_uint32 status;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_gssapi_response: no authentication context");
|
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0)
|
|
|
|
goto out;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
recv_tok.value = p;
|
|
|
|
recv_tok.length = len;
|
2017-05-31 08:08:46 +03:00
|
|
|
status = process_gssapi_token(ssh, &recv_tok);
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
/* Start again with the next method in the list */
|
2003-08-26 05:49:55 +04:00
|
|
|
if (GSS_ERROR(status)) {
|
2019-01-21 04:05:00 +03:00
|
|
|
userauth(ssh, NULL);
|
2018-07-10 00:03:30 +03:00
|
|
|
/* ok */
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
r = 0;
|
|
|
|
out:
|
|
|
|
free(p);
|
|
|
|
return r;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)
|
2003-08-26 05:49:55 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2003-08-26 05:49:55 +04:00
|
|
|
Gssctxt *gssctxt;
|
|
|
|
gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
|
|
|
|
gss_buffer_desc recv_tok;
|
2013-04-23 09:18:51 +04:00
|
|
|
OM_uint32 ms;
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char *p = NULL;
|
|
|
|
size_t len;
|
|
|
|
int r;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_gssapi_response: no authentication context");
|
|
|
|
gssctxt = authctxt->methoddata;
|
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
|
|
|
|
(r = sshpkt_get_end(ssh)) != 0) {
|
|
|
|
free(p);
|
|
|
|
return r;
|
|
|
|
}
|
2003-08-26 05:49:55 +04:00
|
|
|
|
|
|
|
/* Stick it into GSSAPI and see what it says */
|
2018-07-10 00:03:30 +03:00
|
|
|
recv_tok.value = p;
|
|
|
|
recv_tok.length = len;
|
2013-04-23 09:18:51 +04:00
|
|
|
(void)ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
|
2005-07-17 11:22:45 +04:00
|
|
|
&recv_tok, &send_tok, NULL);
|
2018-07-10 00:03:30 +03:00
|
|
|
free(p);
|
2003-08-26 05:49:55 +04:00
|
|
|
gss_release_buffer(&ms, &send_tok);
|
|
|
|
|
|
|
|
/* Server will be returning a failed packet after this one */
|
2015-01-20 10:56:44 +03:00
|
|
|
return 0;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
|
|
|
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_gssapi_error(int type, u_int32_t plen, struct ssh *ssh)
|
2003-08-26 05:49:55 +04:00
|
|
|
{
|
2018-07-10 00:03:30 +03:00
|
|
|
char *msg = NULL;
|
|
|
|
char *lang = NULL;
|
|
|
|
int r;
|
2003-08-26 05:49:55 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_u32(ssh, NULL)) != 0 || /* maj */
|
|
|
|
(r = sshpkt_get_u32(ssh, NULL)) != 0 || /* min */
|
|
|
|
(r = sshpkt_get_cstring(ssh, &msg, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
|
|
|
|
goto out;
|
|
|
|
r = sshpkt_get_end(ssh);
|
2005-11-05 07:07:33 +03:00
|
|
|
debug("Server GSSAPI Error:\n%s", msg);
|
2018-07-10 00:03:30 +03:00
|
|
|
out:
|
2013-06-02 01:31:17 +04:00
|
|
|
free(msg);
|
|
|
|
free(lang);
|
2018-07-10 00:03:30 +03:00
|
|
|
return r;
|
2003-08-26 05:49:55 +04:00
|
|
|
}
|
2014-02-09 20:09:48 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
userauth_gsskeyex(struct ssh *ssh)
|
|
|
|
{
|
|
|
|
struct sshbuf *b = NULL;
|
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
|
|
|
gss_buffer_desc gssbuf;
|
|
|
|
gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
|
|
|
|
OM_uint32 ms;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
static int attempt = 0;
|
|
|
|
if (attempt++ >= 1)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (gss_kex_context == NULL) {
|
|
|
|
debug("No valid Key exchange context");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((b = sshbuf_new()) == NULL)
|
|
|
|
fatal_f("sshbuf_new failed");
|
|
|
|
|
|
|
|
ssh_gssapi_buildmic(b, authctxt->server_user, authctxt->service,
|
|
|
|
"gssapi-keyex", ssh->kex->session_id);
|
|
|
|
|
|
|
|
if ((gssbuf.value = sshbuf_mutable_ptr(b)) == NULL)
|
|
|
|
fatal_f("sshbuf_mutable_ptr failed");
|
|
|
|
gssbuf.length = sshbuf_len(b);
|
|
|
|
|
|
|
|
if (GSS_ERROR(ssh_gssapi_sign(gss_kex_context, &gssbuf, &mic))) {
|
|
|
|
sshbuf_free(b);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_string(ssh, mic.value, mic.length)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
|
|
|
fatal_fr(r, "parsing");
|
|
|
|
|
|
|
|
sshbuf_free(b);
|
|
|
|
gss_release_buffer(&ms, &mic);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2003-08-26 05:49:55 +04:00
|
|
|
#endif /* GSSAPI */
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_none(struct ssh *ssh)
|
2000-10-14 09:23:11 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
|
|
|
|
2000-10-14 09:23:11 +04:00
|
|
|
/* initial userauth request */
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2000-10-14 09:23:11 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_passwd(struct ssh *ssh)
|
2000-04-29 17:57:08 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-11-28 09:00:38 +03:00
|
|
|
char *password, *prompt = NULL;
|
2010-01-08 10:48:02 +03:00
|
|
|
const char *host = options.host_key_alias ? options.host_key_alias :
|
|
|
|
authctxt->host;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2019-01-04 06:27:50 +03:00
|
|
|
if (authctxt->attempt_passwd++ >= options.number_of_password_prompts)
|
- Remove references to SSLeay.
- Big OpenBSD CVS update
- markus@cvs.openbsd.org
[clientloop.c]
- typo
[session.c]
- update proctitle on pty alloc/dealloc, e.g. w/ windows client
[session.c]
- update proctitle for proto 1, too
[channels.h nchan.c serverloop.c session.c sshd.c]
- use c-style comments
- deraadt@cvs.openbsd.org
[scp.c]
- more atomicio
- markus@cvs.openbsd.org
[channels.c]
- set O_NONBLOCK
[ssh.1]
- update AUTHOR
[readconf.c ssh-keygen.c ssh.h]
- default DSA key file ~/.ssh/id_dsa
[clientloop.c]
- typo, rm verbose debug
- deraadt@cvs.openbsd.org
[ssh-keygen.1]
- document DSA use of ssh-keygen
[sshd.8]
- a start at describing what i understand of the DSA side
[ssh-keygen.1]
- document -X and -x
[ssh-keygen.c]
- simplify usage
- markus@cvs.openbsd.org
[sshd.8]
- there is no rhosts_dsa
[ssh-keygen.1]
- document -y, update -X,-x
[nchan.c]
- fix close for non-open ssh1 channels
[servconf.c servconf.h ssh.h sshd.8 sshd.c ]
- s/DsaKey/HostDSAKey/, document option
[sshconnect2.c]
- respect number_of_password_prompts
[channels.c channels.h servconf.c servconf.h session.c sshd.8]
- GatewayPorts for sshd, ok deraadt@
[ssh-add.1 ssh-agent.1 ssh.1]
- more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
[ssh.1]
- more info on proto 2
[sshd.8]
- sync AUTHOR w/ ssh.1
[key.c key.h sshconnect.c]
- print key type when talking about host keys
[packet.c]
- clear padding in ssh2
[dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
- replace broken uuencode w/ libc b64_ntop
[auth2.c]
- log failure before sending the reply
[key.c radix.c uuencode.c]
- remote trailing comments before calling __b64_pton
[auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
[sshconnect2.c sshd.8]
- add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
- Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
2000-05-07 06:03:14 +04:00
|
|
|
return 0;
|
|
|
|
|
2019-01-04 06:27:50 +03:00
|
|
|
if (authctxt->attempt_passwd != 1)
|
2000-06-07 13:55:44 +04:00
|
|
|
error("Permission denied, please try again.");
|
|
|
|
|
2018-11-28 09:00:38 +03:00
|
|
|
xasprintf(&prompt, "%s@%s's password: ", authctxt->server_user, host);
|
2000-04-29 17:57:08 +04:00
|
|
|
password = read_passphrase(prompt, 0);
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_u8(ssh, 0)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, password)) != 0 ||
|
|
|
|
(r = sshpkt_add_padding(ssh, 64)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2018-07-10 00:03:30 +03:00
|
|
|
|
2018-11-28 09:00:38 +03:00
|
|
|
free(prompt);
|
|
|
|
if (password != NULL)
|
2018-07-10 00:03:30 +03:00
|
|
|
freezero(password, strlen(password));
|
|
|
|
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
|
2002-03-27 20:28:46 +03:00
|
|
|
&input_userauth_passwd_changereq);
|
|
|
|
|
2000-04-29 17:57:08 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2008-11-03 11:26:18 +03:00
|
|
|
|
2002-03-27 20:28:46 +03:00
|
|
|
/*
|
|
|
|
* parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
|
|
|
|
*/
|
2008-11-03 11:26:18 +03:00
|
|
|
/* ARGSUSED */
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_passwd_changereq(int type, u_int32_t seqnr, struct ssh *ssh)
|
2002-03-27 20:28:46 +03:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
char *info = NULL, *lang = NULL, *password = NULL, *retype = NULL;
|
2017-08-27 03:38:41 +03:00
|
|
|
char prompt[256];
|
2017-01-30 03:32:03 +03:00
|
|
|
const char *host;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2002-03-27 20:28:46 +03:00
|
|
|
|
|
|
|
debug2("input_userauth_passwd_changereq");
|
|
|
|
|
|
|
|
if (authctxt == NULL)
|
|
|
|
fatal("input_userauth_passwd_changereq: "
|
|
|
|
"no authentication context");
|
2017-01-30 03:32:03 +03:00
|
|
|
host = options.host_key_alias ? options.host_key_alias : authctxt->host;
|
2002-03-27 20:28:46 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &info, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
|
|
|
|
goto out;
|
2002-03-27 20:28:46 +03:00
|
|
|
if (strlen(info) > 0)
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("%s", info);
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_u8(ssh, 1)) != 0) /* additional info */
|
|
|
|
goto out;
|
|
|
|
|
2002-06-21 04:41:51 +04:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
2002-03-27 20:28:46 +03:00
|
|
|
"Enter %.30s@%.128s's old password: ",
|
2010-01-08 10:48:02 +03:00
|
|
|
authctxt->server_user, host);
|
2002-03-27 20:28:46 +03:00
|
|
|
password = read_passphrase(prompt, 0);
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_put_cstring(ssh, password)) != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
freezero(password, strlen(password));
|
2002-03-27 20:28:46 +03:00
|
|
|
password = NULL;
|
|
|
|
while (password == NULL) {
|
2002-06-21 04:41:51 +04:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
2002-03-27 20:28:46 +03:00
|
|
|
"Enter %.30s@%.128s's new password: ",
|
2010-01-08 10:48:02 +03:00
|
|
|
authctxt->server_user, host);
|
2002-03-27 20:28:46 +03:00
|
|
|
password = read_passphrase(prompt, RP_ALLOW_EOF);
|
|
|
|
if (password == NULL) {
|
|
|
|
/* bail out */
|
2018-07-10 00:03:30 +03:00
|
|
|
r = 0;
|
|
|
|
goto out;
|
2002-03-27 20:28:46 +03:00
|
|
|
}
|
2002-06-21 04:41:51 +04:00
|
|
|
snprintf(prompt, sizeof(prompt),
|
2002-03-27 20:28:46 +03:00
|
|
|
"Retype %.30s@%.128s's new password: ",
|
2010-01-08 10:48:02 +03:00
|
|
|
authctxt->server_user, host);
|
2002-03-27 20:28:46 +03:00
|
|
|
retype = read_passphrase(prompt, 0);
|
|
|
|
if (strcmp(password, retype) != 0) {
|
2018-07-10 00:03:30 +03:00
|
|
|
freezero(password, strlen(password));
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("Mismatch; try again, EOF to quit.");
|
2002-03-27 20:28:46 +03:00
|
|
|
password = NULL;
|
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
freezero(retype, strlen(retype));
|
2002-03-27 20:28:46 +03:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_put_cstring(ssh, password)) != 0 ||
|
|
|
|
(r = sshpkt_add_padding(ssh, 64)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
|
|
|
goto out;
|
2002-06-21 04:41:51 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
|
2002-03-27 20:28:46 +03:00
|
|
|
&input_userauth_passwd_changereq);
|
2018-07-10 00:03:30 +03:00
|
|
|
r = 0;
|
|
|
|
out:
|
|
|
|
if (password)
|
|
|
|
freezero(password, strlen(password));
|
|
|
|
free(info);
|
|
|
|
free(lang);
|
|
|
|
return r;
|
2002-03-27 20:28:46 +03:00
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2018-03-03 06:01:50 +03:00
|
|
|
/*
|
2018-07-03 14:39:54 +03:00
|
|
|
* Select an algorithm for publickey signatures.
|
|
|
|
* Returns algorithm (caller must free) or NULL if no mutual algorithm found.
|
|
|
|
*
|
|
|
|
* Call with ssh==NULL to ignore server-sig-algs extension list and
|
|
|
|
* only attempt with the key's base signature type.
|
2018-03-03 06:01:50 +03:00
|
|
|
*/
|
2018-07-03 14:39:54 +03:00
|
|
|
static char *
|
|
|
|
key_sig_algorithm(struct ssh *ssh, const struct sshkey *key)
|
2018-03-03 06:01:50 +03:00
|
|
|
{
|
2018-07-03 16:20:25 +03:00
|
|
|
char *allowed, *oallowed, *cp, *tmp, *alg = NULL;
|
2021-06-06 06:40:39 +03:00
|
|
|
const char *server_sig_algs;
|
2018-03-03 06:01:50 +03:00
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
/*
|
|
|
|
* The signature algorithm will only differ from the key algorithm
|
|
|
|
* for RSA keys/certs and when the server advertises support for
|
|
|
|
* newer (SHA2) algorithms.
|
|
|
|
*/
|
|
|
|
if (ssh == NULL || ssh->kex->server_sig_algs == NULL ||
|
2018-10-11 06:48:04 +03:00
|
|
|
(key->type != KEY_RSA && key->type != KEY_RSA_CERT) ||
|
2021-01-27 12:26:53 +03:00
|
|
|
(key->type == KEY_RSA_CERT && (ssh->compat & SSH_BUG_SIGTYPE))) {
|
2018-07-03 14:39:54 +03:00
|
|
|
/* Filter base key signature alg against our configuration */
|
2018-07-11 21:53:29 +03:00
|
|
|
return match_list(sshkey_ssh_name(key),
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, NULL);
|
2018-03-03 06:01:50 +03:00
|
|
|
}
|
2018-07-03 14:39:54 +03:00
|
|
|
|
2021-06-06 06:40:39 +03:00
|
|
|
/*
|
|
|
|
* Workaround OpenSSH 7.4 bug: this version supports RSA/SHA-2 but
|
|
|
|
* fails to advertise it via SSH2_MSG_EXT_INFO.
|
|
|
|
*/
|
|
|
|
server_sig_algs = ssh->kex->server_sig_algs;
|
|
|
|
if (key->type == KEY_RSA && (ssh->compat & SSH_BUG_SIGTYPE74))
|
|
|
|
server_sig_algs = "rsa-sha2-256,rsa-sha2-512";
|
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
/*
|
|
|
|
* For RSA keys/certs, since these might have a different sig type:
|
2021-01-22 05:44:58 +03:00
|
|
|
* find the first entry in PubkeyAcceptedAlgorithms of the right type
|
2018-07-03 14:39:54 +03:00
|
|
|
* that also appears in the supported signature algorithms list from
|
|
|
|
* the server.
|
|
|
|
*/
|
2021-01-22 05:44:58 +03:00
|
|
|
oallowed = allowed = xstrdup(options.pubkey_accepted_algos);
|
2018-07-03 14:39:54 +03:00
|
|
|
while ((cp = strsep(&allowed, ",")) != NULL) {
|
|
|
|
if (sshkey_type_from_name(cp) != key->type)
|
|
|
|
continue;
|
2020-06-05 06:24:16 +03:00
|
|
|
tmp = match_list(sshkey_sigalg_by_name(cp),
|
2021-06-06 06:40:39 +03:00
|
|
|
server_sig_algs, NULL);
|
2018-07-03 16:20:25 +03:00
|
|
|
if (tmp != NULL)
|
|
|
|
alg = xstrdup(cp);
|
|
|
|
free(tmp);
|
2018-07-03 14:39:54 +03:00
|
|
|
if (alg != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(oallowed);
|
|
|
|
return alg;
|
2018-03-03 06:01:50 +03:00
|
|
|
}
|
|
|
|
|
2003-05-14 07:46:00 +04:00
|
|
|
static int
|
2015-01-14 23:05:27 +03:00
|
|
|
identity_sign(struct identity *id, u_char **sigp, size_t *lenp,
|
2018-07-03 14:39:54 +03:00
|
|
|
const u_char *data, size_t datalen, u_int compat, const char *alg)
|
2003-05-14 07:46:00 +04:00
|
|
|
{
|
2019-11-01 00:18:28 +03:00
|
|
|
struct sshkey *sign_key = NULL, *prv = NULL;
|
2021-01-08 05:57:24 +03:00
|
|
|
int retried = 0, r = SSH_ERR_INTERNAL_ERROR;
|
2019-11-13 01:36:44 +03:00
|
|
|
struct notifier_ctx *notifier = NULL;
|
2020-08-27 04:06:18 +03:00
|
|
|
char *fp = NULL, *pin = NULL, *prompt = NULL;
|
2019-11-01 00:18:28 +03:00
|
|
|
|
|
|
|
*sigp = NULL;
|
|
|
|
*lenp = 0;
|
2003-05-14 07:46:00 +04:00
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
/* The agent supports this key. */
|
2018-03-03 06:01:50 +03:00
|
|
|
if (id->key != NULL && id->agent_fd != -1) {
|
2018-07-03 14:39:54 +03:00
|
|
|
return ssh_agent_sign(id->agent_fd, id->key, sigp, lenp,
|
|
|
|
data, datalen, alg, compat);
|
2018-03-03 06:01:50 +03:00
|
|
|
}
|
2015-01-14 23:05:27 +03:00
|
|
|
|
2003-05-14 07:46:00 +04:00
|
|
|
/*
|
2018-07-03 14:39:54 +03:00
|
|
|
* We have already loaded the private key or the private key is
|
|
|
|
* stored in external hardware.
|
2003-05-14 07:46:00 +04:00
|
|
|
*/
|
2017-03-12 02:40:26 +03:00
|
|
|
if (id->key != NULL &&
|
2018-07-03 14:39:54 +03:00
|
|
|
(id->isprivate || (id->key->flags & SSHKEY_FLAG_EXT))) {
|
2019-11-01 00:18:28 +03:00
|
|
|
sign_key = id->key;
|
|
|
|
} else {
|
|
|
|
/* Load the private key from the file. */
|
|
|
|
if ((prv = load_identity_file(id)) == NULL)
|
|
|
|
return SSH_ERR_KEY_NOT_FOUND;
|
|
|
|
if (id->key != NULL && !sshkey_equal_public(prv, id->key)) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("private key %s contents do not match public",
|
2021-04-03 09:18:40 +03:00
|
|
|
id->filename);
|
2019-11-01 00:18:28 +03:00
|
|
|
r = SSH_ERR_KEY_NOT_FOUND;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
sign_key = prv;
|
2020-08-27 04:06:18 +03:00
|
|
|
if (sshkey_is_sk(sign_key)) {
|
|
|
|
if ((sign_key->sk_flags &
|
|
|
|
SSH_SK_USER_VERIFICATION_REQD)) {
|
2021-01-08 05:57:24 +03:00
|
|
|
retry_pin:
|
2020-08-27 04:06:18 +03:00
|
|
|
xasprintf(&prompt, "Enter PIN for %s key %s: ",
|
|
|
|
sshkey_type(sign_key), id->filename);
|
|
|
|
pin = read_passphrase(prompt, 0);
|
|
|
|
}
|
|
|
|
if ((sign_key->sk_flags & SSH_SK_USER_PRESENCE_REQD)) {
|
|
|
|
/* XXX should batch mode just skip these? */
|
|
|
|
if ((fp = sshkey_fingerprint(sign_key,
|
|
|
|
options.fingerprint_hash,
|
|
|
|
SSH_FP_DEFAULT)) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("fingerprint failed");
|
2020-08-27 04:06:18 +03:00
|
|
|
notifier = notify_start(options.batch_mode,
|
|
|
|
"Confirm user presence for key %s %s",
|
|
|
|
sshkey_type(sign_key), fp);
|
|
|
|
free(fp);
|
|
|
|
}
|
2019-11-13 01:36:44 +03:00
|
|
|
}
|
2018-07-03 14:39:54 +03:00
|
|
|
}
|
2019-11-01 00:23:19 +03:00
|
|
|
if ((r = sshkey_sign(sign_key, sigp, lenp, data, datalen,
|
2020-08-27 04:06:18 +03:00
|
|
|
alg, options.sk_provider, pin, compat)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_fr(r, "sshkey_sign");
|
2021-01-08 05:57:24 +03:00
|
|
|
if (pin == NULL && !retried && sshkey_is_sk(sign_key) &&
|
|
|
|
r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
|
|
|
|
notify_complete(notifier, NULL);
|
|
|
|
notifier = NULL;
|
|
|
|
retried = 1;
|
|
|
|
goto retry_pin;
|
|
|
|
}
|
2019-11-01 00:18:28 +03:00
|
|
|
goto out;
|
|
|
|
}
|
2021-01-08 05:57:24 +03:00
|
|
|
|
2019-11-01 00:18:28 +03:00
|
|
|
/*
|
|
|
|
* PKCS#11 tokens may not support all signature algorithms,
|
|
|
|
* so check what we get back.
|
|
|
|
*/
|
|
|
|
if ((r = sshkey_check_sigtype(*sigp, *lenp, alg)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_fr(r, "sshkey_check_sigtype");
|
2019-11-01 00:18:28 +03:00
|
|
|
goto out;
|
2017-08-11 07:47:12 +03:00
|
|
|
}
|
2019-11-01 00:18:28 +03:00
|
|
|
/* success */
|
|
|
|
r = 0;
|
|
|
|
out:
|
2020-08-27 04:06:18 +03:00
|
|
|
free(prompt);
|
|
|
|
if (pin != NULL)
|
|
|
|
freezero(pin, strlen(pin));
|
2021-01-08 05:57:24 +03:00
|
|
|
notify_complete(notifier, r == 0 ? "User presence confirmed" : NULL);
|
2015-01-14 23:05:27 +03:00
|
|
|
sshkey_free(prv);
|
2018-03-03 06:01:50 +03:00
|
|
|
return r;
|
2001-03-09 03:12:22 +03:00
|
|
|
}
|
|
|
|
|
2017-03-12 02:40:26 +03:00
|
|
|
static int
|
|
|
|
id_filename_matches(Identity *id, Identity *private_id)
|
|
|
|
{
|
|
|
|
const char *suffixes[] = { ".pub", "-cert.pub", NULL };
|
|
|
|
size_t len = strlen(id->filename), plen = strlen(private_id->filename);
|
|
|
|
size_t i, slen;
|
|
|
|
|
|
|
|
if (strcmp(id->filename, private_id->filename) == 0)
|
|
|
|
return 1;
|
|
|
|
for (i = 0; suffixes[i]; i++) {
|
|
|
|
slen = strlen(suffixes[i]);
|
|
|
|
if (len > slen && plen == len - slen &&
|
|
|
|
strcmp(id->filename + (len - slen), suffixes[i]) == 0 &&
|
|
|
|
memcmp(id->filename, private_id->filename, plen) == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
sign_and_send_pubkey(struct ssh *ssh, Identity *id)
|
2000-04-29 17:57:08 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-07-03 14:39:54 +03:00
|
|
|
struct sshbuf *b = NULL;
|
|
|
|
Identity *private_id, *sign_id = NULL;
|
|
|
|
u_char *signature = NULL;
|
|
|
|
size_t slen = 0, skip = 0;
|
|
|
|
int r, fallback_sigtype, sent = 0;
|
|
|
|
char *alg = NULL, *fp = NULL;
|
|
|
|
const char *loc = "";
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2015-01-29 01:36:00 +03:00
|
|
|
if ((fp = sshkey_fingerprint(id->key, options.fingerprint_hash,
|
|
|
|
SSH_FP_DEFAULT)) == NULL)
|
|
|
|
return 0;
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("%s %s", sshkey_type(id->key), fp);
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2015-09-24 09:15:11 +03:00
|
|
|
/*
|
|
|
|
* If the key is an certificate, try to find a matching private key
|
|
|
|
* and use it to complete the signature.
|
2016-04-28 17:30:21 +03:00
|
|
|
* If no such private key exists, fall back to trying the certificate
|
|
|
|
* key itself in case it has a private half already loaded.
|
2018-07-03 14:39:54 +03:00
|
|
|
* This will try to set sign_id to the private key that will perform
|
|
|
|
* the signature.
|
2015-09-24 09:15:11 +03:00
|
|
|
*/
|
2018-07-03 14:39:54 +03:00
|
|
|
if (sshkey_is_cert(id->key)) {
|
2015-09-24 09:15:11 +03:00
|
|
|
TAILQ_FOREACH(private_id, &authctxt->keys, next) {
|
|
|
|
if (sshkey_equal_public(id->key, private_id->key) &&
|
|
|
|
id->key->type != private_id->key->type) {
|
2018-07-03 14:39:54 +03:00
|
|
|
sign_id = private_id;
|
2015-09-24 09:15:11 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-03-12 02:40:26 +03:00
|
|
|
/*
|
|
|
|
* Exact key matches are preferred, but also allow
|
|
|
|
* filename matches for non-PKCS#11/agent keys that
|
|
|
|
* didn't load public keys. This supports the case
|
|
|
|
* of keeping just a private key file and public
|
|
|
|
* certificate on disk.
|
|
|
|
*/
|
2018-07-03 14:39:54 +03:00
|
|
|
if (sign_id == NULL &&
|
|
|
|
!id->isprivate && id->agent_fd == -1 &&
|
2017-03-12 02:40:26 +03:00
|
|
|
(id->key->flags & SSHKEY_FLAG_EXT) == 0) {
|
|
|
|
TAILQ_FOREACH(private_id, &authctxt->keys, next) {
|
|
|
|
if (private_id->key == NULL &&
|
|
|
|
id_filename_matches(id, private_id)) {
|
2018-07-03 14:39:54 +03:00
|
|
|
sign_id = private_id;
|
2017-03-12 02:40:26 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-03 14:39:54 +03:00
|
|
|
if (sign_id != NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug2_f("using private key \"%s\"%s for "
|
2021-06-07 06:38:38 +03:00
|
|
|
"certificate", sign_id->filename,
|
|
|
|
sign_id->agent_fd != -1 ? " from agent" : "");
|
2015-09-24 09:15:11 +03:00
|
|
|
} else {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("no separate private key for certificate "
|
|
|
|
"\"%s\"", id->filename);
|
2015-09-24 09:15:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
/*
|
|
|
|
* If the above didn't select another identity to do the signing
|
|
|
|
* then default to the one we started with.
|
|
|
|
*/
|
|
|
|
if (sign_id == NULL)
|
|
|
|
sign_id = id;
|
|
|
|
|
|
|
|
/* assemble and sign data */
|
|
|
|
for (fallback_sigtype = 0; fallback_sigtype <= 1; fallback_sigtype++) {
|
|
|
|
free(alg);
|
|
|
|
slen = 0;
|
|
|
|
signature = NULL;
|
|
|
|
if ((alg = key_sig_algorithm(fallback_sigtype ? NULL : ssh,
|
|
|
|
id->key)) == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("no mutual signature supported");
|
2018-07-03 14:39:54 +03:00
|
|
|
goto out;
|
|
|
|
}
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("signing using %s %s", alg, fp);
|
2018-07-03 14:39:54 +03:00
|
|
|
|
|
|
|
sshbuf_free(b);
|
|
|
|
if ((b = sshbuf_new()) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_new failed");
|
2021-01-27 12:26:53 +03:00
|
|
|
if (ssh->compat & SSH_OLD_SESSIONID) {
|
2021-01-27 13:05:28 +03:00
|
|
|
if ((r = sshbuf_putb(b, ssh->kex->session_id)) != 0)
|
|
|
|
fatal_fr(r, "sshbuf_putb");
|
2018-07-03 14:39:54 +03:00
|
|
|
} else {
|
2021-01-27 13:05:28 +03:00
|
|
|
if ((r = sshbuf_put_stringb(b,
|
|
|
|
ssh->kex->session_id)) != 0)
|
|
|
|
fatal_fr(r, "sshbuf_put_stringb");
|
2018-07-03 14:39:54 +03:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
skip = sshbuf_len(b);
|
2018-07-03 14:39:54 +03:00
|
|
|
if ((r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, authctxt->service)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshbuf_put_u8(b, 1)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, alg)) != 0 ||
|
|
|
|
(r = sshkey_puts(id->key, b)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "assemble signed data");
|
2018-07-03 14:39:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* generate signature */
|
|
|
|
r = identity_sign(sign_id, &signature, &slen,
|
2021-01-27 12:26:53 +03:00
|
|
|
sshbuf_ptr(b), sshbuf_len(b), ssh->compat, alg);
|
2018-07-03 14:39:54 +03:00
|
|
|
if (r == 0)
|
|
|
|
break;
|
|
|
|
else if (r == SSH_ERR_KEY_NOT_FOUND)
|
|
|
|
goto out; /* soft failure */
|
|
|
|
else if (r == SSH_ERR_SIGN_ALG_UNSUPPORTED &&
|
|
|
|
!fallback_sigtype) {
|
|
|
|
if (sign_id->agent_fd != -1)
|
|
|
|
loc = "agent ";
|
|
|
|
else if ((sign_id->key->flags & SSHKEY_FLAG_EXT) != 0)
|
|
|
|
loc = "token ";
|
|
|
|
logit("%skey %s %s returned incorrect signature type",
|
|
|
|
loc, sshkey_type(id->key), fp);
|
|
|
|
continue;
|
|
|
|
}
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "signing failed for %s \"%s\"%s",
|
2020-01-21 08:56:27 +03:00
|
|
|
sshkey_type(sign_id->key), sign_id->filename,
|
2020-10-18 14:32:01 +03:00
|
|
|
id->agent_fd != -1 ? " from agent" : "");
|
2018-07-03 14:39:54 +03:00
|
|
|
goto out;
|
2000-08-23 04:46:23 +04:00
|
|
|
}
|
2018-07-03 14:39:54 +03:00
|
|
|
if (slen == 0 || signature == NULL) /* shouldn't happen */
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("no signature");
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2000-04-29 17:57:08 +04:00
|
|
|
/* append signature */
|
2018-07-03 14:39:54 +03:00
|
|
|
if ((r = sshbuf_put_string(b, signature, slen)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "append signature");
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
#ifdef DEBUG_PK
|
|
|
|
sshbuf_dump(b, stderr);
|
|
|
|
#endif
|
2000-04-29 17:57:08 +04:00
|
|
|
/* skip session id and packet type */
|
2018-07-03 14:39:54 +03:00
|
|
|
if ((r = sshbuf_consume(b, skip + 1)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "consume");
|
2000-04-29 17:57:08 +04:00
|
|
|
|
|
|
|
/* put remaining data from buffer into packet */
|
2018-07-03 14:39:54 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_putb(ssh, b)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "enqueue request");
|
2000-08-23 04:46:23 +04:00
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
/* success */
|
|
|
|
sent = 1;
|
|
|
|
|
|
|
|
out:
|
|
|
|
free(fp);
|
|
|
|
free(alg);
|
|
|
|
sshbuf_free(b);
|
|
|
|
freezero(signature, slen);
|
|
|
|
return sent;
|
2000-07-21 04:19:44 +04:00
|
|
|
}
|
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
send_pubkey_test(struct ssh *ssh, Identity *id)
|
2000-07-21 04:19:44 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-07-03 14:39:54 +03:00
|
|
|
u_char *blob = NULL;
|
|
|
|
char *alg = NULL;
|
2018-07-10 00:03:30 +03:00
|
|
|
size_t bloblen;
|
|
|
|
u_int have_sig = 0;
|
|
|
|
int sent = 0, r;
|
2000-07-21 04:19:44 +04:00
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
if ((alg = key_sig_algorithm(ssh, id->key)) == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("no mutual signature algorithm");
|
2018-07-03 14:39:54 +03:00
|
|
|
goto out;
|
|
|
|
}
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshkey_to_blob(id->key, &blob, &bloblen)) != 0) {
|
2001-03-09 03:12:22 +03:00
|
|
|
/* we cannot handle this key */
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("cannot handle key");
|
2018-07-03 14:39:54 +03:00
|
|
|
goto out;
|
2000-07-21 04:19:44 +04:00
|
|
|
}
|
2001-03-09 03:12:22 +03:00
|
|
|
/* register callback for USERAUTH_PK_OK message */
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
|
|
|
|
|
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_u8(ssh, have_sig)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, alg)) != 0 ||
|
|
|
|
(r = sshpkt_put_string(ssh, blob, bloblen)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2018-07-03 14:39:54 +03:00
|
|
|
sent = 1;
|
2018-07-10 00:03:30 +03:00
|
|
|
|
|
|
|
out:
|
2018-07-03 14:39:54 +03:00
|
|
|
free(alg);
|
|
|
|
free(blob);
|
|
|
|
return sent;
|
2001-03-09 03:12:22 +03:00
|
|
|
}
|
|
|
|
|
2017-05-30 11:52:19 +03:00
|
|
|
static struct sshkey *
|
2015-11-16 01:26:49 +03:00
|
|
|
load_identity_file(Identity *id)
|
2001-03-09 03:12:22 +03:00
|
|
|
{
|
2017-05-30 11:52:19 +03:00
|
|
|
struct sshkey *private = NULL;
|
2015-11-16 01:26:49 +03:00
|
|
|
char prompt[300], *passphrase, *comment;
|
2019-08-05 14:50:33 +03:00
|
|
|
int r, quit = 0, i;
|
2001-03-10 20:08:59 +03:00
|
|
|
struct stat st;
|
2001-03-09 03:12:22 +03:00
|
|
|
|
2019-06-28 16:35:04 +03:00
|
|
|
if (stat(id->filename, &st) == -1) {
|
2020-10-16 05:37:12 +03:00
|
|
|
do_log2(id->userprovided ?
|
|
|
|
SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_DEBUG3,
|
|
|
|
"no such identity: %s: %s", id->filename, strerror(errno));
|
2001-03-10 20:08:59 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-01-14 23:05:27 +03:00
|
|
|
snprintf(prompt, sizeof prompt,
|
2015-11-16 01:26:49 +03:00
|
|
|
"Enter passphrase for key '%.100s': ", id->filename);
|
2015-01-14 23:05:27 +03:00
|
|
|
for (i = 0; i <= options.number_of_password_prompts; i++) {
|
|
|
|
if (i == 0)
|
|
|
|
passphrase = "";
|
|
|
|
else {
|
2000-09-23 10:15:56 +04:00
|
|
|
passphrase = read_passphrase(prompt, 0);
|
2015-01-14 23:05:27 +03:00
|
|
|
if (*passphrase == '\0') {
|
2000-09-23 10:15:56 +04:00
|
|
|
debug2("no passphrase given, try next key");
|
2015-01-14 23:05:27 +03:00
|
|
|
free(passphrase);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-11-16 01:26:49 +03:00
|
|
|
switch ((r = sshkey_load_private_type(KEY_UNSPEC, id->filename,
|
2019-08-05 14:50:33 +03:00
|
|
|
passphrase, &private, &comment))) {
|
2015-01-14 23:05:27 +03:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case SSH_ERR_KEY_WRONG_PASSPHRASE:
|
|
|
|
if (options.batch_mode) {
|
|
|
|
quit = 1;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-15 14:04:36 +03:00
|
|
|
if (i != 0)
|
|
|
|
debug2("bad passphrase given, try again...");
|
2015-01-14 23:05:27 +03:00
|
|
|
break;
|
|
|
|
case SSH_ERR_SYSTEM_ERROR:
|
|
|
|
if (errno == ENOENT) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug2_r(r, "Load key \"%s\"", id->filename);
|
2001-03-09 03:12:22 +03:00
|
|
|
quit = 1;
|
2015-01-14 23:05:27 +03:00
|
|
|
break;
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
2015-01-14 23:05:27 +03:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
default:
|
2020-10-18 14:32:01 +03:00
|
|
|
error_r(r, "Load key \"%s\"", id->filename);
|
2015-01-14 23:05:27 +03:00
|
|
|
quit = 1;
|
|
|
|
break;
|
|
|
|
}
|
2019-11-12 22:33:08 +03:00
|
|
|
if (private != NULL && sshkey_is_sk(private) &&
|
2019-11-01 00:18:28 +03:00
|
|
|
options.sk_provider == NULL) {
|
2020-02-07 01:30:54 +03:00
|
|
|
debug("key \"%s\" is an authenticator-hosted key, "
|
|
|
|
"but no provider specified", id->filename);
|
2019-11-01 00:18:28 +03:00
|
|
|
sshkey_free(private);
|
|
|
|
private = NULL;
|
|
|
|
quit = 1;
|
|
|
|
}
|
2015-12-04 03:24:55 +03:00
|
|
|
if (!quit && private != NULL && id->agent_fd == -1 &&
|
2015-11-16 01:26:49 +03:00
|
|
|
!(id->key && id->isprivate))
|
|
|
|
maybe_add_key_to_agent(id->filename, private, comment,
|
|
|
|
passphrase);
|
2018-07-10 00:03:30 +03:00
|
|
|
if (i > 0)
|
|
|
|
freezero(passphrase, strlen(passphrase));
|
2015-12-10 20:08:40 +03:00
|
|
|
free(comment);
|
2015-01-14 23:05:27 +03:00
|
|
|
if (private != NULL || quit)
|
|
|
|
break;
|
2000-07-21 04:19:44 +04:00
|
|
|
}
|
2001-03-09 03:12:22 +03:00
|
|
|
return private;
|
|
|
|
}
|
|
|
|
|
2018-07-03 14:39:54 +03:00
|
|
|
static int
|
|
|
|
key_type_allowed_by_config(struct sshkey *key)
|
|
|
|
{
|
|
|
|
if (match_pattern_list(sshkey_ssh_name(key),
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, 0) == 1)
|
2018-07-03 14:39:54 +03:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* RSA keys/certs might be allowed by alternate signature types */
|
|
|
|
switch (key->type) {
|
|
|
|
case KEY_RSA:
|
|
|
|
if (match_pattern_list("rsa-sha2-512",
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, 0) == 1)
|
2018-07-03 14:39:54 +03:00
|
|
|
return 1;
|
|
|
|
if (match_pattern_list("rsa-sha2-256",
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, 0) == 1)
|
2018-07-03 14:39:54 +03:00
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
case KEY_RSA_CERT:
|
|
|
|
if (match_pattern_list("rsa-sha2-512-cert-v01@openssh.com",
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, 0) == 1)
|
2018-07-03 14:39:54 +03:00
|
|
|
return 1;
|
|
|
|
if (match_pattern_list("rsa-sha2-256-cert-v01@openssh.com",
|
2021-01-22 05:44:58 +03:00
|
|
|
options.pubkey_accepted_algos, 0) == 1)
|
2018-07-03 14:39:54 +03:00
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-14 07:46:00 +04:00
|
|
|
/*
|
|
|
|
* try keys in the following order:
|
2020-10-29 05:52:43 +03:00
|
|
|
* 1. certificates listed in the config file
|
|
|
|
* 2. other input certificates
|
2015-09-24 09:15:11 +03:00
|
|
|
* 3. agent keys that are found in the config file
|
|
|
|
* 4. other agent keys
|
|
|
|
* 5. keys that are only listed in the config file
|
2003-05-14 07:46:00 +04:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pubkey_prepare(Authctxt *authctxt)
|
2001-03-09 03:12:22 +03:00
|
|
|
{
|
2015-01-14 23:05:27 +03:00
|
|
|
struct identity *id, *id2, *tmp;
|
|
|
|
struct idlist agent, files, *preferred;
|
|
|
|
struct sshkey *key;
|
2015-12-04 03:24:55 +03:00
|
|
|
int agent_fd = -1, i, r, found;
|
2015-01-14 23:05:27 +03:00
|
|
|
size_t j;
|
|
|
|
struct ssh_identitylist *idlist;
|
2018-09-14 08:26:27 +03:00
|
|
|
char *ident;
|
2003-05-14 07:46:00 +04:00
|
|
|
|
|
|
|
TAILQ_INIT(&agent); /* keys from the agent */
|
|
|
|
TAILQ_INIT(&files); /* keys from the config file */
|
|
|
|
preferred = &authctxt->keys;
|
|
|
|
TAILQ_INIT(preferred); /* preferred order of keys */
|
|
|
|
|
2012-12-03 02:49:52 +04:00
|
|
|
/* list of keys stored in the filesystem and PKCS#11 */
|
2003-05-14 07:46:00 +04:00
|
|
|
for (i = 0; i < options.num_identity_files; i++) {
|
|
|
|
key = options.identity_keys[i];
|
2019-11-01 00:18:28 +03:00
|
|
|
if (key && key->cert &&
|
|
|
|
key->cert->type != SSH2_CERT_TYPE_USER) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("ignoring certificate %s: not a user "
|
|
|
|
"certificate", options.identity_files[i]);
|
2019-11-01 00:18:28 +03:00
|
|
|
continue;
|
|
|
|
}
|
2019-11-12 22:33:08 +03:00
|
|
|
if (key && sshkey_is_sk(key) && options.sk_provider == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("ignoring authenticator-hosted key %s as no "
|
2019-11-01 00:18:28 +03:00
|
|
|
"SecurityKeyProvider has been specified",
|
2020-10-18 14:32:01 +03:00
|
|
|
options.identity_files[i]);
|
2010-02-26 23:55:05 +03:00
|
|
|
continue;
|
2019-11-01 00:18:28 +03:00
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
options.identity_keys[i] = NULL;
|
2006-03-26 07:19:21 +04:00
|
|
|
id = xcalloc(1, sizeof(*id));
|
2015-12-04 03:24:55 +03:00
|
|
|
id->agent_fd = -1;
|
2003-05-14 07:46:00 +04:00
|
|
|
id->key = key;
|
|
|
|
id->filename = xstrdup(options.identity_files[i]);
|
2013-04-05 04:13:08 +04:00
|
|
|
id->userprovided = options.identity_file_userprovided[i];
|
2003-05-14 07:46:00 +04:00
|
|
|
TAILQ_INSERT_TAIL(&files, id, next);
|
|
|
|
}
|
2015-09-24 09:15:11 +03:00
|
|
|
/* list of certificates specified by user */
|
|
|
|
for (i = 0; i < options.num_certificate_files; i++) {
|
|
|
|
key = options.certificates[i];
|
2018-07-10 00:03:30 +03:00
|
|
|
if (!sshkey_is_cert(key) || key->cert == NULL ||
|
2019-11-01 00:18:28 +03:00
|
|
|
key->cert->type != SSH2_CERT_TYPE_USER) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("ignoring certificate %s: not a user "
|
|
|
|
"certificate", options.identity_files[i]);
|
2015-09-24 09:15:11 +03:00
|
|
|
continue;
|
2019-11-01 00:18:28 +03:00
|
|
|
}
|
2019-11-12 22:33:08 +03:00
|
|
|
if (key && sshkey_is_sk(key) && options.sk_provider == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("ignoring authenticator-hosted key "
|
2020-02-07 01:30:54 +03:00
|
|
|
"certificate %s as no "
|
2019-11-01 00:18:28 +03:00
|
|
|
"SecurityKeyProvider has been specified",
|
2020-10-18 14:32:01 +03:00
|
|
|
options.identity_files[i]);
|
2019-11-01 00:18:28 +03:00
|
|
|
continue;
|
|
|
|
}
|
2015-09-24 09:15:11 +03:00
|
|
|
id = xcalloc(1, sizeof(*id));
|
2015-12-04 03:24:55 +03:00
|
|
|
id->agent_fd = -1;
|
2015-09-24 09:15:11 +03:00
|
|
|
id->key = key;
|
|
|
|
id->filename = xstrdup(options.certificate_files[i]);
|
|
|
|
id->userprovided = options.certificate_file_userprovided[i];
|
|
|
|
TAILQ_INSERT_TAIL(preferred, id, next);
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
/* list of keys supported by the agent */
|
2015-01-14 23:05:27 +03:00
|
|
|
if ((r = ssh_get_authentication_socket(&agent_fd)) != 0) {
|
|
|
|
if (r != SSH_ERR_AGENT_NOT_PRESENT)
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_fr(r, "ssh_get_authentication_socket");
|
2017-05-05 13:42:49 +03:00
|
|
|
} else if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) {
|
2015-01-14 23:05:27 +03:00
|
|
|
if (r != SSH_ERR_AGENT_NO_IDENTITIES)
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_fr(r, "ssh_fetch_identitylist");
|
2016-01-15 01:56:56 +03:00
|
|
|
close(agent_fd);
|
2015-01-14 23:05:27 +03:00
|
|
|
} else {
|
|
|
|
for (j = 0; j < idlist->nkeys; j++) {
|
2003-05-14 07:46:00 +04:00
|
|
|
found = 0;
|
|
|
|
TAILQ_FOREACH(id, &files, next) {
|
2015-01-14 23:05:27 +03:00
|
|
|
/*
|
|
|
|
* agent keys from the config file are
|
|
|
|
* preferred
|
|
|
|
*/
|
|
|
|
if (sshkey_equal(idlist->keys[j], id->key)) {
|
2003-05-14 07:46:00 +04:00
|
|
|
TAILQ_REMOVE(&files, id, next);
|
|
|
|
TAILQ_INSERT_TAIL(preferred, id, next);
|
2015-01-14 23:05:27 +03:00
|
|
|
id->agent_fd = agent_fd;
|
2003-05-14 07:46:00 +04:00
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-03-08 15:12:36 +03:00
|
|
|
if (!found && !options.identities_only) {
|
2006-03-26 07:19:21 +04:00
|
|
|
id = xcalloc(1, sizeof(*id));
|
2015-01-14 23:05:27 +03:00
|
|
|
/* XXX "steals" key/comment from idlist */
|
|
|
|
id->key = idlist->keys[j];
|
|
|
|
id->filename = idlist->comments[j];
|
|
|
|
idlist->keys[j] = NULL;
|
|
|
|
idlist->comments[j] = NULL;
|
|
|
|
id->agent_fd = agent_fd;
|
2003-05-14 07:46:00 +04:00
|
|
|
TAILQ_INSERT_TAIL(&agent, id, next);
|
|
|
|
}
|
|
|
|
}
|
2015-01-14 23:05:27 +03:00
|
|
|
ssh_free_identitylist(idlist);
|
2003-05-14 07:46:00 +04:00
|
|
|
/* append remaining agent keys */
|
2020-06-27 16:39:09 +03:00
|
|
|
TAILQ_CONCAT(preferred, &agent, next);
|
2015-01-14 23:05:27 +03:00
|
|
|
authctxt->agent_fd = agent_fd;
|
2003-05-14 07:46:00 +04:00
|
|
|
}
|
2016-05-24 02:30:50 +03:00
|
|
|
/* Prefer PKCS11 keys that are explicitly listed */
|
|
|
|
TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
|
|
|
|
if (id->key == NULL || (id->key->flags & SSHKEY_FLAG_EXT) == 0)
|
|
|
|
continue;
|
|
|
|
found = 0;
|
|
|
|
TAILQ_FOREACH(id2, &files, next) {
|
|
|
|
if (id2->key == NULL ||
|
2020-04-17 06:38:47 +03:00
|
|
|
(id2->key->flags & SSHKEY_FLAG_EXT) != 0)
|
2016-05-24 02:30:50 +03:00
|
|
|
continue;
|
|
|
|
if (sshkey_equal(id->key, id2->key)) {
|
|
|
|
TAILQ_REMOVE(&files, id, next);
|
|
|
|
TAILQ_INSERT_TAIL(preferred, id, next);
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If IdentitiesOnly set and key not found then don't use it */
|
|
|
|
if (!found && options.identities_only) {
|
|
|
|
TAILQ_REMOVE(&files, id, next);
|
2018-07-10 00:03:30 +03:00
|
|
|
freezero(id, sizeof(*id));
|
2016-05-24 02:30:50 +03:00
|
|
|
}
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
/* append remaining keys from the config file */
|
2020-06-27 16:39:09 +03:00
|
|
|
TAILQ_CONCAT(preferred, &files, next);
|
2021-01-22 05:44:58 +03:00
|
|
|
/* finally, filter by PubkeyAcceptedAlgorithms */
|
2015-10-13 19:15:21 +03:00
|
|
|
TAILQ_FOREACH_SAFE(id, preferred, next, id2) {
|
2018-07-03 16:07:58 +03:00
|
|
|
if (id->key != NULL && !key_type_allowed_by_config(id->key)) {
|
2015-10-13 19:15:21 +03:00
|
|
|
debug("Skipping %s key %s - "
|
2021-01-22 05:44:58 +03:00
|
|
|
"corresponding algo not in PubkeyAcceptedAlgorithms",
|
2015-10-13 19:15:21 +03:00
|
|
|
sshkey_ssh_name(id->key), id->filename);
|
|
|
|
TAILQ_REMOVE(preferred, id, next);
|
|
|
|
sshkey_free(id->key);
|
|
|
|
free(id->filename);
|
|
|
|
memset(id, 0, sizeof(*id));
|
|
|
|
continue;
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
}
|
2018-09-14 08:26:27 +03:00
|
|
|
/* List the keys we plan on using */
|
|
|
|
TAILQ_FOREACH_SAFE(id, preferred, next, id2) {
|
|
|
|
ident = format_identity(id);
|
|
|
|
debug("Will attempt key: %s", ident);
|
|
|
|
free(ident);
|
|
|
|
}
|
2020-10-18 14:32:01 +03:00
|
|
|
debug2_f("done");
|
2001-03-09 03:12:22 +03:00
|
|
|
}
|
|
|
|
|
2003-05-14 07:46:00 +04:00
|
|
|
static void
|
2019-02-13 02:53:10 +03:00
|
|
|
pubkey_cleanup(struct ssh *ssh)
|
2000-08-23 04:46:23 +04:00
|
|
|
{
|
2019-02-11 12:44:42 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2003-05-14 07:46:00 +04:00
|
|
|
Identity *id;
|
|
|
|
|
2018-11-16 05:46:20 +03:00
|
|
|
if (authctxt->agent_fd != -1) {
|
2015-01-14 23:05:27 +03:00
|
|
|
ssh_close_authentication_socket(authctxt->agent_fd);
|
2018-11-16 05:46:20 +03:00
|
|
|
authctxt->agent_fd = -1;
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
for (id = TAILQ_FIRST(&authctxt->keys); id;
|
|
|
|
id = TAILQ_FIRST(&authctxt->keys)) {
|
|
|
|
TAILQ_REMOVE(&authctxt->keys, id, next);
|
2015-12-11 05:31:47 +03:00
|
|
|
sshkey_free(id->key);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(id->filename);
|
|
|
|
free(id);
|
2000-08-23 04:46:23 +04:00
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
}
|
|
|
|
|
2016-12-05 02:54:02 +03:00
|
|
|
static void
|
|
|
|
pubkey_reset(Authctxt *authctxt)
|
|
|
|
{
|
|
|
|
Identity *id;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(id, &authctxt->keys, next)
|
|
|
|
id->tried = 0;
|
|
|
|
}
|
|
|
|
|
2015-07-10 09:21:53 +03:00
|
|
|
static int
|
2021-01-27 12:26:53 +03:00
|
|
|
try_identity(struct ssh *ssh, Identity *id)
|
2015-07-10 09:21:53 +03:00
|
|
|
{
|
|
|
|
if (!id->key)
|
|
|
|
return (0);
|
2018-07-11 21:53:29 +03:00
|
|
|
if (sshkey_type_plain(id->key->type) == KEY_RSA &&
|
2021-01-27 12:26:53 +03:00
|
|
|
(ssh->compat & SSH_BUG_RSASIGMD5) != 0) {
|
2015-07-10 09:21:53 +03:00
|
|
|
debug("Skipped %s key %s for RSA/MD5 server",
|
2018-07-11 21:53:29 +03:00
|
|
|
sshkey_type(id->key), id->filename);
|
2015-07-10 09:21:53 +03:00
|
|
|
return (0);
|
|
|
|
}
|
2017-05-01 02:18:44 +03:00
|
|
|
return 1;
|
2015-07-10 09:21:53 +03:00
|
|
|
}
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_pubkey(struct ssh *ssh)
|
2000-04-29 17:57:08 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2003-05-14 07:46:00 +04:00
|
|
|
Identity *id;
|
2000-09-23 10:15:56 +04:00
|
|
|
int sent = 0;
|
2018-09-14 08:26:27 +03:00
|
|
|
char *ident;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2003-05-14 07:46:00 +04:00
|
|
|
while ((id = TAILQ_FIRST(&authctxt->keys))) {
|
|
|
|
if (id->tried++)
|
|
|
|
return (0);
|
2003-10-15 09:55:59 +04:00
|
|
|
/* move key to the end of the queue */
|
2003-05-14 07:46:00 +04:00
|
|
|
TAILQ_REMOVE(&authctxt->keys, id, next);
|
|
|
|
TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
|
|
|
|
/*
|
|
|
|
* send a test message if we have the public key. for
|
|
|
|
* encrypted keys we cannot do this and have to load the
|
|
|
|
* private key instead
|
|
|
|
*/
|
2013-12-31 05:25:40 +04:00
|
|
|
if (id->key != NULL) {
|
2021-01-27 12:26:53 +03:00
|
|
|
if (try_identity(ssh, id)) {
|
2018-09-14 08:26:27 +03:00
|
|
|
ident = format_identity(id);
|
|
|
|
debug("Offering public key: %s", ident);
|
|
|
|
free(ident);
|
2019-01-20 00:40:21 +03:00
|
|
|
sent = send_pubkey_test(ssh, id);
|
2013-12-31 05:25:40 +04:00
|
|
|
}
|
|
|
|
} else {
|
2003-05-14 07:46:00 +04:00
|
|
|
debug("Trying private key: %s", id->filename);
|
2015-11-16 01:26:49 +03:00
|
|
|
id->key = load_identity_file(id);
|
2003-05-14 07:46:00 +04:00
|
|
|
if (id->key != NULL) {
|
2021-01-27 12:26:53 +03:00
|
|
|
if (try_identity(ssh, id)) {
|
2015-07-10 09:21:53 +03:00
|
|
|
id->isprivate = 1;
|
2019-01-20 00:40:21 +03:00
|
|
|
sent = sign_and_send_pubkey(ssh, id);
|
2013-12-31 05:25:40 +04:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
sshkey_free(id->key);
|
2003-05-14 07:46:00 +04:00
|
|
|
id->key = NULL;
|
2016-12-05 02:54:02 +03:00
|
|
|
id->isprivate = 0;
|
2001-03-09 03:12:22 +03:00
|
|
|
}
|
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
if (sent)
|
|
|
|
return (sent);
|
2000-11-13 14:57:25 +03:00
|
|
|
}
|
2003-05-14 07:46:00 +04:00
|
|
|
return (0);
|
2000-09-23 10:15:56 +04:00
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2000-10-14 09:23:11 +04:00
|
|
|
/*
|
|
|
|
* Send userauth request message specifying keyboard-interactive method.
|
|
|
|
*/
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_kbdint(struct ssh *ssh)
|
2000-10-14 09:23:11 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2019-01-04 06:27:50 +03:00
|
|
|
if (authctxt->attempt_kbdint++ >= options.number_of_password_prompts)
|
2000-10-14 09:23:11 +04:00
|
|
|
return 0;
|
2001-09-12 22:29:00 +04:00
|
|
|
/* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
|
2019-01-04 06:27:50 +03:00
|
|
|
if (authctxt->attempt_kbdint > 1 && !authctxt->info_req_seen) {
|
2001-09-12 22:29:00 +04:00
|
|
|
debug3("userauth_kbdint: disable: no info_req_seen");
|
2018-07-10 00:03:30 +03:00
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
|
2001-09-12 22:29:00 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2000-10-14 09:23:11 +04:00
|
|
|
|
|
|
|
debug2("userauth_kbdint");
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, "")) != 0 || /* lang */
|
|
|
|
(r = sshpkt_put_cstring(ssh, options.kbd_interactive_devices ?
|
|
|
|
options.kbd_interactive_devices : "")) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "send packet");
|
2018-07-10 00:03:30 +03:00
|
|
|
|
|
|
|
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
|
2000-10-14 09:23:11 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-11 01:16:41 +03:00
|
|
|
* parse INFO_REQUEST, prompt user and send INFO_RESPONSE
|
2000-10-14 09:23:11 +04:00
|
|
|
*/
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2017-05-30 17:23:52 +03:00
|
|
|
input_userauth_info_req(int type, u_int32_t seq, struct ssh *ssh)
|
2000-10-14 09:23:11 +04:00
|
|
|
{
|
2017-05-30 17:19:15 +03:00
|
|
|
Authctxt *authctxt = ssh->authctxt;
|
2018-07-10 00:03:30 +03:00
|
|
|
char *name = NULL, *inst = NULL, *lang = NULL, *prompt = NULL;
|
2020-11-13 07:53:12 +03:00
|
|
|
char *display_prompt = NULL, *response = NULL;
|
2018-07-10 00:03:30 +03:00
|
|
|
u_char echo = 0;
|
2000-12-22 04:43:59 +03:00
|
|
|
u_int num_prompts, i;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2020-11-13 07:53:12 +03:00
|
|
|
debug2_f("entering");
|
2000-10-14 09:23:11 +04:00
|
|
|
|
|
|
|
if (authctxt == NULL)
|
2020-11-13 07:53:12 +03:00
|
|
|
fatal_f("no authentication context");
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2001-09-12 22:29:00 +04:00
|
|
|
authctxt->info_req_seen = 1;
|
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &name, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &inst, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0)
|
|
|
|
goto out;
|
2000-10-14 09:23:11 +04:00
|
|
|
if (strlen(name) > 0)
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("%s", name);
|
2000-10-14 09:23:11 +04:00
|
|
|
if (strlen(inst) > 0)
|
2003-04-09 14:59:48 +04:00
|
|
|
logit("%s", inst);
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_u32(ssh, &num_prompts)) != 0)
|
|
|
|
goto out;
|
2000-10-14 09:23:11 +04:00
|
|
|
/*
|
|
|
|
* Begin to build info response packet based on prompts requested.
|
|
|
|
* We commit to providing the correct number of responses, so if
|
|
|
|
* further on we run into a problem that prevents this, we have to
|
|
|
|
* be sure and clean this up and send a correct error response.
|
|
|
|
*/
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_INFO_RESPONSE)) != 0 ||
|
|
|
|
(r = sshpkt_put_u32(ssh, num_prompts)) != 0)
|
|
|
|
goto out;
|
2000-10-14 09:23:11 +04:00
|
|
|
|
2020-11-13 07:53:12 +03:00
|
|
|
debug2_f("num_prompts %d", num_prompts);
|
2000-10-14 09:23:11 +04:00
|
|
|
for (i = 0; i < num_prompts; i++) {
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_get_cstring(ssh, &prompt, NULL)) != 0 ||
|
|
|
|
(r = sshpkt_get_u8(ssh, &echo)) != 0)
|
|
|
|
goto out;
|
2020-11-13 10:30:44 +03:00
|
|
|
if (asmprintf(&display_prompt, INT_MAX, NULL, "(%s@%s) %s",
|
2020-11-13 07:53:12 +03:00
|
|
|
authctxt->server_user, options.host_key_alias ?
|
2020-11-13 10:30:44 +03:00
|
|
|
options.host_key_alias : authctxt->host, prompt) == -1)
|
|
|
|
fatal_f("asmprintf failed");
|
2020-11-13 07:53:12 +03:00
|
|
|
response = read_passphrase(display_prompt, echo ? RP_ECHO : 0);
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshpkt_put_cstring(ssh, response)) != 0)
|
|
|
|
goto out;
|
|
|
|
freezero(response, strlen(response));
|
2013-06-02 01:31:17 +04:00
|
|
|
free(prompt);
|
2020-11-13 07:53:12 +03:00
|
|
|
free(display_prompt);
|
|
|
|
display_prompt = response = prompt = NULL;
|
2000-10-14 09:23:11 +04:00
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
/* done with parsing incoming message. */
|
|
|
|
if ((r = sshpkt_get_end(ssh)) != 0 ||
|
|
|
|
(r = sshpkt_add_padding(ssh, 64)) != 0)
|
|
|
|
goto out;
|
|
|
|
r = sshpkt_send(ssh);
|
|
|
|
out:
|
|
|
|
if (response)
|
|
|
|
freezero(response, strlen(response));
|
|
|
|
free(prompt);
|
2020-11-13 07:53:12 +03:00
|
|
|
free(display_prompt);
|
2018-07-10 00:03:30 +03:00
|
|
|
free(name);
|
|
|
|
free(inst);
|
|
|
|
free(lang);
|
|
|
|
return r;
|
2000-10-14 09:23:11 +04:00
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2002-06-06 23:57:33 +04:00
|
|
|
static int
|
2019-01-20 00:34:45 +03:00
|
|
|
ssh_keysign(struct ssh *ssh, struct sshkey *key, u_char **sigp, size_t *lenp,
|
2015-01-30 14:43:14 +03:00
|
|
|
const u_char *data, size_t datalen)
|
2002-06-06 23:57:33 +04:00
|
|
|
{
|
2015-01-30 14:43:14 +03:00
|
|
|
struct sshbuf *b;
|
2002-06-06 23:59:29 +04:00
|
|
|
struct stat st;
|
2002-06-06 23:57:33 +04:00
|
|
|
pid_t pid;
|
2019-05-15 07:43:31 +03:00
|
|
|
int r, to[2], from[2], status;
|
2019-01-20 00:40:21 +03:00
|
|
|
int sock = ssh_packet_get_connection_in(ssh);
|
2015-01-30 14:43:14 +03:00
|
|
|
u_char rversion = 0, version = 2;
|
|
|
|
void (*osigchld)(int);
|
2002-06-06 23:57:33 +04:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
*sigp = NULL;
|
|
|
|
*lenp = 0;
|
2002-06-06 23:57:33 +04:00
|
|
|
|
2019-06-28 16:35:04 +03:00
|
|
|
if (stat(_PATH_SSH_KEY_SIGN, &st) == -1) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("not installed: %s", strerror(errno));
|
2015-01-30 14:43:14 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (fflush(stdout) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("fflush: %s", strerror(errno));
|
2002-06-06 23:59:29 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-28 16:35:04 +03:00
|
|
|
if (pipe(to) == -1) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("pipe: %s", strerror(errno));
|
2002-06-06 23:57:33 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-28 16:35:04 +03:00
|
|
|
if (pipe(from) == -1) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("pipe: %s", strerror(errno));
|
2002-06-06 23:57:33 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-28 16:35:04 +03:00
|
|
|
if ((pid = fork()) == -1) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("fork: %s", strerror(errno));
|
2002-06-06 23:57:33 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2020-01-23 10:10:22 +03:00
|
|
|
osigchld = ssh_signal(SIGCHLD, SIG_DFL);
|
2002-06-06 23:57:33 +04:00
|
|
|
if (pid == 0) {
|
|
|
|
close(from[0]);
|
2019-06-28 16:35:04 +03:00
|
|
|
if (dup2(from[1], STDOUT_FILENO) == -1)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("dup2: %s", strerror(errno));
|
2002-06-06 23:57:33 +04:00
|
|
|
close(to[1]);
|
2019-06-28 16:35:04 +03:00
|
|
|
if (dup2(to[0], STDIN_FILENO) == -1)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("dup2: %s", strerror(errno));
|
2002-06-07 00:51:04 +04:00
|
|
|
close(from[1]);
|
|
|
|
close(to[0]);
|
2019-05-15 07:43:31 +03:00
|
|
|
|
2019-06-28 16:35:04 +03:00
|
|
|
if (dup2(sock, STDERR_FILENO + 1) == -1)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("dup2: %s", strerror(errno));
|
2019-05-15 07:43:31 +03:00
|
|
|
sock = STDERR_FILENO + 1;
|
|
|
|
fcntl(sock, F_SETFD, 0); /* keep the socket on exec */
|
2015-01-30 14:43:14 +03:00
|
|
|
closefrom(sock + 1);
|
2019-05-15 07:43:31 +03:00
|
|
|
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("[child] pid=%ld, exec %s",
|
|
|
|
(long)getpid(), _PATH_SSH_KEY_SIGN);
|
2015-12-11 03:20:04 +03:00
|
|
|
execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("exec(%s): %s", _PATH_SSH_KEY_SIGN,
|
2002-06-06 23:57:33 +04:00
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
close(from[1]);
|
|
|
|
close(to[0]);
|
2019-05-31 06:20:07 +03:00
|
|
|
sock = STDERR_FILENO + 1;
|
2002-06-06 23:57:33 +04:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
if ((b = sshbuf_new()) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_new failed");
|
2015-01-30 14:43:14 +03:00
|
|
|
/* send # of sock, data to be signed */
|
2017-01-30 03:32:28 +03:00
|
|
|
if ((r = sshbuf_put_u32(b, sock)) != 0 ||
|
2015-01-30 14:43:14 +03:00
|
|
|
(r = sshbuf_put_string(b, data, datalen)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "buffer error");
|
2015-01-30 14:43:14 +03:00
|
|
|
if (ssh_msg_send(to[1], version, b) == -1)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("couldn't send request");
|
2015-01-30 14:43:14 +03:00
|
|
|
sshbuf_reset(b);
|
|
|
|
r = ssh_msg_recv(from[0], b);
|
2002-06-06 23:57:33 +04:00
|
|
|
close(from[0]);
|
|
|
|
close(to[1]);
|
2015-01-30 14:43:14 +03:00
|
|
|
if (r < 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("no reply");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
2002-06-06 23:57:33 +04:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
errno = 0;
|
2019-06-28 16:35:04 +03:00
|
|
|
while (waitpid(pid, &status, 0) == -1) {
|
2015-01-30 14:43:14 +03:00
|
|
|
if (errno != EINTR) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("waitpid %ld: %s", (long)pid, strerror(errno));
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!WIFEXITED(status)) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("exited abnormally");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (WEXITSTATUS(status) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("exited with status %d", WEXITSTATUS(status));
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if ((r = sshbuf_get_u8(b, &rversion)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "buffer error");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (rversion != version) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("bad version");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if ((r = sshbuf_get_string(b, sigp, lenp)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "buffer error");
|
2015-01-30 14:43:14 +03:00
|
|
|
fail:
|
2020-01-23 10:10:22 +03:00
|
|
|
ssh_signal(SIGCHLD, osigchld);
|
2015-01-30 14:43:14 +03:00
|
|
|
sshbuf_free(b);
|
2002-06-06 23:59:29 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2020-01-23 10:10:22 +03:00
|
|
|
ssh_signal(SIGCHLD, osigchld);
|
2015-01-30 14:43:14 +03:00
|
|
|
sshbuf_free(b);
|
2002-06-06 23:59:29 +04:00
|
|
|
|
2002-06-06 23:57:33 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-02-11 12:44:42 +03:00
|
|
|
static int
|
2019-01-20 00:40:21 +03:00
|
|
|
userauth_hostbased(struct ssh *ssh)
|
2001-04-13 03:34:34 +04:00
|
|
|
{
|
2019-01-20 00:40:21 +03:00
|
|
|
Authctxt *authctxt = (Authctxt *)ssh->authctxt;
|
2015-01-30 14:43:14 +03:00
|
|
|
struct sshkey *private = NULL;
|
|
|
|
struct sshbuf *b = NULL;
|
|
|
|
u_char *sig = NULL, *keyblob = NULL;
|
|
|
|
char *fp = NULL, *chost = NULL, *lname = NULL;
|
|
|
|
size_t siglen = 0, keylen = 0;
|
|
|
|
int i, r, success = 0;
|
|
|
|
|
|
|
|
if (authctxt->ktypes == NULL) {
|
2021-01-26 08:32:21 +03:00
|
|
|
authctxt->oktypes = xstrdup(options.hostbased_accepted_algos);
|
2015-01-30 14:43:14 +03:00
|
|
|
authctxt->ktypes = authctxt->oktypes;
|
|
|
|
}
|
2015-01-08 13:14:08 +03:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
/*
|
2021-01-26 08:32:21 +03:00
|
|
|
* Work through each listed type pattern in HostbasedAcceptedAlgorithms,
|
2015-01-30 14:43:14 +03:00
|
|
|
* trying each hostkey that matches the type in turn.
|
|
|
|
*/
|
|
|
|
for (;;) {
|
|
|
|
if (authctxt->active_ktype == NULL)
|
|
|
|
authctxt->active_ktype = strsep(&authctxt->ktypes, ",");
|
|
|
|
if (authctxt->active_ktype == NULL ||
|
|
|
|
*authctxt->active_ktype == '\0')
|
|
|
|
break;
|
2020-10-18 14:32:01 +03:00
|
|
|
debug3_f("trying key type %s", authctxt->active_ktype);
|
2015-01-30 14:43:14 +03:00
|
|
|
|
|
|
|
/* check for a useful key */
|
|
|
|
private = NULL;
|
|
|
|
for (i = 0; i < authctxt->sensitive->nkeys; i++) {
|
|
|
|
if (authctxt->sensitive->keys[i] == NULL ||
|
|
|
|
authctxt->sensitive->keys[i]->type == KEY_UNSPEC)
|
|
|
|
continue;
|
|
|
|
if (match_pattern_list(
|
|
|
|
sshkey_ssh_name(authctxt->sensitive->keys[i]),
|
2015-05-04 09:10:48 +03:00
|
|
|
authctxt->active_ktype, 0) != 1)
|
2015-01-30 14:43:14 +03:00
|
|
|
continue;
|
2001-04-13 03:34:34 +04:00
|
|
|
/* we take and free the key */
|
2015-01-30 14:43:14 +03:00
|
|
|
private = authctxt->sensitive->keys[i];
|
|
|
|
authctxt->sensitive->keys[i] = NULL;
|
2001-04-13 03:34:34 +04:00
|
|
|
break;
|
|
|
|
}
|
2015-01-30 14:43:14 +03:00
|
|
|
/* Found one */
|
|
|
|
if (private != NULL)
|
|
|
|
break;
|
|
|
|
/* No more keys of this type; advance */
|
|
|
|
authctxt->active_ktype = NULL;
|
2001-04-13 03:34:34 +04:00
|
|
|
}
|
2015-01-30 14:43:14 +03:00
|
|
|
if (private == NULL) {
|
|
|
|
free(authctxt->oktypes);
|
|
|
|
authctxt->oktypes = authctxt->ktypes = NULL;
|
|
|
|
authctxt->active_ktype = NULL;
|
2002-12-23 05:44:36 +03:00
|
|
|
debug("No more client hostkeys for hostbased authentication.");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
2001-04-13 03:34:34 +04:00
|
|
|
}
|
2014-12-11 08:13:28 +03:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
if ((fp = sshkey_fingerprint(private, options.fingerprint_hash,
|
|
|
|
SSH_FP_DEFAULT)) == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("sshkey_fingerprint failed");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
2001-04-13 03:34:34 +04:00
|
|
|
}
|
2020-10-18 14:32:01 +03:00
|
|
|
debug_f("trying hostkey %s %s", sshkey_ssh_name(private), fp);
|
2014-12-11 08:13:28 +03:00
|
|
|
|
2001-11-12 03:02:03 +03:00
|
|
|
/* figure out a name for the client host */
|
2019-01-20 00:40:21 +03:00
|
|
|
lname = get_local_name(ssh_packet_get_connection_in(ssh));
|
|
|
|
if (lname == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("cannot get local ipaddr/name");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
2001-11-12 03:02:03 +03:00
|
|
|
}
|
2015-01-30 14:43:14 +03:00
|
|
|
|
|
|
|
/* XXX sshbuf_put_stringf? */
|
|
|
|
xasprintf(&chost, "%s.", lname);
|
2020-10-18 14:32:01 +03:00
|
|
|
debug2_f("chost %s", chost);
|
2001-11-12 03:02:03 +03:00
|
|
|
|
2001-04-13 03:34:34 +04:00
|
|
|
/* construct data */
|
2015-01-30 14:43:14 +03:00
|
|
|
if ((b = sshbuf_new()) == NULL) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_f("sshbuf_new failed");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "sshkey_to_blob");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
|
|
|
}
|
2021-01-27 13:05:28 +03:00
|
|
|
if ((r = sshbuf_put_stringb(b, ssh->kex->session_id)) != 0 ||
|
2015-01-30 14:43:14 +03:00
|
|
|
(r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 ||
|
2018-01-23 08:27:21 +03:00
|
|
|
(r = sshbuf_put_cstring(b, authctxt->service)) != 0 ||
|
2015-01-30 14:43:14 +03:00
|
|
|
(r = sshbuf_put_cstring(b, authctxt->method->name)) != 0 ||
|
2021-01-25 09:00:17 +03:00
|
|
|
(r = sshbuf_put_cstring(b, authctxt->active_ktype)) != 0 ||
|
2015-01-30 14:43:14 +03:00
|
|
|
(r = sshbuf_put_string(b, keyblob, keylen)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, chost)) != 0 ||
|
|
|
|
(r = sshbuf_put_cstring(b, authctxt->local_user)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "buffer error");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2001-04-13 03:34:34 +04:00
|
|
|
#ifdef DEBUG_PK
|
2015-01-30 14:43:14 +03:00
|
|
|
sshbuf_dump(b, stderr);
|
2001-04-13 03:34:34 +04:00
|
|
|
#endif
|
2019-01-20 00:34:45 +03:00
|
|
|
if ((r = ssh_keysign(ssh, private, &sig, &siglen,
|
|
|
|
sshbuf_ptr(b), sshbuf_len(b))) != 0) {
|
2015-01-30 14:43:14 +03:00
|
|
|
error("sign using hostkey %s %s failed",
|
|
|
|
sshkey_ssh_name(private), fp);
|
|
|
|
goto out;
|
2001-04-13 03:34:34 +04:00
|
|
|
}
|
2015-01-30 14:43:14 +03:00
|
|
|
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
|
2021-01-25 09:00:17 +03:00
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->active_ktype)) != 0 ||
|
2015-01-30 14:43:14 +03:00
|
|
|
(r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, chost)) != 0 ||
|
|
|
|
(r = sshpkt_put_cstring(ssh, authctxt->local_user)) != 0 ||
|
|
|
|
(r = sshpkt_put_string(ssh, sig, siglen)) != 0 ||
|
|
|
|
(r = sshpkt_send(ssh)) != 0) {
|
2020-10-18 14:32:01 +03:00
|
|
|
error_fr(r, "packet error");
|
2015-01-30 14:43:14 +03:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
success = 1;
|
|
|
|
|
|
|
|
out:
|
2018-07-10 00:03:30 +03:00
|
|
|
if (sig != NULL)
|
|
|
|
freezero(sig, siglen);
|
2015-01-30 14:43:14 +03:00
|
|
|
free(keyblob);
|
|
|
|
free(lname);
|
|
|
|
free(fp);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(chost);
|
2015-01-30 14:43:14 +03:00
|
|
|
sshkey_free(private);
|
|
|
|
sshbuf_free(b);
|
2001-04-13 03:34:34 +04:00
|
|
|
|
2015-01-30 14:43:14 +03:00
|
|
|
return success;
|
2001-04-13 03:34:34 +04:00
|
|
|
}
|
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
/* find auth method */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* given auth method name, if configurable options permit this method fill
|
|
|
|
* in auth_ident field and return true, otherwise return false.
|
|
|
|
*/
|
2001-06-25 09:01:22 +04:00
|
|
|
static int
|
2000-09-23 10:15:56 +04:00
|
|
|
authmethod_is_enabled(Authmethod *method)
|
|
|
|
{
|
|
|
|
if (method == NULL)
|
|
|
|
return 0;
|
|
|
|
/* return false if options indicate this method is disabled */
|
|
|
|
if (method->enabled == NULL || *method->enabled == 0)
|
|
|
|
return 0;
|
|
|
|
/* return false if batch mode is enabled but method needs interactive mode */
|
|
|
|
if (method->batch_flag != NULL && *method->batch_flag != 0)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
2000-04-29 17:57:08 +04:00
|
|
|
|
2001-06-25 09:01:22 +04:00
|
|
|
static Authmethod *
|
2000-09-23 10:15:56 +04:00
|
|
|
authmethod_lookup(const char *name)
|
|
|
|
{
|
|
|
|
Authmethod *method = NULL;
|
|
|
|
if (name != NULL)
|
|
|
|
for (method = authmethods; method->name != NULL; method++)
|
|
|
|
if (strcmp(name, method->name) == 0)
|
|
|
|
return method;
|
|
|
|
debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-03-11 04:49:19 +03:00
|
|
|
/* XXX internal state */
|
|
|
|
static Authmethod *current = NULL;
|
|
|
|
static char *supported = NULL;
|
|
|
|
static char *preferred = NULL;
|
2002-06-24 01:23:20 +04:00
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
/*
|
|
|
|
* Given the authentication method list sent by the server, return the
|
|
|
|
* next method we should try. If the server initially sends a nil list,
|
2001-04-06 03:26:32 +04:00
|
|
|
* use a built-in default list.
|
2001-02-05 15:42:17 +03:00
|
|
|
*/
|
2001-06-25 09:01:22 +04:00
|
|
|
static Authmethod *
|
2000-09-23 10:15:56 +04:00
|
|
|
authmethod_get(char *authlist)
|
|
|
|
{
|
2001-03-11 04:49:19 +03:00
|
|
|
char *name = NULL;
|
2002-02-26 21:15:09 +03:00
|
|
|
u_int next;
|
2001-02-05 15:42:17 +03:00
|
|
|
|
2000-09-23 10:15:56 +04:00
|
|
|
/* Use a suitable default if we're passed a nil list. */
|
|
|
|
if (authlist == NULL || strlen(authlist) == 0)
|
2001-03-11 04:49:19 +03:00
|
|
|
authlist = options.preferred_authentications;
|
|
|
|
|
|
|
|
if (supported == NULL || strcmp(authlist, supported) != 0) {
|
|
|
|
debug3("start over, passed a different list %s", authlist);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(supported);
|
2001-03-11 04:49:19 +03:00
|
|
|
supported = xstrdup(authlist);
|
|
|
|
preferred = options.preferred_authentications;
|
|
|
|
debug3("preferred %s", preferred);
|
|
|
|
current = NULL;
|
|
|
|
} else if (current != NULL && authmethod_is_enabled(current))
|
|
|
|
return current;
|
2000-09-23 10:15:56 +04:00
|
|
|
|
2001-03-11 04:49:19 +03:00
|
|
|
for (;;) {
|
|
|
|
if ((name = match_list(preferred, supported, &next)) == NULL) {
|
2002-12-23 05:44:36 +03:00
|
|
|
debug("No more authentication methods to try.");
|
2001-03-11 04:49:19 +03:00
|
|
|
current = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
preferred += next;
|
2000-10-14 09:23:11 +04:00
|
|
|
debug3("authmethod_lookup %s", name);
|
2001-03-11 04:49:19 +03:00
|
|
|
debug3("remaining preferred: %s", preferred);
|
|
|
|
if ((current = authmethod_lookup(name)) != NULL &&
|
|
|
|
authmethod_is_enabled(current)) {
|
2000-10-14 09:23:11 +04:00
|
|
|
debug3("authmethod_is_enabled %s", name);
|
2002-12-23 05:44:36 +03:00
|
|
|
debug("Next authentication method: %s", name);
|
2013-06-02 01:31:17 +04:00
|
|
|
free(name);
|
2001-03-11 04:49:19 +03:00
|
|
|
return current;
|
2000-10-14 09:23:11 +04:00
|
|
|
}
|
2013-06-06 02:22:05 +04:00
|
|
|
free(name);
|
2000-04-29 17:57:08 +04:00
|
|
|
}
|
2001-03-11 04:49:19 +03:00
|
|
|
}
|
2000-10-28 07:19:58 +04:00
|
|
|
|
2001-07-04 07:42:30 +04:00
|
|
|
static char *
|
2001-03-11 04:49:19 +03:00
|
|
|
authmethods_get(void)
|
|
|
|
{
|
|
|
|
Authmethod *method = NULL;
|
2018-07-10 00:03:30 +03:00
|
|
|
struct sshbuf *b;
|
2002-01-22 15:26:38 +03:00
|
|
|
char *list;
|
2018-07-10 00:03:30 +03:00
|
|
|
int r;
|
2001-03-11 04:49:19 +03:00
|
|
|
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((b = sshbuf_new()) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_new failed");
|
2001-03-11 04:49:19 +03:00
|
|
|
for (method = authmethods; method->name != NULL; method++) {
|
|
|
|
if (authmethod_is_enabled(method)) {
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((r = sshbuf_putf(b, "%s%s",
|
|
|
|
sshbuf_len(b) ? "," : "", method->name)) != 0)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_fr(r, "buffer error");
|
2001-03-11 04:49:19 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-10 00:03:30 +03:00
|
|
|
if ((list = sshbuf_dup_string(b)) == NULL)
|
2020-10-18 14:32:01 +03:00
|
|
|
fatal_f("sshbuf_dup_string failed");
|
2018-07-10 00:03:30 +03:00
|
|
|
sshbuf_free(b);
|
2002-01-22 15:26:38 +03:00
|
|
|
return list;
|
2000-04-29 17:57:08 +04:00
|
|
|
}
|