blob: 6791ea3441064c294549b233a2fe0ce10a98c4fa [file] [log] [blame]
Damien Millercb6b68b2012-12-03 09:49:52 +11001/* $OpenBSD: sshconnect2.c,v 1.190 2012/12/02 20:26:11 djm Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Miller01ed2272008-11-05 16:20:46 +11004 * Copyright (c) 2008 Damien Miller. All rights reserved.
Damien Millereba71ba2000-04-29 23:57:08 +10005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100014 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
Damien Miller2eb63402006-03-15 11:09:42 +110028
Damien Miller9cf6d072006-03-15 11:29:24 +110029#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/socket.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110031#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110032#include <sys/stat.h>
Damien Millereba71ba2000-04-29 23:57:08 +100033
Darren Tucker39972492006-07-12 22:22:46 +100034#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110035#include <fcntl.h>
Darren Tuckerf520ea12007-05-20 15:11:33 +100036#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100037#include <pwd.h>
38#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100039#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100040#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100041#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100042#include <unistd.h>
Damien 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 Millercb6b68b2012-12-03 09:49:52 +11001362 Identity *id, *id2, *tmp;
Damien Miller280ecfb2003-05-14 13:46:00 +10001363 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
Damien Millercb6b68b2012-12-03 09:49:52 +11001374 /* list of keys stored in the filesystem and PKCS#11 */
Damien Miller280ecfb2003-05-14 13:46:00 +10001375 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 Millercb6b68b2012-12-03 09:49:52 +11001387 /* Prefer PKCS11 keys that are explicitly listed */
1388 TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
1389 if (id->key == NULL || (id->key->flags & KEY_FLAG_EXT) == 0)
1390 continue;
1391 found = 0;
1392 TAILQ_FOREACH(id2, &files, next) {
1393 if (id2->key == NULL ||
1394 (id2->key->flags & KEY_FLAG_EXT) != 0)
1395 continue;
1396 if (key_equal(id->key, id2->key)) {
1397 TAILQ_REMOVE(&files, id, next);
1398 TAILQ_INSERT_TAIL(preferred, id, next);
1399 found = 1;
1400 break;
1401 }
1402 }
1403 /* If IdentitiesOnly set and key not found then don't use it */
1404 if (!found && options.identities_only) {
1405 TAILQ_REMOVE(&files, id, next);
1406 bzero(id, sizeof(id));
1407 free(id);
1408 }
1409 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001410 /* list of keys supported by the agent */
1411 if ((ac = ssh_get_authentication_connection())) {
1412 for (key = ssh_get_first_identity(ac, &comment, 2);
1413 key != NULL;
1414 key = ssh_get_next_identity(ac, &comment, 2)) {
1415 found = 0;
1416 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001417 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001418 if (key_equal(key, id->key)) {
1419 key_free(key);
1420 xfree(comment);
1421 TAILQ_REMOVE(&files, id, next);
1422 TAILQ_INSERT_TAIL(preferred, id, next);
1423 id->ac = ac;
1424 found = 1;
1425 break;
1426 }
1427 }
Damien Millerbd394c32004-03-08 23:12:36 +11001428 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001429 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001430 id->key = key;
1431 id->filename = comment;
1432 id->ac = ac;
1433 TAILQ_INSERT_TAIL(&agent, id, next);
1434 }
1435 }
1436 /* append remaining agent keys */
1437 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1438 TAILQ_REMOVE(&agent, id, next);
1439 TAILQ_INSERT_TAIL(preferred, id, next);
1440 }
1441 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001442 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001443 /* append remaining keys from the config file */
1444 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1445 TAILQ_REMOVE(&files, id, next);
1446 TAILQ_INSERT_TAIL(preferred, id, next);
1447 }
1448 TAILQ_FOREACH(id, preferred, next) {
1449 debug2("key: %s (%p)", id->filename, id->key);
1450 }
1451}
1452
1453static void
1454pubkey_cleanup(Authctxt *authctxt)
1455{
1456 Identity *id;
1457
1458 if (authctxt->agent != NULL)
1459 ssh_close_authentication_connection(authctxt->agent);
1460 for (id = TAILQ_FIRST(&authctxt->keys); id;
1461 id = TAILQ_FIRST(&authctxt->keys)) {
1462 TAILQ_REMOVE(&authctxt->keys, id, next);
1463 if (id->key)
1464 key_free(id->key);
1465 if (id->filename)
1466 xfree(id->filename);
1467 xfree(id);
1468 }
Damien Millereba71ba2000-04-29 23:57:08 +10001469}
1470
Damien Miller62cee002000-09-23 17:15:56 +11001471int
1472userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001473{
Damien Miller280ecfb2003-05-14 13:46:00 +10001474 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001475 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001476
Damien Miller280ecfb2003-05-14 13:46:00 +10001477 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1478 if (id->tried++)
1479 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001480 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001481 TAILQ_REMOVE(&authctxt->keys, id, next);
1482 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1483 /*
1484 * send a test message if we have the public key. for
1485 * encrypted keys we cannot do this and have to load the
1486 * private key instead
1487 */
1488 if (id->key && id->key->type != KEY_RSA1) {
Damien Miller88680652010-04-16 15:53:43 +10001489 debug("Offering %s public key: %s", key_type(id->key),
1490 id->filename);
Damien Miller280ecfb2003-05-14 13:46:00 +10001491 sent = send_pubkey_test(authctxt, id);
1492 } else if (id->key == NULL) {
1493 debug("Trying private key: %s", id->filename);
1494 id->key = load_identity_file(id->filename);
1495 if (id->key != NULL) {
1496 id->isprivate = 1;
1497 sent = sign_and_send_pubkey(authctxt, id);
1498 key_free(id->key);
1499 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001500 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001501 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001502 if (sent)
1503 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001504 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001505 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001506}
Damien Millereba71ba2000-04-29 23:57:08 +10001507
Damien Miller874d77b2000-10-14 16:23:11 +11001508/*
1509 * Send userauth request message specifying keyboard-interactive method.
1510 */
1511int
1512userauth_kbdint(Authctxt *authctxt)
1513{
1514 static int attempt = 0;
1515
1516 if (attempt++ >= options.number_of_password_prompts)
1517 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001518 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1519 if (attempt > 1 && !authctxt->info_req_seen) {
1520 debug3("userauth_kbdint: disable: no info_req_seen");
1521 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1522 return 0;
1523 }
Damien Miller874d77b2000-10-14 16:23:11 +11001524
1525 debug2("userauth_kbdint");
1526 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1527 packet_put_cstring(authctxt->server_user);
1528 packet_put_cstring(authctxt->service);
1529 packet_put_cstring(authctxt->method->name);
1530 packet_put_cstring(""); /* lang */
1531 packet_put_cstring(options.kbd_interactive_devices ?
1532 options.kbd_interactive_devices : "");
1533 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001534
1535 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1536 return 1;
1537}
1538
1539/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001540 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001541 */
1542void
Damien Miller630d6f42002-01-22 23:17:30 +11001543input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001544{
1545 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001546 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001547 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001548 int echo = 0;
1549
1550 debug2("input_userauth_info_req");
1551
1552 if (authctxt == NULL)
1553 fatal("input_userauth_info_req: no authentication context");
1554
Ben Lindstrom7d199962001-09-12 18:29:00 +00001555 authctxt->info_req_seen = 1;
1556
Damien Miller874d77b2000-10-14 16:23:11 +11001557 name = packet_get_string(NULL);
1558 inst = packet_get_string(NULL);
1559 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001560 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001561 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001562 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001563 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001564 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001565 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001566 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001567
1568 num_prompts = packet_get_int();
1569 /*
1570 * Begin to build info response packet based on prompts requested.
1571 * We commit to providing the correct number of responses, so if
1572 * further on we run into a problem that prevents this, we have to
1573 * be sure and clean this up and send a correct error response.
1574 */
1575 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1576 packet_put_int(num_prompts);
1577
Ben Lindstrom551ea372001-06-05 18:56:16 +00001578 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001579 for (i = 0; i < num_prompts; i++) {
1580 prompt = packet_get_string(NULL);
1581 echo = packet_get_char();
1582
Ben Lindstrom949974b2001-06-25 05:20:31 +00001583 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001584
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001585 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001586 memset(response, 0, strlen(response));
1587 xfree(response);
1588 xfree(prompt);
1589 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001590 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001591
Damien Miller9f643902001-11-12 11:02:52 +11001592 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001593 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001594}
Damien Miller62cee002000-09-23 17:15:56 +11001595
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001596static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001597ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001598 u_char *data, u_int datalen)
1599{
1600 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001601 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001602 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001603 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001604
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001605 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001606
Ben Lindstrom5206b952002-06-06 19:59:29 +00001607 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001608 error("ssh_keysign: not installed: %s", strerror(errno));
Ben Lindstrom5206b952002-06-06 19:59:29 +00001609 return -1;
1610 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001611 if (fflush(stdout) != 0)
1612 error("ssh_keysign: fflush: %s", strerror(errno));
1613 if (pipe(to) < 0) {
1614 error("ssh_keysign: pipe: %s", strerror(errno));
1615 return -1;
1616 }
1617 if (pipe(from) < 0) {
1618 error("ssh_keysign: pipe: %s", strerror(errno));
1619 return -1;
1620 }
1621 if ((pid = fork()) < 0) {
1622 error("ssh_keysign: fork: %s", strerror(errno));
1623 return -1;
1624 }
1625 if (pid == 0) {
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001626 /* keep the socket on exec */
1627 fcntl(packet_get_connection_in(), F_SETFD, 0);
Damien Miller2e5fe882006-06-13 13:10:00 +10001628 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001629 close(from[0]);
1630 if (dup2(from[1], STDOUT_FILENO) < 0)
1631 fatal("ssh_keysign: dup2: %s", strerror(errno));
1632 close(to[1]);
1633 if (dup2(to[0], STDIN_FILENO) < 0)
1634 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001635 close(from[1]);
1636 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001637 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001638 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1639 strerror(errno));
1640 }
1641 close(from[1]);
1642 close(to[0]);
1643
1644 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001645 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001646 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001647 if (ssh_msg_send(to[1], version, &b) == -1)
1648 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001649
Damien Miller901119b2002-10-04 11:10:04 +10001650 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001651 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001652 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001653 return -1;
1654 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001655 close(from[0]);
1656 close(to[1]);
1657
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001658 while (waitpid(pid, &status, 0) < 0)
1659 if (errno != EINTR)
1660 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001661
Ben Lindstrom5206b952002-06-06 19:59:29 +00001662 if (buffer_get_char(&b) != version) {
1663 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001664 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001665 return -1;
1666 }
1667 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001668 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001669
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001670 return 0;
1671}
1672
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001673int
1674userauth_hostbased(Authctxt *authctxt)
1675{
1676 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001677 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001678 Buffer b;
1679 u_char *signature, *blob;
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001680 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001681 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001682 u_int blen, slen;
Darren Tucker5246df42010-01-08 18:50:46 +11001683 int ok, i, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001684
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001685 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001686 for (i = 0; i < sensitive->nkeys; i++) {
1687 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001688 if (private && private->type != KEY_RSA1) {
1689 found = 1;
1690 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001691 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001692 break;
1693 }
1694 }
1695 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001696 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001697 return 0;
1698 }
1699 if (key_to_blob(private, &blob, &blen) == 0) {
1700 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001701 return 0;
1702 }
Damien Miller91c18472001-11-12 11:02:03 +11001703 /* figure out a name for the client host */
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001704 p = get_local_name(packet_get_connection_in());
Damien Miller91c18472001-11-12 11:02:03 +11001705 if (p == NULL) {
1706 error("userauth_hostbased: cannot get local ipaddr/name");
1707 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001708 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001709 return 0;
1710 }
Damien Miller07d86be2006-03-26 14:19:21 +11001711 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001712 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001713 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001714
Ben Lindstrom671388f2001-04-19 20:40:45 +00001715 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1716 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001717 pkalg = xstrdup(key_ssh_name(private));
1718 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001719 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001720 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001721 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1722 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001723 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001724 buffer_put_cstring(&b, authctxt->method->name);
1725 buffer_put_cstring(&b, pkalg);
1726 buffer_put_string(&b, blob, blen);
1727 buffer_put_cstring(&b, chost);
1728 buffer_put_cstring(&b, authctxt->local_user);
1729#ifdef DEBUG_PK
1730 buffer_dump(&b);
1731#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001732 if (sensitive->external_keysign)
1733 ok = ssh_keysign(private, &signature, &slen,
1734 buffer_ptr(&b), buffer_len(&b));
1735 else
1736 ok = key_sign(private, &signature, &slen,
1737 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001738 key_free(private);
1739 buffer_free(&b);
1740 if (ok != 0) {
1741 error("key_sign failed");
1742 xfree(chost);
1743 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001744 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001745 return 0;
1746 }
1747 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1748 packet_put_cstring(authctxt->server_user);
1749 packet_put_cstring(authctxt->service);
1750 packet_put_cstring(authctxt->method->name);
1751 packet_put_cstring(pkalg);
1752 packet_put_string(blob, blen);
1753 packet_put_cstring(chost);
1754 packet_put_cstring(authctxt->local_user);
1755 packet_put_string(signature, slen);
1756 memset(signature, 's', slen);
1757 xfree(signature);
1758 xfree(chost);
1759 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001760 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001761
1762 packet_send();
1763 return 1;
1764}
1765
Damien Miller01ed2272008-11-05 16:20:46 +11001766#ifdef JPAKE
1767int
1768userauth_jpake(Authctxt *authctxt)
1769{
1770 struct jpake_ctx *pctx;
1771 u_char *x1_proof, *x2_proof;
1772 u_int x1_proof_len, x2_proof_len;
1773 static int attempt = 0; /* XXX share with userauth_password's? */
1774
1775 if (attempt++ >= options.number_of_password_prompts)
1776 return 0;
1777 if (attempt != 1)
1778 error("Permission denied, please try again.");
1779
1780 if (authctxt->methoddata != NULL)
1781 fatal("%s: authctxt->methoddata already set (%p)",
1782 __func__, authctxt->methoddata);
1783
1784 authctxt->methoddata = pctx = jpake_new();
1785
1786 /*
1787 * Send request immediately, to get the protocol going while
1788 * we do the initial computations.
1789 */
1790 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1791 packet_put_cstring(authctxt->server_user);
1792 packet_put_cstring(authctxt->service);
1793 packet_put_cstring(authctxt->method->name);
1794 packet_send();
1795 packet_write_wait();
1796
1797 jpake_step1(pctx->grp,
1798 &pctx->client_id, &pctx->client_id_len,
1799 &pctx->x1, &pctx->x2, &pctx->g_x1, &pctx->g_x2,
1800 &x1_proof, &x1_proof_len,
1801 &x2_proof, &x2_proof_len);
1802
1803 JPAKE_DEBUG_CTX((pctx, "step 1 sending in %s", __func__));
1804
1805 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP1);
1806 packet_put_string(pctx->client_id, pctx->client_id_len);
1807 packet_put_bignum2(pctx->g_x1);
1808 packet_put_bignum2(pctx->g_x2);
1809 packet_put_string(x1_proof, x1_proof_len);
1810 packet_put_string(x2_proof, x2_proof_len);
1811 packet_send();
1812
1813 bzero(x1_proof, x1_proof_len);
1814 bzero(x2_proof, x2_proof_len);
1815 xfree(x1_proof);
1816 xfree(x2_proof);
1817
1818 /* Expect step 1 packet from peer */
1819 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1,
1820 input_userauth_jpake_server_step1);
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001821 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS,
1822 &input_userauth_success_unexpected);
Damien Miller01ed2272008-11-05 16:20:46 +11001823
1824 return 1;
1825}
1826
1827void
1828userauth_jpake_cleanup(Authctxt *authctxt)
1829{
1830 debug3("%s: clean up", __func__);
1831 if (authctxt->methoddata != NULL) {
1832 jpake_free(authctxt->methoddata);
1833 authctxt->methoddata = NULL;
1834 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001835 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
Damien Miller01ed2272008-11-05 16:20:46 +11001836}
1837#endif /* JPAKE */
1838
Damien Miller62cee002000-09-23 17:15:56 +11001839/* find auth method */
1840
Damien Miller62cee002000-09-23 17:15:56 +11001841/*
1842 * given auth method name, if configurable options permit this method fill
1843 * in auth_ident field and return true, otherwise return false.
1844 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001845static int
Damien Miller62cee002000-09-23 17:15:56 +11001846authmethod_is_enabled(Authmethod *method)
1847{
1848 if (method == NULL)
1849 return 0;
1850 /* return false if options indicate this method is disabled */
1851 if (method->enabled == NULL || *method->enabled == 0)
1852 return 0;
1853 /* return false if batch mode is enabled but method needs interactive mode */
1854 if (method->batch_flag != NULL && *method->batch_flag != 0)
1855 return 0;
1856 return 1;
1857}
1858
Ben Lindstrombba81212001-06-25 05:01:22 +00001859static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001860authmethod_lookup(const char *name)
1861{
1862 Authmethod *method = NULL;
1863 if (name != NULL)
1864 for (method = authmethods; method->name != NULL; method++)
1865 if (strcmp(name, method->name) == 0)
1866 return method;
1867 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1868 return NULL;
1869}
1870
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001871/* XXX internal state */
1872static Authmethod *current = NULL;
1873static char *supported = NULL;
1874static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001875
Damien Miller62cee002000-09-23 17:15:56 +11001876/*
1877 * Given the authentication method list sent by the server, return the
1878 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001879 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001880 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001881static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001882authmethod_get(char *authlist)
1883{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001884 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001885 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001886
Damien Miller62cee002000-09-23 17:15:56 +11001887 /* Use a suitable default if we're passed a nil list. */
1888 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001889 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001890
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001891 if (supported == NULL || strcmp(authlist, supported) != 0) {
1892 debug3("start over, passed a different list %s", authlist);
1893 if (supported != NULL)
1894 xfree(supported);
1895 supported = xstrdup(authlist);
1896 preferred = options.preferred_authentications;
1897 debug3("preferred %s", preferred);
1898 current = NULL;
1899 } else if (current != NULL && authmethod_is_enabled(current))
1900 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001901
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001902 for (;;) {
1903 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001904 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001905 current = NULL;
1906 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001907 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001908 preferred += next;
1909 debug3("authmethod_lookup %s", name);
1910 debug3("remaining preferred: %s", preferred);
1911 if ((current = authmethod_lookup(name)) != NULL &&
1912 authmethod_is_enabled(current)) {
1913 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001914 debug("Next authentication method: %s", name);
Damien Miller78c40c32011-05-15 08:36:59 +10001915 xfree(name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001916 return current;
1917 }
Damien Millereba71ba2000-04-29 23:57:08 +10001918 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001919}
Damien Miller62cee002000-09-23 17:15:56 +11001920
Ben Lindstrom79073822001-07-04 03:42:30 +00001921static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001922authmethods_get(void)
1923{
1924 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001925 Buffer b;
1926 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001927
Damien Miller0e3b8722002-01-22 23:26:38 +11001928 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001929 for (method = authmethods; method->name != NULL; method++) {
1930 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001931 if (buffer_len(&b) > 0)
1932 buffer_append(&b, ",", 1);
1933 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001934 }
Damien Miller62cee002000-09-23 17:15:56 +11001935 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001936 buffer_append(&b, "\0", 1);
1937 list = xstrdup(buffer_ptr(&b));
1938 buffer_free(&b);
1939 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001940}
Damien Miller01ed2272008-11-05 16:20:46 +11001941