blob: 7c369d74317cc0caec18da3d292cbc14b4916bb9 [file] [log] [blame]
Damien Miller5f58a872012-06-30 08:33:17 +10001/* $OpenBSD: sshconnect2.c,v 1.189 2012/06/22 12:30:26 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 */
251};
252TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100253
254struct Authctxt {
255 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000256 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100257 const char *host;
258 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100259 Authmethod *method;
Damien Miller79442c02010-05-10 11:55:38 +1000260 sig_atomic_t success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000261 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000262 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000263 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000264 AuthenticationConnection *agent;
265 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000266 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000267 /* kbd-interactive */
268 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000269 /* generic */
270 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100271};
272struct Authmethod {
273 char *name; /* string to compare against server's list */
274 int (*userauth)(Authctxt *authctxt);
Damien Miller01ed2272008-11-05 16:20:46 +1100275 void (*cleanup)(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100276 int *enabled; /* flag in option struct that enables method */
277 int *batch_flag; /* flag in option struct that disables method */
278};
279
Damien Miller630d6f42002-01-22 23:17:30 +1100280void input_userauth_success(int, u_int32_t, void *);
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100281void input_userauth_success_unexpected(int, u_int32_t, void *);
Damien Miller630d6f42002-01-22 23:17:30 +1100282void input_userauth_failure(int, u_int32_t, void *);
283void input_userauth_banner(int, u_int32_t, void *);
284void input_userauth_error(int, u_int32_t, void *);
285void input_userauth_info_req(int, u_int32_t, void *);
286void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000287void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller01ed2272008-11-05 16:20:46 +1100288void input_userauth_jpake_server_step1(int, u_int32_t, void *);
289void input_userauth_jpake_server_step2(int, u_int32_t, void *);
290void input_userauth_jpake_server_confirm(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100291
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000292int userauth_none(Authctxt *);
293int userauth_pubkey(Authctxt *);
294int userauth_passwd(Authctxt *);
295int userauth_kbdint(Authctxt *);
296int userauth_hostbased(Authctxt *);
Damien Miller01ed2272008-11-05 16:20:46 +1100297int userauth_jpake(Authctxt *);
298
299void userauth_jpake_cleanup(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100300
Darren Tucker0efd1552003-08-26 11:49:55 +1000301#ifdef GSSAPI
302int userauth_gssapi(Authctxt *authctxt);
303void input_gssapi_response(int type, u_int32_t, void *);
304void input_gssapi_token(int type, u_int32_t, void *);
305void input_gssapi_hash(int type, u_int32_t, void *);
306void input_gssapi_error(int, u_int32_t, void *);
307void input_gssapi_errtok(int, u_int32_t, void *);
308#endif
309
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000310void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000311
Damien Miller280ecfb2003-05-14 13:46:00 +1000312static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000313static void pubkey_prepare(Authctxt *);
314static void pubkey_cleanup(Authctxt *);
315static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000316
Ben Lindstrombba81212001-06-25 05:01:22 +0000317static Authmethod *authmethod_get(char *authlist);
318static Authmethod *authmethod_lookup(const char *name);
319static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100320
321Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000322#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100323 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000324 userauth_gssapi,
Damien Miller01ed2272008-11-05 16:20:46 +1100325 NULL,
Darren Tucker0efd1552003-08-26 11:49:55 +1000326 &options.gss_authentication,
327 NULL},
328#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000329 {"hostbased",
330 userauth_hostbased,
Damien Miller01ed2272008-11-05 16:20:46 +1100331 NULL,
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000332 &options.hostbased_authentication,
333 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000334 {"publickey",
335 userauth_pubkey,
Damien Miller01ed2272008-11-05 16:20:46 +1100336 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000337 &options.pubkey_authentication,
338 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100339#ifdef JPAKE
340 {"jpake-01@openssh.com",
341 userauth_jpake,
342 userauth_jpake_cleanup,
343 &options.zero_knowledge_password_authentication,
344 &options.batch_mode},
345#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100346 {"keyboard-interactive",
347 userauth_kbdint,
Damien Miller01ed2272008-11-05 16:20:46 +1100348 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100349 &options.kbd_interactive_authentication,
350 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000351 {"password",
352 userauth_passwd,
Damien Miller01ed2272008-11-05 16:20:46 +1100353 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000354 &options.password_authentication,
355 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100356 {"none",
357 userauth_none,
358 NULL,
Damien Miller01ed2272008-11-05 16:20:46 +1100359 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100360 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100361 {NULL, NULL, NULL, NULL, NULL}
Damien Miller62cee002000-09-23 17:15:56 +1100362};
363
364void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000365ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000366 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100367{
368 Authctxt authctxt;
369 int type;
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;
373
Damien Miller62cee002000-09-23 17:15:56 +1100374 packet_start(SSH2_MSG_SERVICE_REQUEST);
375 packet_put_cstring("ssh-userauth");
376 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000377 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100378 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100379 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000380 if (type != SSH2_MSG_SERVICE_ACCEPT)
381 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100382 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100383 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000384 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100385 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100386 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000387 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100388 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100389 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000390 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100391
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000392 if (options.preferred_authentications == NULL)
393 options.preferred_authentications = authmethods_get();
394
Damien Miller62cee002000-09-23 17:15:56 +1100395 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000396 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000397 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100398 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000399 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100400 authctxt.host = host;
401 authctxt.service = "ssh-connection"; /* service name */
402 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100403 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000404 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000405 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000406 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000407 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100408 if (authctxt.method == NULL)
409 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100410
411 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100412 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100413
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000414 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100415 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
416 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000417 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100418 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
419
Damien Miller280ecfb2003-05-14 13:46:00 +1000420 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000421 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
422
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000423 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100424}
Damien Millerf842fcb2003-05-15 12:01:28 +1000425
Damien Miller62cee002000-09-23 17:15:56 +1100426void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000427userauth(Authctxt *authctxt, char *authlist)
428{
Damien Miller01ed2272008-11-05 16:20:46 +1100429 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
430 authctxt->method->cleanup(authctxt);
431
Darren Tucker0efd1552003-08-26 11:49:55 +1000432 if (authctxt->methoddata) {
433 xfree(authctxt->methoddata);
434 authctxt->methoddata = NULL;
435 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000436 if (authlist == NULL) {
437 authlist = authctxt->authlist;
438 } else {
439 if (authctxt->authlist)
440 xfree(authctxt->authlist);
441 authctxt->authlist = authlist;
442 }
443 for (;;) {
444 Authmethod *method = authmethod_get(authlist);
445 if (method == NULL)
446 fatal("Permission denied (%s).", authlist);
447 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000448
449 /* reset the per method handler */
450 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
451 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
452
453 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000454 if (method->userauth(authctxt) != 0) {
455 debug2("we sent a %s packet, wait for reply", method->name);
456 break;
457 } else {
458 debug2("we did not send a packet, disable method");
459 method->enabled = NULL;
460 }
461 }
462}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000463
Damien Millerf7475d72008-11-03 19:26:18 +1100464/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000465void
Damien Miller630d6f42002-01-22 23:17:30 +1100466input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100467{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000468 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000469 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000470}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000471
Damien Millerf7475d72008-11-03 19:26:18 +1100472/* ARGSUSED */
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000473void
Damien Miller630d6f42002-01-22 23:17:30 +1100474input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000475{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000476 char *msg, *raw, *lang;
477 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000478
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000479 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000480 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000481 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100482 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000483 if (len > 65536)
484 len = 65536;
Damien Millerc4d1b362008-11-03 19:22:09 +1100485 msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
Darren Tucker0c348f52010-01-08 18:58:05 +1100486 strnvis(msg, raw, len * 4 + 1, VIS_SAFE|VIS_OCTAL|VIS_NOSLASH);
Darren Tucker046dff22003-10-08 17:32:02 +1000487 fprintf(stderr, "%s", msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000488 xfree(msg);
489 }
490 xfree(raw);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000491 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100492}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000493
Damien Millerf7475d72008-11-03 19:26:18 +1100494/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100495void
Damien Miller630d6f42002-01-22 23:17:30 +1100496input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100497{
498 Authctxt *authctxt = ctxt;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100499
Damien Miller62cee002000-09-23 17:15:56 +1100500 if (authctxt == NULL)
501 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000502 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000503 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000504 authctxt->authlist = NULL;
505 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100506 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
507 authctxt->method->cleanup(authctxt);
Darren Tucker79644822003-10-08 17:37:58 +1000508 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000509 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000510 authctxt->methoddata = NULL;
511 }
Damien Miller62cee002000-09-23 17:15:56 +1100512 authctxt->success = 1; /* break out */
513}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000514
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100515void
516input_userauth_success_unexpected(int type, u_int32_t seq, void *ctxt)
517{
518 Authctxt *authctxt = ctxt;
519
520 if (authctxt == NULL)
521 fatal("%s: no authentication context", __func__);
522
523 fatal("Unexpected authentication success during %s.",
524 authctxt->method->name);
525}
526
Damien Millerf7475d72008-11-03 19:26:18 +1100527/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100528void
Damien Miller630d6f42002-01-22 23:17:30 +1100529input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100530{
Damien Miller62cee002000-09-23 17:15:56 +1100531 Authctxt *authctxt = ctxt;
532 char *authlist = NULL;
533 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100534
535 if (authctxt == NULL)
536 fatal("input_userauth_failure: no authentication context");
537
Damien Miller874d77b2000-10-14 16:23:11 +1100538 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100539 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100540 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100541
542 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000543 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000544 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100545
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000546 userauth(authctxt, authlist);
547}
Damien Millerf7475d72008-11-03 19:26:18 +1100548
549/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000550void
Damien Miller630d6f42002-01-22 23:17:30 +1100551input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000552{
553 Authctxt *authctxt = ctxt;
554 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000555 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000556 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000557 int pktype, sent = 0;
558 u_int alen, blen;
559 char *pkalg, *fp;
560 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000561
562 if (authctxt == NULL)
563 fatal("input_userauth_pk_ok: no authentication context");
564 if (datafellows & SSH_BUG_PKOK) {
565 /* this is similar to SSH_BUG_PKAUTH */
566 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
567 pkblob = packet_get_string(&blen);
568 buffer_init(&b);
569 buffer_append(&b, pkblob, blen);
570 pkalg = buffer_get_string(&b, &alen);
571 buffer_free(&b);
572 } else {
573 pkalg = packet_get_string(&alen);
574 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000575 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100576 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000577
Damien Miller280ecfb2003-05-14 13:46:00 +1000578 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000579
Damien Miller280ecfb2003-05-14 13:46:00 +1000580 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
581 debug("unknown pkalg %s", pkalg);
582 goto done;
583 }
584 if ((key = key_from_blob(pkblob, blen)) == NULL) {
585 debug("no key from blob. pkalg %s", pkalg);
586 goto done;
587 }
588 if (key->type != pktype) {
589 error("input_userauth_pk_ok: type mismatch "
590 "for decoded key (received %d, expected %d)",
591 key->type, pktype);
592 goto done;
593 }
594 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
595 debug2("input_userauth_pk_ok: fp %s", fp);
596 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000597
Darren Tuckerd05b6012003-10-15 15:55:59 +1000598 /*
599 * search keys in the reverse order, because last candidate has been
600 * moved to the end of the queue. this also avoids confusion by
601 * duplicate keys
602 */
Damien Miller0b51a522004-04-20 20:07:19 +1000603 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000604 if (key_equal(key, id->key)) {
605 sent = sign_and_send_pubkey(authctxt, id);
606 break;
607 }
608 }
609done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000610 if (key != NULL)
611 key_free(key);
612 xfree(pkalg);
613 xfree(pkblob);
614
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000615 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000616 if (sent == 0)
617 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100618}
619
Darren Tucker0efd1552003-08-26 11:49:55 +1000620#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100621int
Darren Tucker0efd1552003-08-26 11:49:55 +1000622userauth_gssapi(Authctxt *authctxt)
623{
624 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100625 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000626 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000627 OM_uint32 min;
628 int ok = 0;
629
630 /* Try one GSSAPI method at a time, rather than sending them all at
631 * once. */
632
Darren Tucker56afe142003-11-03 20:06:14 +1100633 if (gss_supported == NULL)
634 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000635
636 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100637 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000638 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100639 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000640 ssh_gssapi_check_mechanism(&gssctxt,
641 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000642 ok = 1; /* Mechanism works */
643 } else {
644 mech++;
645 }
646 }
647
Damien Millera1cb9f32006-08-19 00:33:34 +1000648 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000649 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000650
651 authctxt->methoddata=(void *)gssctxt;
652
653 packet_start(SSH2_MSG_USERAUTH_REQUEST);
654 packet_put_cstring(authctxt->server_user);
655 packet_put_cstring(authctxt->service);
656 packet_put_cstring(authctxt->method->name);
657
658 packet_put_int(1);
659
Darren Tucker655a5e02003-11-03 20:09:03 +1100660 packet_put_int((gss_supported->elements[mech].length) + 2);
661 packet_put_char(SSH_GSS_OIDTYPE);
662 packet_put_char(gss_supported->elements[mech].length);
663 packet_put_raw(gss_supported->elements[mech].elements,
664 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000665
666 packet_send();
667
668 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
669 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
670 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
671 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
672
673 mech++; /* Move along to next candidate */
674
675 return 1;
676}
677
Damien Miller91c6aa42003-11-17 21:20:18 +1100678static OM_uint32
679process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
680{
681 Authctxt *authctxt = ctxt;
682 Gssctxt *gssctxt = authctxt->methoddata;
683 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000684 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
685 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100686 OM_uint32 status, ms, flags;
687 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100688
Damien Miller91c6aa42003-11-17 21:20:18 +1100689 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100690 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100691
692 if (send_tok.length > 0) {
693 if (GSS_ERROR(status))
694 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
695 else
696 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100697
Damien Miller91c6aa42003-11-17 21:20:18 +1100698 packet_put_string(send_tok.value, send_tok.length);
699 packet_send();
700 gss_release_buffer(&ms, &send_tok);
701 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100702
Damien Miller91c6aa42003-11-17 21:20:18 +1100703 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100704 /* send either complete or MIC, depending on mechanism */
705 if (!(flags & GSS_C_INTEG_FLAG)) {
706 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
707 packet_send();
708 } else {
709 ssh_gssapi_buildmic(&b, authctxt->server_user,
710 authctxt->service, "gssapi-with-mic");
711
712 gssbuf.value = buffer_ptr(&b);
713 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100714
Damien Miller0425d402003-11-17 22:18:21 +1100715 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100716
Damien Miller0425d402003-11-17 22:18:21 +1100717 if (!GSS_ERROR(status)) {
718 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
719 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100720
Damien Miller0425d402003-11-17 22:18:21 +1100721 packet_send();
722 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100723
Damien Miller0425d402003-11-17 22:18:21 +1100724 buffer_free(&b);
725 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100726 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100727 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100728
Damien Miller91c6aa42003-11-17 21:20:18 +1100729 return status;
730}
731
Damien Millerf7475d72008-11-03 19:26:18 +1100732/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000733void
734input_gssapi_response(int type, u_int32_t plen, void *ctxt)
735{
736 Authctxt *authctxt = ctxt;
737 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000738 int oidlen;
739 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000740
741 if (authctxt == NULL)
742 fatal("input_gssapi_response: no authentication context");
743 gssctxt = authctxt->methoddata;
744
745 /* Setup our OID */
746 oidv = packet_get_string(&oidlen);
747
Darren Tucker655a5e02003-11-03 20:09:03 +1100748 if (oidlen <= 2 ||
749 oidv[0] != SSH_GSS_OIDTYPE ||
750 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100751 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100752 debug("Badly encoded mechanism OID received");
753 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100754 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000755 }
756
Darren Tucker655a5e02003-11-03 20:09:03 +1100757 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
758 fatal("Server returned different OID than expected");
759
Darren Tucker0efd1552003-08-26 11:49:55 +1000760 packet_check_eom();
761
762 xfree(oidv);
763
Damien Miller91c6aa42003-11-17 21:20:18 +1100764 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000765 /* Start again with next method on list */
766 debug("Trying to start again");
767 userauth(authctxt, NULL);
768 return;
769 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000770}
771
Damien Millerf7475d72008-11-03 19:26:18 +1100772/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000773void
774input_gssapi_token(int type, u_int32_t plen, void *ctxt)
775{
776 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000777 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100778 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000779 u_int slen;
780
781 if (authctxt == NULL)
782 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000783
784 recv_tok.value = packet_get_string(&slen);
785 recv_tok.length = slen; /* safe typecast */
786
787 packet_check_eom();
788
Damien Miller91c6aa42003-11-17 21:20:18 +1100789 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000790
791 xfree(recv_tok.value);
792
793 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000794 /* Start again with the next method in the list */
795 userauth(authctxt, NULL);
796 return;
797 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000798}
799
Damien Millerf7475d72008-11-03 19:26:18 +1100800/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000801void
802input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
803{
804 Authctxt *authctxt = ctxt;
805 Gssctxt *gssctxt;
806 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
807 gss_buffer_desc recv_tok;
808 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000809 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000810
811 if (authctxt == NULL)
812 fatal("input_gssapi_response: no authentication context");
813 gssctxt = authctxt->methoddata;
814
Darren Tucker600ad8d2003-08-26 12:10:48 +1000815 recv_tok.value = packet_get_string(&len);
816 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000817
818 packet_check_eom();
819
820 /* Stick it into GSSAPI and see what it says */
821 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000822 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000823
824 xfree(recv_tok.value);
825 gss_release_buffer(&ms, &send_tok);
826
827 /* Server will be returning a failed packet after this one */
828}
829
Damien Millerf7475d72008-11-03 19:26:18 +1100830/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000831void
832input_gssapi_error(int type, u_int32_t plen, void *ctxt)
833{
834 OM_uint32 maj, min;
835 char *msg;
836 char *lang;
837
838 maj=packet_get_int();
839 min=packet_get_int();
840 msg=packet_get_string(NULL);
841 lang=packet_get_string(NULL);
842
843 packet_check_eom();
844
Damien Miller15d72a02005-11-05 15:07:33 +1100845 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000846 xfree(msg);
847 xfree(lang);
848}
849#endif /* GSSAPI */
850
Damien Millereba71ba2000-04-29 23:57:08 +1000851int
Damien Miller874d77b2000-10-14 16:23:11 +1100852userauth_none(Authctxt *authctxt)
853{
854 /* initial userauth request */
855 packet_start(SSH2_MSG_USERAUTH_REQUEST);
856 packet_put_cstring(authctxt->server_user);
857 packet_put_cstring(authctxt->service);
858 packet_put_cstring(authctxt->method->name);
859 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100860 return 1;
861}
862
863int
Damien Miller62cee002000-09-23 17:15:56 +1100864userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000865{
Damien Millere247cc42000-05-07 12:03:14 +1000866 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000867 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000868 char *password;
Darren Tuckerab791692010-01-08 18:48:02 +1100869 const char *host = options.host_key_alias ? options.host_key_alias :
870 authctxt->host;
Damien Millereba71ba2000-04-29 23:57:08 +1000871
Damien Millerd3a18572000-06-07 19:55:44 +1000872 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000873 return 0;
874
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000875 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000876 error("Permission denied, please try again.");
877
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000878 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100879 authctxt->server_user, host);
Damien Millereba71ba2000-04-29 23:57:08 +1000880 password = read_passphrase(prompt, 0);
881 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100882 packet_put_cstring(authctxt->server_user);
883 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100884 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000885 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000886 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000887 memset(password, 0, strlen(password));
888 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100889 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000890 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000891
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000892 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000893 &input_userauth_passwd_changereq);
894
Damien Millereba71ba2000-04-29 23:57:08 +1000895 return 1;
896}
Damien Millerf7475d72008-11-03 19:26:18 +1100897
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000898/*
899 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
900 */
Damien Millerf7475d72008-11-03 19:26:18 +1100901/* ARGSUSED */
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000902void
Tim Ricec8549622002-03-31 12:49:38 -0800903input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000904{
905 Authctxt *authctxt = ctxt;
906 char *info, *lang, *password = NULL, *retype = NULL;
907 char prompt[150];
Darren Tuckerab791692010-01-08 18:48:02 +1100908 const char *host = options.host_key_alias ? options.host_key_alias :
909 authctxt->host;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000910
911 debug2("input_userauth_passwd_changereq");
912
913 if (authctxt == NULL)
914 fatal("input_userauth_passwd_changereq: "
915 "no authentication context");
916
917 info = packet_get_string(NULL);
918 lang = packet_get_string(NULL);
919 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000920 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000921 xfree(info);
922 xfree(lang);
923 packet_start(SSH2_MSG_USERAUTH_REQUEST);
924 packet_put_cstring(authctxt->server_user);
925 packet_put_cstring(authctxt->service);
926 packet_put_cstring(authctxt->method->name);
927 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000928 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000929 "Enter %.30s@%.128s's old password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100930 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000931 password = read_passphrase(prompt, 0);
932 packet_put_cstring(password);
933 memset(password, 0, strlen(password));
934 xfree(password);
935 password = NULL;
936 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000937 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000938 "Enter %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100939 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000940 password = read_passphrase(prompt, RP_ALLOW_EOF);
941 if (password == NULL) {
942 /* bail out */
943 return;
944 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000945 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000946 "Retype %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100947 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000948 retype = read_passphrase(prompt, 0);
949 if (strcmp(password, retype) != 0) {
950 memset(password, 0, strlen(password));
951 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000952 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000953 password = NULL;
954 }
955 memset(retype, 0, strlen(retype));
956 xfree(retype);
957 }
958 packet_put_cstring(password);
959 memset(password, 0, strlen(password));
960 xfree(password);
961 packet_add_padding(64);
962 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000963
964 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000965 &input_userauth_passwd_changereq);
966}
Damien Millereba71ba2000-04-29 23:57:08 +1000967
Damien Miller01ed2272008-11-05 16:20:46 +1100968#ifdef JPAKE
969static char *
970pw_encrypt(const char *password, const char *crypt_scheme, const char *salt)
971{
972 /* OpenBSD crypt(3) handles all of these */
973 if (strcmp(crypt_scheme, "crypt") == 0 ||
974 strcmp(crypt_scheme, "bcrypt") == 0 ||
975 strcmp(crypt_scheme, "md5crypt") == 0 ||
976 strcmp(crypt_scheme, "crypt-extended") == 0)
977 return xstrdup(crypt(password, salt));
978 error("%s: unsupported password encryption scheme \"%.100s\"",
979 __func__, crypt_scheme);
980 return NULL;
981}
982
983static BIGNUM *
984jpake_password_to_secret(Authctxt *authctxt, const char *crypt_scheme,
985 const char *salt)
986{
987 char prompt[256], *password, *crypted;
988 u_char *secret;
989 u_int secret_len;
990 BIGNUM *ret;
991
992 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password (JPAKE): ",
993 authctxt->server_user, authctxt->host);
994 password = read_passphrase(prompt, 0);
995
996 if ((crypted = pw_encrypt(password, crypt_scheme, salt)) == NULL) {
997 logit("Disabling %s authentication", authctxt->method->name);
998 authctxt->method->enabled = NULL;
999 /* Continue with an empty password to fail gracefully */
1000 crypted = xstrdup("");
1001 }
1002
1003#ifdef JPAKE_DEBUG
1004 debug3("%s: salt = %s", __func__, salt);
1005 debug3("%s: scheme = %s", __func__, crypt_scheme);
1006 debug3("%s: crypted = %s", __func__, crypted);
1007#endif
1008
1009 if (hash_buffer(crypted, strlen(crypted), EVP_sha256(),
1010 &secret, &secret_len) != 0)
1011 fatal("%s: hash_buffer", __func__);
1012
1013 bzero(password, strlen(password));
1014 bzero(crypted, strlen(crypted));
1015 xfree(password);
1016 xfree(crypted);
1017
1018 if ((ret = BN_bin2bn(secret, secret_len, NULL)) == NULL)
1019 fatal("%s: BN_bin2bn (secret)", __func__);
1020 bzero(secret, secret_len);
1021 xfree(secret);
1022
1023 return ret;
1024}
1025
1026/* ARGSUSED */
1027void
1028input_userauth_jpake_server_step1(int type, u_int32_t seq, void *ctxt)
1029{
1030 Authctxt *authctxt = ctxt;
1031 struct jpake_ctx *pctx = authctxt->methoddata;
1032 u_char *x3_proof, *x4_proof, *x2_s_proof;
1033 u_int x3_proof_len, x4_proof_len, x2_s_proof_len;
1034 char *crypt_scheme, *salt;
1035
1036 /* Disable this message */
1037 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1, NULL);
1038
1039 if ((pctx->g_x3 = BN_new()) == NULL ||
1040 (pctx->g_x4 = BN_new()) == NULL)
1041 fatal("%s: BN_new", __func__);
1042
1043 /* Fetch step 1 values */
1044 crypt_scheme = packet_get_string(NULL);
1045 salt = packet_get_string(NULL);
1046 pctx->server_id = packet_get_string(&pctx->server_id_len);
1047 packet_get_bignum2(pctx->g_x3);
1048 packet_get_bignum2(pctx->g_x4);
1049 x3_proof = packet_get_string(&x3_proof_len);
1050 x4_proof = packet_get_string(&x4_proof_len);
1051 packet_check_eom();
1052
1053 JPAKE_DEBUG_CTX((pctx, "step 1 received in %s", __func__));
1054
1055 /* Obtain password and derive secret */
1056 pctx->s = jpake_password_to_secret(authctxt, crypt_scheme, salt);
1057 bzero(crypt_scheme, strlen(crypt_scheme));
1058 bzero(salt, strlen(salt));
1059 xfree(crypt_scheme);
1060 xfree(salt);
1061 JPAKE_DEBUG_BN((pctx->s, "%s: s = ", __func__));
1062
1063 /* Calculate step 2 values */
1064 jpake_step2(pctx->grp, pctx->s, pctx->g_x1,
1065 pctx->g_x3, pctx->g_x4, pctx->x2,
1066 pctx->server_id, pctx->server_id_len,
1067 pctx->client_id, pctx->client_id_len,
1068 x3_proof, x3_proof_len,
1069 x4_proof, x4_proof_len,
1070 &pctx->a,
1071 &x2_s_proof, &x2_s_proof_len);
1072
1073 bzero(x3_proof, x3_proof_len);
1074 bzero(x4_proof, x4_proof_len);
1075 xfree(x3_proof);
1076 xfree(x4_proof);
1077
1078 JPAKE_DEBUG_CTX((pctx, "step 2 sending in %s", __func__));
1079
1080 /* Send values for step 2 */
1081 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP2);
1082 packet_put_bignum2(pctx->a);
1083 packet_put_string(x2_s_proof, x2_s_proof_len);
1084 packet_send();
1085
1086 bzero(x2_s_proof, x2_s_proof_len);
1087 xfree(x2_s_proof);
1088
1089 /* Expect step 2 packet from peer */
1090 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2,
1091 input_userauth_jpake_server_step2);
1092}
1093
1094/* ARGSUSED */
1095void
1096input_userauth_jpake_server_step2(int type, u_int32_t seq, void *ctxt)
1097{
1098 Authctxt *authctxt = ctxt;
1099 struct jpake_ctx *pctx = authctxt->methoddata;
1100 u_char *x4_s_proof;
1101 u_int x4_s_proof_len;
1102
1103 /* Disable this message */
1104 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2, NULL);
1105
1106 if ((pctx->b = BN_new()) == NULL)
1107 fatal("%s: BN_new", __func__);
1108
1109 /* Fetch step 2 values */
1110 packet_get_bignum2(pctx->b);
1111 x4_s_proof = packet_get_string(&x4_s_proof_len);
1112 packet_check_eom();
1113
1114 JPAKE_DEBUG_CTX((pctx, "step 2 received in %s", __func__));
1115
1116 /* Derive shared key and calculate confirmation hash */
1117 jpake_key_confirm(pctx->grp, pctx->s, pctx->b,
1118 pctx->x2, pctx->g_x1, pctx->g_x2, pctx->g_x3, pctx->g_x4,
1119 pctx->client_id, pctx->client_id_len,
1120 pctx->server_id, pctx->server_id_len,
1121 session_id2, session_id2_len,
1122 x4_s_proof, x4_s_proof_len,
1123 &pctx->k,
1124 &pctx->h_k_cid_sessid, &pctx->h_k_cid_sessid_len);
1125
1126 bzero(x4_s_proof, x4_s_proof_len);
1127 xfree(x4_s_proof);
1128
1129 JPAKE_DEBUG_CTX((pctx, "confirm sending in %s", __func__));
1130
1131 /* Send key confirmation proof */
1132 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_CONFIRM);
1133 packet_put_string(pctx->h_k_cid_sessid, pctx->h_k_cid_sessid_len);
1134 packet_send();
1135
1136 /* Expect confirmation from peer */
1137 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM,
1138 input_userauth_jpake_server_confirm);
1139}
1140
1141/* ARGSUSED */
1142void
1143input_userauth_jpake_server_confirm(int type, u_int32_t seq, void *ctxt)
1144{
1145 Authctxt *authctxt = ctxt;
1146 struct jpake_ctx *pctx = authctxt->methoddata;
1147
1148 /* Disable this message */
1149 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM, NULL);
1150
1151 pctx->h_k_sid_sessid = packet_get_string(&pctx->h_k_sid_sessid_len);
1152 packet_check_eom();
1153
1154 JPAKE_DEBUG_CTX((pctx, "confirm received in %s", __func__));
1155
1156 /* Verify expected confirmation hash */
1157 if (jpake_check_confirm(pctx->k,
1158 pctx->server_id, pctx->server_id_len,
1159 session_id2, session_id2_len,
1160 pctx->h_k_sid_sessid, pctx->h_k_sid_sessid_len) == 1)
1161 debug("%s: %s success", __func__, authctxt->method->name);
1162 else {
1163 debug("%s: confirmation mismatch", __func__);
1164 /* XXX stash this so if auth succeeds then we can warn/kill */
1165 }
1166
1167 userauth_jpake_cleanup(authctxt);
1168}
1169#endif /* JPAKE */
1170
Ben Lindstrombba81212001-06-25 05:01:22 +00001171static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001172identity_sign(Identity *id, u_char **sigp, u_int *lenp,
1173 u_char *data, u_int datalen)
1174{
1175 Key *prv;
1176 int ret;
1177
1178 /* the agent supports this key */
1179 if (id->ac)
1180 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
1181 data, datalen));
1182 /*
1183 * we have already loaded the private key or
1184 * the private key is stored in external hardware
1185 */
1186 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
1187 return (key_sign(id->key, sigp, lenp, data, datalen));
1188 /* load the private key from the file */
1189 if ((prv = load_identity_file(id->filename)) == NULL)
1190 return (-1);
1191 ret = key_sign(prv, sigp, lenp, data, datalen);
1192 key_free(prv);
1193 return (ret);
1194}
1195
1196static int
1197sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +10001198{
1199 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001200 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +00001201 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +10001202 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001203 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001204 int have_sig = 1;
Damien Miller4e270b02010-04-16 15:56:21 +10001205 char *fp;
Damien Millereba71ba2000-04-29 23:57:08 +10001206
Damien Miller4e270b02010-04-16 15:56:21 +10001207 fp = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
1208 debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
1209 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001210
Damien Miller280ecfb2003-05-14 13:46:00 +10001211 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001212 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +00001213 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001214 return 0;
1215 }
Damien Millereba71ba2000-04-29 23:57:08 +10001216 /* data to be signed */
1217 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +11001218 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +10001219 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001220 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +11001221 } else {
1222 buffer_put_string(&b, session_id2, session_id2_len);
1223 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +10001224 }
Damien Millereba71ba2000-04-29 23:57:08 +10001225 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001226 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +10001227 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +00001228 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +10001229 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +11001230 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +00001231 if (datafellows & SSH_BUG_PKAUTH) {
1232 buffer_put_char(&b, have_sig);
1233 } else {
1234 buffer_put_cstring(&b, authctxt->method->name);
1235 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +10001236 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +00001237 }
Damien Millereba71ba2000-04-29 23:57:08 +10001238 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +10001239
1240 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +10001241 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001242 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +10001243 if (ret == -1) {
1244 xfree(blob);
1245 buffer_free(&b);
1246 return 0;
1247 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001248#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +10001249 buffer_dump(&b);
1250#endif
Ben Lindstromd121f612000-12-03 17:00:47 +00001251 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +10001252 buffer_clear(&b);
1253 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001254 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +10001255 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001256 buffer_put_cstring(&b, authctxt->server_user);
1257 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +11001258 buffer_put_cstring(&b, authctxt->method->name);
1259 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +00001260 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001261 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +10001262 buffer_put_string(&b, blob, bloblen);
1263 }
1264 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001265
Damien Millereba71ba2000-04-29 23:57:08 +10001266 /* append signature */
1267 buffer_put_string(&b, signature, slen);
1268 xfree(signature);
1269
1270 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +10001271 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +11001272 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +10001273 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +10001274
1275 /* put remaining data from buffer into packet */
1276 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1277 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
1278 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +10001279 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +10001280
1281 return 1;
Damien Miller994cf142000-07-21 10:19:44 +10001282}
1283
Ben Lindstrombba81212001-06-25 05:01:22 +00001284static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001285send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +10001286{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001287 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001288 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +10001289
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001290 debug3("send_pubkey_test");
1291
Damien Miller280ecfb2003-05-14 13:46:00 +10001292 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001293 /* we cannot handle this key */
1294 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +10001295 return 0;
1296 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001297 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001298 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +10001299
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001300 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1301 packet_put_cstring(authctxt->server_user);
1302 packet_put_cstring(authctxt->service);
1303 packet_put_cstring(authctxt->method->name);
1304 packet_put_char(have_sig);
1305 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001306 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001307 packet_put_string(blob, bloblen);
1308 xfree(blob);
1309 packet_send();
1310 return 1;
1311}
1312
Ben Lindstrombba81212001-06-25 05:01:22 +00001313static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001314load_identity_file(char *filename)
1315{
1316 Key *private;
1317 char prompt[300], *passphrase;
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001318 int perm_ok = 0, quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +00001319 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001320
Ben Lindstrom329782e2001-03-10 17:08:59 +00001321 if (stat(filename, &st) < 0) {
1322 debug3("no such identity: %s", filename);
1323 return NULL;
1324 }
Darren Tucker232b76f2006-05-06 17:41:51 +10001325 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
1326 if (!perm_ok)
1327 return NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001328 if (private == NULL) {
1329 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001330 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +10001331 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001332 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +11001333 for (i = 0; i < options.number_of_password_prompts; i++) {
1334 passphrase = read_passphrase(prompt, 0);
1335 if (strcmp(passphrase, "") != 0) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001336 private = key_load_private_type(KEY_UNSPEC,
1337 filename, passphrase, NULL, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001338 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +11001339 } else {
1340 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001341 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +11001342 }
1343 memset(passphrase, 0, strlen(passphrase));
1344 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001345 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +11001346 break;
1347 debug2("bad passphrase given, try again...");
1348 }
Damien Miller994cf142000-07-21 10:19:44 +10001349 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001350 return private;
1351}
1352
Damien Miller280ecfb2003-05-14 13:46:00 +10001353/*
1354 * try keys in the following order:
1355 * 1. agent keys that are found in the config file
1356 * 2. other agent keys
1357 * 3. keys that are only listed in the config file
1358 */
1359static void
1360pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001361{
Damien Miller280ecfb2003-05-14 13:46:00 +10001362 Identity *id;
1363 Idlist agent, files, *preferred;
1364 Key *key;
1365 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001366 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001367 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001368
Damien Miller280ecfb2003-05-14 13:46:00 +10001369 TAILQ_INIT(&agent); /* keys from the agent */
1370 TAILQ_INIT(&files); /* keys from the config file */
1371 preferred = &authctxt->keys;
1372 TAILQ_INIT(preferred); /* preferred order of keys */
1373
1374 /* list of keys stored in the filesystem */
1375 for (i = 0; i < options.num_identity_files; i++) {
1376 key = options.identity_keys[i];
1377 if (key && key->type == KEY_RSA1)
1378 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11001379 if (key && key->cert && key->cert->type != SSH2_CERT_TYPE_USER)
1380 continue;
Damien Miller280ecfb2003-05-14 13:46:00 +10001381 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001382 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001383 id->key = key;
1384 id->filename = xstrdup(options.identity_files[i]);
1385 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001386 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001387 /* list of keys supported by the agent */
1388 if ((ac = ssh_get_authentication_connection())) {
1389 for (key = ssh_get_first_identity(ac, &comment, 2);
1390 key != NULL;
1391 key = ssh_get_next_identity(ac, &comment, 2)) {
1392 found = 0;
1393 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001394 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001395 if (key_equal(key, id->key)) {
1396 key_free(key);
1397 xfree(comment);
1398 TAILQ_REMOVE(&files, id, next);
1399 TAILQ_INSERT_TAIL(preferred, id, next);
1400 id->ac = ac;
1401 found = 1;
1402 break;
1403 }
1404 }
Damien Millerbd394c32004-03-08 23:12:36 +11001405 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001406 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001407 id->key = key;
1408 id->filename = comment;
1409 id->ac = ac;
1410 TAILQ_INSERT_TAIL(&agent, id, next);
1411 }
1412 }
1413 /* append remaining agent keys */
1414 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1415 TAILQ_REMOVE(&agent, id, next);
1416 TAILQ_INSERT_TAIL(preferred, id, next);
1417 }
1418 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001419 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001420 /* append remaining keys from the config file */
1421 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1422 TAILQ_REMOVE(&files, id, next);
1423 TAILQ_INSERT_TAIL(preferred, id, next);
1424 }
1425 TAILQ_FOREACH(id, preferred, next) {
1426 debug2("key: %s (%p)", id->filename, id->key);
1427 }
1428}
1429
1430static void
1431pubkey_cleanup(Authctxt *authctxt)
1432{
1433 Identity *id;
1434
1435 if (authctxt->agent != NULL)
1436 ssh_close_authentication_connection(authctxt->agent);
1437 for (id = TAILQ_FIRST(&authctxt->keys); id;
1438 id = TAILQ_FIRST(&authctxt->keys)) {
1439 TAILQ_REMOVE(&authctxt->keys, id, next);
1440 if (id->key)
1441 key_free(id->key);
1442 if (id->filename)
1443 xfree(id->filename);
1444 xfree(id);
1445 }
Damien Millereba71ba2000-04-29 23:57:08 +10001446}
1447
Damien Miller62cee002000-09-23 17:15:56 +11001448int
1449userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001450{
Damien Miller280ecfb2003-05-14 13:46:00 +10001451 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001452 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001453
Damien Miller280ecfb2003-05-14 13:46:00 +10001454 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1455 if (id->tried++)
1456 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001457 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001458 TAILQ_REMOVE(&authctxt->keys, id, next);
1459 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1460 /*
1461 * send a test message if we have the public key. for
1462 * encrypted keys we cannot do this and have to load the
1463 * private key instead
1464 */
1465 if (id->key && id->key->type != KEY_RSA1) {
Damien Miller88680652010-04-16 15:53:43 +10001466 debug("Offering %s public key: %s", key_type(id->key),
1467 id->filename);
Damien Miller280ecfb2003-05-14 13:46:00 +10001468 sent = send_pubkey_test(authctxt, id);
1469 } else if (id->key == NULL) {
1470 debug("Trying private key: %s", id->filename);
1471 id->key = load_identity_file(id->filename);
1472 if (id->key != NULL) {
1473 id->isprivate = 1;
1474 sent = sign_and_send_pubkey(authctxt, id);
1475 key_free(id->key);
1476 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001477 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001478 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001479 if (sent)
1480 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001481 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001482 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001483}
Damien Millereba71ba2000-04-29 23:57:08 +10001484
Damien Miller874d77b2000-10-14 16:23:11 +11001485/*
1486 * Send userauth request message specifying keyboard-interactive method.
1487 */
1488int
1489userauth_kbdint(Authctxt *authctxt)
1490{
1491 static int attempt = 0;
1492
1493 if (attempt++ >= options.number_of_password_prompts)
1494 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001495 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1496 if (attempt > 1 && !authctxt->info_req_seen) {
1497 debug3("userauth_kbdint: disable: no info_req_seen");
1498 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1499 return 0;
1500 }
Damien Miller874d77b2000-10-14 16:23:11 +11001501
1502 debug2("userauth_kbdint");
1503 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1504 packet_put_cstring(authctxt->server_user);
1505 packet_put_cstring(authctxt->service);
1506 packet_put_cstring(authctxt->method->name);
1507 packet_put_cstring(""); /* lang */
1508 packet_put_cstring(options.kbd_interactive_devices ?
1509 options.kbd_interactive_devices : "");
1510 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001511
1512 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1513 return 1;
1514}
1515
1516/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001517 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001518 */
1519void
Damien Miller630d6f42002-01-22 23:17:30 +11001520input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001521{
1522 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001523 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001524 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001525 int echo = 0;
1526
1527 debug2("input_userauth_info_req");
1528
1529 if (authctxt == NULL)
1530 fatal("input_userauth_info_req: no authentication context");
1531
Ben Lindstrom7d199962001-09-12 18:29:00 +00001532 authctxt->info_req_seen = 1;
1533
Damien Miller874d77b2000-10-14 16:23:11 +11001534 name = packet_get_string(NULL);
1535 inst = packet_get_string(NULL);
1536 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001537 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001538 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001539 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001540 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001541 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001542 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001543 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001544
1545 num_prompts = packet_get_int();
1546 /*
1547 * Begin to build info response packet based on prompts requested.
1548 * We commit to providing the correct number of responses, so if
1549 * further on we run into a problem that prevents this, we have to
1550 * be sure and clean this up and send a correct error response.
1551 */
1552 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1553 packet_put_int(num_prompts);
1554
Ben Lindstrom551ea372001-06-05 18:56:16 +00001555 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001556 for (i = 0; i < num_prompts; i++) {
1557 prompt = packet_get_string(NULL);
1558 echo = packet_get_char();
1559
Ben Lindstrom949974b2001-06-25 05:20:31 +00001560 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001561
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001562 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001563 memset(response, 0, strlen(response));
1564 xfree(response);
1565 xfree(prompt);
1566 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001567 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001568
Damien Miller9f643902001-11-12 11:02:52 +11001569 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001570 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001571}
Damien Miller62cee002000-09-23 17:15:56 +11001572
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001573static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001574ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001575 u_char *data, u_int datalen)
1576{
1577 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001578 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001579 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001580 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001581
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001582 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001583
Ben Lindstrom5206b952002-06-06 19:59:29 +00001584 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001585 error("ssh_keysign: not installed: %s", strerror(errno));
Ben Lindstrom5206b952002-06-06 19:59:29 +00001586 return -1;
1587 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001588 if (fflush(stdout) != 0)
1589 error("ssh_keysign: fflush: %s", strerror(errno));
1590 if (pipe(to) < 0) {
1591 error("ssh_keysign: pipe: %s", strerror(errno));
1592 return -1;
1593 }
1594 if (pipe(from) < 0) {
1595 error("ssh_keysign: pipe: %s", strerror(errno));
1596 return -1;
1597 }
1598 if ((pid = fork()) < 0) {
1599 error("ssh_keysign: fork: %s", strerror(errno));
1600 return -1;
1601 }
1602 if (pid == 0) {
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001603 /* keep the socket on exec */
1604 fcntl(packet_get_connection_in(), F_SETFD, 0);
Damien Miller2e5fe882006-06-13 13:10:00 +10001605 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001606 close(from[0]);
1607 if (dup2(from[1], STDOUT_FILENO) < 0)
1608 fatal("ssh_keysign: dup2: %s", strerror(errno));
1609 close(to[1]);
1610 if (dup2(to[0], STDIN_FILENO) < 0)
1611 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001612 close(from[1]);
1613 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001614 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001615 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1616 strerror(errno));
1617 }
1618 close(from[1]);
1619 close(to[0]);
1620
1621 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001622 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001623 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001624 if (ssh_msg_send(to[1], version, &b) == -1)
1625 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001626
Damien Miller901119b2002-10-04 11:10:04 +10001627 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001628 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001629 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001630 return -1;
1631 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001632 close(from[0]);
1633 close(to[1]);
1634
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001635 while (waitpid(pid, &status, 0) < 0)
1636 if (errno != EINTR)
1637 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001638
Ben Lindstrom5206b952002-06-06 19:59:29 +00001639 if (buffer_get_char(&b) != version) {
1640 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001641 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001642 return -1;
1643 }
1644 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001645 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001646
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001647 return 0;
1648}
1649
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001650int
1651userauth_hostbased(Authctxt *authctxt)
1652{
1653 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001654 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001655 Buffer b;
1656 u_char *signature, *blob;
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001657 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001658 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001659 u_int blen, slen;
Darren Tucker5246df42010-01-08 18:50:46 +11001660 int ok, i, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001661
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001662 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001663 for (i = 0; i < sensitive->nkeys; i++) {
1664 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001665 if (private && private->type != KEY_RSA1) {
1666 found = 1;
1667 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001668 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001669 break;
1670 }
1671 }
1672 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001673 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001674 return 0;
1675 }
1676 if (key_to_blob(private, &blob, &blen) == 0) {
1677 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001678 return 0;
1679 }
Damien Miller91c18472001-11-12 11:02:03 +11001680 /* figure out a name for the client host */
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001681 p = get_local_name(packet_get_connection_in());
Damien Miller91c18472001-11-12 11:02:03 +11001682 if (p == NULL) {
1683 error("userauth_hostbased: cannot get local ipaddr/name");
1684 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001685 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001686 return 0;
1687 }
Damien Miller07d86be2006-03-26 14:19:21 +11001688 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001689 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001690 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001691
Ben Lindstrom671388f2001-04-19 20:40:45 +00001692 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1693 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001694 pkalg = xstrdup(key_ssh_name(private));
1695 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001696 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001697 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001698 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1699 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001700 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001701 buffer_put_cstring(&b, authctxt->method->name);
1702 buffer_put_cstring(&b, pkalg);
1703 buffer_put_string(&b, blob, blen);
1704 buffer_put_cstring(&b, chost);
1705 buffer_put_cstring(&b, authctxt->local_user);
1706#ifdef DEBUG_PK
1707 buffer_dump(&b);
1708#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001709 if (sensitive->external_keysign)
1710 ok = ssh_keysign(private, &signature, &slen,
1711 buffer_ptr(&b), buffer_len(&b));
1712 else
1713 ok = key_sign(private, &signature, &slen,
1714 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001715 key_free(private);
1716 buffer_free(&b);
1717 if (ok != 0) {
1718 error("key_sign failed");
1719 xfree(chost);
1720 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001721 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001722 return 0;
1723 }
1724 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1725 packet_put_cstring(authctxt->server_user);
1726 packet_put_cstring(authctxt->service);
1727 packet_put_cstring(authctxt->method->name);
1728 packet_put_cstring(pkalg);
1729 packet_put_string(blob, blen);
1730 packet_put_cstring(chost);
1731 packet_put_cstring(authctxt->local_user);
1732 packet_put_string(signature, slen);
1733 memset(signature, 's', slen);
1734 xfree(signature);
1735 xfree(chost);
1736 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001737 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001738
1739 packet_send();
1740 return 1;
1741}
1742
Damien Miller01ed2272008-11-05 16:20:46 +11001743#ifdef JPAKE
1744int
1745userauth_jpake(Authctxt *authctxt)
1746{
1747 struct jpake_ctx *pctx;
1748 u_char *x1_proof, *x2_proof;
1749 u_int x1_proof_len, x2_proof_len;
1750 static int attempt = 0; /* XXX share with userauth_password's? */
1751
1752 if (attempt++ >= options.number_of_password_prompts)
1753 return 0;
1754 if (attempt != 1)
1755 error("Permission denied, please try again.");
1756
1757 if (authctxt->methoddata != NULL)
1758 fatal("%s: authctxt->methoddata already set (%p)",
1759 __func__, authctxt->methoddata);
1760
1761 authctxt->methoddata = pctx = jpake_new();
1762
1763 /*
1764 * Send request immediately, to get the protocol going while
1765 * we do the initial computations.
1766 */
1767 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1768 packet_put_cstring(authctxt->server_user);
1769 packet_put_cstring(authctxt->service);
1770 packet_put_cstring(authctxt->method->name);
1771 packet_send();
1772 packet_write_wait();
1773
1774 jpake_step1(pctx->grp,
1775 &pctx->client_id, &pctx->client_id_len,
1776 &pctx->x1, &pctx->x2, &pctx->g_x1, &pctx->g_x2,
1777 &x1_proof, &x1_proof_len,
1778 &x2_proof, &x2_proof_len);
1779
1780 JPAKE_DEBUG_CTX((pctx, "step 1 sending in %s", __func__));
1781
1782 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP1);
1783 packet_put_string(pctx->client_id, pctx->client_id_len);
1784 packet_put_bignum2(pctx->g_x1);
1785 packet_put_bignum2(pctx->g_x2);
1786 packet_put_string(x1_proof, x1_proof_len);
1787 packet_put_string(x2_proof, x2_proof_len);
1788 packet_send();
1789
1790 bzero(x1_proof, x1_proof_len);
1791 bzero(x2_proof, x2_proof_len);
1792 xfree(x1_proof);
1793 xfree(x2_proof);
1794
1795 /* Expect step 1 packet from peer */
1796 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1,
1797 input_userauth_jpake_server_step1);
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001798 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS,
1799 &input_userauth_success_unexpected);
Damien Miller01ed2272008-11-05 16:20:46 +11001800
1801 return 1;
1802}
1803
1804void
1805userauth_jpake_cleanup(Authctxt *authctxt)
1806{
1807 debug3("%s: clean up", __func__);
1808 if (authctxt->methoddata != NULL) {
1809 jpake_free(authctxt->methoddata);
1810 authctxt->methoddata = NULL;
1811 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001812 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
Damien Miller01ed2272008-11-05 16:20:46 +11001813}
1814#endif /* JPAKE */
1815
Damien Miller62cee002000-09-23 17:15:56 +11001816/* find auth method */
1817
Damien Miller62cee002000-09-23 17:15:56 +11001818/*
1819 * given auth method name, if configurable options permit this method fill
1820 * in auth_ident field and return true, otherwise return false.
1821 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001822static int
Damien Miller62cee002000-09-23 17:15:56 +11001823authmethod_is_enabled(Authmethod *method)
1824{
1825 if (method == NULL)
1826 return 0;
1827 /* return false if options indicate this method is disabled */
1828 if (method->enabled == NULL || *method->enabled == 0)
1829 return 0;
1830 /* return false if batch mode is enabled but method needs interactive mode */
1831 if (method->batch_flag != NULL && *method->batch_flag != 0)
1832 return 0;
1833 return 1;
1834}
1835
Ben Lindstrombba81212001-06-25 05:01:22 +00001836static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001837authmethod_lookup(const char *name)
1838{
1839 Authmethod *method = NULL;
1840 if (name != NULL)
1841 for (method = authmethods; method->name != NULL; method++)
1842 if (strcmp(name, method->name) == 0)
1843 return method;
1844 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1845 return NULL;
1846}
1847
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001848/* XXX internal state */
1849static Authmethod *current = NULL;
1850static char *supported = NULL;
1851static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001852
Damien Miller62cee002000-09-23 17:15:56 +11001853/*
1854 * Given the authentication method list sent by the server, return the
1855 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001856 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001857 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001858static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001859authmethod_get(char *authlist)
1860{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001861 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001862 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001863
Damien Miller62cee002000-09-23 17:15:56 +11001864 /* Use a suitable default if we're passed a nil list. */
1865 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001866 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001867
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001868 if (supported == NULL || strcmp(authlist, supported) != 0) {
1869 debug3("start over, passed a different list %s", authlist);
1870 if (supported != NULL)
1871 xfree(supported);
1872 supported = xstrdup(authlist);
1873 preferred = options.preferred_authentications;
1874 debug3("preferred %s", preferred);
1875 current = NULL;
1876 } else if (current != NULL && authmethod_is_enabled(current))
1877 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001878
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001879 for (;;) {
1880 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001881 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001882 current = NULL;
1883 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001884 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001885 preferred += next;
1886 debug3("authmethod_lookup %s", name);
1887 debug3("remaining preferred: %s", preferred);
1888 if ((current = authmethod_lookup(name)) != NULL &&
1889 authmethod_is_enabled(current)) {
1890 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001891 debug("Next authentication method: %s", name);
Damien Miller78c40c32011-05-15 08:36:59 +10001892 xfree(name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001893 return current;
1894 }
Damien Millereba71ba2000-04-29 23:57:08 +10001895 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001896}
Damien Miller62cee002000-09-23 17:15:56 +11001897
Ben Lindstrom79073822001-07-04 03:42:30 +00001898static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001899authmethods_get(void)
1900{
1901 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001902 Buffer b;
1903 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001904
Damien Miller0e3b8722002-01-22 23:26:38 +11001905 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001906 for (method = authmethods; method->name != NULL; method++) {
1907 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001908 if (buffer_len(&b) > 0)
1909 buffer_append(&b, ",", 1);
1910 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001911 }
Damien Miller62cee002000-09-23 17:15:56 +11001912 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001913 buffer_append(&b, "\0", 1);
1914 list = xstrdup(buffer_ptr(&b));
1915 buffer_free(&b);
1916 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001917}
Damien Miller01ed2272008-11-05 16:20:46 +11001918