blob: 4c379ae5988c46754270f6fab8fcec727fe87d18 [file] [log] [blame]
Damien Miller79442c02010-05-10 11:55:38 +10001/* $OpenBSD: sshconnect2.c,v 1.183 2010/04/26 22:28:24 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 Millercee85232009-03-06 00:58:22 +110072#include "schnorr.h"
Damien Miller01ed2272008-11-05 16:20:46 +110073#include "jpake.h"
Damien Miller874d77b2000-10-14 16:23:11 +110074
Darren Tucker0efd1552003-08-26 11:49:55 +100075#ifdef GSSAPI
76#include "ssh-gss.h"
77#endif
78
Damien Millereba71ba2000-04-29 23:57:08 +100079/* import */
80extern char *client_version_string;
81extern char *server_version_string;
82extern Options options;
83
84/*
85 * SSH2 key exchange
86 */
87
Ben Lindstrom46c16222000-12-22 01:43:59 +000088u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100089u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100090
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000091char *xxx_host;
92struct sockaddr *xxx_hostaddr;
93
Ben Lindstromf28f6342001-04-04 02:03:04 +000094Kex *xxx_kex = NULL;
95
Ben Lindstrombba81212001-06-25 05:01:22 +000096static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000097verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000098{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000099 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +1000100 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000101 return 0;
102}
103
Damien Millereba71ba2000-04-29 23:57:08 +1000104void
Damien Miller874d77b2000-10-14 16:23:11 +1100105ssh_kex2(char *host, struct sockaddr *hostaddr)
106{
Damien Miller874d77b2000-10-14 16:23:11 +1100107 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000108
109 xxx_host = host;
110 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +1100111
Damien Millere39cacc2000-11-29 12:18:44 +1100112 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +1000113 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +1100114 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100115 }
116 if (options.ciphers != NULL) {
117 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
118 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
119 }
Damien Millera0ff4662001-03-30 10:49:35 +1000120 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
121 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
122 myproposal[PROPOSAL_ENC_ALGS_STOC] =
123 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100124 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000125 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000126 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100127 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000128 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000129 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100130 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000131 if (options.macs != NULL) {
132 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
133 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
134 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000135 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100136 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000137 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100138
Damien Millera5539d22003-04-09 20:50:06 +1000139 if (options.rekey_limit)
Damien Miller3dff1762008-02-10 22:25:52 +1100140 packet_set_rekey_limit((u_int32_t)options.rekey_limit);
Damien Millera5539d22003-04-09 20:50:06 +1000141
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000142 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000143 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100144 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000145 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100146 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100147 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000148 kex->client_version_string=client_version_string;
149 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000150 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100151
Ben Lindstromf28f6342001-04-04 02:03:04 +0000152 xxx_kex = kex;
153
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000154 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100155
Darren Tucker36331b52010-01-08 16:50:41 +1100156 if (options.use_roaming && !kex->roaming) {
157 debug("Roaming not allowed by server");
158 options.use_roaming = 0;
159 }
160
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000161 session_id2 = kex->session_id;
162 session_id2_len = kex->session_id_len;
163
Damien Miller874d77b2000-10-14 16:23:11 +1100164#ifdef DEBUG_KEXDH
165 /* send 1st encrypted/maced/compressed message */
166 packet_start(SSH2_MSG_IGNORE);
167 packet_put_cstring("markus");
168 packet_send();
169 packet_write_wait();
170#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000171}
Damien Millerb1715dc2000-05-30 13:44:51 +1000172
Damien Millereba71ba2000-04-29 23:57:08 +1000173/*
174 * Authenticate user
175 */
Damien Miller62cee002000-09-23 17:15:56 +1100176
177typedef struct Authctxt Authctxt;
178typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000179typedef struct identity Identity;
180typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100181
Damien Miller280ecfb2003-05-14 13:46:00 +1000182struct identity {
183 TAILQ_ENTRY(identity) next;
184 AuthenticationConnection *ac; /* set if agent supports key */
185 Key *key; /* public/private key */
186 char *filename; /* comment for agent-only keys */
187 int tried;
188 int isprivate; /* key points to the private key */
189};
190TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100191
192struct Authctxt {
193 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000194 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100195 const char *host;
196 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100197 Authmethod *method;
Damien Miller79442c02010-05-10 11:55:38 +1000198 sig_atomic_t success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000199 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000200 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000201 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000202 AuthenticationConnection *agent;
203 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000204 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000205 /* kbd-interactive */
206 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000207 /* generic */
208 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100209};
210struct Authmethod {
211 char *name; /* string to compare against server's list */
212 int (*userauth)(Authctxt *authctxt);
Damien Miller01ed2272008-11-05 16:20:46 +1100213 void (*cleanup)(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100214 int *enabled; /* flag in option struct that enables method */
215 int *batch_flag; /* flag in option struct that disables method */
216};
217
Damien Miller630d6f42002-01-22 23:17:30 +1100218void input_userauth_success(int, u_int32_t, void *);
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100219void input_userauth_success_unexpected(int, u_int32_t, void *);
Damien Miller630d6f42002-01-22 23:17:30 +1100220void input_userauth_failure(int, u_int32_t, void *);
221void input_userauth_banner(int, u_int32_t, void *);
222void input_userauth_error(int, u_int32_t, void *);
223void input_userauth_info_req(int, u_int32_t, void *);
224void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000225void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller01ed2272008-11-05 16:20:46 +1100226void input_userauth_jpake_server_step1(int, u_int32_t, void *);
227void input_userauth_jpake_server_step2(int, u_int32_t, void *);
228void input_userauth_jpake_server_confirm(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100229
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000230int userauth_none(Authctxt *);
231int userauth_pubkey(Authctxt *);
232int userauth_passwd(Authctxt *);
233int userauth_kbdint(Authctxt *);
234int userauth_hostbased(Authctxt *);
Damien Miller01ed2272008-11-05 16:20:46 +1100235int userauth_jpake(Authctxt *);
236
237void userauth_jpake_cleanup(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100238
Darren Tucker0efd1552003-08-26 11:49:55 +1000239#ifdef GSSAPI
240int userauth_gssapi(Authctxt *authctxt);
241void input_gssapi_response(int type, u_int32_t, void *);
242void input_gssapi_token(int type, u_int32_t, void *);
243void input_gssapi_hash(int type, u_int32_t, void *);
244void input_gssapi_error(int, u_int32_t, void *);
245void input_gssapi_errtok(int, u_int32_t, void *);
246#endif
247
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000248void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000249
Damien Miller280ecfb2003-05-14 13:46:00 +1000250static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000251static void pubkey_prepare(Authctxt *);
252static void pubkey_cleanup(Authctxt *);
253static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000254
Ben Lindstrombba81212001-06-25 05:01:22 +0000255static Authmethod *authmethod_get(char *authlist);
256static Authmethod *authmethod_lookup(const char *name);
257static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100258
259Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000260#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100261 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000262 userauth_gssapi,
Damien Miller01ed2272008-11-05 16:20:46 +1100263 NULL,
Darren Tucker0efd1552003-08-26 11:49:55 +1000264 &options.gss_authentication,
265 NULL},
266#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000267 {"hostbased",
268 userauth_hostbased,
Damien Miller01ed2272008-11-05 16:20:46 +1100269 NULL,
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000270 &options.hostbased_authentication,
271 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000272 {"publickey",
273 userauth_pubkey,
Damien Miller01ed2272008-11-05 16:20:46 +1100274 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000275 &options.pubkey_authentication,
276 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100277#ifdef JPAKE
278 {"jpake-01@openssh.com",
279 userauth_jpake,
280 userauth_jpake_cleanup,
281 &options.zero_knowledge_password_authentication,
282 &options.batch_mode},
283#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100284 {"keyboard-interactive",
285 userauth_kbdint,
Damien Miller01ed2272008-11-05 16:20:46 +1100286 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100287 &options.kbd_interactive_authentication,
288 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000289 {"password",
290 userauth_passwd,
Damien Miller01ed2272008-11-05 16:20:46 +1100291 NULL,
Ben Lindstrom45350e82001-08-06 20:57:11 +0000292 &options.password_authentication,
293 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100294 {"none",
295 userauth_none,
296 NULL,
Damien Miller01ed2272008-11-05 16:20:46 +1100297 NULL,
Damien Miller874d77b2000-10-14 16:23:11 +1100298 NULL},
Damien Miller01ed2272008-11-05 16:20:46 +1100299 {NULL, NULL, NULL, NULL, NULL}
Damien Miller62cee002000-09-23 17:15:56 +1100300};
301
302void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000303ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000304 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100305{
306 Authctxt authctxt;
307 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100308
Ben Lindstrom551ea372001-06-05 18:56:16 +0000309 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000310 options.kbd_interactive_authentication = 1;
311
Damien Miller62cee002000-09-23 17:15:56 +1100312 packet_start(SSH2_MSG_SERVICE_REQUEST);
313 packet_put_cstring("ssh-userauth");
314 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000315 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100316 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100317 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000318 if (type != SSH2_MSG_SERVICE_ACCEPT)
319 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100320 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100321 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000322 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100323 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100324 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000325 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100326 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100327 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000328 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100329
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000330 if (options.preferred_authentications == NULL)
331 options.preferred_authentications = authmethods_get();
332
Damien Miller62cee002000-09-23 17:15:56 +1100333 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000334 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000335 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100336 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000337 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100338 authctxt.host = host;
339 authctxt.service = "ssh-connection"; /* service name */
340 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100341 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000342 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000343 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000344 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000345 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100346 if (authctxt.method == NULL)
347 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100348
349 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100350 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100351
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000352 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100353 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
354 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000355 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100356 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
357
Damien Miller280ecfb2003-05-14 13:46:00 +1000358 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000359 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
360
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000361 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100362}
Damien Millerf842fcb2003-05-15 12:01:28 +1000363
Damien Miller62cee002000-09-23 17:15:56 +1100364void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000365userauth(Authctxt *authctxt, char *authlist)
366{
Damien Miller01ed2272008-11-05 16:20:46 +1100367 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
368 authctxt->method->cleanup(authctxt);
369
Darren Tucker0efd1552003-08-26 11:49:55 +1000370 if (authctxt->methoddata) {
371 xfree(authctxt->methoddata);
372 authctxt->methoddata = NULL;
373 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000374 if (authlist == NULL) {
375 authlist = authctxt->authlist;
376 } else {
377 if (authctxt->authlist)
378 xfree(authctxt->authlist);
379 authctxt->authlist = authlist;
380 }
381 for (;;) {
382 Authmethod *method = authmethod_get(authlist);
383 if (method == NULL)
384 fatal("Permission denied (%s).", authlist);
385 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000386
387 /* reset the per method handler */
388 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
389 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
390
391 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000392 if (method->userauth(authctxt) != 0) {
393 debug2("we sent a %s packet, wait for reply", method->name);
394 break;
395 } else {
396 debug2("we did not send a packet, disable method");
397 method->enabled = NULL;
398 }
399 }
400}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000401
Damien Millerf7475d72008-11-03 19:26:18 +1100402/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000403void
Damien Miller630d6f42002-01-22 23:17:30 +1100404input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100405{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000406 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000407 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000408}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000409
Damien Millerf7475d72008-11-03 19:26:18 +1100410/* ARGSUSED */
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000411void
Damien Miller630d6f42002-01-22 23:17:30 +1100412input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000413{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000414 char *msg, *raw, *lang;
415 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000416
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000417 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000418 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000419 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100420 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000421 if (len > 65536)
422 len = 65536;
Damien Millerc4d1b362008-11-03 19:22:09 +1100423 msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
Darren Tucker0c348f52010-01-08 18:58:05 +1100424 strnvis(msg, raw, len * 4 + 1, VIS_SAFE|VIS_OCTAL|VIS_NOSLASH);
Darren Tucker046dff22003-10-08 17:32:02 +1000425 fprintf(stderr, "%s", msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000426 xfree(msg);
427 }
428 xfree(raw);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000429 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100430}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000431
Damien Millerf7475d72008-11-03 19:26:18 +1100432/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100433void
Damien Miller630d6f42002-01-22 23:17:30 +1100434input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100435{
436 Authctxt *authctxt = ctxt;
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100437
Damien Miller62cee002000-09-23 17:15:56 +1100438 if (authctxt == NULL)
439 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000440 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000441 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000442 authctxt->authlist = NULL;
443 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100444 if (authctxt->method != NULL && authctxt->method->cleanup != NULL)
445 authctxt->method->cleanup(authctxt);
Darren Tucker79644822003-10-08 17:37:58 +1000446 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000447 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000448 authctxt->methoddata = NULL;
449 }
Damien Miller62cee002000-09-23 17:15:56 +1100450 authctxt->success = 1; /* break out */
451}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000452
Darren Tucker2f29a8c2009-10-24 11:47:58 +1100453void
454input_userauth_success_unexpected(int type, u_int32_t seq, void *ctxt)
455{
456 Authctxt *authctxt = ctxt;
457
458 if (authctxt == NULL)
459 fatal("%s: no authentication context", __func__);
460
461 fatal("Unexpected authentication success during %s.",
462 authctxt->method->name);
463}
464
Damien Millerf7475d72008-11-03 19:26:18 +1100465/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100466void
Damien Miller630d6f42002-01-22 23:17:30 +1100467input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100468{
Damien Miller62cee002000-09-23 17:15:56 +1100469 Authctxt *authctxt = ctxt;
470 char *authlist = NULL;
471 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100472
473 if (authctxt == NULL)
474 fatal("input_userauth_failure: no authentication context");
475
Damien Miller874d77b2000-10-14 16:23:11 +1100476 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100477 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100478 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100479
480 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000481 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000482 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100483
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000484 userauth(authctxt, authlist);
485}
Damien Millerf7475d72008-11-03 19:26:18 +1100486
487/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000488void
Damien Miller630d6f42002-01-22 23:17:30 +1100489input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000490{
491 Authctxt *authctxt = ctxt;
492 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000493 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000494 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000495 int pktype, sent = 0;
496 u_int alen, blen;
497 char *pkalg, *fp;
498 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000499
500 if (authctxt == NULL)
501 fatal("input_userauth_pk_ok: no authentication context");
502 if (datafellows & SSH_BUG_PKOK) {
503 /* this is similar to SSH_BUG_PKAUTH */
504 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
505 pkblob = packet_get_string(&blen);
506 buffer_init(&b);
507 buffer_append(&b, pkblob, blen);
508 pkalg = buffer_get_string(&b, &alen);
509 buffer_free(&b);
510 } else {
511 pkalg = packet_get_string(&alen);
512 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000513 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100514 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000515
Damien Miller280ecfb2003-05-14 13:46:00 +1000516 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000517
Damien Miller280ecfb2003-05-14 13:46:00 +1000518 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
519 debug("unknown pkalg %s", pkalg);
520 goto done;
521 }
522 if ((key = key_from_blob(pkblob, blen)) == NULL) {
523 debug("no key from blob. pkalg %s", pkalg);
524 goto done;
525 }
526 if (key->type != pktype) {
527 error("input_userauth_pk_ok: type mismatch "
528 "for decoded key (received %d, expected %d)",
529 key->type, pktype);
530 goto done;
531 }
532 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
533 debug2("input_userauth_pk_ok: fp %s", fp);
534 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000535
Darren Tuckerd05b6012003-10-15 15:55:59 +1000536 /*
537 * search keys in the reverse order, because last candidate has been
538 * moved to the end of the queue. this also avoids confusion by
539 * duplicate keys
540 */
Damien Miller0b51a522004-04-20 20:07:19 +1000541 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000542 if (key_equal(key, id->key)) {
543 sent = sign_and_send_pubkey(authctxt, id);
544 break;
545 }
546 }
547done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000548 if (key != NULL)
549 key_free(key);
550 xfree(pkalg);
551 xfree(pkblob);
552
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000553 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000554 if (sent == 0)
555 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100556}
557
Darren Tucker0efd1552003-08-26 11:49:55 +1000558#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100559int
Darren Tucker0efd1552003-08-26 11:49:55 +1000560userauth_gssapi(Authctxt *authctxt)
561{
562 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100563 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000564 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000565 OM_uint32 min;
566 int ok = 0;
567
568 /* Try one GSSAPI method at a time, rather than sending them all at
569 * once. */
570
Darren Tucker56afe142003-11-03 20:06:14 +1100571 if (gss_supported == NULL)
572 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000573
574 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100575 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000576 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100577 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000578 ssh_gssapi_check_mechanism(&gssctxt,
579 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000580 ok = 1; /* Mechanism works */
581 } else {
582 mech++;
583 }
584 }
585
Damien Millera1cb9f32006-08-19 00:33:34 +1000586 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000587 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000588
589 authctxt->methoddata=(void *)gssctxt;
590
591 packet_start(SSH2_MSG_USERAUTH_REQUEST);
592 packet_put_cstring(authctxt->server_user);
593 packet_put_cstring(authctxt->service);
594 packet_put_cstring(authctxt->method->name);
595
596 packet_put_int(1);
597
Darren Tucker655a5e02003-11-03 20:09:03 +1100598 packet_put_int((gss_supported->elements[mech].length) + 2);
599 packet_put_char(SSH_GSS_OIDTYPE);
600 packet_put_char(gss_supported->elements[mech].length);
601 packet_put_raw(gss_supported->elements[mech].elements,
602 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000603
604 packet_send();
605
606 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
607 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
608 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
609 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
610
611 mech++; /* Move along to next candidate */
612
613 return 1;
614}
615
Damien Miller91c6aa42003-11-17 21:20:18 +1100616static OM_uint32
617process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
618{
619 Authctxt *authctxt = ctxt;
620 Gssctxt *gssctxt = authctxt->methoddata;
621 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000622 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
623 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100624 OM_uint32 status, ms, flags;
625 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100626
Damien Miller91c6aa42003-11-17 21:20:18 +1100627 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100628 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100629
630 if (send_tok.length > 0) {
631 if (GSS_ERROR(status))
632 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
633 else
634 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100635
Damien Miller91c6aa42003-11-17 21:20:18 +1100636 packet_put_string(send_tok.value, send_tok.length);
637 packet_send();
638 gss_release_buffer(&ms, &send_tok);
639 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100640
Damien Miller91c6aa42003-11-17 21:20:18 +1100641 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100642 /* send either complete or MIC, depending on mechanism */
643 if (!(flags & GSS_C_INTEG_FLAG)) {
644 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
645 packet_send();
646 } else {
647 ssh_gssapi_buildmic(&b, authctxt->server_user,
648 authctxt->service, "gssapi-with-mic");
649
650 gssbuf.value = buffer_ptr(&b);
651 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100652
Damien Miller0425d402003-11-17 22:18:21 +1100653 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100654
Damien Miller0425d402003-11-17 22:18:21 +1100655 if (!GSS_ERROR(status)) {
656 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
657 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100658
Damien Miller0425d402003-11-17 22:18:21 +1100659 packet_send();
660 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100661
Damien Miller0425d402003-11-17 22:18:21 +1100662 buffer_free(&b);
663 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100664 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100665 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100666
Damien Miller91c6aa42003-11-17 21:20:18 +1100667 return status;
668}
669
Damien Millerf7475d72008-11-03 19:26:18 +1100670/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000671void
672input_gssapi_response(int type, u_int32_t plen, void *ctxt)
673{
674 Authctxt *authctxt = ctxt;
675 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000676 int oidlen;
677 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000678
679 if (authctxt == NULL)
680 fatal("input_gssapi_response: no authentication context");
681 gssctxt = authctxt->methoddata;
682
683 /* Setup our OID */
684 oidv = packet_get_string(&oidlen);
685
Darren Tucker655a5e02003-11-03 20:09:03 +1100686 if (oidlen <= 2 ||
687 oidv[0] != SSH_GSS_OIDTYPE ||
688 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100689 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100690 debug("Badly encoded mechanism OID received");
691 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100692 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000693 }
694
Darren Tucker655a5e02003-11-03 20:09:03 +1100695 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
696 fatal("Server returned different OID than expected");
697
Darren Tucker0efd1552003-08-26 11:49:55 +1000698 packet_check_eom();
699
700 xfree(oidv);
701
Damien Miller91c6aa42003-11-17 21:20:18 +1100702 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000703 /* Start again with next method on list */
704 debug("Trying to start again");
705 userauth(authctxt, NULL);
706 return;
707 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000708}
709
Damien Millerf7475d72008-11-03 19:26:18 +1100710/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000711void
712input_gssapi_token(int type, u_int32_t plen, void *ctxt)
713{
714 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000715 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100716 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000717 u_int slen;
718
719 if (authctxt == NULL)
720 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000721
722 recv_tok.value = packet_get_string(&slen);
723 recv_tok.length = slen; /* safe typecast */
724
725 packet_check_eom();
726
Damien Miller91c6aa42003-11-17 21:20:18 +1100727 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000728
729 xfree(recv_tok.value);
730
731 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000732 /* Start again with the next method in the list */
733 userauth(authctxt, NULL);
734 return;
735 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000736}
737
Damien Millerf7475d72008-11-03 19:26:18 +1100738/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000739void
740input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
741{
742 Authctxt *authctxt = ctxt;
743 Gssctxt *gssctxt;
744 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
745 gss_buffer_desc recv_tok;
746 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000747 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000748
749 if (authctxt == NULL)
750 fatal("input_gssapi_response: no authentication context");
751 gssctxt = authctxt->methoddata;
752
Darren Tucker600ad8d2003-08-26 12:10:48 +1000753 recv_tok.value = packet_get_string(&len);
754 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000755
756 packet_check_eom();
757
758 /* Stick it into GSSAPI and see what it says */
759 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000760 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000761
762 xfree(recv_tok.value);
763 gss_release_buffer(&ms, &send_tok);
764
765 /* Server will be returning a failed packet after this one */
766}
767
Damien Millerf7475d72008-11-03 19:26:18 +1100768/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000769void
770input_gssapi_error(int type, u_int32_t plen, void *ctxt)
771{
772 OM_uint32 maj, min;
773 char *msg;
774 char *lang;
775
776 maj=packet_get_int();
777 min=packet_get_int();
778 msg=packet_get_string(NULL);
779 lang=packet_get_string(NULL);
780
781 packet_check_eom();
782
Damien Miller15d72a02005-11-05 15:07:33 +1100783 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000784 xfree(msg);
785 xfree(lang);
786}
787#endif /* GSSAPI */
788
Damien Millereba71ba2000-04-29 23:57:08 +1000789int
Damien Miller874d77b2000-10-14 16:23:11 +1100790userauth_none(Authctxt *authctxt)
791{
792 /* initial userauth request */
793 packet_start(SSH2_MSG_USERAUTH_REQUEST);
794 packet_put_cstring(authctxt->server_user);
795 packet_put_cstring(authctxt->service);
796 packet_put_cstring(authctxt->method->name);
797 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100798 return 1;
799}
800
801int
Damien Miller62cee002000-09-23 17:15:56 +1100802userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000803{
Damien Millere247cc42000-05-07 12:03:14 +1000804 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000805 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000806 char *password;
Darren Tuckerab791692010-01-08 18:48:02 +1100807 const char *host = options.host_key_alias ? options.host_key_alias :
808 authctxt->host;
Damien Millereba71ba2000-04-29 23:57:08 +1000809
Damien Millerd3a18572000-06-07 19:55:44 +1000810 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000811 return 0;
812
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000813 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000814 error("Permission denied, please try again.");
815
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000816 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100817 authctxt->server_user, host);
Damien Millereba71ba2000-04-29 23:57:08 +1000818 password = read_passphrase(prompt, 0);
819 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100820 packet_put_cstring(authctxt->server_user);
821 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100822 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000823 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000824 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000825 memset(password, 0, strlen(password));
826 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100827 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000828 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000829
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000830 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000831 &input_userauth_passwd_changereq);
832
Damien Millereba71ba2000-04-29 23:57:08 +1000833 return 1;
834}
Damien Millerf7475d72008-11-03 19:26:18 +1100835
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000836/*
837 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
838 */
Damien Millerf7475d72008-11-03 19:26:18 +1100839/* ARGSUSED */
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000840void
Tim Ricec8549622002-03-31 12:49:38 -0800841input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000842{
843 Authctxt *authctxt = ctxt;
844 char *info, *lang, *password = NULL, *retype = NULL;
845 char prompt[150];
Darren Tuckerab791692010-01-08 18:48:02 +1100846 const char *host = options.host_key_alias ? options.host_key_alias :
847 authctxt->host;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000848
849 debug2("input_userauth_passwd_changereq");
850
851 if (authctxt == NULL)
852 fatal("input_userauth_passwd_changereq: "
853 "no authentication context");
854
855 info = packet_get_string(NULL);
856 lang = packet_get_string(NULL);
857 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000858 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000859 xfree(info);
860 xfree(lang);
861 packet_start(SSH2_MSG_USERAUTH_REQUEST);
862 packet_put_cstring(authctxt->server_user);
863 packet_put_cstring(authctxt->service);
864 packet_put_cstring(authctxt->method->name);
865 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000866 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000867 "Enter %.30s@%.128s's old password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100868 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000869 password = read_passphrase(prompt, 0);
870 packet_put_cstring(password);
871 memset(password, 0, strlen(password));
872 xfree(password);
873 password = NULL;
874 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000875 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000876 "Enter %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100877 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000878 password = read_passphrase(prompt, RP_ALLOW_EOF);
879 if (password == NULL) {
880 /* bail out */
881 return;
882 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000883 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000884 "Retype %.30s@%.128s's new password: ",
Darren Tuckerab791692010-01-08 18:48:02 +1100885 authctxt->server_user, host);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000886 retype = read_passphrase(prompt, 0);
887 if (strcmp(password, retype) != 0) {
888 memset(password, 0, strlen(password));
889 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000890 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000891 password = NULL;
892 }
893 memset(retype, 0, strlen(retype));
894 xfree(retype);
895 }
896 packet_put_cstring(password);
897 memset(password, 0, strlen(password));
898 xfree(password);
899 packet_add_padding(64);
900 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000901
902 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000903 &input_userauth_passwd_changereq);
904}
Damien Millereba71ba2000-04-29 23:57:08 +1000905
Damien Miller01ed2272008-11-05 16:20:46 +1100906#ifdef JPAKE
907static char *
908pw_encrypt(const char *password, const char *crypt_scheme, const char *salt)
909{
910 /* OpenBSD crypt(3) handles all of these */
911 if (strcmp(crypt_scheme, "crypt") == 0 ||
912 strcmp(crypt_scheme, "bcrypt") == 0 ||
913 strcmp(crypt_scheme, "md5crypt") == 0 ||
914 strcmp(crypt_scheme, "crypt-extended") == 0)
915 return xstrdup(crypt(password, salt));
916 error("%s: unsupported password encryption scheme \"%.100s\"",
917 __func__, crypt_scheme);
918 return NULL;
919}
920
921static BIGNUM *
922jpake_password_to_secret(Authctxt *authctxt, const char *crypt_scheme,
923 const char *salt)
924{
925 char prompt[256], *password, *crypted;
926 u_char *secret;
927 u_int secret_len;
928 BIGNUM *ret;
929
930 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password (JPAKE): ",
931 authctxt->server_user, authctxt->host);
932 password = read_passphrase(prompt, 0);
933
934 if ((crypted = pw_encrypt(password, crypt_scheme, salt)) == NULL) {
935 logit("Disabling %s authentication", authctxt->method->name);
936 authctxt->method->enabled = NULL;
937 /* Continue with an empty password to fail gracefully */
938 crypted = xstrdup("");
939 }
940
941#ifdef JPAKE_DEBUG
942 debug3("%s: salt = %s", __func__, salt);
943 debug3("%s: scheme = %s", __func__, crypt_scheme);
944 debug3("%s: crypted = %s", __func__, crypted);
945#endif
946
947 if (hash_buffer(crypted, strlen(crypted), EVP_sha256(),
948 &secret, &secret_len) != 0)
949 fatal("%s: hash_buffer", __func__);
950
951 bzero(password, strlen(password));
952 bzero(crypted, strlen(crypted));
953 xfree(password);
954 xfree(crypted);
955
956 if ((ret = BN_bin2bn(secret, secret_len, NULL)) == NULL)
957 fatal("%s: BN_bin2bn (secret)", __func__);
958 bzero(secret, secret_len);
959 xfree(secret);
960
961 return ret;
962}
963
964/* ARGSUSED */
965void
966input_userauth_jpake_server_step1(int type, u_int32_t seq, void *ctxt)
967{
968 Authctxt *authctxt = ctxt;
969 struct jpake_ctx *pctx = authctxt->methoddata;
970 u_char *x3_proof, *x4_proof, *x2_s_proof;
971 u_int x3_proof_len, x4_proof_len, x2_s_proof_len;
972 char *crypt_scheme, *salt;
973
974 /* Disable this message */
975 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1, NULL);
976
977 if ((pctx->g_x3 = BN_new()) == NULL ||
978 (pctx->g_x4 = BN_new()) == NULL)
979 fatal("%s: BN_new", __func__);
980
981 /* Fetch step 1 values */
982 crypt_scheme = packet_get_string(NULL);
983 salt = packet_get_string(NULL);
984 pctx->server_id = packet_get_string(&pctx->server_id_len);
985 packet_get_bignum2(pctx->g_x3);
986 packet_get_bignum2(pctx->g_x4);
987 x3_proof = packet_get_string(&x3_proof_len);
988 x4_proof = packet_get_string(&x4_proof_len);
989 packet_check_eom();
990
991 JPAKE_DEBUG_CTX((pctx, "step 1 received in %s", __func__));
992
993 /* Obtain password and derive secret */
994 pctx->s = jpake_password_to_secret(authctxt, crypt_scheme, salt);
995 bzero(crypt_scheme, strlen(crypt_scheme));
996 bzero(salt, strlen(salt));
997 xfree(crypt_scheme);
998 xfree(salt);
999 JPAKE_DEBUG_BN((pctx->s, "%s: s = ", __func__));
1000
1001 /* Calculate step 2 values */
1002 jpake_step2(pctx->grp, pctx->s, pctx->g_x1,
1003 pctx->g_x3, pctx->g_x4, pctx->x2,
1004 pctx->server_id, pctx->server_id_len,
1005 pctx->client_id, pctx->client_id_len,
1006 x3_proof, x3_proof_len,
1007 x4_proof, x4_proof_len,
1008 &pctx->a,
1009 &x2_s_proof, &x2_s_proof_len);
1010
1011 bzero(x3_proof, x3_proof_len);
1012 bzero(x4_proof, x4_proof_len);
1013 xfree(x3_proof);
1014 xfree(x4_proof);
1015
1016 JPAKE_DEBUG_CTX((pctx, "step 2 sending in %s", __func__));
1017
1018 /* Send values for step 2 */
1019 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP2);
1020 packet_put_bignum2(pctx->a);
1021 packet_put_string(x2_s_proof, x2_s_proof_len);
1022 packet_send();
1023
1024 bzero(x2_s_proof, x2_s_proof_len);
1025 xfree(x2_s_proof);
1026
1027 /* Expect step 2 packet from peer */
1028 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2,
1029 input_userauth_jpake_server_step2);
1030}
1031
1032/* ARGSUSED */
1033void
1034input_userauth_jpake_server_step2(int type, u_int32_t seq, void *ctxt)
1035{
1036 Authctxt *authctxt = ctxt;
1037 struct jpake_ctx *pctx = authctxt->methoddata;
1038 u_char *x4_s_proof;
1039 u_int x4_s_proof_len;
1040
1041 /* Disable this message */
1042 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP2, NULL);
1043
1044 if ((pctx->b = BN_new()) == NULL)
1045 fatal("%s: BN_new", __func__);
1046
1047 /* Fetch step 2 values */
1048 packet_get_bignum2(pctx->b);
1049 x4_s_proof = packet_get_string(&x4_s_proof_len);
1050 packet_check_eom();
1051
1052 JPAKE_DEBUG_CTX((pctx, "step 2 received in %s", __func__));
1053
1054 /* Derive shared key and calculate confirmation hash */
1055 jpake_key_confirm(pctx->grp, pctx->s, pctx->b,
1056 pctx->x2, pctx->g_x1, pctx->g_x2, pctx->g_x3, pctx->g_x4,
1057 pctx->client_id, pctx->client_id_len,
1058 pctx->server_id, pctx->server_id_len,
1059 session_id2, session_id2_len,
1060 x4_s_proof, x4_s_proof_len,
1061 &pctx->k,
1062 &pctx->h_k_cid_sessid, &pctx->h_k_cid_sessid_len);
1063
1064 bzero(x4_s_proof, x4_s_proof_len);
1065 xfree(x4_s_proof);
1066
1067 JPAKE_DEBUG_CTX((pctx, "confirm sending in %s", __func__));
1068
1069 /* Send key confirmation proof */
1070 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_CONFIRM);
1071 packet_put_string(pctx->h_k_cid_sessid, pctx->h_k_cid_sessid_len);
1072 packet_send();
1073
1074 /* Expect confirmation from peer */
1075 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM,
1076 input_userauth_jpake_server_confirm);
1077}
1078
1079/* ARGSUSED */
1080void
1081input_userauth_jpake_server_confirm(int type, u_int32_t seq, void *ctxt)
1082{
1083 Authctxt *authctxt = ctxt;
1084 struct jpake_ctx *pctx = authctxt->methoddata;
1085
1086 /* Disable this message */
1087 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_CONFIRM, NULL);
1088
1089 pctx->h_k_sid_sessid = packet_get_string(&pctx->h_k_sid_sessid_len);
1090 packet_check_eom();
1091
1092 JPAKE_DEBUG_CTX((pctx, "confirm received in %s", __func__));
1093
1094 /* Verify expected confirmation hash */
1095 if (jpake_check_confirm(pctx->k,
1096 pctx->server_id, pctx->server_id_len,
1097 session_id2, session_id2_len,
1098 pctx->h_k_sid_sessid, pctx->h_k_sid_sessid_len) == 1)
1099 debug("%s: %s success", __func__, authctxt->method->name);
1100 else {
1101 debug("%s: confirmation mismatch", __func__);
1102 /* XXX stash this so if auth succeeds then we can warn/kill */
1103 }
1104
1105 userauth_jpake_cleanup(authctxt);
1106}
1107#endif /* JPAKE */
1108
Ben Lindstrombba81212001-06-25 05:01:22 +00001109static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001110identity_sign(Identity *id, u_char **sigp, u_int *lenp,
1111 u_char *data, u_int datalen)
1112{
1113 Key *prv;
1114 int ret;
1115
1116 /* the agent supports this key */
1117 if (id->ac)
1118 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
1119 data, datalen));
1120 /*
1121 * we have already loaded the private key or
1122 * the private key is stored in external hardware
1123 */
1124 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
1125 return (key_sign(id->key, sigp, lenp, data, datalen));
1126 /* load the private key from the file */
1127 if ((prv = load_identity_file(id->filename)) == NULL)
1128 return (-1);
1129 ret = key_sign(prv, sigp, lenp, data, datalen);
1130 key_free(prv);
1131 return (ret);
1132}
1133
1134static int
1135sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +10001136{
1137 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001138 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +00001139 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +10001140 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001141 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +11001142 int have_sig = 1;
Damien Miller4e270b02010-04-16 15:56:21 +10001143 char *fp;
Damien Millereba71ba2000-04-29 23:57:08 +10001144
Damien Miller4e270b02010-04-16 15:56:21 +10001145 fp = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
1146 debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
1147 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001148
Damien Miller280ecfb2003-05-14 13:46:00 +10001149 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001150 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +00001151 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152 return 0;
1153 }
Damien Millereba71ba2000-04-29 23:57:08 +10001154 /* data to be signed */
1155 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +11001156 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +10001157 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +00001158 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +11001159 } else {
1160 buffer_put_string(&b, session_id2, session_id2_len);
1161 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +10001162 }
Damien Millereba71ba2000-04-29 23:57:08 +10001163 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001164 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +10001165 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +00001166 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +10001167 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +11001168 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +00001169 if (datafellows & SSH_BUG_PKAUTH) {
1170 buffer_put_char(&b, have_sig);
1171 } else {
1172 buffer_put_cstring(&b, authctxt->method->name);
1173 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +10001174 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +00001175 }
Damien Millereba71ba2000-04-29 23:57:08 +10001176 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +10001177
1178 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +10001179 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001180 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +10001181 if (ret == -1) {
1182 xfree(blob);
1183 buffer_free(&b);
1184 return 0;
1185 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001186#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +10001187 buffer_dump(&b);
1188#endif
Ben Lindstromd121f612000-12-03 17:00:47 +00001189 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +10001190 buffer_clear(&b);
1191 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001192 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +10001193 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +11001194 buffer_put_cstring(&b, authctxt->server_user);
1195 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +11001196 buffer_put_cstring(&b, authctxt->method->name);
1197 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +00001198 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001199 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +10001200 buffer_put_string(&b, blob, bloblen);
1201 }
1202 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001203
Damien Millereba71ba2000-04-29 23:57:08 +10001204 /* append signature */
1205 buffer_put_string(&b, signature, slen);
1206 xfree(signature);
1207
1208 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +10001209 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +11001210 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +10001211 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +10001212
1213 /* put remaining data from buffer into packet */
1214 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1215 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
1216 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +10001217 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +10001218
1219 return 1;
Damien Miller994cf142000-07-21 10:19:44 +10001220}
1221
Ben Lindstrombba81212001-06-25 05:01:22 +00001222static int
Damien Miller280ecfb2003-05-14 13:46:00 +10001223send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +10001224{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001225 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001226 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +10001227
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001228 debug3("send_pubkey_test");
1229
Damien Miller280ecfb2003-05-14 13:46:00 +10001230 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001231 /* we cannot handle this key */
1232 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +10001233 return 0;
1234 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001235 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001236 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +10001237
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001238 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1239 packet_put_cstring(authctxt->server_user);
1240 packet_put_cstring(authctxt->service);
1241 packet_put_cstring(authctxt->method->name);
1242 packet_put_char(have_sig);
1243 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +10001244 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001245 packet_put_string(blob, bloblen);
1246 xfree(blob);
1247 packet_send();
1248 return 1;
1249}
1250
Ben Lindstrombba81212001-06-25 05:01:22 +00001251static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001252load_identity_file(char *filename)
1253{
1254 Key *private;
1255 char prompt[300], *passphrase;
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001256 int perm_ok = 0, quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +00001257 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001258
Ben Lindstrom329782e2001-03-10 17:08:59 +00001259 if (stat(filename, &st) < 0) {
1260 debug3("no such identity: %s", filename);
1261 return NULL;
1262 }
Darren Tucker232b76f2006-05-06 17:41:51 +10001263 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
1264 if (!perm_ok)
1265 return NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001266 if (private == NULL) {
1267 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001268 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +10001269 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001270 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +11001271 for (i = 0; i < options.number_of_password_prompts; i++) {
1272 passphrase = read_passphrase(prompt, 0);
1273 if (strcmp(passphrase, "") != 0) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001274 private = key_load_private_type(KEY_UNSPEC,
1275 filename, passphrase, NULL, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001276 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +11001277 } else {
1278 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001279 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +11001280 }
1281 memset(passphrase, 0, strlen(passphrase));
1282 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001283 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +11001284 break;
1285 debug2("bad passphrase given, try again...");
1286 }
Damien Miller994cf142000-07-21 10:19:44 +10001287 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001288 return private;
1289}
1290
Damien Miller280ecfb2003-05-14 13:46:00 +10001291/*
1292 * try keys in the following order:
1293 * 1. agent keys that are found in the config file
1294 * 2. other agent keys
1295 * 3. keys that are only listed in the config file
1296 */
1297static void
1298pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001299{
Damien Miller280ecfb2003-05-14 13:46:00 +10001300 Identity *id;
1301 Idlist agent, files, *preferred;
1302 Key *key;
1303 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001304 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001305 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001306
Damien Miller280ecfb2003-05-14 13:46:00 +10001307 TAILQ_INIT(&agent); /* keys from the agent */
1308 TAILQ_INIT(&files); /* keys from the config file */
1309 preferred = &authctxt->keys;
1310 TAILQ_INIT(preferred); /* preferred order of keys */
1311
1312 /* list of keys stored in the filesystem */
1313 for (i = 0; i < options.num_identity_files; i++) {
1314 key = options.identity_keys[i];
1315 if (key && key->type == KEY_RSA1)
1316 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11001317 if (key && key->cert && key->cert->type != SSH2_CERT_TYPE_USER)
1318 continue;
Damien Miller280ecfb2003-05-14 13:46:00 +10001319 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001320 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001321 id->key = key;
1322 id->filename = xstrdup(options.identity_files[i]);
1323 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001324 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001325 /* list of keys supported by the agent */
1326 if ((ac = ssh_get_authentication_connection())) {
1327 for (key = ssh_get_first_identity(ac, &comment, 2);
1328 key != NULL;
1329 key = ssh_get_next_identity(ac, &comment, 2)) {
1330 found = 0;
1331 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001332 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001333 if (key_equal(key, id->key)) {
1334 key_free(key);
1335 xfree(comment);
1336 TAILQ_REMOVE(&files, id, next);
1337 TAILQ_INSERT_TAIL(preferred, id, next);
1338 id->ac = ac;
1339 found = 1;
1340 break;
1341 }
1342 }
Damien Millerbd394c32004-03-08 23:12:36 +11001343 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001344 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001345 id->key = key;
1346 id->filename = comment;
1347 id->ac = ac;
1348 TAILQ_INSERT_TAIL(&agent, id, next);
1349 }
1350 }
1351 /* append remaining agent keys */
1352 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1353 TAILQ_REMOVE(&agent, id, next);
1354 TAILQ_INSERT_TAIL(preferred, id, next);
1355 }
1356 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001357 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001358 /* append remaining keys from the config file */
1359 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1360 TAILQ_REMOVE(&files, id, next);
1361 TAILQ_INSERT_TAIL(preferred, id, next);
1362 }
1363 TAILQ_FOREACH(id, preferred, next) {
1364 debug2("key: %s (%p)", id->filename, id->key);
1365 }
1366}
1367
1368static void
1369pubkey_cleanup(Authctxt *authctxt)
1370{
1371 Identity *id;
1372
1373 if (authctxt->agent != NULL)
1374 ssh_close_authentication_connection(authctxt->agent);
1375 for (id = TAILQ_FIRST(&authctxt->keys); id;
1376 id = TAILQ_FIRST(&authctxt->keys)) {
1377 TAILQ_REMOVE(&authctxt->keys, id, next);
1378 if (id->key)
1379 key_free(id->key);
1380 if (id->filename)
1381 xfree(id->filename);
1382 xfree(id);
1383 }
Damien Millereba71ba2000-04-29 23:57:08 +10001384}
1385
Damien Miller62cee002000-09-23 17:15:56 +11001386int
1387userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001388{
Damien Miller280ecfb2003-05-14 13:46:00 +10001389 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001390 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001391
Damien Miller280ecfb2003-05-14 13:46:00 +10001392 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1393 if (id->tried++)
1394 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001395 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001396 TAILQ_REMOVE(&authctxt->keys, id, next);
1397 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1398 /*
1399 * send a test message if we have the public key. for
1400 * encrypted keys we cannot do this and have to load the
1401 * private key instead
1402 */
1403 if (id->key && id->key->type != KEY_RSA1) {
Damien Miller88680652010-04-16 15:53:43 +10001404 debug("Offering %s public key: %s", key_type(id->key),
1405 id->filename);
Damien Miller280ecfb2003-05-14 13:46:00 +10001406 sent = send_pubkey_test(authctxt, id);
1407 } else if (id->key == NULL) {
1408 debug("Trying private key: %s", id->filename);
1409 id->key = load_identity_file(id->filename);
1410 if (id->key != NULL) {
1411 id->isprivate = 1;
1412 sent = sign_and_send_pubkey(authctxt, id);
1413 key_free(id->key);
1414 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001415 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001416 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001417 if (sent)
1418 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001419 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001420 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001421}
Damien Millereba71ba2000-04-29 23:57:08 +10001422
Damien Miller874d77b2000-10-14 16:23:11 +11001423/*
1424 * Send userauth request message specifying keyboard-interactive method.
1425 */
1426int
1427userauth_kbdint(Authctxt *authctxt)
1428{
1429 static int attempt = 0;
1430
1431 if (attempt++ >= options.number_of_password_prompts)
1432 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001433 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1434 if (attempt > 1 && !authctxt->info_req_seen) {
1435 debug3("userauth_kbdint: disable: no info_req_seen");
1436 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1437 return 0;
1438 }
Damien Miller874d77b2000-10-14 16:23:11 +11001439
1440 debug2("userauth_kbdint");
1441 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1442 packet_put_cstring(authctxt->server_user);
1443 packet_put_cstring(authctxt->service);
1444 packet_put_cstring(authctxt->method->name);
1445 packet_put_cstring(""); /* lang */
1446 packet_put_cstring(options.kbd_interactive_devices ?
1447 options.kbd_interactive_devices : "");
1448 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001449
1450 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1451 return 1;
1452}
1453
1454/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001455 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001456 */
1457void
Damien Miller630d6f42002-01-22 23:17:30 +11001458input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001459{
1460 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001461 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001462 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001463 int echo = 0;
1464
1465 debug2("input_userauth_info_req");
1466
1467 if (authctxt == NULL)
1468 fatal("input_userauth_info_req: no authentication context");
1469
Ben Lindstrom7d199962001-09-12 18:29:00 +00001470 authctxt->info_req_seen = 1;
1471
Damien Miller874d77b2000-10-14 16:23:11 +11001472 name = packet_get_string(NULL);
1473 inst = packet_get_string(NULL);
1474 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001475 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001476 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001477 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001478 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001479 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001480 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001481 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001482
1483 num_prompts = packet_get_int();
1484 /*
1485 * Begin to build info response packet based on prompts requested.
1486 * We commit to providing the correct number of responses, so if
1487 * further on we run into a problem that prevents this, we have to
1488 * be sure and clean this up and send a correct error response.
1489 */
1490 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1491 packet_put_int(num_prompts);
1492
Ben Lindstrom551ea372001-06-05 18:56:16 +00001493 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001494 for (i = 0; i < num_prompts; i++) {
1495 prompt = packet_get_string(NULL);
1496 echo = packet_get_char();
1497
Ben Lindstrom949974b2001-06-25 05:20:31 +00001498 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001499
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001500 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001501 memset(response, 0, strlen(response));
1502 xfree(response);
1503 xfree(prompt);
1504 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001505 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001506
Damien Miller9f643902001-11-12 11:02:52 +11001507 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001508 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001509}
Damien Miller62cee002000-09-23 17:15:56 +11001510
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001511static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001512ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001513 u_char *data, u_int datalen)
1514{
1515 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001516 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001517 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001518 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001519
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001520 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001521
Ben Lindstrom5206b952002-06-06 19:59:29 +00001522 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001523 error("ssh_keysign: not installed: %s", strerror(errno));
Ben Lindstrom5206b952002-06-06 19:59:29 +00001524 return -1;
1525 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001526 if (fflush(stdout) != 0)
1527 error("ssh_keysign: fflush: %s", strerror(errno));
1528 if (pipe(to) < 0) {
1529 error("ssh_keysign: pipe: %s", strerror(errno));
1530 return -1;
1531 }
1532 if (pipe(from) < 0) {
1533 error("ssh_keysign: pipe: %s", strerror(errno));
1534 return -1;
1535 }
1536 if ((pid = fork()) < 0) {
1537 error("ssh_keysign: fork: %s", strerror(errno));
1538 return -1;
1539 }
1540 if (pid == 0) {
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001541 /* keep the socket on exec */
1542 fcntl(packet_get_connection_in(), F_SETFD, 0);
Damien Miller2e5fe882006-06-13 13:10:00 +10001543 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001544 close(from[0]);
1545 if (dup2(from[1], STDOUT_FILENO) < 0)
1546 fatal("ssh_keysign: dup2: %s", strerror(errno));
1547 close(to[1]);
1548 if (dup2(to[0], STDIN_FILENO) < 0)
1549 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001550 close(from[1]);
1551 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001552 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001553 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1554 strerror(errno));
1555 }
1556 close(from[1]);
1557 close(to[0]);
1558
1559 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001560 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001561 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001562 if (ssh_msg_send(to[1], version, &b) == -1)
1563 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001564
Damien Miller901119b2002-10-04 11:10:04 +10001565 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001566 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001567 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001568 return -1;
1569 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001570 close(from[0]);
1571 close(to[1]);
1572
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001573 while (waitpid(pid, &status, 0) < 0)
1574 if (errno != EINTR)
1575 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001576
Ben Lindstrom5206b952002-06-06 19:59:29 +00001577 if (buffer_get_char(&b) != version) {
1578 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001579 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001580 return -1;
1581 }
1582 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001583 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001584
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001585 return 0;
1586}
1587
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001588int
1589userauth_hostbased(Authctxt *authctxt)
1590{
1591 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001592 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001593 Buffer b;
1594 u_char *signature, *blob;
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001595 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001596 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001597 u_int blen, slen;
Darren Tucker5246df42010-01-08 18:50:46 +11001598 int ok, i, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001599
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001600 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001601 for (i = 0; i < sensitive->nkeys; i++) {
1602 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001603 if (private && private->type != KEY_RSA1) {
1604 found = 1;
1605 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001606 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001607 break;
1608 }
1609 }
1610 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001611 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001612 return 0;
1613 }
1614 if (key_to_blob(private, &blob, &blen) == 0) {
1615 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001616 return 0;
1617 }
Damien Miller91c18472001-11-12 11:02:03 +11001618 /* figure out a name for the client host */
Darren Tuckerdaaa4502010-01-13 22:43:33 +11001619 p = get_local_name(packet_get_connection_in());
Damien Miller91c18472001-11-12 11:02:03 +11001620 if (p == NULL) {
1621 error("userauth_hostbased: cannot get local ipaddr/name");
1622 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001623 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001624 return 0;
1625 }
Damien Miller07d86be2006-03-26 14:19:21 +11001626 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001627 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001628 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001629
Ben Lindstrom671388f2001-04-19 20:40:45 +00001630 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1631 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001632 pkalg = xstrdup(key_ssh_name(private));
1633 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001634 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001635 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001636 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1637 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001638 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001639 buffer_put_cstring(&b, authctxt->method->name);
1640 buffer_put_cstring(&b, pkalg);
1641 buffer_put_string(&b, blob, blen);
1642 buffer_put_cstring(&b, chost);
1643 buffer_put_cstring(&b, authctxt->local_user);
1644#ifdef DEBUG_PK
1645 buffer_dump(&b);
1646#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001647 if (sensitive->external_keysign)
1648 ok = ssh_keysign(private, &signature, &slen,
1649 buffer_ptr(&b), buffer_len(&b));
1650 else
1651 ok = key_sign(private, &signature, &slen,
1652 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001653 key_free(private);
1654 buffer_free(&b);
1655 if (ok != 0) {
1656 error("key_sign failed");
1657 xfree(chost);
1658 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001659 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001660 return 0;
1661 }
1662 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1663 packet_put_cstring(authctxt->server_user);
1664 packet_put_cstring(authctxt->service);
1665 packet_put_cstring(authctxt->method->name);
1666 packet_put_cstring(pkalg);
1667 packet_put_string(blob, blen);
1668 packet_put_cstring(chost);
1669 packet_put_cstring(authctxt->local_user);
1670 packet_put_string(signature, slen);
1671 memset(signature, 's', slen);
1672 xfree(signature);
1673 xfree(chost);
1674 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001675 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001676
1677 packet_send();
1678 return 1;
1679}
1680
Damien Miller01ed2272008-11-05 16:20:46 +11001681#ifdef JPAKE
1682int
1683userauth_jpake(Authctxt *authctxt)
1684{
1685 struct jpake_ctx *pctx;
1686 u_char *x1_proof, *x2_proof;
1687 u_int x1_proof_len, x2_proof_len;
1688 static int attempt = 0; /* XXX share with userauth_password's? */
1689
1690 if (attempt++ >= options.number_of_password_prompts)
1691 return 0;
1692 if (attempt != 1)
1693 error("Permission denied, please try again.");
1694
1695 if (authctxt->methoddata != NULL)
1696 fatal("%s: authctxt->methoddata already set (%p)",
1697 __func__, authctxt->methoddata);
1698
1699 authctxt->methoddata = pctx = jpake_new();
1700
1701 /*
1702 * Send request immediately, to get the protocol going while
1703 * we do the initial computations.
1704 */
1705 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1706 packet_put_cstring(authctxt->server_user);
1707 packet_put_cstring(authctxt->service);
1708 packet_put_cstring(authctxt->method->name);
1709 packet_send();
1710 packet_write_wait();
1711
1712 jpake_step1(pctx->grp,
1713 &pctx->client_id, &pctx->client_id_len,
1714 &pctx->x1, &pctx->x2, &pctx->g_x1, &pctx->g_x2,
1715 &x1_proof, &x1_proof_len,
1716 &x2_proof, &x2_proof_len);
1717
1718 JPAKE_DEBUG_CTX((pctx, "step 1 sending in %s", __func__));
1719
1720 packet_start(SSH2_MSG_USERAUTH_JPAKE_CLIENT_STEP1);
1721 packet_put_string(pctx->client_id, pctx->client_id_len);
1722 packet_put_bignum2(pctx->g_x1);
1723 packet_put_bignum2(pctx->g_x2);
1724 packet_put_string(x1_proof, x1_proof_len);
1725 packet_put_string(x2_proof, x2_proof_len);
1726 packet_send();
1727
1728 bzero(x1_proof, x1_proof_len);
1729 bzero(x2_proof, x2_proof_len);
1730 xfree(x1_proof);
1731 xfree(x2_proof);
1732
1733 /* Expect step 1 packet from peer */
1734 dispatch_set(SSH2_MSG_USERAUTH_JPAKE_SERVER_STEP1,
1735 input_userauth_jpake_server_step1);
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001736 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS,
1737 &input_userauth_success_unexpected);
Damien Miller01ed2272008-11-05 16:20:46 +11001738
1739 return 1;
1740}
1741
1742void
1743userauth_jpake_cleanup(Authctxt *authctxt)
1744{
1745 debug3("%s: clean up", __func__);
1746 if (authctxt->methoddata != NULL) {
1747 jpake_free(authctxt->methoddata);
1748 authctxt->methoddata = NULL;
1749 }
Darren Tucker2f29a8c2009-10-24 11:47:58 +11001750 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
Damien Miller01ed2272008-11-05 16:20:46 +11001751}
1752#endif /* JPAKE */
1753
Damien Miller62cee002000-09-23 17:15:56 +11001754/* find auth method */
1755
Damien Miller62cee002000-09-23 17:15:56 +11001756/*
1757 * given auth method name, if configurable options permit this method fill
1758 * in auth_ident field and return true, otherwise return false.
1759 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001760static int
Damien Miller62cee002000-09-23 17:15:56 +11001761authmethod_is_enabled(Authmethod *method)
1762{
1763 if (method == NULL)
1764 return 0;
1765 /* return false if options indicate this method is disabled */
1766 if (method->enabled == NULL || *method->enabled == 0)
1767 return 0;
1768 /* return false if batch mode is enabled but method needs interactive mode */
1769 if (method->batch_flag != NULL && *method->batch_flag != 0)
1770 return 0;
1771 return 1;
1772}
1773
Ben Lindstrombba81212001-06-25 05:01:22 +00001774static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001775authmethod_lookup(const char *name)
1776{
1777 Authmethod *method = NULL;
1778 if (name != NULL)
1779 for (method = authmethods; method->name != NULL; method++)
1780 if (strcmp(name, method->name) == 0)
1781 return method;
1782 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1783 return NULL;
1784}
1785
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001786/* XXX internal state */
1787static Authmethod *current = NULL;
1788static char *supported = NULL;
1789static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001790
Damien Miller62cee002000-09-23 17:15:56 +11001791/*
1792 * Given the authentication method list sent by the server, return the
1793 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001794 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001795 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001796static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001797authmethod_get(char *authlist)
1798{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001799 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001800 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001801
Damien Miller62cee002000-09-23 17:15:56 +11001802 /* Use a suitable default if we're passed a nil list. */
1803 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001804 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001805
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001806 if (supported == NULL || strcmp(authlist, supported) != 0) {
1807 debug3("start over, passed a different list %s", authlist);
1808 if (supported != NULL)
1809 xfree(supported);
1810 supported = xstrdup(authlist);
1811 preferred = options.preferred_authentications;
1812 debug3("preferred %s", preferred);
1813 current = NULL;
1814 } else if (current != NULL && authmethod_is_enabled(current))
1815 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001816
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001817 for (;;) {
1818 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001819 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001820 current = NULL;
1821 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001822 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001823 preferred += next;
1824 debug3("authmethod_lookup %s", name);
1825 debug3("remaining preferred: %s", preferred);
1826 if ((current = authmethod_lookup(name)) != NULL &&
1827 authmethod_is_enabled(current)) {
1828 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001829 debug("Next authentication method: %s", name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001830 return current;
1831 }
Damien Millereba71ba2000-04-29 23:57:08 +10001832 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001833}
Damien Miller62cee002000-09-23 17:15:56 +11001834
Ben Lindstrom79073822001-07-04 03:42:30 +00001835static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001836authmethods_get(void)
1837{
1838 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001839 Buffer b;
1840 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001841
Damien Miller0e3b8722002-01-22 23:26:38 +11001842 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001843 for (method = authmethods; method->name != NULL; method++) {
1844 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001845 if (buffer_len(&b) > 0)
1846 buffer_append(&b, ",", 1);
1847 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001848 }
Damien Miller62cee002000-09-23 17:15:56 +11001849 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001850 buffer_append(&b, "\0", 1);
1851 list = xstrdup(buffer_ptr(&b));
1852 buffer_free(&b);
1853 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001854}
Damien Miller01ed2272008-11-05 16:20:46 +11001855