blob: 1cf48a2ee703e89a93d97c7c6ecad393bba88c28 [file] [log] [blame]
djm@openbsd.orgc38905b2016-03-14 16:20:54 +00001/* $OpenBSD: sshconnect2.c,v 1.240 2016/03/14 16:20:54 djm Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Miller01ed2272008-11-05 16:20:46 +11004 * Copyright (c) 2008 Damien Miller. All rights reserved.
Damien Millereba71ba2000-04-29 23:57:08 +10005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100014 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
Damien Miller2eb63402006-03-15 11:09:42 +110028
Damien Miller9cf6d072006-03-15 11:29:24 +110029#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/socket.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110031#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110032#include <sys/stat.h>
Damien Millereba71ba2000-04-29 23:57:08 +100033
Darren Tucker39972492006-07-12 22:22:46 +100034#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110035#include <fcntl.h>
Darren Tuckerf520ea12007-05-20 15:11:33 +100036#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100037#include <pwd.h>
38#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100039#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100040#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100041#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100042#include <unistd.h>
Damien Miller63b4bcd2013-03-20 12:55:14 +110043#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
Damien Miller7ba0ca72008-07-17 18:57:06 +100044#include <vis.h>
Damien Miller2e28d862008-07-17 19:15:43 +100045#endif
Darren Tucker39972492006-07-12 22:22:46 +100046
Damien Miller9c617692003-05-14 14:31:11 +100047#include "openbsd-compat/sys-queue.h"
48
Damien Millerd7834352006-08-05 12:39:39 +100049#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "buffer.h"
53#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100054#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100056#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "kex.h"
58#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "sshconnect.h"
60#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000061#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100062#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100064#include "misc.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100065#include "readconf.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000066#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000067#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000068#include "canohost.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000069#include "msg.h"
70#include "pathnames.h"
Damien Miller6b4069a2006-06-13 13:05:15 +100071#include "uidswap.h"
Damien Millerd925dcd2010-12-01 12:21:51 +110072#include "hostfile.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +000073#include "ssherr.h"
Damien Miller874d77b2000-10-14 16:23:11 +110074
Darren Tucker0efd1552003-08-26 11:49:55 +100075#ifdef GSSAPI
76#include "ssh-gss.h"
77#endif
78
Damien Millereba71ba2000-04-29 23:57:08 +100079/* import */
80extern char *client_version_string;
81extern char *server_version_string;
82extern Options options;
83
84/*
85 * SSH2 key exchange
86 */
87
Ben Lindstrom46c16222000-12-22 01:43:59 +000088u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100089u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100090
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000091char *xxx_host;
92struct sockaddr *xxx_hostaddr;
93
Ben Lindstrombba81212001-06-25 05:01:22 +000094static int
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000095verify_host_key_callback(Key *hostkey, struct ssh *ssh)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000096{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000097 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100098 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000099 return 0;
100}
101
Damien Millerd925dcd2010-12-01 12:21:51 +1100102static char *
103order_hostkeyalgs(char *host, struct sockaddr *hostaddr, u_short port)
104{
105 char *oavail, *avail, *first, *last, *alg, *hostname, *ret;
106 size_t maxlen;
107 struct hostkeys *hostkeys;
108 int ktype;
Damien Miller295ee632011-05-29 21:42:31 +1000109 u_int i;
Damien Millerd925dcd2010-12-01 12:21:51 +1100110
111 /* Find all hostkeys for this hostname */
112 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
113 hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000114 for (i = 0; i < options.num_user_hostfiles; i++)
115 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
116 for (i = 0; i < options.num_system_hostfiles; i++)
117 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100118
119 oavail = avail = xstrdup(KEX_DEFAULT_PK_ALG);
120 maxlen = strlen(avail) + 1;
121 first = xmalloc(maxlen);
122 last = xmalloc(maxlen);
123 *first = *last = '\0';
124
125#define ALG_APPEND(to, from) \
126 do { \
127 if (*to != '\0') \
128 strlcat(to, ",", maxlen); \
129 strlcat(to, from, maxlen); \
130 } while (0)
131
132 while ((alg = strsep(&avail, ",")) && *alg != '\0') {
djm@openbsd.org141efe42015-01-14 20:05:27 +0000133 if ((ktype = sshkey_type_from_name(alg)) == KEY_UNSPEC)
Damien Millerd925dcd2010-12-01 12:21:51 +1100134 fatal("%s: unknown alg %s", __func__, alg);
135 if (lookup_key_in_hostkeys_by_type(hostkeys,
djm@openbsd.org141efe42015-01-14 20:05:27 +0000136 sshkey_type_plain(ktype), NULL))
Damien Millerd925dcd2010-12-01 12:21:51 +1100137 ALG_APPEND(first, alg);
138 else
139 ALG_APPEND(last, alg);
140 }
141#undef ALG_APPEND
djm@openbsd.org35d60222015-01-18 13:33:34 +0000142 xasprintf(&ret, "%s%s%s", first,
143 (*first == '\0' || *last == '\0') ? "" : ",", last);
Damien Millerd925dcd2010-12-01 12:21:51 +1100144 if (*first != '\0')
145 debug3("%s: prefer hostkeyalgs: %s", __func__, first);
146
Darren Tuckera627d422013-06-02 07:31:17 +1000147 free(first);
148 free(last);
149 free(hostname);
150 free(oavail);
Damien Millerd925dcd2010-12-01 12:21:51 +1100151 free_hostkeys(hostkeys);
152
153 return ret;
154}
155
Damien Millereba71ba2000-04-29 23:57:08 +1000156void
Damien Millerd925dcd2010-12-01 12:21:51 +1100157ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Damien Miller874d77b2000-10-14 16:23:11 +1100158{
Damien Miller9235a032014-04-20 13:17:20 +1000159 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT };
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000160 char *s;
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000161 struct kex *kex;
markus@openbsd.org57e783c2015-01-20 20:16:21 +0000162 int r;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000163
164 xxx_host = host;
165 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +1100166
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000167 if ((s = kex_names_cat(options.kex_algorithms, "ext-info-c")) == NULL)
168 fatal("%s: kex_names_cat", __func__);
169 myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(s);
Damien Millera0ff4662001-03-30 10:49:35 +1000170 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000171 compat_cipher_proposal(options.ciphers);
Damien Millera0ff4662001-03-30 10:49:35 +1000172 myproposal[PROPOSAL_ENC_ALGS_STOC] =
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000173 compat_cipher_proposal(options.ciphers);
Damien Miller874d77b2000-10-14 16:23:11 +1100174 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000175 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000176 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100177 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000178 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000179 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100180 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000181 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
182 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
183 if (options.hostkeyalgorithms != NULL) {
184 if (kex_assemble_names(KEX_DEFAULT_PK_ALG,
185 &options.hostkeyalgorithms) != 0)
186 fatal("%s: kex_assemble_namelist", __func__);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100187 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Damien Miller324541e2013-12-31 12:25:40 +1100188 compat_pkalg_proposal(options.hostkeyalgorithms);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000189 } else {
markus@openbsd.org3a1638d2015-07-10 06:21:53 +0000190 /* Enforce default */
191 options.hostkeyalgorithms = xstrdup(KEX_DEFAULT_PK_ALG);
Damien Millerd925dcd2010-12-01 12:21:51 +1100192 /* Prefer algorithms that we already have keys for */
193 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Damien Miller324541e2013-12-31 12:25:40 +1100194 compat_pkalg_proposal(
195 order_hostkeyalgs(host, hostaddr, port));
Damien Millerd925dcd2010-12-01 12:21:51 +1100196 }
Damien Miller874d77b2000-10-14 16:23:11 +1100197
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000198 if (options.rekey_limit || options.rekey_interval)
199 packet_set_rekey_limits((u_int32_t)options.rekey_limit,
200 (time_t)options.rekey_interval);
Damien Millera5539d22003-04-09 20:50:06 +1000201
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000202 /* start key exchange */
markus@openbsd.org57e783c2015-01-20 20:16:21 +0000203 if ((r = kex_setup(active_state, myproposal)) != 0)
204 fatal("kex_setup: %s", ssh_err(r));
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000205 kex = active_state->kex;
Damien Miller1f0311c2014-05-15 14:24:09 +1000206#ifdef WITH_OPENSSL
Damien Miller8e7fb332003-02-24 12:03:03 +1100207 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000208 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100209 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100210 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Darren Tuckerf2004cd2015-02-23 05:04:21 +1100211# ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000212 kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Darren Tuckerf2004cd2015-02-23 05:04:21 +1100213# endif
Damien Miller1f0311c2014-05-15 14:24:09 +1000214#endif
Damien Miller1e124262013-11-04 08:26:52 +1100215 kex->kex[KEX_C25519_SHA256] = kexc25519_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000216 kex->client_version_string=client_version_string;
217 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000218 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100219
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000220 dispatch_run(DISPATCH_BLOCK, &kex->done, active_state);
Damien Miller874d77b2000-10-14 16:23:11 +1100221
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000222 /* remove ext-info from the KEX proposals for rekeying */
223 myproposal[PROPOSAL_KEX_ALGS] =
224 compat_kex_proposal(options.kex_algorithms);
225 if ((r = kex_prop2buf(kex->my, myproposal)) != 0)
226 fatal("kex_prop2buf: %s", ssh_err(r));
Darren Tucker36331b52010-01-08 16:50:41 +1100227
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000228 session_id2 = kex->session_id;
229 session_id2_len = kex->session_id_len;
230
Damien Miller874d77b2000-10-14 16:23:11 +1100231#ifdef DEBUG_KEXDH
232 /* send 1st encrypted/maced/compressed message */
233 packet_start(SSH2_MSG_IGNORE);
234 packet_put_cstring("markus");
235 packet_send();
236 packet_write_wait();
237#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000238}
Damien Millerb1715dc2000-05-30 13:44:51 +1000239
Damien Millereba71ba2000-04-29 23:57:08 +1000240/*
241 * Authenticate user
242 */
Damien Miller62cee002000-09-23 17:15:56 +1100243
djm@openbsd.org141efe42015-01-14 20:05:27 +0000244typedef struct cauthctxt Authctxt;
245typedef struct cauthmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000246typedef struct identity Identity;
247typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100248
Damien Miller280ecfb2003-05-14 13:46:00 +1000249struct identity {
250 TAILQ_ENTRY(identity) next;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000251 int agent_fd; /* >=0 if agent supports key */
252 struct sshkey *key; /* public/private key */
Damien Miller280ecfb2003-05-14 13:46:00 +1000253 char *filename; /* comment for agent-only keys */
254 int tried;
255 int isprivate; /* key points to the private key */
Damien Miller5ceddc32013-02-15 12:18:32 +1100256 int userprovided;
Damien Miller280ecfb2003-05-14 13:46:00 +1000257};
258TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100259
djm@openbsd.org141efe42015-01-14 20:05:27 +0000260struct cauthctxt {
Damien Miller62cee002000-09-23 17:15:56 +1100261 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000262 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100263 const char *host;
264 const char *service;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000265 struct cauthmethod *method;
Damien Miller79442c02010-05-10 11:55:38 +1000266 sig_atomic_t success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000267 char *authlist;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000268 int attempt;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000269 /* pubkey */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000270 struct idlist keys;
271 int agent_fd;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000272 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000273 Sensitive *sensitive;
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000274 char *oktypes, *ktypes;
275 const char *active_ktype;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000276 /* kbd-interactive */
277 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000278 /* generic */
279 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100280};
djm@openbsd.org141efe42015-01-14 20:05:27 +0000281
282struct cauthmethod {
Damien Miller62cee002000-09-23 17:15:56 +1100283 char *name; /* string to compare against server's list */
284 int (*userauth)(Authctxt *authctxt);
Damien Miller01ed2272008-11-05 16:20:46 +1100285 void (*cleanup)(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100286 int *enabled; /* flag in option struct that enables method */
287 int *batch_flag; /* flag in option struct that disables method */
288};
289
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000290int input_userauth_service_accept(int, u_int32_t, void *);
291int input_userauth_ext_info(int, u_int32_t, void *);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000292int input_userauth_success(int, u_int32_t, void *);
293int input_userauth_success_unexpected(int, u_int32_t, void *);
294int input_userauth_failure(int, u_int32_t, void *);
295int input_userauth_banner(int, u_int32_t, void *);
296int input_userauth_error(int, u_int32_t, void *);
297int input_userauth_info_req(int, u_int32_t, void *);
298int input_userauth_pk_ok(int, u_int32_t, void *);
299int input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100300
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000301int userauth_none(Authctxt *);
302int userauth_pubkey(Authctxt *);
303int userauth_passwd(Authctxt *);
304int userauth_kbdint(Authctxt *);
305int userauth_hostbased(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100306
Darren Tucker0efd1552003-08-26 11:49:55 +1000307#ifdef GSSAPI
308int userauth_gssapi(Authctxt *authctxt);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000309int input_gssapi_response(int type, u_int32_t, void *);
310int input_gssapi_token(int type, u_int32_t, void *);
311int input_gssapi_hash(int type, u_int32_t, void *);
312int input_gssapi_error(int, u_int32_t, void *);
313int input_gssapi_errtok(int, u_int32_t, void *);
Darren Tucker0efd1552003-08-26 11:49:55 +1000314#endif
315
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000316void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000317
Damien Miller280ecfb2003-05-14 13:46:00 +1000318static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000319static void pubkey_prepare(Authctxt *);
320static void pubkey_cleanup(Authctxt *);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +0000321static Key *load_identity_file(Identity *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000322
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static Authmethod *authmethod_get(char *authlist);
324static Authmethod *authmethod_lookup(const char *name);
325static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100326
327Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000328#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100329 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000330 userauth_gssapi,
Damien Miller01ed2272008-11-05 16:20:46 +1100331 NULL,
Darren Tucker0efd1552003-08-26 11:49:55 +1000332 &options.gss_authentication,
333 NULL},
334#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000335 {"hostbased",
336 userauth_hostbased,
Damien Miller01ed2272008-11-05 16:20:46 +1100337 NULL,
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000338 &options.hostbased_authentication,
339 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000340 {"publickey",
341 userauth_pubkey,
Damien Miller01ed2272008-11-05 16:20:46 +1100342 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000343 &options.pubkey_authentication,
344 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100345 {"keyboard-interactive",
346 userauth_kbdint,
Damien Miller01ed2272008-11-05 16:20:46 +1100347 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100348 &options.kbd_interactive_authentication,
349 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000350 {"password",
351 userauth_passwd,
Damien Miller01ed2272008-11-05 16:20:46 +1100352 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000353 &options.password_authentication,
354 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100355 {"none",
356 userauth_none,
357 NULL,
Damien Miller01ed2272008-11-05 16:20:46 +1100358 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100359 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100360 {NULL, NULL, NULL, NULL, NULL}
Damien Miller62cee002000-09-23 17:15:56 +1100361};
362
363void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000364ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000365 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100366{
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000367 struct ssh *ssh = active_state;
Damien Miller62cee002000-09-23 17:15:56 +1100368 Authctxt authctxt;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000369 int r;
Damien Miller62cee002000-09-23 17:15:56 +1100370
Ben Lindstrom551ea372001-06-05 18:56:16 +0000371 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000372 options.kbd_interactive_authentication = 1;
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000373 if (options.preferred_authentications == NULL)
374 options.preferred_authentications = authmethods_get();
375
Damien Miller62cee002000-09-23 17:15:56 +1100376 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000377 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000378 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100379 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000380 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100381 authctxt.host = host;
382 authctxt.service = "ssh-connection"; /* service name */
383 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100384 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000385 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000386 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000387 authctxt.sensitive = sensitive;
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000388 authctxt.active_ktype = authctxt.oktypes = authctxt.ktypes = NULL;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000389 authctxt.info_req_seen = 0;
djm@openbsd.orgf14564c2015-01-15 11:04:36 +0000390 authctxt.agent_fd = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100391 if (authctxt.method == NULL)
392 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100393
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000394 if ((r = sshpkt_start(ssh, SSH2_MSG_SERVICE_REQUEST)) != 0 ||
395 (r = sshpkt_put_cstring(ssh, "ssh-userauth")) != 0 ||
396 (r = sshpkt_send(ssh)) != 0)
397 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller62cee002000-09-23 17:15:56 +1100398
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000399 ssh_dispatch_init(ssh, &input_userauth_error);
400 ssh_dispatch_set(ssh, SSH2_MSG_EXT_INFO, &input_userauth_ext_info);
401 ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_ACCEPT, &input_userauth_service_accept);
402 ssh_dispatch_run(ssh, DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
Damien Miller62cee002000-09-23 17:15:56 +1100403
Damien Miller280ecfb2003-05-14 13:46:00 +1000404 pubkey_cleanup(&authctxt);
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000405 ssh_dispatch_range(ssh, SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
Damien Millerf842fcb2003-05-15 12:01:28 +1000406
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000407 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100408}
Damien Millerf842fcb2003-05-15 12:01:28 +1000409
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000410/* ARGSUSED */
411int
412input_userauth_service_accept(int type, u_int32_t seqnr, void *ctxt)
413{
414 Authctxt *authctxt = ctxt;
415 struct ssh *ssh = active_state;
416 int r;
417
418 if (ssh_packet_remaining(ssh) > 0) {
419 char *reply;
420
421 if ((r = sshpkt_get_cstring(ssh, &reply, NULL)) != 0)
422 goto out;
423 debug2("service_accept: %s", reply);
424 free(reply);
425 } else {
426 debug2("buggy server: service_accept w/o service");
427 }
428 if ((r = sshpkt_get_end(ssh)) != 0)
429 goto out;
430 debug("SSH2_MSG_SERVICE_ACCEPT received");
431
432 /* initial userauth request */
433 userauth_none(authctxt);
434
435 ssh_dispatch_set(ssh, SSH2_MSG_EXT_INFO, &input_userauth_error);
436 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
437 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
438 ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
439 r = 0;
440 out:
441 return r;
442}
443
444/* ARGSUSED */
445int
446input_userauth_ext_info(int type, u_int32_t seqnr, void *ctxt)
447{
448 return kex_input_ext_info(type, seqnr, active_state);
449}
450
Damien Miller62cee002000-09-23 17:15:56 +1100451void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000452userauth(Authctxt *authctxt, char *authlist)
453{
Damien Miller01ed2272008-11-05 16:20:46 +1100454 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
455 authctxt->method->cleanup(authctxt);
456
Darren Tuckera627d422013-06-02 07:31:17 +1000457 free(authctxt->methoddata);
458 authctxt->methoddata = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000459 if (authlist == NULL) {
460 authlist = authctxt->authlist;
461 } else {
Darren Tuckera627d422013-06-02 07:31:17 +1000462 free(authctxt->authlist);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000463 authctxt->authlist = authlist;
464 }
465 for (;;) {
466 Authmethod *method = authmethod_get(authlist);
467 if (method == NULL)
468 fatal("Permission denied (%s).", authlist);
469 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000470
471 /* reset the per method handler */
472 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
473 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
474
475 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000476 if (method->userauth(authctxt) != 0) {
477 debug2("we sent a %s packet, wait for reply", method->name);
478 break;
479 } else {
480 debug2("we did not send a packet, disable method");
481 method->enabled = NULL;
482 }
483 }
484}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000485
Damien Millerf7475d72008-11-03 19:26:18 +1100486/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000487int
Damien Miller630d6f42002-01-22 23:17:30 +1100488input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100489{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000490 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000491 "type %d", type);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000492 return 0;
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000493}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000494
Damien Millerf7475d72008-11-03 19:26:18 +1100495/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000496int
Damien Miller630d6f42002-01-22 23:17:30 +1100497input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000498{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000499 char *msg, *raw, *lang;
500 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000501
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000502 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000503 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000504 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100505 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000506 if (len > 65536)
507 len = 65536;
Damien Millerc4d1b362008-11-03 19:22:09 +1100508 msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
Darren Tucker0c348f52010-01-08 18:58:05 +1100509 strnvis(msg, raw, len * 4 + 1, VIS_SAFE|VIS_OCTAL|VIS_NOSLASH);
Darren Tucker046dff22003-10-08 17:32:02 +1000510 fprintf(stderr, "%s", msg);
Darren Tuckera627d422013-06-02 07:31:17 +1000511 free(msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000512 }
Darren Tuckera627d422013-06-02 07:31:17 +1000513 free(raw);
514 free(lang);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000515 return 0;
Damien Miller62cee002000-09-23 17:15:56 +1100516}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000517
Damien Millerf7475d72008-11-03 19:26:18 +1100518/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000519int
Damien Miller630d6f42002-01-22 23:17:30 +1100520input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100521{
522 Authctxt *authctxt = ctxt;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100523
Damien Miller62cee002000-09-23 17:15:56 +1100524 if (authctxt == NULL)
525 fatal("input_userauth_success: no authentication context");
Darren Tuckera627d422013-06-02 07:31:17 +1000526 free(authctxt->authlist);
527 authctxt->authlist = NULL;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100528 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
529 authctxt->method->cleanup(authctxt);
Darren Tuckera627d422013-06-02 07:31:17 +1000530 free(authctxt->methoddata);
531 authctxt->methoddata = NULL;
Damien Miller62cee002000-09-23 17:15:56 +1100532 authctxt->success = 1; /* break out */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000533 return 0;
Damien Miller62cee002000-09-23 17:15:56 +1100534}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000535
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000536int
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100537input_userauth_success_unexpected(int type, u_int32_t seq, void *ctxt)
538{
539 Authctxt *authctxt = ctxt;
540
541 if (authctxt == NULL)
542 fatal("%s: no authentication context", __func__);
543
544 fatal("Unexpected authentication success during %s.",
545 authctxt->method->name);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000546 return 0;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100547}
548
Damien Millerf7475d72008-11-03 19:26:18 +1100549/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000550int
Damien Miller630d6f42002-01-22 23:17:30 +1100551input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100552{
Damien Miller62cee002000-09-23 17:15:56 +1100553 Authctxt *authctxt = ctxt;
554 char *authlist = NULL;
555 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100556
557 if (authctxt == NULL)
558 fatal("input_userauth_failure: no authentication context");
559
Damien Miller874d77b2000-10-14 16:23:11 +1100560 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100561 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100562 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100563
Damien Miller62e9c4f2013-04-23 15:15:49 +1000564 if (partial != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000565 logit("Authenticated with partial success.");
Damien Miller62e9c4f2013-04-23 15:15:49 +1000566 /* reset state */
567 pubkey_cleanup(authctxt);
568 pubkey_prepare(authctxt);
569 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000570 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100571
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000572 userauth(authctxt, authlist);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000573 return 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000574}
Damien Millerf7475d72008-11-03 19:26:18 +1100575
576/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000577int
Damien Miller630d6f42002-01-22 23:17:30 +1100578input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000579{
580 Authctxt *authctxt = ctxt;
581 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000582 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000583 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000584 int pktype, sent = 0;
585 u_int alen, blen;
586 char *pkalg, *fp;
587 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000588
589 if (authctxt == NULL)
590 fatal("input_userauth_pk_ok: no authentication context");
591 if (datafellows & SSH_BUG_PKOK) {
592 /* this is similar to SSH_BUG_PKAUTH */
593 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
594 pkblob = packet_get_string(&blen);
595 buffer_init(&b);
596 buffer_append(&b, pkblob, blen);
597 pkalg = buffer_get_string(&b, &alen);
598 buffer_free(&b);
599 } else {
600 pkalg = packet_get_string(&alen);
601 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000602 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100603 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000604
Damien Miller280ecfb2003-05-14 13:46:00 +1000605 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000606
Damien Miller280ecfb2003-05-14 13:46:00 +1000607 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
608 debug("unknown pkalg %s", pkalg);
609 goto done;
610 }
611 if ((key = key_from_blob(pkblob, blen)) == NULL) {
612 debug("no key from blob. pkalg %s", pkalg);
613 goto done;
614 }
615 if (key->type != pktype) {
616 error("input_userauth_pk_ok: type mismatch "
617 "for decoded key (received %d, expected %d)",
618 key->type, pktype);
619 goto done;
620 }
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000621 if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
622 SSH_FP_DEFAULT)) == NULL)
623 goto done;
Damien Miller280ecfb2003-05-14 13:46:00 +1000624 debug2("input_userauth_pk_ok: fp %s", fp);
Darren Tuckera627d422013-06-02 07:31:17 +1000625 free(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000626
Darren Tuckerd05b6012003-10-15 15:55:59 +1000627 /*
628 * search keys in the reverse order, because last candidate has been
629 * moved to the end of the queue. this also avoids confusion by
630 * duplicate keys
631 */
Damien Miller0b51a522004-04-20 20:07:19 +1000632 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000633 if (key_equal(key, id->key)) {
634 sent = sign_and_send_pubkey(authctxt, id);
635 break;
636 }
637 }
638done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000639 if (key != NULL)
640 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +1000641 free(pkalg);
642 free(pkblob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000643
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000644 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000645 if (sent == 0)
646 userauth(authctxt, NULL);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000647 return 0;
Damien Miller62cee002000-09-23 17:15:56 +1100648}
649
Darren Tucker0efd1552003-08-26 11:49:55 +1000650#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100651int
Darren Tucker0efd1552003-08-26 11:49:55 +1000652userauth_gssapi(Authctxt *authctxt)
653{
654 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100655 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000656 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000657 OM_uint32 min;
658 int ok = 0;
659
660 /* Try one GSSAPI method at a time, rather than sending them all at
661 * once. */
662
Darren Tucker56afe142003-11-03 20:06:14 +1100663 if (gss_supported == NULL)
664 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000665
666 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100667 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000668 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100669 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000670 ssh_gssapi_check_mechanism(&gssctxt,
671 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000672 ok = 1; /* Mechanism works */
673 } else {
674 mech++;
675 }
676 }
677
Damien Millera1cb9f32006-08-19 00:33:34 +1000678 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000679 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000680
681 authctxt->methoddata=(void *)gssctxt;
682
683 packet_start(SSH2_MSG_USERAUTH_REQUEST);
684 packet_put_cstring(authctxt->server_user);
685 packet_put_cstring(authctxt->service);
686 packet_put_cstring(authctxt->method->name);
687
688 packet_put_int(1);
689
Darren Tucker655a5e02003-11-03 20:09:03 +1100690 packet_put_int((gss_supported->elements[mech].length) + 2);
691 packet_put_char(SSH_GSS_OIDTYPE);
692 packet_put_char(gss_supported->elements[mech].length);
693 packet_put_raw(gss_supported->elements[mech].elements,
694 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000695
696 packet_send();
697
698 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
699 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
700 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
701 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
702
703 mech++; /* Move along to next candidate */
704
705 return 1;
706}
707
Damien Miller91c6aa42003-11-17 21:20:18 +1100708static OM_uint32
709process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
710{
711 Authctxt *authctxt = ctxt;
712 Gssctxt *gssctxt = authctxt->methoddata;
713 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000714 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
715 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100716 OM_uint32 status, ms, flags;
717 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100718
Damien Miller91c6aa42003-11-17 21:20:18 +1100719 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100720 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100721
722 if (send_tok.length > 0) {
723 if (GSS_ERROR(status))
724 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
725 else
726 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100727
Damien Miller91c6aa42003-11-17 21:20:18 +1100728 packet_put_string(send_tok.value, send_tok.length);
729 packet_send();
730 gss_release_buffer(&ms, &send_tok);
731 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100732
Damien Miller91c6aa42003-11-17 21:20:18 +1100733 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100734 /* send either complete or MIC, depending on mechanism */
735 if (!(flags & GSS_C_INTEG_FLAG)) {
736 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
737 packet_send();
738 } else {
739 ssh_gssapi_buildmic(&b, authctxt->server_user,
740 authctxt->service, "gssapi-with-mic");
741
742 gssbuf.value = buffer_ptr(&b);
743 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100744
Damien Miller0425d402003-11-17 22:18:21 +1100745 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100746
Damien Miller0425d402003-11-17 22:18:21 +1100747 if (!GSS_ERROR(status)) {
748 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
749 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100750
Damien Miller0425d402003-11-17 22:18:21 +1100751 packet_send();
752 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100753
Damien Miller0425d402003-11-17 22:18:21 +1100754 buffer_free(&b);
755 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100756 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100757 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100758
Damien Miller91c6aa42003-11-17 21:20:18 +1100759 return status;
760}
761
Damien Millerf7475d72008-11-03 19:26:18 +1100762/* ARGSUSED */
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000763int
Darren Tucker0efd1552003-08-26 11:49:55 +1000764input_gssapi_response(int type, u_int32_t plen, void *ctxt)
765{
766 Authctxt *authctxt = ctxt;
767 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000768 int oidlen;
769 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000770
771 if (authctxt == NULL)
772 fatal("input_gssapi_response: no authentication context");
773 gssctxt = authctxt->methoddata;
774
775 /* Setup our OID */
776 oidv = packet_get_string(&oidlen);
777
Darren Tucker655a5e02003-11-03 20:09:03 +1100778 if (oidlen <= 2 ||
779 oidv[0] != SSH_GSS_OIDTYPE ||
780 oidv[1] != oidlen - 2) {
Darren Tuckera627d422013-06-02 07:31:17 +1000781 free(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100782 debug("Badly encoded mechanism OID received");
783 userauth(authctxt, NULL);
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000784 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000785 }
786
Darren Tucker655a5e02003-11-03 20:09:03 +1100787 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
788 fatal("Server returned different OID than expected");
789
Darren Tucker0efd1552003-08-26 11:49:55 +1000790 packet_check_eom();
791
Darren Tuckera627d422013-06-02 07:31:17 +1000792 free(oidv);
Darren Tucker0efd1552003-08-26 11:49:55 +1000793
Damien Miller91c6aa42003-11-17 21:20:18 +1100794 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000795 /* Start again with next method on list */
796 debug("Trying to start again");
797 userauth(authctxt, NULL);
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000798 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000799 }
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000800 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000801}
802
Damien Millerf7475d72008-11-03 19:26:18 +1100803/* ARGSUSED */
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000804int
Darren Tucker0efd1552003-08-26 11:49:55 +1000805input_gssapi_token(int type, u_int32_t plen, void *ctxt)
806{
807 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000808 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100809 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000810 u_int slen;
811
812 if (authctxt == NULL)
813 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000814
815 recv_tok.value = packet_get_string(&slen);
816 recv_tok.length = slen; /* safe typecast */
817
818 packet_check_eom();
819
Damien Miller91c6aa42003-11-17 21:20:18 +1100820 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000821
Darren Tuckera627d422013-06-02 07:31:17 +1000822 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000823
824 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000825 /* Start again with the next method in the list */
826 userauth(authctxt, NULL);
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000827 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000828 }
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000829 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000830}
831
Damien Millerf7475d72008-11-03 19:26:18 +1100832/* ARGSUSED */
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000833int
Darren Tucker0efd1552003-08-26 11:49:55 +1000834input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
835{
836 Authctxt *authctxt = ctxt;
837 Gssctxt *gssctxt;
838 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
839 gss_buffer_desc recv_tok;
Damien Millerd677ad12013-04-23 15:18:51 +1000840 OM_uint32 ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000841 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000842
843 if (authctxt == NULL)
844 fatal("input_gssapi_response: no authentication context");
845 gssctxt = authctxt->methoddata;
846
Darren Tucker600ad8d2003-08-26 12:10:48 +1000847 recv_tok.value = packet_get_string(&len);
848 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000849
850 packet_check_eom();
851
852 /* Stick it into GSSAPI and see what it says */
Damien Millerd677ad12013-04-23 15:18:51 +1000853 (void)ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000854 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000855
Darren Tuckera627d422013-06-02 07:31:17 +1000856 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000857 gss_release_buffer(&ms, &send_tok);
858
859 /* Server will be returning a failed packet after this one */
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000860 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000861}
862
Damien Millerf7475d72008-11-03 19:26:18 +1100863/* ARGSUSED */
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000864int
Darren Tucker0efd1552003-08-26 11:49:55 +1000865input_gssapi_error(int type, u_int32_t plen, void *ctxt)
866{
Darren Tucker0efd1552003-08-26 11:49:55 +1000867 char *msg;
868 char *lang;
869
Damien Millerd677ad12013-04-23 15:18:51 +1000870 /* maj */(void)packet_get_int();
871 /* min */(void)packet_get_int();
Darren Tucker0efd1552003-08-26 11:49:55 +1000872 msg=packet_get_string(NULL);
873 lang=packet_get_string(NULL);
874
875 packet_check_eom();
876
Damien Miller15d72a02005-11-05 15:07:33 +1100877 debug("Server GSSAPI Error:\n%s", msg);
Darren Tuckera627d422013-06-02 07:31:17 +1000878 free(msg);
879 free(lang);
djm@openbsd.org12b5f502015-01-20 07:56:44 +0000880 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000881}
882#endif /* GSSAPI */
883
Damien Millereba71ba2000-04-29 23:57:08 +1000884int
Damien Miller874d77b2000-10-14 16:23:11 +1100885userauth_none(Authctxt *authctxt)
886{
887 /* initial userauth request */
888 packet_start(SSH2_MSG_USERAUTH_REQUEST);
889 packet_put_cstring(authctxt->server_user);
890 packet_put_cstring(authctxt->service);
891 packet_put_cstring(authctxt->method->name);
892 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100893 return 1;
894}
895
896int
Damien Miller62cee002000-09-23 17:15:56 +1100897userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000898{
Damien Millere247cc42000-05-07 12:03:14 +1000899 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000900 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000901 char *password;
Darren Tuckerab791692010-01-08 18:48:02 +1100902 const char *host = options.host_key_alias ? options.host_key_alias :
903 authctxt->host;
Damien Millereba71ba2000-04-29 23:57:08 +1000904
Damien Millerd3a18572000-06-07 19:55:44 +1000905 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000906 return 0;
907
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000908 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000909 error("Permission denied, please try again.");
910
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000911 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100912 authctxt->server_user, host);
Damien Millereba71ba2000-04-29 23:57:08 +1000913 password = read_passphrase(prompt, 0);
914 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100915 packet_put_cstring(authctxt->server_user);
916 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100917 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000918 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000919 packet_put_cstring(password);
Damien Millera5103f42014-02-04 11:20:14 +1100920 explicit_bzero(password, strlen(password));
Darren Tuckera627d422013-06-02 07:31:17 +1000921 free(password);
Damien Miller9f643902001-11-12 11:02:52 +1100922 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000923 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000924
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000925 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000926 &input_userauth_passwd_changereq);
927
Damien Millereba71ba2000-04-29 23:57:08 +1000928 return 1;
929}
Damien Millerf7475d72008-11-03 19:26:18 +1100930
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000931/*
932 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
933 */
Damien Millerf7475d72008-11-03 19:26:18 +1100934/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000935int
Tim Ricec8549622002-03-31 12:49:38 -0800936input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000937{
938 Authctxt *authctxt = ctxt;
939 char *info, *lang, *password = NULL, *retype = NULL;
940 char prompt[150];
Darren Tuckerab791692010-01-08 18:48:02 +1100941 const char *host = options.host_key_alias ? options.host_key_alias :
942 authctxt->host;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000943
944 debug2("input_userauth_passwd_changereq");
945
946 if (authctxt == NULL)
947 fatal("input_userauth_passwd_changereq: "
948 "no authentication context");
949
950 info = packet_get_string(NULL);
951 lang = packet_get_string(NULL);
952 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("%s", info);
Darren Tuckera627d422013-06-02 07:31:17 +1000954 free(info);
955 free(lang);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000956 packet_start(SSH2_MSG_USERAUTH_REQUEST);
957 packet_put_cstring(authctxt->server_user);
958 packet_put_cstring(authctxt->service);
959 packet_put_cstring(authctxt->method->name);
960 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000961 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000962 "Enter %.30s@%.128s's old password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100963 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000964 password = read_passphrase(prompt, 0);
965 packet_put_cstring(password);
Damien Millera5103f42014-02-04 11:20:14 +1100966 explicit_bzero(password, strlen(password));
Darren Tuckera627d422013-06-02 07:31:17 +1000967 free(password);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000968 password = NULL;
969 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000970 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000971 "Enter %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100972 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000973 password = read_passphrase(prompt, RP_ALLOW_EOF);
974 if (password == NULL) {
975 /* bail out */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000976 return 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000977 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000978 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000979 "Retype %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100980 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000981 retype = read_passphrase(prompt, 0);
982 if (strcmp(password, retype) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +1100983 explicit_bzero(password, strlen(password));
Darren Tuckera627d422013-06-02 07:31:17 +1000984 free(password);
Damien Miller996acd22003-04-09 20:59:48 +1000985 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000986 password = NULL;
987 }
Damien Millera5103f42014-02-04 11:20:14 +1100988 explicit_bzero(retype, strlen(retype));
Darren Tuckera627d422013-06-02 07:31:17 +1000989 free(retype);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000990 }
991 packet_put_cstring(password);
Damien Millera5103f42014-02-04 11:20:14 +1100992 explicit_bzero(password, strlen(password));
Darren Tuckera627d422013-06-02 07:31:17 +1000993 free(password);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000994 packet_add_padding(64);
995 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000996
997 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000998 &input_userauth_passwd_changereq);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000999 return 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +00001000}
Damien Millereba71ba2000-04-29 23:57:08 +10001001
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001002static const char *
1003identity_sign_encode(struct identity *id)
1004{
1005 struct ssh *ssh = active_state;
1006
1007 if (id->key->type == KEY_RSA) {
1008 switch (ssh->kex->rsa_sha2) {
1009 case 256:
1010 return "rsa-sha2-256";
1011 case 512:
1012 return "rsa-sha2-512";
1013 }
1014 }
1015 return key_ssh_name(id->key);
1016}
1017
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static int
djm@openbsd.org141efe42015-01-14 20:05:27 +00001019identity_sign(struct identity *id, u_char **sigp, size_t *lenp,
1020 const u_char *data, size_t datalen, u_int compat)
Damien Miller280ecfb2003-05-14 13:46:00 +10001021{
1022 Key *prv;
1023 int ret;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001024 const char *alg;
1025
1026 alg = identity_sign_encode(id);
Damien Miller280ecfb2003-05-14 13:46:00 +10001027
1028 /* the agent supports this key */
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001029 if (id->agent_fd != -1)
djm@openbsd.org141efe42015-01-14 20:05:27 +00001030 return ssh_agent_sign(id->agent_fd, id->key, sigp, lenp,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001031 data, datalen, alg, compat);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001032
Damien Miller280ecfb2003-05-14 13:46:00 +10001033 /*
1034 * we have already loaded the private key or
1035 * the private key is stored in external hardware
1036 */
Damien Miller86687062014-07-02 15:28:02 +10001037 if (id->isprivate || (id->key->flags & SSHKEY_FLAG_EXT))
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001038 return (sshkey_sign(id->key, sigp, lenp, data, datalen, alg,
djm@openbsd.org141efe42015-01-14 20:05:27 +00001039 compat));
Damien Miller280ecfb2003-05-14 13:46:00 +10001040 /* load the private key from the file */
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001041 if ((prv = load_identity_file(id)) == NULL)
djm@openbsd.org0d1451a2016-02-23 01:34:14 +00001042 return SSH_ERR_KEY_NOT_FOUND;
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001043 ret = sshkey_sign(prv, sigp, lenp, data, datalen, alg, compat);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001044 sshkey_free(prv);
Damien Miller280ecfb2003-05-14 13:46:00 +10001045 return (ret);
1046}
1047
1048static int
1049sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +10001050{
1051 Buffer b;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001052 Identity *private_id;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001053 u_char *blob, *signature;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001054 size_t slen;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001055 u_int bloblen, skip = 0;
1056 int matched, ret = -1, have_sig = 1;
Damien Miller4e270b02010-04-16 15:56:21 +10001057 char *fp;
Damien Millereba71ba2000-04-29 23:57:08 +10001058
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001059 if ((fp = sshkey_fingerprint(id->key, options.fingerprint_hash,
1060 SSH_FP_DEFAULT)) == NULL)
1061 return 0;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001062 debug3("%s: %s %s", __func__, key_type(id->key), fp);
Darren Tuckera627d422013-06-02 07:31:17 +10001063 free(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001064
Damien Miller280ecfb2003-05-14 13:46:00 +10001065 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001066 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +00001067 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001068 return 0;
1069 }
Damien Millereba71ba2000-04-29 23:57:08 +10001070 /* data to be signed */
1071 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +11001072 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +10001073 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001074 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +11001075 } else {
1076 buffer_put_string(&b, session_id2, session_id2_len);
1077 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +10001078 }
Damien Millereba71ba2000-04-29 23:57:08 +10001079 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001080 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +10001081 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +00001082 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +10001083 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +11001084 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +00001085 if (datafellows & SSH_BUG_PKAUTH) {
1086 buffer_put_char(&b, have_sig);
1087 } else {
1088 buffer_put_cstring(&b, authctxt->method->name);
1089 buffer_put_char(&b, have_sig);
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001090 buffer_put_cstring(&b, identity_sign_encode(id));
Ben Lindstromd121f612000-12-03 17:00:47 +00001091 }
Damien Millereba71ba2000-04-29 23:57:08 +10001092 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +10001093
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001094 /*
1095 * If the key is an certificate, try to find a matching private key
1096 * and use it to complete the signature.
1097 * If no such private key exists, return failure and continue with
1098 * other methods of authentication.
1099 */
1100 if (key_is_cert(id->key)) {
1101 matched = 0;
1102 TAILQ_FOREACH(private_id, &authctxt->keys, next) {
1103 if (sshkey_equal_public(id->key, private_id->key) &&
1104 id->key->type != private_id->key->type) {
1105 id = private_id;
1106 matched = 1;
1107 break;
1108 }
1109 }
1110 if (matched) {
1111 debug2("%s: using private key \"%s\"%s for "
1112 "certificate", __func__, id->filename,
1113 id->agent_fd != -1 ? " from agent" : "");
1114 } else {
djm@openbsd.orgc38905b2016-03-14 16:20:54 +00001115 debug("%s: no separate private key for certificate "
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001116 "\"%s\"", __func__, id->filename);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001117 }
1118 }
1119
Damien Millereba71ba2000-04-29 23:57:08 +10001120 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +10001121 ret = identity_sign(id, &signature, &slen,
djm@openbsd.org141efe42015-01-14 20:05:27 +00001122 buffer_ptr(&b), buffer_len(&b), datafellows);
1123 if (ret != 0) {
djm@openbsd.org0d1451a2016-02-23 01:34:14 +00001124 if (ret != SSH_ERR_KEY_NOT_FOUND)
1125 error("%s: signing failed: %s", __func__, ssh_err(ret));
Darren Tuckera627d422013-06-02 07:31:17 +10001126 free(blob);
Damien Millerad833b32000-08-23 10:46:23 +10001127 buffer_free(&b);
1128 return 0;
1129 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001130#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +10001131 buffer_dump(&b);
1132#endif
Ben Lindstromd121f612000-12-03 17:00:47 +00001133 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +10001134 buffer_clear(&b);
1135 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001136 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +10001137 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001138 buffer_put_cstring(&b, authctxt->server_user);
1139 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +11001140 buffer_put_cstring(&b, authctxt->method->name);
1141 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +00001142 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001143 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +10001144 buffer_put_string(&b, blob, bloblen);
1145 }
Darren Tuckera627d422013-06-02 07:31:17 +10001146 free(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001147
Damien Millereba71ba2000-04-29 23:57:08 +10001148 /* append signature */
1149 buffer_put_string(&b, signature, slen);
Darren Tuckera627d422013-06-02 07:31:17 +10001150 free(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001151
1152 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +10001153 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +11001154 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +10001155 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +10001156
1157 /* put remaining data from buffer into packet */
1158 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1159 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
1160 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +10001161 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +10001162
1163 return 1;
Damien Miller994cf142000-07-21 10:19:44 +10001164}
1165
Ben Lindstrombba81212001-06-25 05:01:22 +00001166static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001167send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +10001168{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001169 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001170 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +10001171
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001172 debug3("send_pubkey_test");
1173
Damien Miller280ecfb2003-05-14 13:46:00 +10001174 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001175 /* we cannot handle this key */
1176 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +10001177 return 0;
1178 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001179 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001180 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +10001181
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001182 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1183 packet_put_cstring(authctxt->server_user);
1184 packet_put_cstring(authctxt->service);
1185 packet_put_cstring(authctxt->method->name);
1186 packet_put_char(have_sig);
1187 if (!(datafellows & SSH_BUG_PKAUTH))
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001188 packet_put_cstring(identity_sign_encode(id));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001189 packet_put_string(blob, bloblen);
Darren Tuckera627d422013-06-02 07:31:17 +10001190 free(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001191 packet_send();
1192 return 1;
1193}
1194
Ben Lindstrombba81212001-06-25 05:01:22 +00001195static Key *
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001196load_identity_file(Identity *id)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001197{
jsg@openbsd.org56d7dac2016-02-05 04:31:21 +00001198 Key *private = NULL;
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001199 char prompt[300], *passphrase, *comment;
djm@openbsd.orgf14564c2015-01-15 11:04:36 +00001200 int r, perm_ok = 0, quit = 0, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +00001201 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001202
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001203 if (stat(id->filename, &st) < 0) {
1204 (id->userprovided ? logit : debug3)("no such identity: %s: %s",
1205 id->filename, strerror(errno));
Ben Lindstrom329782e2001-03-10 17:08:59 +00001206 return NULL;
1207 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001208 snprintf(prompt, sizeof prompt,
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001209 "Enter passphrase for key '%.100s': ", id->filename);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001210 for (i = 0; i <= options.number_of_password_prompts; i++) {
1211 if (i == 0)
1212 passphrase = "";
1213 else {
Damien Miller62cee002000-09-23 17:15:56 +11001214 passphrase = read_passphrase(prompt, 0);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001215 if (*passphrase == '\0') {
Damien Miller62cee002000-09-23 17:15:56 +11001216 debug2("no passphrase given, try next key");
djm@openbsd.org141efe42015-01-14 20:05:27 +00001217 free(passphrase);
1218 break;
Damien Miller62cee002000-09-23 17:15:56 +11001219 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001220 }
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001221 switch ((r = sshkey_load_private_type(KEY_UNSPEC, id->filename,
1222 passphrase, &private, &comment, &perm_ok))) {
djm@openbsd.org141efe42015-01-14 20:05:27 +00001223 case 0:
1224 break;
1225 case SSH_ERR_KEY_WRONG_PASSPHRASE:
1226 if (options.batch_mode) {
1227 quit = 1;
1228 break;
1229 }
djm@openbsd.orgf14564c2015-01-15 11:04:36 +00001230 if (i != 0)
1231 debug2("bad passphrase given, try again...");
djm@openbsd.org141efe42015-01-14 20:05:27 +00001232 break;
1233 case SSH_ERR_SYSTEM_ERROR:
1234 if (errno == ENOENT) {
1235 debug2("Load key \"%s\": %s",
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001236 id->filename, ssh_err(r));
djm@openbsd.org141efe42015-01-14 20:05:27 +00001237 quit = 1;
1238 break;
1239 }
1240 /* FALLTHROUGH */
1241 default:
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001242 error("Load key \"%s\": %s", id->filename, ssh_err(r));
djm@openbsd.org141efe42015-01-14 20:05:27 +00001243 quit = 1;
1244 break;
1245 }
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001246 if (!quit && private != NULL && id->agent_fd == -1 &&
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001247 !(id->key && id->isprivate))
1248 maybe_add_key_to_agent(id->filename, private, comment,
1249 passphrase);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001250 if (i > 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001251 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001252 free(passphrase);
Damien Miller62cee002000-09-23 17:15:56 +11001253 }
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001254 free(comment);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001255 if (private != NULL || quit)
1256 break;
Damien Miller994cf142000-07-21 10:19:44 +10001257 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001258 return private;
1259}
1260
Damien Miller280ecfb2003-05-14 13:46:00 +10001261/*
1262 * try keys in the following order:
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001263 * 1. certificates listed in the config file
1264 * 2. other input certificates
1265 * 3. agent keys that are found in the config file
1266 * 4. other agent keys
1267 * 5. keys that are only listed in the config file
Damien Miller280ecfb2003-05-14 13:46:00 +10001268 */
1269static void
1270pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001271{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001272 struct identity *id, *id2, *tmp;
1273 struct idlist agent, files, *preferred;
1274 struct sshkey *key;
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001275 int agent_fd = -1, i, r, found;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001276 size_t j;
1277 struct ssh_identitylist *idlist;
Damien Millerad833b32000-08-23 10:46:23 +10001278
Damien Miller280ecfb2003-05-14 13:46:00 +10001279 TAILQ_INIT(&agent); /* keys from the agent */
1280 TAILQ_INIT(&files); /* keys from the config file */
1281 preferred = &authctxt->keys;
1282 TAILQ_INIT(preferred); /* preferred order of keys */
1283
Damien Millercb6b68b2012-12-03 09:49:52 +11001284 /* list of keys stored in the filesystem and PKCS#11 */
Damien Miller280ecfb2003-05-14 13:46:00 +10001285 for (i = 0; i < options.num_identity_files; i++) {
1286 key = options.identity_keys[i];
1287 if (key && key->type == KEY_RSA1)
1288 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11001289 if (key && key->cert && key->cert->type != SSH2_CERT_TYPE_USER)
1290 continue;
Damien Miller280ecfb2003-05-14 13:46:00 +10001291 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001292 id = xcalloc(1, sizeof(*id));
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001293 id->agent_fd = -1;
Damien Miller280ecfb2003-05-14 13:46:00 +10001294 id->key = key;
1295 id->filename = xstrdup(options.identity_files[i]);
Darren Tucker19104782013-04-05 11:13:08 +11001296 id->userprovided = options.identity_file_userprovided[i];
Damien Miller280ecfb2003-05-14 13:46:00 +10001297 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001298 }
Damien Millercb6b68b2012-12-03 09:49:52 +11001299 /* Prefer PKCS11 keys that are explicitly listed */
1300 TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
Damien Miller86687062014-07-02 15:28:02 +10001301 if (id->key == NULL || (id->key->flags & SSHKEY_FLAG_EXT) == 0)
Damien Millercb6b68b2012-12-03 09:49:52 +11001302 continue;
1303 found = 0;
1304 TAILQ_FOREACH(id2, &files, next) {
1305 if (id2->key == NULL ||
Damien Miller86687062014-07-02 15:28:02 +10001306 (id2->key->flags & SSHKEY_FLAG_EXT) == 0)
Damien Millercb6b68b2012-12-03 09:49:52 +11001307 continue;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001308 if (sshkey_equal(id->key, id2->key)) {
Damien Millercb6b68b2012-12-03 09:49:52 +11001309 TAILQ_REMOVE(&files, id, next);
1310 TAILQ_INSERT_TAIL(preferred, id, next);
1311 found = 1;
1312 break;
1313 }
1314 }
1315 /* If IdentitiesOnly set and key not found then don't use it */
1316 if (!found && options.identities_only) {
1317 TAILQ_REMOVE(&files, id, next);
Damien Miller1d2c4562014-02-04 11:18:20 +11001318 explicit_bzero(id, sizeof(*id));
Damien Millercb6b68b2012-12-03 09:49:52 +11001319 free(id);
1320 }
1321 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001322 /* list of certificates specified by user */
1323 for (i = 0; i < options.num_certificate_files; i++) {
1324 key = options.certificates[i];
1325 if (!key_is_cert(key) || key->cert == NULL ||
1326 key->cert->type != SSH2_CERT_TYPE_USER)
1327 continue;
1328 id = xcalloc(1, sizeof(*id));
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001329 id->agent_fd = -1;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001330 id->key = key;
1331 id->filename = xstrdup(options.certificate_files[i]);
1332 id->userprovided = options.certificate_file_userprovided[i];
1333 TAILQ_INSERT_TAIL(preferred, id, next);
1334 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001335 /* list of keys supported by the agent */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001336 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0) {
1337 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1338 debug("%s: ssh_get_authentication_socket: %s",
1339 __func__, ssh_err(r));
1340 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) {
1341 if (r != SSH_ERR_AGENT_NO_IDENTITIES)
1342 debug("%s: ssh_fetch_identitylist: %s",
1343 __func__, ssh_err(r));
markus@openbsd.orgfc77ccd2016-01-14 22:56:56 +00001344 close(agent_fd);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001345 } else {
1346 for (j = 0; j < idlist->nkeys; j++) {
Damien Miller280ecfb2003-05-14 13:46:00 +10001347 found = 0;
1348 TAILQ_FOREACH(id, &files, next) {
djm@openbsd.org141efe42015-01-14 20:05:27 +00001349 /*
1350 * agent keys from the config file are
1351 * preferred
1352 */
1353 if (sshkey_equal(idlist->keys[j], id->key)) {
Damien Miller280ecfb2003-05-14 13:46:00 +10001354 TAILQ_REMOVE(&files, id, next);
1355 TAILQ_INSERT_TAIL(preferred, id, next);
djm@openbsd.org141efe42015-01-14 20:05:27 +00001356 id->agent_fd = agent_fd;
Damien Miller280ecfb2003-05-14 13:46:00 +10001357 found = 1;
1358 break;
1359 }
1360 }
Damien Millerbd394c32004-03-08 23:12:36 +11001361 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001362 id = xcalloc(1, sizeof(*id));
djm@openbsd.org141efe42015-01-14 20:05:27 +00001363 /* XXX "steals" key/comment from idlist */
1364 id->key = idlist->keys[j];
1365 id->filename = idlist->comments[j];
1366 idlist->keys[j] = NULL;
1367 idlist->comments[j] = NULL;
1368 id->agent_fd = agent_fd;
Damien Miller280ecfb2003-05-14 13:46:00 +10001369 TAILQ_INSERT_TAIL(&agent, id, next);
1370 }
1371 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001372 ssh_free_identitylist(idlist);
Damien Miller280ecfb2003-05-14 13:46:00 +10001373 /* append remaining agent keys */
1374 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1375 TAILQ_REMOVE(&agent, id, next);
1376 TAILQ_INSERT_TAIL(preferred, id, next);
1377 }
djm@openbsd.org141efe42015-01-14 20:05:27 +00001378 authctxt->agent_fd = agent_fd;
Damien Miller62cee002000-09-23 17:15:56 +11001379 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001380 /* append remaining keys from the config file */
1381 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1382 TAILQ_REMOVE(&files, id, next);
1383 TAILQ_INSERT_TAIL(preferred, id, next);
1384 }
djm@openbsd.orge679c092015-10-13 16:15:21 +00001385 /* finally, filter by PubkeyAcceptedKeyTypes */
1386 TAILQ_FOREACH_SAFE(id, preferred, next, id2) {
1387 if (id->key != NULL &&
1388 match_pattern_list(sshkey_ssh_name(id->key),
1389 options.pubkey_key_types, 0) != 1) {
1390 debug("Skipping %s key %s - "
1391 "not in PubkeyAcceptedKeyTypes",
1392 sshkey_ssh_name(id->key), id->filename);
1393 TAILQ_REMOVE(preferred, id, next);
1394 sshkey_free(id->key);
1395 free(id->filename);
1396 memset(id, 0, sizeof(*id));
1397 continue;
1398 }
djm@openbsd.org6064a8b2015-12-04 00:24:55 +00001399 debug2("key: %s (%p)%s%s", id->filename, id->key,
1400 id->userprovided ? ", explicit" : "",
1401 id->agent_fd != -1 ? ", agent" : "");
Damien Miller280ecfb2003-05-14 13:46:00 +10001402 }
1403}
1404
1405static void
1406pubkey_cleanup(Authctxt *authctxt)
1407{
1408 Identity *id;
1409
djm@openbsd.org141efe42015-01-14 20:05:27 +00001410 if (authctxt->agent_fd != -1)
1411 ssh_close_authentication_socket(authctxt->agent_fd);
Damien Miller280ecfb2003-05-14 13:46:00 +10001412 for (id = TAILQ_FIRST(&authctxt->keys); id;
1413 id = TAILQ_FIRST(&authctxt->keys)) {
1414 TAILQ_REMOVE(&authctxt->keys, id, next);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00001415 sshkey_free(id->key);
Darren Tuckera627d422013-06-02 07:31:17 +10001416 free(id->filename);
1417 free(id);
Damien Miller280ecfb2003-05-14 13:46:00 +10001418 }
Damien Millereba71ba2000-04-29 23:57:08 +10001419}
1420
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001421static int
1422try_identity(Identity *id)
1423{
1424 if (!id->key)
1425 return (0);
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001426 if (key_type_plain(id->key->type) == KEY_RSA &&
1427 (datafellows & SSH_BUG_RSASIGMD5) != 0) {
1428 debug("Skipped %s key %s for RSA/MD5 server",
1429 key_type(id->key), id->filename);
1430 return (0);
1431 }
1432 return (id->key->type != KEY_RSA1);
1433}
1434
Damien Miller62cee002000-09-23 17:15:56 +11001435int
1436userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001437{
Damien Miller280ecfb2003-05-14 13:46:00 +10001438 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001439 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001440
Damien Miller280ecfb2003-05-14 13:46:00 +10001441 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1442 if (id->tried++)
1443 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001444 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001445 TAILQ_REMOVE(&authctxt->keys, id, next);
1446 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1447 /*
1448 * send a test message if we have the public key. for
1449 * encrypted keys we cannot do this and have to load the
1450 * private key instead
1451 */
Damien Miller324541e2013-12-31 12:25:40 +11001452 if (id->key != NULL) {
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001453 if (try_identity(id)) {
Damien Miller324541e2013-12-31 12:25:40 +11001454 debug("Offering %s public key: %s",
1455 key_type(id->key), id->filename);
1456 sent = send_pubkey_test(authctxt, id);
1457 }
1458 } else {
Damien Miller280ecfb2003-05-14 13:46:00 +10001459 debug("Trying private key: %s", id->filename);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001460 id->key = load_identity_file(id);
Damien Miller280ecfb2003-05-14 13:46:00 +10001461 if (id->key != NULL) {
markus@openbsd.org3a1638d2015-07-10 06:21:53 +00001462 if (try_identity(id)) {
1463 id->isprivate = 1;
Damien Miller324541e2013-12-31 12:25:40 +11001464 sent = sign_and_send_pubkey(
1465 authctxt, id);
1466 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001467 key_free(id->key);
1468 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001469 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001470 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001471 if (sent)
1472 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001473 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001474 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001475}
Damien Millereba71ba2000-04-29 23:57:08 +10001476
Damien Miller874d77b2000-10-14 16:23:11 +11001477/*
1478 * Send userauth request message specifying keyboard-interactive method.
1479 */
1480int
1481userauth_kbdint(Authctxt *authctxt)
1482{
1483 static int attempt = 0;
1484
1485 if (attempt++ >= options.number_of_password_prompts)
1486 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001487 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1488 if (attempt > 1 && !authctxt->info_req_seen) {
1489 debug3("userauth_kbdint: disable: no info_req_seen");
1490 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1491 return 0;
1492 }
Damien Miller874d77b2000-10-14 16:23:11 +11001493
1494 debug2("userauth_kbdint");
1495 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1496 packet_put_cstring(authctxt->server_user);
1497 packet_put_cstring(authctxt->service);
1498 packet_put_cstring(authctxt->method->name);
1499 packet_put_cstring(""); /* lang */
1500 packet_put_cstring(options.kbd_interactive_devices ?
1501 options.kbd_interactive_devices : "");
1502 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001503
1504 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1505 return 1;
1506}
1507
1508/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001509 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001510 */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001511int
Damien Miller630d6f42002-01-22 23:17:30 +11001512input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001513{
1514 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001515 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001516 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001517 int echo = 0;
1518
1519 debug2("input_userauth_info_req");
1520
1521 if (authctxt == NULL)
1522 fatal("input_userauth_info_req: no authentication context");
1523
Ben Lindstrom7d199962001-09-12 18:29:00 +00001524 authctxt->info_req_seen = 1;
1525
Damien Miller874d77b2000-10-14 16:23:11 +11001526 name = packet_get_string(NULL);
1527 inst = packet_get_string(NULL);
1528 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001529 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001530 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001531 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001532 logit("%s", inst);
Darren Tuckera627d422013-06-02 07:31:17 +10001533 free(name);
1534 free(inst);
1535 free(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001536
1537 num_prompts = packet_get_int();
1538 /*
1539 * Begin to build info response packet based on prompts requested.
1540 * We commit to providing the correct number of responses, so if
1541 * further on we run into a problem that prevents this, we have to
1542 * be sure and clean this up and send a correct error response.
1543 */
1544 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1545 packet_put_int(num_prompts);
1546
Ben Lindstrom551ea372001-06-05 18:56:16 +00001547 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001548 for (i = 0; i < num_prompts; i++) {
1549 prompt = packet_get_string(NULL);
1550 echo = packet_get_char();
1551
Ben Lindstrom949974b2001-06-25 05:20:31 +00001552 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001553
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001554 packet_put_cstring(response);
Damien Millera5103f42014-02-04 11:20:14 +11001555 explicit_bzero(response, strlen(response));
Darren Tuckera627d422013-06-02 07:31:17 +10001556 free(response);
1557 free(prompt);
Damien Miller874d77b2000-10-14 16:23:11 +11001558 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001559 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001560
Damien Miller9f643902001-11-12 11:02:52 +11001561 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001562 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001563 return 0;
Damien Miller874d77b2000-10-14 16:23:11 +11001564}
Damien Miller62cee002000-09-23 17:15:56 +11001565
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001566static int
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001567ssh_keysign(struct sshkey *key, u_char **sigp, size_t *lenp,
1568 const u_char *data, size_t datalen)
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001569{
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001570 struct sshbuf *b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001571 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001572 pid_t pid;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001573 int i, r, to[2], from[2], status, sock = packet_get_connection_in();
1574 u_char rversion = 0, version = 2;
1575 void (*osigchld)(int);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001576
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001577 *sigp = NULL;
1578 *lenp = 0;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001579
Ben Lindstrom5206b952002-06-06 19:59:29 +00001580 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001581 error("%s: not installed: %s", __func__, strerror(errno));
Ben Lindstrom5206b952002-06-06 19:59:29 +00001582 return -1;
1583 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001584 if (fflush(stdout) != 0) {
1585 error("%s: fflush: %s", __func__, strerror(errno));
1586 return -1;
1587 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001588 if (pipe(to) < 0) {
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001589 error("%s: pipe: %s", __func__, strerror(errno));
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001590 return -1;
1591 }
1592 if (pipe(from) < 0) {
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001593 error("%s: pipe: %s", __func__, strerror(errno));
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001594 return -1;
1595 }
1596 if ((pid = fork()) < 0) {
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001597 error("%s: fork: %s", __func__, strerror(errno));
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001598 return -1;
1599 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001600 osigchld = signal(SIGCHLD, SIG_DFL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001601 if (pid == 0) {
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001602 /* keep the socket on exec */
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001603 fcntl(sock, F_SETFD, 0);
Damien Miller2e5fe882006-06-13 13:10:00 +10001604 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001605 close(from[0]);
1606 if (dup2(from[1], STDOUT_FILENO) < 0)
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001607 fatal("%s: dup2: %s", __func__, strerror(errno));
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001608 close(to[1]);
1609 if (dup2(to[0], STDIN_FILENO) < 0)
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001610 fatal("%s: dup2: %s", __func__, strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001611 close(from[1]);
1612 close(to[0]);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001613 /* Close everything but stdio and the socket */
1614 for (i = STDERR_FILENO + 1; i < sock; i++)
1615 close(i);
1616 closefrom(sock + 1);
1617 debug3("%s: [child] pid=%ld, exec %s",
1618 __func__, (long)getpid(), _PATH_SSH_KEY_SIGN);
mmcc@openbsd.org94141b72015-12-11 00:20:04 +00001619 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *)NULL);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001620 fatal("%s: exec(%s): %s", __func__, _PATH_SSH_KEY_SIGN,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001621 strerror(errno));
1622 }
1623 close(from[1]);
1624 close(to[0]);
1625
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001626 if ((b = sshbuf_new()) == NULL)
1627 fatal("%s: sshbuf_new failed", __func__);
1628 /* send # of sock, data to be signed */
1629 if ((r = sshbuf_put_u32(b, sock) != 0) ||
1630 (r = sshbuf_put_string(b, data, datalen)) != 0)
1631 fatal("%s: buffer error: %s", __func__, ssh_err(r));
1632 if (ssh_msg_send(to[1], version, b) == -1)
1633 fatal("%s: couldn't send request", __func__);
1634 sshbuf_reset(b);
1635 r = ssh_msg_recv(from[0], b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001636 close(from[0]);
1637 close(to[1]);
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001638 if (r < 0) {
1639 error("%s: no reply", __func__);
1640 goto fail;
1641 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001642
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001643 errno = 0;
1644 while (waitpid(pid, &status, 0) < 0) {
1645 if (errno != EINTR) {
1646 error("%s: waitpid %ld: %s",
1647 __func__, (long)pid, strerror(errno));
1648 goto fail;
1649 }
1650 }
1651 if (!WIFEXITED(status)) {
1652 error("%s: exited abnormally", __func__);
1653 goto fail;
1654 }
1655 if (WEXITSTATUS(status) != 0) {
1656 error("%s: exited with status %d",
1657 __func__, WEXITSTATUS(status));
1658 goto fail;
1659 }
1660 if ((r = sshbuf_get_u8(b, &rversion)) != 0) {
1661 error("%s: buffer error: %s", __func__, ssh_err(r));
1662 goto fail;
1663 }
1664 if (rversion != version) {
1665 error("%s: bad version", __func__);
1666 goto fail;
1667 }
1668 if ((r = sshbuf_get_string(b, sigp, lenp)) != 0) {
1669 error("%s: buffer error: %s", __func__, ssh_err(r));
1670 fail:
1671 signal(SIGCHLD, osigchld);
1672 sshbuf_free(b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001673 return -1;
1674 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001675 signal(SIGCHLD, osigchld);
1676 sshbuf_free(b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001677
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001678 return 0;
1679}
1680
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001681int
1682userauth_hostbased(Authctxt *authctxt)
1683{
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001684 struct ssh *ssh = active_state;
1685 struct sshkey *private = NULL;
1686 struct sshbuf *b = NULL;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001687 const char *service;
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001688 u_char *sig = NULL, *keyblob = NULL;
1689 char *fp = NULL, *chost = NULL, *lname = NULL;
1690 size_t siglen = 0, keylen = 0;
1691 int i, r, success = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001692
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001693 if (authctxt->ktypes == NULL) {
1694 authctxt->oktypes = xstrdup(options.hostbased_key_types);
1695 authctxt->ktypes = authctxt->oktypes;
1696 }
djm@openbsd.org1195f4c2015-01-08 10:14:08 +00001697
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001698 /*
1699 * Work through each listed type pattern in HostbasedKeyTypes,
1700 * trying each hostkey that matches the type in turn.
1701 */
1702 for (;;) {
1703 if (authctxt->active_ktype == NULL)
1704 authctxt->active_ktype = strsep(&authctxt->ktypes, ",");
1705 if (authctxt->active_ktype == NULL ||
1706 *authctxt->active_ktype == '\0')
1707 break;
1708 debug3("%s: trying key type %s", __func__,
1709 authctxt->active_ktype);
1710
1711 /* check for a useful key */
1712 private = NULL;
1713 for (i = 0; i < authctxt->sensitive->nkeys; i++) {
1714 if (authctxt->sensitive->keys[i] == NULL ||
1715 authctxt->sensitive->keys[i]->type == KEY_RSA1 ||
1716 authctxt->sensitive->keys[i]->type == KEY_UNSPEC)
1717 continue;
1718 if (match_pattern_list(
1719 sshkey_ssh_name(authctxt->sensitive->keys[i]),
djm@openbsd.orge661a862015-05-04 06:10:48 +00001720 authctxt->active_ktype, 0) != 1)
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001721 continue;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001722 /* we take and free the key */
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001723 private = authctxt->sensitive->keys[i];
1724 authctxt->sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001725 break;
1726 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001727 /* Found one */
1728 if (private != NULL)
1729 break;
1730 /* No more keys of this type; advance */
1731 authctxt->active_ktype = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001732 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001733 if (private == NULL) {
1734 free(authctxt->oktypes);
1735 authctxt->oktypes = authctxt->ktypes = NULL;
1736 authctxt->active_ktype = NULL;
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001737 debug("No more client hostkeys for hostbased authentication.");
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001738 goto out;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001739 }
djm@openbsd.org17bf3d82014-12-11 05:13:28 +00001740
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001741 if ((fp = sshkey_fingerprint(private, options.fingerprint_hash,
1742 SSH_FP_DEFAULT)) == NULL) {
1743 error("%s: sshkey_fingerprint failed", __func__);
1744 goto out;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001745 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001746 debug("%s: trying hostkey %s %s",
1747 __func__, sshkey_ssh_name(private), fp);
djm@openbsd.org17bf3d82014-12-11 05:13:28 +00001748
Damien Miller91c18472001-11-12 11:02:03 +11001749 /* figure out a name for the client host */
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001750 if ((lname = get_local_name(packet_get_connection_in())) == NULL) {
1751 error("%s: cannot get local ipaddr/name", __func__);
1752 goto out;
Damien Miller91c18472001-11-12 11:02:03 +11001753 }
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001754
1755 /* XXX sshbuf_put_stringf? */
1756 xasprintf(&chost, "%s.", lname);
1757 debug2("%s: chost %s", __func__, chost);
Damien Miller91c18472001-11-12 11:02:03 +11001758
Ben Lindstrom671388f2001-04-19 20:40:45 +00001759 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1760 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001761
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001762 /* construct data */
1763 if ((b = sshbuf_new()) == NULL) {
1764 error("%s: sshbuf_new failed", __func__);
1765 goto out;
1766 }
1767 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) {
1768 error("%s: sshkey_to_blob: %s", __func__, ssh_err(r));
1769 goto out;
1770 }
1771 if ((r = sshbuf_put_string(b, session_id2, session_id2_len)) != 0 ||
1772 (r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
1773 (r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 ||
1774 (r = sshbuf_put_cstring(b, service)) != 0 ||
1775 (r = sshbuf_put_cstring(b, authctxt->method->name)) != 0 ||
1776 (r = sshbuf_put_cstring(b, key_ssh_name(private))) != 0 ||
1777 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 ||
1778 (r = sshbuf_put_cstring(b, chost)) != 0 ||
1779 (r = sshbuf_put_cstring(b, authctxt->local_user)) != 0) {
1780 error("%s: buffer error: %s", __func__, ssh_err(r));
1781 goto out;
1782 }
1783
1784#ifdef DEBUG_PK
1785 sshbuf_dump(b, stderr);
1786#endif
1787 if (authctxt->sensitive->external_keysign)
1788 r = ssh_keysign(private, &sig, &siglen,
1789 sshbuf_ptr(b), sshbuf_len(b));
1790 else if ((r = sshkey_sign(private, &sig, &siglen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +00001791 sshbuf_ptr(b), sshbuf_len(b), NULL, datafellows)) != 0)
djm@openbsd.org46347ed2015-01-30 11:43:14 +00001792 debug("%s: sshkey_sign: %s", __func__, ssh_err(r));
1793 if (r != 0) {
1794 error("sign using hostkey %s %s failed",
1795 sshkey_ssh_name(private), fp);
1796 goto out;
1797 }
1798 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
1799 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 ||
1800 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 ||
1801 (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 ||
1802 (r = sshpkt_put_cstring(ssh, key_ssh_name(private))) != 0 ||
1803 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
1804 (r = sshpkt_put_cstring(ssh, chost)) != 0 ||
1805 (r = sshpkt_put_cstring(ssh, authctxt->local_user)) != 0 ||
1806 (r = sshpkt_put_string(ssh, sig, siglen)) != 0 ||
1807 (r = sshpkt_send(ssh)) != 0) {
1808 error("%s: packet error: %s", __func__, ssh_err(r));
1809 goto out;
1810 }
1811 success = 1;
1812
1813 out:
1814 if (sig != NULL) {
1815 explicit_bzero(sig, siglen);
1816 free(sig);
1817 }
1818 free(keyblob);
1819 free(lname);
1820 free(fp);
1821 free(chost);
1822 sshkey_free(private);
1823 sshbuf_free(b);
1824
1825 return success;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001826}
1827
Damien Miller62cee002000-09-23 17:15:56 +11001828/* find auth method */
1829
Damien Miller62cee002000-09-23 17:15:56 +11001830/*
1831 * given auth method name, if configurable options permit this method fill
1832 * in auth_ident field and return true, otherwise return false.
1833 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001834static int
Damien Miller62cee002000-09-23 17:15:56 +11001835authmethod_is_enabled(Authmethod *method)
1836{
1837 if (method == NULL)
1838 return 0;
1839 /* return false if options indicate this method is disabled */
1840 if (method->enabled == NULL || *method->enabled == 0)
1841 return 0;
1842 /* return false if batch mode is enabled but method needs interactive mode */
1843 if (method->batch_flag != NULL && *method->batch_flag != 0)
1844 return 0;
1845 return 1;
1846}
1847
Ben Lindstrombba81212001-06-25 05:01:22 +00001848static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001849authmethod_lookup(const char *name)
1850{
1851 Authmethod *method = NULL;
1852 if (name != NULL)
1853 for (method = authmethods; method->name != NULL; method++)
1854 if (strcmp(name, method->name) == 0)
1855 return method;
1856 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1857 return NULL;
1858}
1859
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001860/* XXX internal state */
1861static Authmethod *current = NULL;
1862static char *supported = NULL;
1863static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001864
Damien Miller62cee002000-09-23 17:15:56 +11001865/*
1866 * Given the authentication method list sent by the server, return the
1867 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001868 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001869 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001870static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001871authmethod_get(char *authlist)
1872{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001873 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001874 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001875
Damien Miller62cee002000-09-23 17:15:56 +11001876 /* Use a suitable default if we're passed a nil list. */
1877 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001878 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001879
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001880 if (supported == NULL || strcmp(authlist, supported) != 0) {
1881 debug3("start over, passed a different list %s", authlist);
Darren Tuckera627d422013-06-02 07:31:17 +10001882 free(supported);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001883 supported = xstrdup(authlist);
1884 preferred = options.preferred_authentications;
1885 debug3("preferred %s", preferred);
1886 current = NULL;
1887 } else if (current != NULL && authmethod_is_enabled(current))
1888 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001889
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001890 for (;;) {
1891 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001892 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001893 current = NULL;
1894 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001895 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001896 preferred += next;
1897 debug3("authmethod_lookup %s", name);
1898 debug3("remaining preferred: %s", preferred);
1899 if ((current = authmethod_lookup(name)) != NULL &&
1900 authmethod_is_enabled(current)) {
1901 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001902 debug("Next authentication method: %s", name);
Darren Tuckera627d422013-06-02 07:31:17 +10001903 free(name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001904 return current;
1905 }
Darren Tuckere52a2602013-06-06 08:22:05 +10001906 free(name);
Damien Millereba71ba2000-04-29 23:57:08 +10001907 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001908}
Damien Miller62cee002000-09-23 17:15:56 +11001909
Ben Lindstrom79073822001-07-04 03:42:30 +00001910static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001911authmethods_get(void)
1912{
1913 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001914 Buffer b;
1915 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001916
Damien Miller0e3b8722002-01-22 23:26:38 +11001917 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001918 for (method = authmethods; method->name != NULL; method++) {
1919 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001920 if (buffer_len(&b) > 0)
1921 buffer_append(&b, ",", 1);
1922 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001923 }
Damien Miller62cee002000-09-23 17:15:56 +11001924 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001925 buffer_append(&b, "\0", 1);
1926 list = xstrdup(buffer_ptr(&b));
1927 buffer_free(&b);
1928 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001929}
Damien Miller01ed2272008-11-05 16:20:46 +11001930