blob: a306447b3a75c2d354b7ff025f9a2fc81dbfa4c9 [file] [log] [blame]
Damien Miller5ceddc32013-02-15 12:18:32 +11001/* $OpenBSD: sshconnect2.c,v 1.191 2013/02/15 00:21:01 dtucker 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 Miller2e28d862008-07-17 19:15:43 +100043#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
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"
64#include "readconf.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100065#include "misc.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"
Damien Millercee85232009-03-06 00:58:22 +110073#include "schnorr.h"
Damien Miller01ed2272008-11-05 16:20:46 +110074#include "jpake.h"
Damien Miller874d77b2000-10-14 16:23:11 +110075
Darren Tucker0efd1552003-08-26 11:49:55 +100076#ifdef GSSAPI
77#include "ssh-gss.h"
78#endif
79
Damien Millereba71ba2000-04-29 23:57:08 +100080/* import */
81extern char *client_version_string;
82extern char *server_version_string;
83extern Options options;
84
85/*
86 * SSH2 key exchange
87 */
88
Ben Lindstrom46c16222000-12-22 01:43:59 +000089u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100090u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100091
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000092char *xxx_host;
93struct sockaddr *xxx_hostaddr;
94
Ben Lindstromf28f6342001-04-04 02:03:04 +000095Kex *xxx_kex = NULL;
96
Ben Lindstrombba81212001-06-25 05:01:22 +000097static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000098verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000099{
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000100 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +1000101 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000102 return 0;
103}
104
Damien Millerd925dcd2010-12-01 12:21:51 +1100105static char *
106order_hostkeyalgs(char *host, struct sockaddr *hostaddr, u_short port)
107{
108 char *oavail, *avail, *first, *last, *alg, *hostname, *ret;
109 size_t maxlen;
110 struct hostkeys *hostkeys;
111 int ktype;
Damien Miller295ee632011-05-29 21:42:31 +1000112 u_int i;
Damien Millerd925dcd2010-12-01 12:21:51 +1100113
114 /* Find all hostkeys for this hostname */
115 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
116 hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000117 for (i = 0; i < options.num_user_hostfiles; i++)
118 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
119 for (i = 0; i < options.num_system_hostfiles; i++)
120 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100121
122 oavail = avail = xstrdup(KEX_DEFAULT_PK_ALG);
123 maxlen = strlen(avail) + 1;
124 first = xmalloc(maxlen);
125 last = xmalloc(maxlen);
126 *first = *last = '\0';
127
128#define ALG_APPEND(to, from) \
129 do { \
130 if (*to != '\0') \
131 strlcat(to, ",", maxlen); \
132 strlcat(to, from, maxlen); \
133 } while (0)
134
135 while ((alg = strsep(&avail, ",")) && *alg != '\0') {
136 if ((ktype = key_type_from_name(alg)) == KEY_UNSPEC)
137 fatal("%s: unknown alg %s", __func__, alg);
138 if (lookup_key_in_hostkeys_by_type(hostkeys,
139 key_type_plain(ktype), NULL))
140 ALG_APPEND(first, alg);
141 else
142 ALG_APPEND(last, alg);
143 }
144#undef ALG_APPEND
145 xasprintf(&ret, "%s%s%s", first, *first == '\0' ? "" : ",", last);
146 if (*first != '\0')
147 debug3("%s: prefer hostkeyalgs: %s", __func__, first);
148
149 xfree(first);
150 xfree(last);
151 xfree(hostname);
152 xfree(oavail);
153 free_hostkeys(hostkeys);
154
155 return ret;
156}
157
Damien Millereba71ba2000-04-29 23:57:08 +1000158void
Damien Millerd925dcd2010-12-01 12:21:51 +1100159ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Damien Miller874d77b2000-10-14 16:23:11 +1100160{
Damien Miller874d77b2000-10-14 16:23:11 +1100161 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000162
163 xxx_host = host;
164 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +1100165
Damien Millere39cacc2000-11-29 12:18:44 +1100166 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +1000167 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +1100168 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100169 }
170 if (options.ciphers != NULL) {
171 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
172 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
173 }
Damien Millera0ff4662001-03-30 10:49:35 +1000174 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
175 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
176 myproposal[PROPOSAL_ENC_ALGS_STOC] =
177 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100178 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000179 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000180 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100181 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000182 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000183 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100184 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000185 if (options.macs != NULL) {
186 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
187 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
188 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000189 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100190 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000191 options.hostkeyalgorithms;
Damien Millerd925dcd2010-12-01 12:21:51 +1100192 else {
193 /* Prefer algorithms that we already have keys for */
194 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
195 order_hostkeyalgs(host, hostaddr, port);
196 }
Damien Millerd5f62bf2010-09-24 22:11:14 +1000197 if (options.kex_algorithms != NULL)
198 myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100199
Damien Millera5539d22003-04-09 20:50:06 +1000200 if (options.rekey_limit)
Damien Miller3dff1762008-02-10 22:25:52 +1100201 packet_set_rekey_limit((u_int32_t)options.rekey_limit);
Damien Millera5539d22003-04-09 20:50:06 +1000202
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000203 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000204 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100205 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000206 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100207 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100208 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Damien Millereb8b60e2010-08-31 22:41:14 +1000209 kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000210 kex->client_version_string=client_version_string;
211 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000212 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100213
Ben Lindstromf28f6342001-04-04 02:03:04 +0000214 xxx_kex = kex;
215
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000216 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100217
Darren Tucker36331b52010-01-08 16:50:41 +1100218 if (options.use_roaming && !kex->roaming) {
219 debug("Roaming not allowed by server");
220 options.use_roaming = 0;
221 }
222
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000223 session_id2 = kex->session_id;
224 session_id2_len = kex->session_id_len;
225
Damien Miller874d77b2000-10-14 16:23:11 +1100226#ifdef DEBUG_KEXDH
227 /* send 1st encrypted/maced/compressed message */
228 packet_start(SSH2_MSG_IGNORE);
229 packet_put_cstring("markus");
230 packet_send();
231 packet_write_wait();
232#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000233}
Damien Millerb1715dc2000-05-30 13:44:51 +1000234
Damien Millereba71ba2000-04-29 23:57:08 +1000235/*
236 * Authenticate user
237 */
Damien Miller62cee002000-09-23 17:15:56 +1100238
239typedef struct Authctxt Authctxt;
240typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000241typedef struct identity Identity;
242typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100243
Damien Miller280ecfb2003-05-14 13:46:00 +1000244struct identity {
245 TAILQ_ENTRY(identity) next;
246 AuthenticationConnection *ac; /* set if agent supports key */
247 Key *key; /* public/private key */
248 char *filename; /* comment for agent-only keys */
249 int tried;
250 int isprivate; /* key points to the private key */
Damien Miller5ceddc32013-02-15 12:18:32 +1100251 int userprovided;
Damien Miller280ecfb2003-05-14 13:46:00 +1000252};
253TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100254
255struct Authctxt {
256 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000257 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100258 const char *host;
259 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100260 Authmethod *method;
Damien Miller79442c02010-05-10 11:55:38 +1000261 sig_atomic_t success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000262 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000263 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000264 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000265 AuthenticationConnection *agent;
266 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000267 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000268 /* kbd-interactive */
269 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000270 /* generic */
271 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100272};
273struct Authmethod {
274 char *name; /* string to compare against server's list */
275 int (*userauth)(Authctxt *authctxt);
Damien Miller01ed2272008-11-05 16:20:46 +1100276 void (*cleanup)(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100277 int *enabled; /* flag in option struct that enables method */
278 int *batch_flag; /* flag in option struct that disables method */
279};
280
Damien Miller630d6f42002-01-22 23:17:30 +1100281void input_userauth_success(int, u_int32_t, void *);
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100282void input_userauth_success_unexpected(int, u_int32_t, void *);
Damien Miller630d6f42002-01-22 23:17:30 +1100283void input_userauth_failure(int, u_int32_t, void *);
284void input_userauth_banner(int, u_int32_t, void *);
285void input_userauth_error(int, u_int32_t, void *);
286void input_userauth_info_req(int, u_int32_t, void *);
287void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000288void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller01ed2272008-11-05 16:20:46 +1100289void input_userauth_jpake_server_step1(int, u_int32_t, void *);
290void input_userauth_jpake_server_step2(int, u_int32_t, void *);
291void input_userauth_jpake_server_confirm(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100292
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000293int userauth_none(Authctxt *);
294int userauth_pubkey(Authctxt *);
295int userauth_passwd(Authctxt *);
296int userauth_kbdint(Authctxt *);
297int userauth_hostbased(Authctxt *);
Damien Miller01ed2272008-11-05 16:20:46 +1100298int userauth_jpake(Authctxt *);
299
300void userauth_jpake_cleanup(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100301
Darren Tucker0efd1552003-08-26 11:49:55 +1000302#ifdef GSSAPI
303int userauth_gssapi(Authctxt *authctxt);
304void input_gssapi_response(int type, u_int32_t, void *);
305void input_gssapi_token(int type, u_int32_t, void *);
306void input_gssapi_hash(int type, u_int32_t, void *);
307void input_gssapi_error(int, u_int32_t, void *);
308void input_gssapi_errtok(int, u_int32_t, void *);
309#endif
310
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000311void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000312
Damien Miller280ecfb2003-05-14 13:46:00 +1000313static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000314static void pubkey_prepare(Authctxt *);
315static void pubkey_cleanup(Authctxt *);
Damien Miller5ceddc32013-02-15 12:18:32 +1100316static Key *load_identity_file(char *, int);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000317
Ben Lindstrombba81212001-06-25 05:01:22 +0000318static Authmethod *authmethod_get(char *authlist);
319static Authmethod *authmethod_lookup(const char *name);
320static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100321
322Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000323#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100324 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000325 userauth_gssapi,
Damien Miller01ed2272008-11-05 16:20:46 +1100326 NULL,
Darren Tucker0efd1552003-08-26 11:49:55 +1000327 &options.gss_authentication,
328 NULL},
329#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000330 {"hostbased",
331 userauth_hostbased,
Damien Miller01ed2272008-11-05 16:20:46 +1100332 NULL,
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000333 &options.hostbased_authentication,
334 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000335 {"publickey",
336 userauth_pubkey,
Damien Miller01ed2272008-11-05 16:20:46 +1100337 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000338 &options.pubkey_authentication,
339 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100340#ifdef JPAKE
341 {"jpake-01@openssh.com",
342 userauth_jpake,
343 userauth_jpake_cleanup,
344 &options.zero_knowledge_password_authentication,
345 &options.batch_mode},
346#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100347 {"keyboard-interactive",
348 userauth_kbdint,
Damien Miller01ed2272008-11-05 16:20:46 +1100349 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100350 &options.kbd_interactive_authentication,
351 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000352 {"password",
353 userauth_passwd,
Damien Miller01ed2272008-11-05 16:20:46 +1100354 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000355 &options.password_authentication,
356 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100357 {"none",
358 userauth_none,
359 NULL,
Damien Miller01ed2272008-11-05 16:20:46 +1100360 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100361 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100362 {NULL, NULL, NULL, NULL, NULL}
Damien Miller62cee002000-09-23 17:15:56 +1100363};
364
365void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000366ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000367 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100368{
369 Authctxt authctxt;
370 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100371
Ben Lindstrom551ea372001-06-05 18:56:16 +0000372 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000373 options.kbd_interactive_authentication = 1;
374
Damien Miller62cee002000-09-23 17:15:56 +1100375 packet_start(SSH2_MSG_SERVICE_REQUEST);
376 packet_put_cstring("ssh-userauth");
377 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000378 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100379 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100380 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000381 if (type != SSH2_MSG_SERVICE_ACCEPT)
382 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100383 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100384 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000385 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100386 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100387 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000388 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100389 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100390 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000391 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100392
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000393 if (options.preferred_authentications == NULL)
394 options.preferred_authentications = authmethods_get();
395
Damien Miller62cee002000-09-23 17:15:56 +1100396 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000397 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000398 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100399 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000400 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100401 authctxt.host = host;
402 authctxt.service = "ssh-connection"; /* service name */
403 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100404 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000405 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000406 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000407 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000408 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100409 if (authctxt.method == NULL)
410 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100411
412 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100413 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100414
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000415 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100416 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
417 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000418 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100419 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
420
Damien Miller280ecfb2003-05-14 13:46:00 +1000421 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000422 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
423
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000424 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100425}
Damien Millerf842fcb2003-05-15 12:01:28 +1000426
Damien Miller62cee002000-09-23 17:15:56 +1100427void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000428userauth(Authctxt *authctxt, char *authlist)
429{
Damien Miller01ed2272008-11-05 16:20:46 +1100430 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
431 authctxt->method->cleanup(authctxt);
432
Darren Tucker0efd1552003-08-26 11:49:55 +1000433 if (authctxt->methoddata) {
434 xfree(authctxt->methoddata);
435 authctxt->methoddata = NULL;
436 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000437 if (authlist == NULL) {
438 authlist = authctxt->authlist;
439 } else {
440 if (authctxt->authlist)
441 xfree(authctxt->authlist);
442 authctxt->authlist = authlist;
443 }
444 for (;;) {
445 Authmethod *method = authmethod_get(authlist);
446 if (method == NULL)
447 fatal("Permission denied (%s).", authlist);
448 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000449
450 /* reset the per method handler */
451 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
452 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
453
454 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000455 if (method->userauth(authctxt) != 0) {
456 debug2("we sent a %s packet, wait for reply", method->name);
457 break;
458 } else {
459 debug2("we did not send a packet, disable method");
460 method->enabled = NULL;
461 }
462 }
463}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000464
Damien Millerf7475d72008-11-03 19:26:18 +1100465/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000466void
Damien Miller630d6f42002-01-22 23:17:30 +1100467input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100468{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000469 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000470 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000471}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000472
Damien Millerf7475d72008-11-03 19:26:18 +1100473/* ARGSUSED */
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000474void
Damien Miller630d6f42002-01-22 23:17:30 +1100475input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000476{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000477 char *msg, *raw, *lang;
478 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000479
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000480 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000481 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000482 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100483 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000484 if (len > 65536)
485 len = 65536;
Damien Millerc4d1b362008-11-03 19:22:09 +1100486 msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
Darren Tucker0c348f52010-01-08 18:58:05 +1100487 strnvis(msg, raw, len * 4 + 1, VIS_SAFE|VIS_OCTAL|VIS_NOSLASH);
Darren Tucker046dff22003-10-08 17:32:02 +1000488 fprintf(stderr, "%s", msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000489 xfree(msg);
490 }
491 xfree(raw);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000492 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100493}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000494
Damien Millerf7475d72008-11-03 19:26:18 +1100495/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100496void
Damien Miller630d6f42002-01-22 23:17:30 +1100497input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100498{
499 Authctxt *authctxt = ctxt;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100500
Damien Miller62cee002000-09-23 17:15:56 +1100501 if (authctxt == NULL)
502 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000503 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000504 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000505 authctxt->authlist = NULL;
506 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100507 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
508 authctxt->method->cleanup(authctxt);
Darren Tucker79644822003-10-08 17:37:58 +1000509 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000510 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000511 authctxt->methoddata = NULL;
512 }
Damien Miller62cee002000-09-23 17:15:56 +1100513 authctxt->success = 1; /* break out */
514}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000515
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100516void
517input_userauth_success_unexpected(int type, u_int32_t seq, void *ctxt)
518{
519 Authctxt *authctxt = ctxt;
520
521 if (authctxt == NULL)
522 fatal("%s: no authentication context", __func__);
523
524 fatal("Unexpected authentication success during %s.",
525 authctxt->method->name);
526}
527
Damien Millerf7475d72008-11-03 19:26:18 +1100528/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100529void
Damien Miller630d6f42002-01-22 23:17:30 +1100530input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100531{
Damien Miller62cee002000-09-23 17:15:56 +1100532 Authctxt *authctxt = ctxt;
533 char *authlist = NULL;
534 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100535
536 if (authctxt == NULL)
537 fatal("input_userauth_failure: no authentication context");
538
Damien Miller874d77b2000-10-14 16:23:11 +1100539 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100540 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100541 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100542
543 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000544 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000545 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100546
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000547 userauth(authctxt, authlist);
548}
Damien Millerf7475d72008-11-03 19:26:18 +1100549
550/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000551void
Damien Miller630d6f42002-01-22 23:17:30 +1100552input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000553{
554 Authctxt *authctxt = ctxt;
555 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000556 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000557 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000558 int pktype, sent = 0;
559 u_int alen, blen;
560 char *pkalg, *fp;
561 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000562
563 if (authctxt == NULL)
564 fatal("input_userauth_pk_ok: no authentication context");
565 if (datafellows & SSH_BUG_PKOK) {
566 /* this is similar to SSH_BUG_PKAUTH */
567 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
568 pkblob = packet_get_string(&blen);
569 buffer_init(&b);
570 buffer_append(&b, pkblob, blen);
571 pkalg = buffer_get_string(&b, &alen);
572 buffer_free(&b);
573 } else {
574 pkalg = packet_get_string(&alen);
575 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000576 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100577 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000578
Damien Miller280ecfb2003-05-14 13:46:00 +1000579 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000580
Damien Miller280ecfb2003-05-14 13:46:00 +1000581 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
582 debug("unknown pkalg %s", pkalg);
583 goto done;
584 }
585 if ((key = key_from_blob(pkblob, blen)) == NULL) {
586 debug("no key from blob. pkalg %s", pkalg);
587 goto done;
588 }
589 if (key->type != pktype) {
590 error("input_userauth_pk_ok: type mismatch "
591 "for decoded key (received %d, expected %d)",
592 key->type, pktype);
593 goto done;
594 }
595 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
596 debug2("input_userauth_pk_ok: fp %s", fp);
597 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000598
Darren Tuckerd05b6012003-10-15 15:55:59 +1000599 /*
600 * search keys in the reverse order, because last candidate has been
601 * moved to the end of the queue. this also avoids confusion by
602 * duplicate keys
603 */
Damien Miller0b51a522004-04-20 20:07:19 +1000604 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000605 if (key_equal(key, id->key)) {
606 sent = sign_and_send_pubkey(authctxt, id);
607 break;
608 }
609 }
610done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000611 if (key != NULL)
612 key_free(key);
613 xfree(pkalg);
614 xfree(pkblob);
615
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000616 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000617 if (sent == 0)
618 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100619}
620
Darren Tucker0efd1552003-08-26 11:49:55 +1000621#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100622int
Darren Tucker0efd1552003-08-26 11:49:55 +1000623userauth_gssapi(Authctxt *authctxt)
624{
625 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100626 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000627 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000628 OM_uint32 min;
629 int ok = 0;
630
631 /* Try one GSSAPI method at a time, rather than sending them all at
632 * once. */
633
Darren Tucker56afe142003-11-03 20:06:14 +1100634 if (gss_supported == NULL)
635 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000636
637 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100638 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000639 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100640 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000641 ssh_gssapi_check_mechanism(&gssctxt,
642 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000643 ok = 1; /* Mechanism works */
644 } else {
645 mech++;
646 }
647 }
648
Damien Millera1cb9f32006-08-19 00:33:34 +1000649 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000650 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000651
652 authctxt->methoddata=(void *)gssctxt;
653
654 packet_start(SSH2_MSG_USERAUTH_REQUEST);
655 packet_put_cstring(authctxt->server_user);
656 packet_put_cstring(authctxt->service);
657 packet_put_cstring(authctxt->method->name);
658
659 packet_put_int(1);
660
Darren Tucker655a5e02003-11-03 20:09:03 +1100661 packet_put_int((gss_supported->elements[mech].length) + 2);
662 packet_put_char(SSH_GSS_OIDTYPE);
663 packet_put_char(gss_supported->elements[mech].length);
664 packet_put_raw(gss_supported->elements[mech].elements,
665 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000666
667 packet_send();
668
669 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
670 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
671 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
672 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
673
674 mech++; /* Move along to next candidate */
675
676 return 1;
677}
678
Damien Miller91c6aa42003-11-17 21:20:18 +1100679static OM_uint32
680process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
681{
682 Authctxt *authctxt = ctxt;
683 Gssctxt *gssctxt = authctxt->methoddata;
684 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000685 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
686 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100687 OM_uint32 status, ms, flags;
688 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100689
Damien Miller91c6aa42003-11-17 21:20:18 +1100690 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100691 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100692
693 if (send_tok.length > 0) {
694 if (GSS_ERROR(status))
695 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
696 else
697 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100698
Damien Miller91c6aa42003-11-17 21:20:18 +1100699 packet_put_string(send_tok.value, send_tok.length);
700 packet_send();
701 gss_release_buffer(&ms, &send_tok);
702 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100703
Damien Miller91c6aa42003-11-17 21:20:18 +1100704 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100705 /* send either complete or MIC, depending on mechanism */
706 if (!(flags & GSS_C_INTEG_FLAG)) {
707 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
708 packet_send();
709 } else {
710 ssh_gssapi_buildmic(&b, authctxt->server_user,
711 authctxt->service, "gssapi-with-mic");
712
713 gssbuf.value = buffer_ptr(&b);
714 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100715
Damien Miller0425d402003-11-17 22:18:21 +1100716 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100717
Damien Miller0425d402003-11-17 22:18:21 +1100718 if (!GSS_ERROR(status)) {
719 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
720 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100721
Damien Miller0425d402003-11-17 22:18:21 +1100722 packet_send();
723 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100724
Damien Miller0425d402003-11-17 22:18:21 +1100725 buffer_free(&b);
726 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100727 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100728 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100729
Damien Miller91c6aa42003-11-17 21:20:18 +1100730 return status;
731}
732
Damien Millerf7475d72008-11-03 19:26:18 +1100733/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000734void
735input_gssapi_response(int type, u_int32_t plen, void *ctxt)
736{
737 Authctxt *authctxt = ctxt;
738 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000739 int oidlen;
740 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000741
742 if (authctxt == NULL)
743 fatal("input_gssapi_response: no authentication context");
744 gssctxt = authctxt->methoddata;
745
746 /* Setup our OID */
747 oidv = packet_get_string(&oidlen);
748
Darren Tucker655a5e02003-11-03 20:09:03 +1100749 if (oidlen <= 2 ||
750 oidv[0] != SSH_GSS_OIDTYPE ||
751 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100752 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100753 debug("Badly encoded mechanism OID received");
754 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100755 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000756 }
757
Darren Tucker655a5e02003-11-03 20:09:03 +1100758 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
759 fatal("Server returned different OID than expected");
760
Darren Tucker0efd1552003-08-26 11:49:55 +1000761 packet_check_eom();
762
763 xfree(oidv);
764
Damien Miller91c6aa42003-11-17 21:20:18 +1100765 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000766 /* Start again with next method on list */
767 debug("Trying to start again");
768 userauth(authctxt, NULL);
769 return;
770 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000771}
772
Damien Millerf7475d72008-11-03 19:26:18 +1100773/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000774void
775input_gssapi_token(int type, u_int32_t plen, void *ctxt)
776{
777 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000778 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100779 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000780 u_int slen;
781
782 if (authctxt == NULL)
783 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000784
785 recv_tok.value = packet_get_string(&slen);
786 recv_tok.length = slen; /* safe typecast */
787
788 packet_check_eom();
789
Damien Miller91c6aa42003-11-17 21:20:18 +1100790 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000791
792 xfree(recv_tok.value);
793
794 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000795 /* Start again with the next method in the list */
796 userauth(authctxt, NULL);
797 return;
798 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000799}
800
Damien Millerf7475d72008-11-03 19:26:18 +1100801/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000802void
803input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
804{
805 Authctxt *authctxt = ctxt;
806 Gssctxt *gssctxt;
807 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
808 gss_buffer_desc recv_tok;
809 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000810 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000811
812 if (authctxt == NULL)
813 fatal("input_gssapi_response: no authentication context");
814 gssctxt = authctxt->methoddata;
815
Darren Tucker600ad8d2003-08-26 12:10:48 +1000816 recv_tok.value = packet_get_string(&len);
817 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000818
819 packet_check_eom();
820
821 /* Stick it into GSSAPI and see what it says */
822 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000823 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000824
825 xfree(recv_tok.value);
826 gss_release_buffer(&ms, &send_tok);
827
828 /* Server will be returning a failed packet after this one */
829}
830
Damien Millerf7475d72008-11-03 19:26:18 +1100831/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000832void
833input_gssapi_error(int type, u_int32_t plen, void *ctxt)
834{
835 OM_uint32 maj, min;
836 char *msg;
837 char *lang;
838
839 maj=packet_get_int();
840 min=packet_get_int();
841 msg=packet_get_string(NULL);
842 lang=packet_get_string(NULL);
843
844 packet_check_eom();
845
Damien Miller15d72a02005-11-05 15:07:33 +1100846 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000847 xfree(msg);
848 xfree(lang);
849}
850#endif /* GSSAPI */
851
Damien Millereba71ba2000-04-29 23:57:08 +1000852int
Damien Miller874d77b2000-10-14 16:23:11 +1100853userauth_none(Authctxt *authctxt)
854{
855 /* initial userauth request */
856 packet_start(SSH2_MSG_USERAUTH_REQUEST);
857 packet_put_cstring(authctxt->server_user);
858 packet_put_cstring(authctxt->service);
859 packet_put_cstring(authctxt->method->name);
860 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100861 return 1;
862}
863
864int
Damien Miller62cee002000-09-23 17:15:56 +1100865userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000866{
Damien Millere247cc42000-05-07 12:03:14 +1000867 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000868 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000869 char *password;
Darren Tuckerab791692010-01-08 18:48:02 +1100870 const char *host = options.host_key_alias ? options.host_key_alias :
871 authctxt->host;
Damien Millereba71ba2000-04-29 23:57:08 +1000872
Damien Millerd3a18572000-06-07 19:55:44 +1000873 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000874 return 0;
875
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000876 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000877 error("Permission denied, please try again.");
878
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000879 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100880 authctxt->server_user, host);
Damien Millereba71ba2000-04-29 23:57:08 +1000881 password = read_passphrase(prompt, 0);
882 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100883 packet_put_cstring(authctxt->server_user);
884 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100885 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000886 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000887 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000888 memset(password, 0, strlen(password));
889 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100890 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000891 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000892
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000893 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000894 &input_userauth_passwd_changereq);
895
Damien Millereba71ba2000-04-29 23:57:08 +1000896 return 1;
897}
Damien Millerf7475d72008-11-03 19:26:18 +1100898
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000899/*
900 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
901 */
Damien Millerf7475d72008-11-03 19:26:18 +1100902/* ARGSUSED */
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000903void
Tim Ricec8549622002-03-31 12:49:38 -0800904input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000905{
906 Authctxt *authctxt = ctxt;
907 char *info, *lang, *password = NULL, *retype = NULL;
908 char prompt[150];
Darren Tuckerab791692010-01-08 18:48:02 +1100909 const char *host = options.host_key_alias ? options.host_key_alias :
910 authctxt->host;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000911
912 debug2("input_userauth_passwd_changereq");
913
914 if (authctxt == NULL)
915 fatal("input_userauth_passwd_changereq: "
916 "no authentication context");
917
918 info = packet_get_string(NULL);
919 lang = packet_get_string(NULL);
920 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000921 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000922 xfree(info);
923 xfree(lang);
924 packet_start(SSH2_MSG_USERAUTH_REQUEST);
925 packet_put_cstring(authctxt->server_user);
926 packet_put_cstring(authctxt->service);
927 packet_put_cstring(authctxt->method->name);
928 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000929 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000930 "Enter %.30s@%.128s's old password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100931 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000932 password = read_passphrase(prompt, 0);
933 packet_put_cstring(password);
934 memset(password, 0, strlen(password));
935 xfree(password);
936 password = NULL;
937 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000938 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000939 "Enter %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100940 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000941 password = read_passphrase(prompt, RP_ALLOW_EOF);
942 if (password == NULL) {
943 /* bail out */
944 return;
945 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000946 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000947 "Retype %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100948 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000949 retype = read_passphrase(prompt, 0);
950 if (strcmp(password, retype) != 0) {
951 memset(password, 0, strlen(password));
952 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000954 password = NULL;
955 }
956 memset(retype, 0, strlen(retype));
957 xfree(retype);
958 }
959 packet_put_cstring(password);
960 memset(password, 0, strlen(password));
961 xfree(password);
962 packet_add_padding(64);
963 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000964
965 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000966 &input_userauth_passwd_changereq);
967}
Damien Millereba71ba2000-04-29 23:57:08 +1000968
Damien Miller01ed2272008-11-05 16:20:46 +1100969#ifdef JPAKE
970static char *
971pw_encrypt(const char *password, const char *crypt_scheme, const char *salt)
972{
973 /* OpenBSD crypt(3) handles all of these */
974 if (strcmp(crypt_scheme, "crypt") == 0 ||
975 strcmp(crypt_scheme, "bcrypt") == 0 ||
976 strcmp(crypt_scheme, "md5crypt") == 0 ||
977 strcmp(crypt_scheme, "crypt-extended") == 0)
978 return xstrdup(crypt(password, salt));
979 error("%s: unsupported password encryption scheme \"%.100s\"",
980 __func__, crypt_scheme);
981 return NULL;
982}
983
984static BIGNUM *
985jpake_password_to_secret(Authctxt *authctxt, const char *crypt_scheme,
986 const char *salt)
987{
988 char prompt[256], *password, *crypted;
989 u_char *secret;
990 u_int secret_len;
991 BIGNUM *ret;
992
993 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password (JPAKE): ",
994 authctxt->server_user, authctxt->host);
995 password = read_passphrase(prompt, 0);
996
997 if ((crypted = pw_encrypt(password, crypt_scheme, salt)) == NULL) {
998 logit("Disabling %s authentication", authctxt->method->name);
999 authctxt->method->enabled = NULL;
1000 /* Continue with an empty password to fail gracefully */
1001 crypted = xstrdup("");
1002 }
1003
1004#ifdef JPAKE_DEBUG
1005 debug3("%s: salt = %s", __func__, salt);
1006 debug3("%s: scheme = %s", __func__, crypt_scheme);
1007 debug3("%s: crypted = %s", __func__, crypted);
1008#endif
1009
1010 if (hash_buffer(crypted, strlen(crypted), EVP_sha256(),
1011 &secret, &secret_len) != 0)
1012 fatal("%s: hash_buffer", __func__);
1013
1014 bzero(password, strlen(password));
1015 bzero(crypted, strlen(crypted));
1016 xfree(password);
1017 xfree(crypted);
1018
1019 if ((ret = BN_bin2bn(secret, secret_len, NULL)) == NULL)
1020 fatal("%s: BN_bin2bn (secret)", __func__);
1021 bzero(secret, secret_len);
1022 xfree(secret);
1023
1024 return ret;
1025}
1026
1027/* ARGSUSED */
1028void
1029input_userauth_jpake_server_step1(int type, u_int32_t seq, void *ctxt)
1030{
1031 Authctxt *authctxt = ctxt;
1032 struct jpake_ctx *pctx = authctxt->methoddata;
1033 u_char *x3_proof, *x4_proof, *x2_s_proof;
1034 u_int x3_proof_len, x4_proof_len, x2_s_proof_len;
1035 char *crypt_scheme, *salt;
1036
1037 /* Disable this message */
1038 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1, NULL);
1039
1040 if ((pctx->g_x3 = BN_new()) == NULL ||
1041 (pctx->g_x4 = BN_new()) == NULL)
1042 fatal("%s: BN_new", __func__);
1043
1044 /* Fetch step 1 values */
1045 crypt_scheme = packet_get_string(NULL);
1046 salt = packet_get_string(NULL);
1047 pctx->server_id = packet_get_string(&pctx->server_id_len);
1048 packet_get_bignum2(pctx->g_x3);
1049 packet_get_bignum2(pctx->g_x4);
1050 x3_proof = packet_get_string(&x3_proof_len);
1051 x4_proof = packet_get_string(&x4_proof_len);
1052 packet_check_eom();
1053
1054 JPAKE_DEBUG_CTX((pctx, "step 1 received in %s", __func__));
1055
1056 /* Obtain password and derive secret */
1057 pctx->s = jpake_password_to_secret(authctxt, crypt_scheme, salt);
1058 bzero(crypt_scheme, strlen(crypt_scheme));
1059 bzero(salt, strlen(salt));
1060 xfree(crypt_scheme);
1061 xfree(salt);
1062 JPAKE_DEBUG_BN((pctx->s, "%s: s = ", __func__));
1063
1064 /* Calculate step 2 values */
1065 jpake_step2(pctx->grp, pctx->s, pctx->g_x1,
1066 pctx->g_x3, pctx->g_x4, pctx->x2,
1067 pctx->server_id, pctx->server_id_len,
1068 pctx->client_id, pctx->client_id_len,
1069 x3_proof, x3_proof_len,
1070 x4_proof, x4_proof_len,
1071 &pctx->a,
1072 &x2_s_proof, &x2_s_proof_len);
1073
1074 bzero(x3_proof, x3_proof_len);
1075 bzero(x4_proof, x4_proof_len);
1076 xfree(x3_proof);
1077 xfree(x4_proof);
1078
1079 JPAKE_DEBUG_CTX((pctx, "step 2 sending in %s", __func__));
1080
1081 /* Send values for step 2 */
1082 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP2);
1083 packet_put_bignum2(pctx->a);
1084 packet_put_string(x2_s_proof, x2_s_proof_len);
1085 packet_send();
1086
1087 bzero(x2_s_proof, x2_s_proof_len);
1088 xfree(x2_s_proof);
1089
1090 /* Expect step 2 packet from peer */
1091 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2,
1092 input_userauth_jpake_server_step2);
1093}
1094
1095/* ARGSUSED */
1096void
1097input_userauth_jpake_server_step2(int type, u_int32_t seq, void *ctxt)
1098{
1099 Authctxt *authctxt = ctxt;
1100 struct jpake_ctx *pctx = authctxt->methoddata;
1101 u_char *x4_s_proof;
1102 u_int x4_s_proof_len;
1103
1104 /* Disable this message */
1105 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2, NULL);
1106
1107 if ((pctx->b = BN_new()) == NULL)
1108 fatal("%s: BN_new", __func__);
1109
1110 /* Fetch step 2 values */
1111 packet_get_bignum2(pctx->b);
1112 x4_s_proof = packet_get_string(&x4_s_proof_len);
1113 packet_check_eom();
1114
1115 JPAKE_DEBUG_CTX((pctx, "step 2 received in %s", __func__));
1116
1117 /* Derive shared key and calculate confirmation hash */
1118 jpake_key_confirm(pctx->grp, pctx->s, pctx->b,
1119 pctx->x2, pctx->g_x1, pctx->g_x2, pctx->g_x3, pctx->g_x4,
1120 pctx->client_id, pctx->client_id_len,
1121 pctx->server_id, pctx->server_id_len,
1122 session_id2, session_id2_len,
1123 x4_s_proof, x4_s_proof_len,
1124 &pctx->k,
1125 &pctx->h_k_cid_sessid, &pctx->h_k_cid_sessid_len);
1126
1127 bzero(x4_s_proof, x4_s_proof_len);
1128 xfree(x4_s_proof);
1129
1130 JPAKE_DEBUG_CTX((pctx, "confirm sending in %s", __func__));
1131
1132 /* Send key confirmation proof */
1133 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_CONFIRM);
1134 packet_put_string(pctx->h_k_cid_sessid, pctx->h_k_cid_sessid_len);
1135 packet_send();
1136
1137 /* Expect confirmation from peer */
1138 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM,
1139 input_userauth_jpake_server_confirm);
1140}
1141
1142/* ARGSUSED */
1143void
1144input_userauth_jpake_server_confirm(int type, u_int32_t seq, void *ctxt)
1145{
1146 Authctxt *authctxt = ctxt;
1147 struct jpake_ctx *pctx = authctxt->methoddata;
1148
1149 /* Disable this message */
1150 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM, NULL);
1151
1152 pctx->h_k_sid_sessid = packet_get_string(&pctx->h_k_sid_sessid_len);
1153 packet_check_eom();
1154
1155 JPAKE_DEBUG_CTX((pctx, "confirm received in %s", __func__));
1156
1157 /* Verify expected confirmation hash */
1158 if (jpake_check_confirm(pctx->k,
1159 pctx->server_id, pctx->server_id_len,
1160 session_id2, session_id2_len,
1161 pctx->h_k_sid_sessid, pctx->h_k_sid_sessid_len) == 1)
1162 debug("%s: %s success", __func__, authctxt->method->name);
1163 else {
1164 debug("%s: confirmation mismatch", __func__);
1165 /* XXX stash this so if auth succeeds then we can warn/kill */
1166 }
1167
1168 userauth_jpake_cleanup(authctxt);
1169}
1170#endif /* JPAKE */
1171
Ben Lindstrombba81212001-06-25 05:01:22 +00001172static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001173identity_sign(Identity *id, u_char **sigp, u_int *lenp,
1174 u_char *data, u_int datalen)
1175{
1176 Key *prv;
1177 int ret;
1178
1179 /* the agent supports this key */
1180 if (id->ac)
1181 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
1182 data, datalen));
1183 /*
1184 * we have already loaded the private key or
1185 * the private key is stored in external hardware
1186 */
1187 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
1188 return (key_sign(id->key, sigp, lenp, data, datalen));
1189 /* load the private key from the file */
Damien Miller5ceddc32013-02-15 12:18:32 +11001190 if ((prv = load_identity_file(id->filename, id->userprovided)) == NULL)
Damien Miller280ecfb2003-05-14 13:46:00 +10001191 return (-1);
1192 ret = key_sign(prv, sigp, lenp, data, datalen);
1193 key_free(prv);
1194 return (ret);
1195}
1196
1197static int
1198sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +10001199{
1200 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001201 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +00001202 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +10001203 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001204 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001205 int have_sig = 1;
Damien Miller4e270b02010-04-16 15:56:21 +10001206 char *fp;
Damien Millereba71ba2000-04-29 23:57:08 +10001207
Damien Miller4e270b02010-04-16 15:56:21 +10001208 fp = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
1209 debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
1210 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001211
Damien Miller280ecfb2003-05-14 13:46:00 +10001212 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001213 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +00001214 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001215 return 0;
1216 }
Damien Millereba71ba2000-04-29 23:57:08 +10001217 /* data to be signed */
1218 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +11001219 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +10001220 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001221 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +11001222 } else {
1223 buffer_put_string(&b, session_id2, session_id2_len);
1224 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +10001225 }
Damien Millereba71ba2000-04-29 23:57:08 +10001226 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001227 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +10001228 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +00001229 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +10001230 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +11001231 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +00001232 if (datafellows & SSH_BUG_PKAUTH) {
1233 buffer_put_char(&b, have_sig);
1234 } else {
1235 buffer_put_cstring(&b, authctxt->method->name);
1236 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +10001237 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +00001238 }
Damien Millereba71ba2000-04-29 23:57:08 +10001239 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +10001240
1241 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +10001242 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001243 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +10001244 if (ret == -1) {
1245 xfree(blob);
1246 buffer_free(&b);
1247 return 0;
1248 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001249#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +10001250 buffer_dump(&b);
1251#endif
Ben Lindstromd121f612000-12-03 17:00:47 +00001252 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +10001253 buffer_clear(&b);
1254 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001255 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +10001256 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001257 buffer_put_cstring(&b, authctxt->server_user);
1258 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +11001259 buffer_put_cstring(&b, authctxt->method->name);
1260 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +00001261 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001262 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +10001263 buffer_put_string(&b, blob, bloblen);
1264 }
1265 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001266
Damien Millereba71ba2000-04-29 23:57:08 +10001267 /* append signature */
1268 buffer_put_string(&b, signature, slen);
1269 xfree(signature);
1270
1271 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +10001272 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +11001273 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +10001274 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +10001275
1276 /* put remaining data from buffer into packet */
1277 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1278 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
1279 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +10001280 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +10001281
1282 return 1;
Damien Miller994cf142000-07-21 10:19:44 +10001283}
1284
Ben Lindstrombba81212001-06-25 05:01:22 +00001285static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001286send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +10001287{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001288 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001289 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +10001290
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001291 debug3("send_pubkey_test");
1292
Damien Miller280ecfb2003-05-14 13:46:00 +10001293 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001294 /* we cannot handle this key */
1295 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +10001296 return 0;
1297 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001298 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001299 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +10001300
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001301 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1302 packet_put_cstring(authctxt->server_user);
1303 packet_put_cstring(authctxt->service);
1304 packet_put_cstring(authctxt->method->name);
1305 packet_put_char(have_sig);
1306 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001307 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001308 packet_put_string(blob, bloblen);
1309 xfree(blob);
1310 packet_send();
1311 return 1;
1312}
1313
Ben Lindstrombba81212001-06-25 05:01:22 +00001314static Key *
Damien Miller5ceddc32013-02-15 12:18:32 +11001315load_identity_file(char *filename, int userprovided)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001316{
1317 Key *private;
1318 char prompt[300], *passphrase;
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001319 int perm_ok = 0, quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +00001320 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001321
Ben Lindstrom329782e2001-03-10 17:08:59 +00001322 if (stat(filename, &st) < 0) {
Damien Miller5ceddc32013-02-15 12:18:32 +11001323 (userprovided ? logit : debug3)("no such identity: %s: %s",
1324 filename, strerror(errno));
Ben Lindstrom329782e2001-03-10 17:08:59 +00001325 return NULL;
1326 }
Darren Tucker232b76f2006-05-06 17:41:51 +10001327 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
1328 if (!perm_ok)
1329 return NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001330 if (private == NULL) {
1331 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001332 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +10001333 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001334 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +11001335 for (i = 0; i < options.number_of_password_prompts; i++) {
1336 passphrase = read_passphrase(prompt, 0);
1337 if (strcmp(passphrase, "") != 0) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001338 private = key_load_private_type(KEY_UNSPEC,
1339 filename, passphrase, NULL, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001340 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +11001341 } else {
1342 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001343 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +11001344 }
1345 memset(passphrase, 0, strlen(passphrase));
1346 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001347 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +11001348 break;
1349 debug2("bad passphrase given, try again...");
1350 }
Damien Miller994cf142000-07-21 10:19:44 +10001351 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001352 return private;
1353}
1354
Damien Miller280ecfb2003-05-14 13:46:00 +10001355/*
1356 * try keys in the following order:
1357 * 1. agent keys that are found in the config file
1358 * 2. other agent keys
1359 * 3. keys that are only listed in the config file
1360 */
1361static void
1362pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001363{
Damien Millercb6b68b2012-12-03 09:49:52 +11001364 Identity *id, *id2, *tmp;
Damien Miller280ecfb2003-05-14 13:46:00 +10001365 Idlist agent, files, *preferred;
1366 Key *key;
1367 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001368 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001369 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001370
Damien Miller280ecfb2003-05-14 13:46:00 +10001371 TAILQ_INIT(&agent); /* keys from the agent */
1372 TAILQ_INIT(&files); /* keys from the config file */
1373 preferred = &authctxt->keys;
1374 TAILQ_INIT(preferred); /* preferred order of keys */
1375
Damien Millercb6b68b2012-12-03 09:49:52 +11001376 /* list of keys stored in the filesystem and PKCS#11 */
Damien Miller280ecfb2003-05-14 13:46:00 +10001377 for (i = 0; i < options.num_identity_files; i++) {
1378 key = options.identity_keys[i];
1379 if (key && key->type == KEY_RSA1)
1380 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11001381 if (key && key->cert && key->cert->type != SSH2_CERT_TYPE_USER)
1382 continue;
Damien Miller280ecfb2003-05-14 13:46:00 +10001383 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001384 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001385 id->key = key;
1386 id->filename = xstrdup(options.identity_files[i]);
Damien Miller5ceddc32013-02-15 12:18:32 +11001387 id->userprovided = 1;
Damien Miller280ecfb2003-05-14 13:46:00 +10001388 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001389 }
Damien Millercb6b68b2012-12-03 09:49:52 +11001390 /* Prefer PKCS11 keys that are explicitly listed */
1391 TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
1392 if (id->key == NULL || (id->key->flags & KEY_FLAG_EXT) == 0)
1393 continue;
1394 found = 0;
1395 TAILQ_FOREACH(id2, &files, next) {
1396 if (id2->key == NULL ||
1397 (id2->key->flags & KEY_FLAG_EXT) != 0)
1398 continue;
1399 if (key_equal(id->key, id2->key)) {
1400 TAILQ_REMOVE(&files, id, next);
1401 TAILQ_INSERT_TAIL(preferred, id, next);
1402 found = 1;
1403 break;
1404 }
1405 }
1406 /* If IdentitiesOnly set and key not found then don't use it */
1407 if (!found && options.identities_only) {
1408 TAILQ_REMOVE(&files, id, next);
1409 bzero(id, sizeof(id));
1410 free(id);
1411 }
1412 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001413 /* list of keys supported by the agent */
1414 if ((ac = ssh_get_authentication_connection())) {
1415 for (key = ssh_get_first_identity(ac, &comment, 2);
1416 key != NULL;
1417 key = ssh_get_next_identity(ac, &comment, 2)) {
1418 found = 0;
1419 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001420 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001421 if (key_equal(key, id->key)) {
1422 key_free(key);
1423 xfree(comment);
1424 TAILQ_REMOVE(&files, id, next);
1425 TAILQ_INSERT_TAIL(preferred, id, next);
1426 id->ac = ac;
1427 found = 1;
1428 break;
1429 }
1430 }
Damien Millerbd394c32004-03-08 23:12:36 +11001431 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001432 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001433 id->key = key;
1434 id->filename = comment;
1435 id->ac = ac;
1436 TAILQ_INSERT_TAIL(&agent, id, next);
1437 }
1438 }
1439 /* append remaining agent keys */
1440 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1441 TAILQ_REMOVE(&agent, id, next);
1442 TAILQ_INSERT_TAIL(preferred, id, next);
1443 }
1444 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001445 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001446 /* append remaining keys from the config file */
1447 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1448 TAILQ_REMOVE(&files, id, next);
1449 TAILQ_INSERT_TAIL(preferred, id, next);
1450 }
1451 TAILQ_FOREACH(id, preferred, next) {
Damien Miller5ceddc32013-02-15 12:18:32 +11001452 debug2("key: %s (%p),%s", id->filename, id->key,
1453 id->userprovided ? " explicit" : "");
Damien Miller280ecfb2003-05-14 13:46:00 +10001454 }
1455}
1456
1457static void
1458pubkey_cleanup(Authctxt *authctxt)
1459{
1460 Identity *id;
1461
1462 if (authctxt->agent != NULL)
1463 ssh_close_authentication_connection(authctxt->agent);
1464 for (id = TAILQ_FIRST(&authctxt->keys); id;
1465 id = TAILQ_FIRST(&authctxt->keys)) {
1466 TAILQ_REMOVE(&authctxt->keys, id, next);
1467 if (id->key)
1468 key_free(id->key);
1469 if (id->filename)
1470 xfree(id->filename);
1471 xfree(id);
1472 }
Damien Millereba71ba2000-04-29 23:57:08 +10001473}
1474
Damien Miller62cee002000-09-23 17:15:56 +11001475int
1476userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001477{
Damien Miller280ecfb2003-05-14 13:46:00 +10001478 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001479 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001480
Damien Miller280ecfb2003-05-14 13:46:00 +10001481 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1482 if (id->tried++)
1483 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001484 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001485 TAILQ_REMOVE(&authctxt->keys, id, next);
1486 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1487 /*
1488 * send a test message if we have the public key. for
1489 * encrypted keys we cannot do this and have to load the
1490 * private key instead
1491 */
1492 if (id->key && id->key->type != KEY_RSA1) {
Damien Miller88680652010-04-16 15:53:43 +10001493 debug("Offering %s public key: %s", key_type(id->key),
1494 id->filename);
Damien Miller280ecfb2003-05-14 13:46:00 +10001495 sent = send_pubkey_test(authctxt, id);
1496 } else if (id->key == NULL) {
1497 debug("Trying private key: %s", id->filename);
Damien Miller5ceddc32013-02-15 12:18:32 +11001498 id->key = load_identity_file(id->filename,
1499 id->userprovided);
Damien Miller280ecfb2003-05-14 13:46:00 +10001500 if (id->key != NULL) {
1501 id->isprivate = 1;
1502 sent = sign_and_send_pubkey(authctxt, id);
1503 key_free(id->key);
1504 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001505 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001506 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001507 if (sent)
1508 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001509 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001510 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001511}
Damien Millereba71ba2000-04-29 23:57:08 +10001512
Damien Miller874d77b2000-10-14 16:23:11 +11001513/*
1514 * Send userauth request message specifying keyboard-interactive method.
1515 */
1516int
1517userauth_kbdint(Authctxt *authctxt)
1518{
1519 static int attempt = 0;
1520
1521 if (attempt++ >= options.number_of_password_prompts)
1522 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001523 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1524 if (attempt > 1 && !authctxt->info_req_seen) {
1525 debug3("userauth_kbdint: disable: no info_req_seen");
1526 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1527 return 0;
1528 }
Damien Miller874d77b2000-10-14 16:23:11 +11001529
1530 debug2("userauth_kbdint");
1531 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1532 packet_put_cstring(authctxt->server_user);
1533 packet_put_cstring(authctxt->service);
1534 packet_put_cstring(authctxt->method->name);
1535 packet_put_cstring(""); /* lang */
1536 packet_put_cstring(options.kbd_interactive_devices ?
1537 options.kbd_interactive_devices : "");
1538 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001539
1540 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1541 return 1;
1542}
1543
1544/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001545 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001546 */
1547void
Damien Miller630d6f42002-01-22 23:17:30 +11001548input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001549{
1550 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001551 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001552 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001553 int echo = 0;
1554
1555 debug2("input_userauth_info_req");
1556
1557 if (authctxt == NULL)
1558 fatal("input_userauth_info_req: no authentication context");
1559
Ben Lindstrom7d199962001-09-12 18:29:00 +00001560 authctxt->info_req_seen = 1;
1561
Damien Miller874d77b2000-10-14 16:23:11 +11001562 name = packet_get_string(NULL);
1563 inst = packet_get_string(NULL);
1564 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001565 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001566 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001567 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001568 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001569 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001570 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001571 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001572
1573 num_prompts = packet_get_int();
1574 /*
1575 * Begin to build info response packet based on prompts requested.
1576 * We commit to providing the correct number of responses, so if
1577 * further on we run into a problem that prevents this, we have to
1578 * be sure and clean this up and send a correct error response.
1579 */
1580 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1581 packet_put_int(num_prompts);
1582
Ben Lindstrom551ea372001-06-05 18:56:16 +00001583 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001584 for (i = 0; i < num_prompts; i++) {
1585 prompt = packet_get_string(NULL);
1586 echo = packet_get_char();
1587
Ben Lindstrom949974b2001-06-25 05:20:31 +00001588 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001589
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001590 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001591 memset(response, 0, strlen(response));
1592 xfree(response);
1593 xfree(prompt);
1594 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001595 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001596
Damien Miller9f643902001-11-12 11:02:52 +11001597 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001598 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001599}
Damien Miller62cee002000-09-23 17:15:56 +11001600
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001601static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001602ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001603 u_char *data, u_int datalen)
1604{
1605 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001606 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001607 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001608 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001609
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001610 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001611
Ben Lindstrom5206b952002-06-06 19:59:29 +00001612 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001613 error("ssh_keysign: not installed: %s", strerror(errno));
Ben Lindstrom5206b952002-06-06 19:59:29 +00001614 return -1;
1615 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001616 if (fflush(stdout) != 0)
1617 error("ssh_keysign: fflush: %s", strerror(errno));
1618 if (pipe(to) < 0) {
1619 error("ssh_keysign: pipe: %s", strerror(errno));
1620 return -1;
1621 }
1622 if (pipe(from) < 0) {
1623 error("ssh_keysign: pipe: %s", strerror(errno));
1624 return -1;
1625 }
1626 if ((pid = fork()) < 0) {
1627 error("ssh_keysign: fork: %s", strerror(errno));
1628 return -1;
1629 }
1630 if (pid == 0) {
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001631 /* keep the socket on exec */
1632 fcntl(packet_get_connection_in(), F_SETFD, 0);
Damien Miller2e5fe882006-06-13 13:10:00 +10001633 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001634 close(from[0]);
1635 if (dup2(from[1], STDOUT_FILENO) < 0)
1636 fatal("ssh_keysign: dup2: %s", strerror(errno));
1637 close(to[1]);
1638 if (dup2(to[0], STDIN_FILENO) < 0)
1639 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001640 close(from[1]);
1641 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001642 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001643 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1644 strerror(errno));
1645 }
1646 close(from[1]);
1647 close(to[0]);
1648
1649 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001650 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001651 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001652 if (ssh_msg_send(to[1], version, &b) == -1)
1653 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001654
Damien Miller901119b2002-10-04 11:10:04 +10001655 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001656 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001657 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001658 return -1;
1659 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001660 close(from[0]);
1661 close(to[1]);
1662
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001663 while (waitpid(pid, &status, 0) < 0)
1664 if (errno != EINTR)
1665 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001666
Ben Lindstrom5206b952002-06-06 19:59:29 +00001667 if (buffer_get_char(&b) != version) {
1668 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001669 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001670 return -1;
1671 }
1672 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001673 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001674
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001675 return 0;
1676}
1677
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001678int
1679userauth_hostbased(Authctxt *authctxt)
1680{
1681 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001682 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001683 Buffer b;
1684 u_char *signature, *blob;
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001685 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001686 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001687 u_int blen, slen;
Darren Tucker5246df42010-01-08 18:50:46 +11001688 int ok, i, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001689
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001690 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001691 for (i = 0; i < sensitive->nkeys; i++) {
1692 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001693 if (private && private->type != KEY_RSA1) {
1694 found = 1;
1695 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001696 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001697 break;
1698 }
1699 }
1700 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001701 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001702 return 0;
1703 }
1704 if (key_to_blob(private, &blob, &blen) == 0) {
1705 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001706 return 0;
1707 }
Damien Miller91c18472001-11-12 11:02:03 +11001708 /* figure out a name for the client host */
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001709 p = get_local_name(packet_get_connection_in());
Damien Miller91c18472001-11-12 11:02:03 +11001710 if (p == NULL) {
1711 error("userauth_hostbased: cannot get local ipaddr/name");
1712 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001713 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001714 return 0;
1715 }
Damien Miller07d86be2006-03-26 14:19:21 +11001716 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001717 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001718 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001719
Ben Lindstrom671388f2001-04-19 20:40:45 +00001720 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1721 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001722 pkalg = xstrdup(key_ssh_name(private));
1723 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001724 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001725 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001726 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1727 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001728 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001729 buffer_put_cstring(&b, authctxt->method->name);
1730 buffer_put_cstring(&b, pkalg);
1731 buffer_put_string(&b, blob, blen);
1732 buffer_put_cstring(&b, chost);
1733 buffer_put_cstring(&b, authctxt->local_user);
1734#ifdef DEBUG_PK
1735 buffer_dump(&b);
1736#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001737 if (sensitive->external_keysign)
1738 ok = ssh_keysign(private, &signature, &slen,
1739 buffer_ptr(&b), buffer_len(&b));
1740 else
1741 ok = key_sign(private, &signature, &slen,
1742 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001743 key_free(private);
1744 buffer_free(&b);
1745 if (ok != 0) {
1746 error("key_sign failed");
1747 xfree(chost);
1748 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001749 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001750 return 0;
1751 }
1752 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1753 packet_put_cstring(authctxt->server_user);
1754 packet_put_cstring(authctxt->service);
1755 packet_put_cstring(authctxt->method->name);
1756 packet_put_cstring(pkalg);
1757 packet_put_string(blob, blen);
1758 packet_put_cstring(chost);
1759 packet_put_cstring(authctxt->local_user);
1760 packet_put_string(signature, slen);
1761 memset(signature, 's', slen);
1762 xfree(signature);
1763 xfree(chost);
1764 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001765 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001766
1767 packet_send();
1768 return 1;
1769}
1770
Damien Miller01ed2272008-11-05 16:20:46 +11001771#ifdef JPAKE
1772int
1773userauth_jpake(Authctxt *authctxt)
1774{
1775 struct jpake_ctx *pctx;
1776 u_char *x1_proof, *x2_proof;
1777 u_int x1_proof_len, x2_proof_len;
1778 static int attempt = 0; /* XXX share with userauth_password's? */
1779
1780 if (attempt++ >= options.number_of_password_prompts)
1781 return 0;
1782 if (attempt != 1)
1783 error("Permission denied, please try again.");
1784
1785 if (authctxt->methoddata != NULL)
1786 fatal("%s: authctxt->methoddata already set (%p)",
1787 __func__, authctxt->methoddata);
1788
1789 authctxt->methoddata = pctx = jpake_new();
1790
1791 /*
1792 * Send request immediately, to get the protocol going while
1793 * we do the initial computations.
1794 */
1795 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1796 packet_put_cstring(authctxt->server_user);
1797 packet_put_cstring(authctxt->service);
1798 packet_put_cstring(authctxt->method->name);
1799 packet_send();
1800 packet_write_wait();
1801
1802 jpake_step1(pctx->grp,
1803 &pctx->client_id, &pctx->client_id_len,
1804 &pctx->x1, &pctx->x2, &pctx->g_x1, &pctx->g_x2,
1805 &x1_proof, &x1_proof_len,
1806 &x2_proof, &x2_proof_len);
1807
1808 JPAKE_DEBUG_CTX((pctx, "step 1 sending in %s", __func__));
1809
1810 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP1);
1811 packet_put_string(pctx->client_id, pctx->client_id_len);
1812 packet_put_bignum2(pctx->g_x1);
1813 packet_put_bignum2(pctx->g_x2);
1814 packet_put_string(x1_proof, x1_proof_len);
1815 packet_put_string(x2_proof, x2_proof_len);
1816 packet_send();
1817
1818 bzero(x1_proof, x1_proof_len);
1819 bzero(x2_proof, x2_proof_len);
1820 xfree(x1_proof);
1821 xfree(x2_proof);
1822
1823 /* Expect step 1 packet from peer */
1824 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1,
1825 input_userauth_jpake_server_step1);
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001826 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS,
1827 &input_userauth_success_unexpected);
Damien Miller01ed2272008-11-05 16:20:46 +11001828
1829 return 1;
1830}
1831
1832void
1833userauth_jpake_cleanup(Authctxt *authctxt)
1834{
1835 debug3("%s: clean up", __func__);
1836 if (authctxt->methoddata != NULL) {
1837 jpake_free(authctxt->methoddata);
1838 authctxt->methoddata = NULL;
1839 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001840 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
Damien Miller01ed2272008-11-05 16:20:46 +11001841}
1842#endif /* JPAKE */
1843
Damien Miller62cee002000-09-23 17:15:56 +11001844/* find auth method */
1845
Damien Miller62cee002000-09-23 17:15:56 +11001846/*
1847 * given auth method name, if configurable options permit this method fill
1848 * in auth_ident field and return true, otherwise return false.
1849 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001850static int
Damien Miller62cee002000-09-23 17:15:56 +11001851authmethod_is_enabled(Authmethod *method)
1852{
1853 if (method == NULL)
1854 return 0;
1855 /* return false if options indicate this method is disabled */
1856 if (method->enabled == NULL || *method->enabled == 0)
1857 return 0;
1858 /* return false if batch mode is enabled but method needs interactive mode */
1859 if (method->batch_flag != NULL && *method->batch_flag != 0)
1860 return 0;
1861 return 1;
1862}
1863
Ben Lindstrombba81212001-06-25 05:01:22 +00001864static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001865authmethod_lookup(const char *name)
1866{
1867 Authmethod *method = NULL;
1868 if (name != NULL)
1869 for (method = authmethods; method->name != NULL; method++)
1870 if (strcmp(name, method->name) == 0)
1871 return method;
1872 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1873 return NULL;
1874}
1875
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001876/* XXX internal state */
1877static Authmethod *current = NULL;
1878static char *supported = NULL;
1879static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001880
Damien Miller62cee002000-09-23 17:15:56 +11001881/*
1882 * Given the authentication method list sent by the server, return the
1883 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001884 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001885 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001886static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001887authmethod_get(char *authlist)
1888{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001889 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001890 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001891
Damien Miller62cee002000-09-23 17:15:56 +11001892 /* Use a suitable default if we're passed a nil list. */
1893 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001894 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001895
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001896 if (supported == NULL || strcmp(authlist, supported) != 0) {
1897 debug3("start over, passed a different list %s", authlist);
1898 if (supported != NULL)
1899 xfree(supported);
1900 supported = xstrdup(authlist);
1901 preferred = options.preferred_authentications;
1902 debug3("preferred %s", preferred);
1903 current = NULL;
1904 } else if (current != NULL && authmethod_is_enabled(current))
1905 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001906
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001907 for (;;) {
1908 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001909 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001910 current = NULL;
1911 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001912 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001913 preferred += next;
1914 debug3("authmethod_lookup %s", name);
1915 debug3("remaining preferred: %s", preferred);
1916 if ((current = authmethod_lookup(name)) != NULL &&
1917 authmethod_is_enabled(current)) {
1918 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001919 debug("Next authentication method: %s", name);
Damien Miller78c40c32011-05-15 08:36:59 +10001920 xfree(name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001921 return current;
1922 }
Damien Millereba71ba2000-04-29 23:57:08 +10001923 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001924}
Damien Miller62cee002000-09-23 17:15:56 +11001925
Ben Lindstrom79073822001-07-04 03:42:30 +00001926static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001927authmethods_get(void)
1928{
1929 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001930 Buffer b;
1931 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001932
Damien Miller0e3b8722002-01-22 23:26:38 +11001933 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001934 for (method = authmethods; method->name != NULL; method++) {
1935 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001936 if (buffer_len(&b) > 0)
1937 buffer_append(&b, ",", 1);
1938 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001939 }
Damien Miller62cee002000-09-23 17:15:56 +11001940 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001941 buffer_append(&b, "\0", 1);
1942 list = xstrdup(buffer_ptr(&b));
1943 buffer_free(&b);
1944 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001945}
Damien Miller01ed2272008-11-05 16:20:46 +11001946