blob: 7d0c5e825b5ccc9a69def1b4d4da575f376e6573 [file] [log] [blame]
Damien Millerf7475d72008-11-03 19:26:18 +11001/* $OpenBSD: sshconnect2.c,v 1.169 2008/11/01 04:50:08 djm Exp $ */
Damien Millereba71ba2000-04-29 23:57:08 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100013 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Damien Miller2eb63402006-03-15 11:09:42 +110027
Damien Miller9cf6d072006-03-15 11:29:24 +110028#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <sys/socket.h>
Damien Miller9cf6d072006-03-15 11:29:24 +110030#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110031#include <sys/stat.h>
Damien Millereba71ba2000-04-29 23:57:08 +100032
Darren Tucker39972492006-07-12 22:22:46 +100033#include <errno.h>
Darren Tuckerf520ea12007-05-20 15:11:33 +100034#include <netdb.h>
Damien Millerd7834352006-08-05 12:39:39 +100035#include <pwd.h>
36#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100037#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100038#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100039#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100040#include <unistd.h>
Damien Miller2e28d862008-07-17 19:15:43 +100041#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
Damien Miller7ba0ca72008-07-17 18:57:06 +100042#include <vis.h>
Damien Miller2e28d862008-07-17 19:15:43 +100043#endif
Darren Tucker39972492006-07-12 22:22:46 +100044
Damien Miller9c617692003-05-14 14:31:11 +100045#include "openbsd-compat/sys-queue.h"
46
Damien Millerd7834352006-08-05 12:39:39 +100047#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100050#include "buffer.h"
51#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100054#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100055#include "kex.h"
56#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "sshconnect.h"
58#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000059#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100060#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "log.h"
62#include "readconf.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100063#include "misc.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000064#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000065#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000066#include "canohost.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000067#include "msg.h"
68#include "pathnames.h"
Damien Miller6b4069a2006-06-13 13:05:15 +100069#include "uidswap.h"
Damien Miller874d77b2000-10-14 16:23:11 +110070
Darren Tucker0efd1552003-08-26 11:49:55 +100071#ifdef GSSAPI
72#include "ssh-gss.h"
73#endif
74
Damien Millereba71ba2000-04-29 23:57:08 +100075/* import */
76extern char *client_version_string;
77extern char *server_version_string;
78extern Options options;
79
80/*
81 * SSH2 key exchange
82 */
83
Ben Lindstrom46c16222000-12-22 01:43:59 +000084u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100085u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100086
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000087char *xxx_host;
88struct sockaddr *xxx_hostaddr;
89
Ben Lindstromf28f6342001-04-04 02:03:04 +000090Kex *xxx_kex = NULL;
91
Ben Lindstrombba81212001-06-25 05:01:22 +000092static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000093verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000094{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000095 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100096 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000097 return 0;
98}
99
Damien Millereba71ba2000-04-29 23:57:08 +1000100void
Damien Miller874d77b2000-10-14 16:23:11 +1100101ssh_kex2(char *host, struct sockaddr *hostaddr)
102{
Damien Miller874d77b2000-10-14 16:23:11 +1100103 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000104
105 xxx_host = host;
106 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +1100107
Damien Millere39cacc2000-11-29 12:18:44 +1100108 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +1000109 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +1100110 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100111 }
112 if (options.ciphers != NULL) {
113 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
114 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
115 }
Damien Millera0ff4662001-03-30 10:49:35 +1000116 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
117 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
118 myproposal[PROPOSAL_ENC_ALGS_STOC] =
119 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100120 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000121 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000122 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib@openssh.com,zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100123 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000124 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller9786e6e2005-07-26 21:54:56 +1000125 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100126 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000127 if (options.macs != NULL) {
128 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
129 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
130 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000131 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100132 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000133 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100134
Damien Millera5539d22003-04-09 20:50:06 +1000135 if (options.rekey_limit)
Damien Miller3dff1762008-02-10 22:25:52 +1100136 packet_set_rekey_limit((u_int32_t)options.rekey_limit);
Damien Millera5539d22003-04-09 20:50:06 +1000137
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000138 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000139 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100140 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000141 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100142 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100143 kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000144 kex->client_version_string=client_version_string;
145 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000146 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100147
Ben Lindstromf28f6342001-04-04 02:03:04 +0000148 xxx_kex = kex;
149
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000150 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100151
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000152 session_id2 = kex->session_id;
153 session_id2_len = kex->session_id_len;
154
Damien Miller874d77b2000-10-14 16:23:11 +1100155#ifdef DEBUG_KEXDH
156 /* send 1st encrypted/maced/compressed message */
157 packet_start(SSH2_MSG_IGNORE);
158 packet_put_cstring("markus");
159 packet_send();
160 packet_write_wait();
161#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000162}
Damien Millerb1715dc2000-05-30 13:44:51 +1000163
Damien Millereba71ba2000-04-29 23:57:08 +1000164/*
165 * Authenticate user
166 */
Damien Miller62cee002000-09-23 17:15:56 +1100167
168typedef struct Authctxt Authctxt;
169typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000170typedef struct identity Identity;
171typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100172
Damien Miller280ecfb2003-05-14 13:46:00 +1000173struct identity {
174 TAILQ_ENTRY(identity) next;
175 AuthenticationConnection *ac; /* set if agent supports key */
176 Key *key; /* public/private key */
177 char *filename; /* comment for agent-only keys */
178 int tried;
179 int isprivate; /* key points to the private key */
180};
181TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100182
183struct Authctxt {
184 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000185 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100186 const char *host;
187 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100188 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100189 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000190 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000191 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000192 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000193 AuthenticationConnection *agent;
194 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000195 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000196 /* kbd-interactive */
197 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000198 /* generic */
199 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100200};
201struct Authmethod {
202 char *name; /* string to compare against server's list */
203 int (*userauth)(Authctxt *authctxt);
204 int *enabled; /* flag in option struct that enables method */
205 int *batch_flag; /* flag in option struct that disables method */
206};
207
Damien Miller630d6f42002-01-22 23:17:30 +1100208void input_userauth_success(int, u_int32_t, void *);
209void input_userauth_failure(int, u_int32_t, void *);
210void input_userauth_banner(int, u_int32_t, void *);
211void input_userauth_error(int, u_int32_t, void *);
212void input_userauth_info_req(int, u_int32_t, void *);
213void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000214void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100215
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000216int userauth_none(Authctxt *);
217int userauth_pubkey(Authctxt *);
218int userauth_passwd(Authctxt *);
219int userauth_kbdint(Authctxt *);
220int userauth_hostbased(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100221
Darren Tucker0efd1552003-08-26 11:49:55 +1000222#ifdef GSSAPI
223int userauth_gssapi(Authctxt *authctxt);
224void input_gssapi_response(int type, u_int32_t, void *);
225void input_gssapi_token(int type, u_int32_t, void *);
226void input_gssapi_hash(int type, u_int32_t, void *);
227void input_gssapi_error(int, u_int32_t, void *);
228void input_gssapi_errtok(int, u_int32_t, void *);
229#endif
230
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000231void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000232
Damien Miller280ecfb2003-05-14 13:46:00 +1000233static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000234static void pubkey_prepare(Authctxt *);
235static void pubkey_cleanup(Authctxt *);
236static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000237
Ben Lindstrombba81212001-06-25 05:01:22 +0000238static Authmethod *authmethod_get(char *authlist);
239static Authmethod *authmethod_lookup(const char *name);
240static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100241
242Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000243#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100244 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000245 userauth_gssapi,
246 &options.gss_authentication,
247 NULL},
248#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000249 {"hostbased",
250 userauth_hostbased,
251 &options.hostbased_authentication,
252 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000253 {"publickey",
254 userauth_pubkey,
255 &options.pubkey_authentication,
256 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100257 {"keyboard-interactive",
258 userauth_kbdint,
259 &options.kbd_interactive_authentication,
260 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000261 {"password",
262 userauth_passwd,
263 &options.password_authentication,
264 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100265 {"none",
266 userauth_none,
267 NULL,
268 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100269 {NULL, NULL, NULL, NULL}
270};
271
272void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000273ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000274 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100275{
276 Authctxt authctxt;
277 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100278
Ben Lindstrom551ea372001-06-05 18:56:16 +0000279 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000280 options.kbd_interactive_authentication = 1;
281
Damien Miller62cee002000-09-23 17:15:56 +1100282 packet_start(SSH2_MSG_SERVICE_REQUEST);
283 packet_put_cstring("ssh-userauth");
284 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000285 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100286 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100287 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000288 if (type != SSH2_MSG_SERVICE_ACCEPT)
289 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100290 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100291 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000292 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100293 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100294 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000295 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100296 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100297 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000298 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100299
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000300 if (options.preferred_authentications == NULL)
301 options.preferred_authentications = authmethods_get();
302
Damien Miller62cee002000-09-23 17:15:56 +1100303 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000304 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000305 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100306 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000307 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100308 authctxt.host = host;
309 authctxt.service = "ssh-connection"; /* service name */
310 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100311 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000312 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000313 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000314 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000315 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100316 if (authctxt.method == NULL)
317 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100318
319 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100320 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100321
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000322 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100323 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
324 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000325 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100326 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
327
Damien Miller280ecfb2003-05-14 13:46:00 +1000328 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000329 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
330
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000331 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100332}
Damien Millerf842fcb2003-05-15 12:01:28 +1000333
Damien Miller62cee002000-09-23 17:15:56 +1100334void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000335userauth(Authctxt *authctxt, char *authlist)
336{
Darren Tucker0efd1552003-08-26 11:49:55 +1000337 if (authctxt->methoddata) {
338 xfree(authctxt->methoddata);
339 authctxt->methoddata = NULL;
340 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000341 if (authlist == NULL) {
342 authlist = authctxt->authlist;
343 } else {
344 if (authctxt->authlist)
345 xfree(authctxt->authlist);
346 authctxt->authlist = authlist;
347 }
348 for (;;) {
349 Authmethod *method = authmethod_get(authlist);
350 if (method == NULL)
351 fatal("Permission denied (%s).", authlist);
352 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000353
354 /* reset the per method handler */
355 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
356 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
357
358 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000359 if (method->userauth(authctxt) != 0) {
360 debug2("we sent a %s packet, wait for reply", method->name);
361 break;
362 } else {
363 debug2("we did not send a packet, disable method");
364 method->enabled = NULL;
365 }
366 }
367}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000368
Damien Millerf7475d72008-11-03 19:26:18 +1100369/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000370void
Damien Miller630d6f42002-01-22 23:17:30 +1100371input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100372{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000373 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000374 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000375}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000376
Damien Millerf7475d72008-11-03 19:26:18 +1100377/* ARGSUSED */
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000378void
Damien Miller630d6f42002-01-22 23:17:30 +1100379input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000380{
Damien Miller7ba0ca72008-07-17 18:57:06 +1000381 char *msg, *raw, *lang;
382 u_int len;
Darren Tucker79644822003-10-08 17:37:58 +1000383
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000384 debug3("input_userauth_banner");
Damien Miller7ba0ca72008-07-17 18:57:06 +1000385 raw = packet_get_string(&len);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000386 lang = packet_get_string(NULL);
Damien Millerc674d582008-11-03 19:16:57 +1100387 if (len > 0 && options.log_level >= SYSLOG_LEVEL_INFO) {
Damien Miller7ba0ca72008-07-17 18:57:06 +1000388 if (len > 65536)
389 len = 65536;
Damien Millerc4d1b362008-11-03 19:22:09 +1100390 msg = xmalloc(len * 4 + 1); /* max expansion from strnvis() */
391 strnvis(msg, raw, len * 4 + 1, VIS_SAFE|VIS_OCTAL);
Darren Tucker046dff22003-10-08 17:32:02 +1000392 fprintf(stderr, "%s", msg);
Damien Miller7ba0ca72008-07-17 18:57:06 +1000393 xfree(msg);
394 }
395 xfree(raw);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000396 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100397}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000398
Damien Millerf7475d72008-11-03 19:26:18 +1100399/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100400void
Damien Miller630d6f42002-01-22 23:17:30 +1100401input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100402{
403 Authctxt *authctxt = ctxt;
404 if (authctxt == NULL)
405 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000406 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000407 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000408 authctxt->authlist = NULL;
409 }
410 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000411 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000412 authctxt->methoddata = NULL;
413 }
Damien Miller62cee002000-09-23 17:15:56 +1100414 authctxt->success = 1; /* break out */
415}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000416
Damien Millerf7475d72008-11-03 19:26:18 +1100417/* ARGSUSED */
Damien Miller62cee002000-09-23 17:15:56 +1100418void
Damien Miller630d6f42002-01-22 23:17:30 +1100419input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100420{
Damien Miller62cee002000-09-23 17:15:56 +1100421 Authctxt *authctxt = ctxt;
422 char *authlist = NULL;
423 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100424
425 if (authctxt == NULL)
426 fatal("input_userauth_failure: no authentication context");
427
Damien Miller874d77b2000-10-14 16:23:11 +1100428 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100429 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100430 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100431
432 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000433 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000434 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100435
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000436 userauth(authctxt, authlist);
437}
Damien Millerf7475d72008-11-03 19:26:18 +1100438
439/* ARGSUSED */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000440void
Damien Miller630d6f42002-01-22 23:17:30 +1100441input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000442{
443 Authctxt *authctxt = ctxt;
444 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000445 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000446 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000447 int pktype, sent = 0;
448 u_int alen, blen;
449 char *pkalg, *fp;
450 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000451
452 if (authctxt == NULL)
453 fatal("input_userauth_pk_ok: no authentication context");
454 if (datafellows & SSH_BUG_PKOK) {
455 /* this is similar to SSH_BUG_PKAUTH */
456 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
457 pkblob = packet_get_string(&blen);
458 buffer_init(&b);
459 buffer_append(&b, pkblob, blen);
460 pkalg = buffer_get_string(&b, &alen);
461 buffer_free(&b);
462 } else {
463 pkalg = packet_get_string(&alen);
464 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000465 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100466 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000467
Damien Miller280ecfb2003-05-14 13:46:00 +1000468 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000469
Damien Miller280ecfb2003-05-14 13:46:00 +1000470 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
471 debug("unknown pkalg %s", pkalg);
472 goto done;
473 }
474 if ((key = key_from_blob(pkblob, blen)) == NULL) {
475 debug("no key from blob. pkalg %s", pkalg);
476 goto done;
477 }
478 if (key->type != pktype) {
479 error("input_userauth_pk_ok: type mismatch "
480 "for decoded key (received %d, expected %d)",
481 key->type, pktype);
482 goto done;
483 }
484 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
485 debug2("input_userauth_pk_ok: fp %s", fp);
486 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000487
Darren Tuckerd05b6012003-10-15 15:55:59 +1000488 /*
489 * search keys in the reverse order, because last candidate has been
490 * moved to the end of the queue. this also avoids confusion by
491 * duplicate keys
492 */
Damien Miller0b51a522004-04-20 20:07:19 +1000493 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000494 if (key_equal(key, id->key)) {
495 sent = sign_and_send_pubkey(authctxt, id);
496 break;
497 }
498 }
499done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000500 if (key != NULL)
501 key_free(key);
502 xfree(pkalg);
503 xfree(pkblob);
504
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000505 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000506 if (sent == 0)
507 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100508}
509
Darren Tucker0efd1552003-08-26 11:49:55 +1000510#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100511int
Darren Tucker0efd1552003-08-26 11:49:55 +1000512userauth_gssapi(Authctxt *authctxt)
513{
514 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100515 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000516 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000517 OM_uint32 min;
518 int ok = 0;
519
520 /* Try one GSSAPI method at a time, rather than sending them all at
521 * once. */
522
Darren Tucker56afe142003-11-03 20:06:14 +1100523 if (gss_supported == NULL)
524 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000525
526 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100527 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000528 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100529 if (gss_supported->elements[mech].length < 128 &&
Damien Millera1cb9f32006-08-19 00:33:34 +1000530 ssh_gssapi_check_mechanism(&gssctxt,
531 &gss_supported->elements[mech], authctxt->host)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000532 ok = 1; /* Mechanism works */
533 } else {
534 mech++;
535 }
536 }
537
Damien Millera1cb9f32006-08-19 00:33:34 +1000538 if (!ok)
Damien Millereccb9de2005-06-17 12:59:34 +1000539 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000540
541 authctxt->methoddata=(void *)gssctxt;
542
543 packet_start(SSH2_MSG_USERAUTH_REQUEST);
544 packet_put_cstring(authctxt->server_user);
545 packet_put_cstring(authctxt->service);
546 packet_put_cstring(authctxt->method->name);
547
548 packet_put_int(1);
549
Darren Tucker655a5e02003-11-03 20:09:03 +1100550 packet_put_int((gss_supported->elements[mech].length) + 2);
551 packet_put_char(SSH_GSS_OIDTYPE);
552 packet_put_char(gss_supported->elements[mech].length);
553 packet_put_raw(gss_supported->elements[mech].elements,
554 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000555
556 packet_send();
557
558 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
559 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
560 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
561 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
562
563 mech++; /* Move along to next candidate */
564
565 return 1;
566}
567
Damien Miller91c6aa42003-11-17 21:20:18 +1100568static OM_uint32
569process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
570{
571 Authctxt *authctxt = ctxt;
572 Gssctxt *gssctxt = authctxt->methoddata;
573 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Millerda9984f2005-08-31 19:46:26 +1000574 gss_buffer_desc mic = GSS_C_EMPTY_BUFFER;
575 gss_buffer_desc gssbuf;
Damien Miller0425d402003-11-17 22:18:21 +1100576 OM_uint32 status, ms, flags;
577 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100578
Damien Miller91c6aa42003-11-17 21:20:18 +1100579 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100580 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100581
582 if (send_tok.length > 0) {
583 if (GSS_ERROR(status))
584 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
585 else
586 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100587
Damien Miller91c6aa42003-11-17 21:20:18 +1100588 packet_put_string(send_tok.value, send_tok.length);
589 packet_send();
590 gss_release_buffer(&ms, &send_tok);
591 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100592
Damien Miller91c6aa42003-11-17 21:20:18 +1100593 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100594 /* send either complete or MIC, depending on mechanism */
595 if (!(flags & GSS_C_INTEG_FLAG)) {
596 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
597 packet_send();
598 } else {
599 ssh_gssapi_buildmic(&b, authctxt->server_user,
600 authctxt->service, "gssapi-with-mic");
601
602 gssbuf.value = buffer_ptr(&b);
603 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100604
Damien Miller0425d402003-11-17 22:18:21 +1100605 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100606
Damien Miller0425d402003-11-17 22:18:21 +1100607 if (!GSS_ERROR(status)) {
608 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
609 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100610
Damien Miller0425d402003-11-17 22:18:21 +1100611 packet_send();
612 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100613
Damien Miller0425d402003-11-17 22:18:21 +1100614 buffer_free(&b);
615 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100616 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100617 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100618
Damien Miller91c6aa42003-11-17 21:20:18 +1100619 return status;
620}
621
Damien Millerf7475d72008-11-03 19:26:18 +1100622/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000623void
624input_gssapi_response(int type, u_int32_t plen, void *ctxt)
625{
626 Authctxt *authctxt = ctxt;
627 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000628 int oidlen;
629 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000630
631 if (authctxt == NULL)
632 fatal("input_gssapi_response: no authentication context");
633 gssctxt = authctxt->methoddata;
634
635 /* Setup our OID */
636 oidv = packet_get_string(&oidlen);
637
Darren Tucker655a5e02003-11-03 20:09:03 +1100638 if (oidlen <= 2 ||
639 oidv[0] != SSH_GSS_OIDTYPE ||
640 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100641 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100642 debug("Badly encoded mechanism OID received");
643 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100644 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000645 }
646
Darren Tucker655a5e02003-11-03 20:09:03 +1100647 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
648 fatal("Server returned different OID than expected");
649
Darren Tucker0efd1552003-08-26 11:49:55 +1000650 packet_check_eom();
651
652 xfree(oidv);
653
Damien Miller91c6aa42003-11-17 21:20:18 +1100654 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000655 /* Start again with next method on list */
656 debug("Trying to start again");
657 userauth(authctxt, NULL);
658 return;
659 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000660}
661
Damien Millerf7475d72008-11-03 19:26:18 +1100662/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000663void
664input_gssapi_token(int type, u_int32_t plen, void *ctxt)
665{
666 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000667 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100668 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000669 u_int slen;
670
671 if (authctxt == NULL)
672 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000673
674 recv_tok.value = packet_get_string(&slen);
675 recv_tok.length = slen; /* safe typecast */
676
677 packet_check_eom();
678
Damien Miller91c6aa42003-11-17 21:20:18 +1100679 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000680
681 xfree(recv_tok.value);
682
683 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000684 /* Start again with the next method in the list */
685 userauth(authctxt, NULL);
686 return;
687 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000688}
689
Damien Millerf7475d72008-11-03 19:26:18 +1100690/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000691void
692input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
693{
694 Authctxt *authctxt = ctxt;
695 Gssctxt *gssctxt;
696 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
697 gss_buffer_desc recv_tok;
698 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000699 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000700
701 if (authctxt == NULL)
702 fatal("input_gssapi_response: no authentication context");
703 gssctxt = authctxt->methoddata;
704
Darren Tucker600ad8d2003-08-26 12:10:48 +1000705 recv_tok.value = packet_get_string(&len);
706 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000707
708 packet_check_eom();
709
710 /* Stick it into GSSAPI and see what it says */
711 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000712 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000713
714 xfree(recv_tok.value);
715 gss_release_buffer(&ms, &send_tok);
716
717 /* Server will be returning a failed packet after this one */
718}
719
Damien Millerf7475d72008-11-03 19:26:18 +1100720/* ARGSUSED */
Darren Tucker0efd1552003-08-26 11:49:55 +1000721void
722input_gssapi_error(int type, u_int32_t plen, void *ctxt)
723{
724 OM_uint32 maj, min;
725 char *msg;
726 char *lang;
727
728 maj=packet_get_int();
729 min=packet_get_int();
730 msg=packet_get_string(NULL);
731 lang=packet_get_string(NULL);
732
733 packet_check_eom();
734
Damien Miller15d72a02005-11-05 15:07:33 +1100735 debug("Server GSSAPI Error:\n%s", msg);
Darren Tucker0efd1552003-08-26 11:49:55 +1000736 xfree(msg);
737 xfree(lang);
738}
739#endif /* GSSAPI */
740
Damien Millereba71ba2000-04-29 23:57:08 +1000741int
Damien Miller874d77b2000-10-14 16:23:11 +1100742userauth_none(Authctxt *authctxt)
743{
744 /* initial userauth request */
745 packet_start(SSH2_MSG_USERAUTH_REQUEST);
746 packet_put_cstring(authctxt->server_user);
747 packet_put_cstring(authctxt->service);
748 packet_put_cstring(authctxt->method->name);
749 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100750 return 1;
751}
752
753int
Damien Miller62cee002000-09-23 17:15:56 +1100754userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000755{
Damien Millere247cc42000-05-07 12:03:14 +1000756 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000757 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000758 char *password;
759
Damien Millerd3a18572000-06-07 19:55:44 +1000760 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000761 return 0;
762
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000763 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000764 error("Permission denied, please try again.");
765
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000766 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100767 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000768 password = read_passphrase(prompt, 0);
769 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100770 packet_put_cstring(authctxt->server_user);
771 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100772 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000773 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000774 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000775 memset(password, 0, strlen(password));
776 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100777 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000778 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000779
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000780 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000781 &input_userauth_passwd_changereq);
782
Damien Millereba71ba2000-04-29 23:57:08 +1000783 return 1;
784}
Damien Millerf7475d72008-11-03 19:26:18 +1100785
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000786/*
787 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
788 */
Damien Millerf7475d72008-11-03 19:26:18 +1100789/* ARGSUSED */
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000790void
Tim Ricec8549622002-03-31 12:49:38 -0800791input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000792{
793 Authctxt *authctxt = ctxt;
794 char *info, *lang, *password = NULL, *retype = NULL;
795 char prompt[150];
796
797 debug2("input_userauth_passwd_changereq");
798
799 if (authctxt == NULL)
800 fatal("input_userauth_passwd_changereq: "
801 "no authentication context");
802
803 info = packet_get_string(NULL);
804 lang = packet_get_string(NULL);
805 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000806 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000807 xfree(info);
808 xfree(lang);
809 packet_start(SSH2_MSG_USERAUTH_REQUEST);
810 packet_put_cstring(authctxt->server_user);
811 packet_put_cstring(authctxt->service);
812 packet_put_cstring(authctxt->method->name);
813 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000814 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000815 "Enter %.30s@%.128s's old password: ",
816 authctxt->server_user, authctxt->host);
817 password = read_passphrase(prompt, 0);
818 packet_put_cstring(password);
819 memset(password, 0, strlen(password));
820 xfree(password);
821 password = NULL;
822 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000823 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000824 "Enter %.30s@%.128s's new password: ",
825 authctxt->server_user, authctxt->host);
826 password = read_passphrase(prompt, RP_ALLOW_EOF);
827 if (password == NULL) {
828 /* bail out */
829 return;
830 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000831 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000832 "Retype %.30s@%.128s's new password: ",
833 authctxt->server_user, authctxt->host);
834 retype = read_passphrase(prompt, 0);
835 if (strcmp(password, retype) != 0) {
836 memset(password, 0, strlen(password));
837 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000838 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000839 password = NULL;
840 }
841 memset(retype, 0, strlen(retype));
842 xfree(retype);
843 }
844 packet_put_cstring(password);
845 memset(password, 0, strlen(password));
846 xfree(password);
847 packet_add_padding(64);
848 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000849
850 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000851 &input_userauth_passwd_changereq);
852}
Damien Millereba71ba2000-04-29 23:57:08 +1000853
Ben Lindstrombba81212001-06-25 05:01:22 +0000854static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000855identity_sign(Identity *id, u_char **sigp, u_int *lenp,
856 u_char *data, u_int datalen)
857{
858 Key *prv;
859 int ret;
860
861 /* the agent supports this key */
862 if (id->ac)
863 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
864 data, datalen));
865 /*
866 * we have already loaded the private key or
867 * the private key is stored in external hardware
868 */
869 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
870 return (key_sign(id->key, sigp, lenp, data, datalen));
871 /* load the private key from the file */
872 if ((prv = load_identity_file(id->filename)) == NULL)
873 return (-1);
874 ret = key_sign(prv, sigp, lenp, data, datalen);
875 key_free(prv);
876 return (ret);
877}
878
879static int
880sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +1000881{
882 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000883 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000884 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +1000885 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000886 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100887 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000888
Ben Lindstromd121f612000-12-03 17:00:47 +0000889 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000890
Damien Miller280ecfb2003-05-14 13:46:00 +1000891 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100892 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000893 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100894 return 0;
895 }
Damien Millereba71ba2000-04-29 23:57:08 +1000896 /* data to be signed */
897 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100898 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000899 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000900 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100901 } else {
902 buffer_put_string(&b, session_id2, session_id2_len);
903 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000904 }
Damien Millereba71ba2000-04-29 23:57:08 +1000905 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100906 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000907 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000908 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000909 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100910 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000911 if (datafellows & SSH_BUG_PKAUTH) {
912 buffer_put_char(&b, have_sig);
913 } else {
914 buffer_put_cstring(&b, authctxt->method->name);
915 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +1000916 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +0000917 }
Damien Millereba71ba2000-04-29 23:57:08 +1000918 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000919
920 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +1000921 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000922 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000923 if (ret == -1) {
924 xfree(blob);
925 buffer_free(&b);
926 return 0;
927 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100928#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000929 buffer_dump(&b);
930#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000931 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000932 buffer_clear(&b);
933 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000934 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000935 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100936 buffer_put_cstring(&b, authctxt->server_user);
937 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100938 buffer_put_cstring(&b, authctxt->method->name);
939 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000940 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000941 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +1000942 buffer_put_string(&b, blob, bloblen);
943 }
944 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000945
Damien Millereba71ba2000-04-29 23:57:08 +1000946 /* append signature */
947 buffer_put_string(&b, signature, slen);
948 xfree(signature);
949
950 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000951 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100952 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000953 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000954
955 /* put remaining data from buffer into packet */
956 packet_start(SSH2_MSG_USERAUTH_REQUEST);
957 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
958 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000959 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000960
961 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000962}
963
Ben Lindstrombba81212001-06-25 05:01:22 +0000964static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000965send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +1000966{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000967 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000968 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000969
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000970 debug3("send_pubkey_test");
971
Damien Miller280ecfb2003-05-14 13:46:00 +1000972 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000973 /* we cannot handle this key */
974 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000975 return 0;
976 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000977 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000978 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000979
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000980 packet_start(SSH2_MSG_USERAUTH_REQUEST);
981 packet_put_cstring(authctxt->server_user);
982 packet_put_cstring(authctxt->service);
983 packet_put_cstring(authctxt->method->name);
984 packet_put_char(have_sig);
985 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000986 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000987 packet_put_string(blob, bloblen);
988 xfree(blob);
989 packet_send();
990 return 1;
991}
992
Ben Lindstrombba81212001-06-25 05:01:22 +0000993static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000994load_identity_file(char *filename)
995{
996 Key *private;
997 char prompt[300], *passphrase;
Darren Tucker232b76f2006-05-06 17:41:51 +1000998 int perm_ok, quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000999 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001000
Ben Lindstrom329782e2001-03-10 17:08:59 +00001001 if (stat(filename, &st) < 0) {
1002 debug3("no such identity: %s", filename);
1003 return NULL;
1004 }
Darren Tucker232b76f2006-05-06 17:41:51 +10001005 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL, &perm_ok);
1006 if (!perm_ok)
1007 return NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001008 if (private == NULL) {
1009 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001010 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +10001011 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +11001012 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +11001013 for (i = 0; i < options.number_of_password_prompts; i++) {
1014 passphrase = read_passphrase(prompt, 0);
1015 if (strcmp(passphrase, "") != 0) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001016 private = key_load_private_type(KEY_UNSPEC,
1017 filename, passphrase, NULL, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001018 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +11001019 } else {
1020 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001021 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +11001022 }
1023 memset(passphrase, 0, strlen(passphrase));
1024 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001025 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +11001026 break;
1027 debug2("bad passphrase given, try again...");
1028 }
Damien Miller994cf142000-07-21 10:19:44 +10001029 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001030 return private;
1031}
1032
Damien Miller280ecfb2003-05-14 13:46:00 +10001033/*
1034 * try keys in the following order:
1035 * 1. agent keys that are found in the config file
1036 * 2. other agent keys
1037 * 3. keys that are only listed in the config file
1038 */
1039static void
1040pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001041{
Damien Miller280ecfb2003-05-14 13:46:00 +10001042 Identity *id;
1043 Idlist agent, files, *preferred;
1044 Key *key;
1045 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001046 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001047 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001048
Damien Miller280ecfb2003-05-14 13:46:00 +10001049 TAILQ_INIT(&agent); /* keys from the agent */
1050 TAILQ_INIT(&files); /* keys from the config file */
1051 preferred = &authctxt->keys;
1052 TAILQ_INIT(preferred); /* preferred order of keys */
1053
1054 /* list of keys stored in the filesystem */
1055 for (i = 0; i < options.num_identity_files; i++) {
1056 key = options.identity_keys[i];
1057 if (key && key->type == KEY_RSA1)
1058 continue;
1059 options.identity_keys[i] = NULL;
Damien Miller07d86be2006-03-26 14:19:21 +11001060 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001061 id->key = key;
1062 id->filename = xstrdup(options.identity_files[i]);
1063 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001064 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001065 /* list of keys supported by the agent */
1066 if ((ac = ssh_get_authentication_connection())) {
1067 for (key = ssh_get_first_identity(ac, &comment, 2);
1068 key != NULL;
1069 key = ssh_get_next_identity(ac, &comment, 2)) {
1070 found = 0;
1071 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001072 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001073 if (key_equal(key, id->key)) {
1074 key_free(key);
1075 xfree(comment);
1076 TAILQ_REMOVE(&files, id, next);
1077 TAILQ_INSERT_TAIL(preferred, id, next);
1078 id->ac = ac;
1079 found = 1;
1080 break;
1081 }
1082 }
Damien Millerbd394c32004-03-08 23:12:36 +11001083 if (!found && !options.identities_only) {
Damien Miller07d86be2006-03-26 14:19:21 +11001084 id = xcalloc(1, sizeof(*id));
Damien Miller280ecfb2003-05-14 13:46:00 +10001085 id->key = key;
1086 id->filename = comment;
1087 id->ac = ac;
1088 TAILQ_INSERT_TAIL(&agent, id, next);
1089 }
1090 }
1091 /* append remaining agent keys */
1092 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1093 TAILQ_REMOVE(&agent, id, next);
1094 TAILQ_INSERT_TAIL(preferred, id, next);
1095 }
1096 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001097 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001098 /* append remaining keys from the config file */
1099 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1100 TAILQ_REMOVE(&files, id, next);
1101 TAILQ_INSERT_TAIL(preferred, id, next);
1102 }
1103 TAILQ_FOREACH(id, preferred, next) {
1104 debug2("key: %s (%p)", id->filename, id->key);
1105 }
1106}
1107
1108static void
1109pubkey_cleanup(Authctxt *authctxt)
1110{
1111 Identity *id;
1112
1113 if (authctxt->agent != NULL)
1114 ssh_close_authentication_connection(authctxt->agent);
1115 for (id = TAILQ_FIRST(&authctxt->keys); id;
1116 id = TAILQ_FIRST(&authctxt->keys)) {
1117 TAILQ_REMOVE(&authctxt->keys, id, next);
1118 if (id->key)
1119 key_free(id->key);
1120 if (id->filename)
1121 xfree(id->filename);
1122 xfree(id);
1123 }
Damien Millereba71ba2000-04-29 23:57:08 +10001124}
1125
Damien Miller62cee002000-09-23 17:15:56 +11001126int
1127userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001128{
Damien Miller280ecfb2003-05-14 13:46:00 +10001129 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001130 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001131
Damien Miller280ecfb2003-05-14 13:46:00 +10001132 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1133 if (id->tried++)
1134 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001135 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001136 TAILQ_REMOVE(&authctxt->keys, id, next);
1137 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1138 /*
1139 * send a test message if we have the public key. for
1140 * encrypted keys we cannot do this and have to load the
1141 * private key instead
1142 */
1143 if (id->key && id->key->type != KEY_RSA1) {
1144 debug("Offering public key: %s", id->filename);
1145 sent = send_pubkey_test(authctxt, id);
1146 } else if (id->key == NULL) {
1147 debug("Trying private key: %s", id->filename);
1148 id->key = load_identity_file(id->filename);
1149 if (id->key != NULL) {
1150 id->isprivate = 1;
1151 sent = sign_and_send_pubkey(authctxt, id);
1152 key_free(id->key);
1153 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001154 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001155 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001156 if (sent)
1157 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001158 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001159 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001160}
Damien Millereba71ba2000-04-29 23:57:08 +10001161
Damien Miller874d77b2000-10-14 16:23:11 +11001162/*
1163 * Send userauth request message specifying keyboard-interactive method.
1164 */
1165int
1166userauth_kbdint(Authctxt *authctxt)
1167{
1168 static int attempt = 0;
1169
1170 if (attempt++ >= options.number_of_password_prompts)
1171 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001172 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1173 if (attempt > 1 && !authctxt->info_req_seen) {
1174 debug3("userauth_kbdint: disable: no info_req_seen");
1175 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1176 return 0;
1177 }
Damien Miller874d77b2000-10-14 16:23:11 +11001178
1179 debug2("userauth_kbdint");
1180 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1181 packet_put_cstring(authctxt->server_user);
1182 packet_put_cstring(authctxt->service);
1183 packet_put_cstring(authctxt->method->name);
1184 packet_put_cstring(""); /* lang */
1185 packet_put_cstring(options.kbd_interactive_devices ?
1186 options.kbd_interactive_devices : "");
1187 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001188
1189 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1190 return 1;
1191}
1192
1193/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001194 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001195 */
1196void
Damien Miller630d6f42002-01-22 23:17:30 +11001197input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001198{
1199 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001200 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001201 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001202 int echo = 0;
1203
1204 debug2("input_userauth_info_req");
1205
1206 if (authctxt == NULL)
1207 fatal("input_userauth_info_req: no authentication context");
1208
Ben Lindstrom7d199962001-09-12 18:29:00 +00001209 authctxt->info_req_seen = 1;
1210
Damien Miller874d77b2000-10-14 16:23:11 +11001211 name = packet_get_string(NULL);
1212 inst = packet_get_string(NULL);
1213 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001214 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001215 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001216 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001217 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001218 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001219 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001220 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001221
1222 num_prompts = packet_get_int();
1223 /*
1224 * Begin to build info response packet based on prompts requested.
1225 * We commit to providing the correct number of responses, so if
1226 * further on we run into a problem that prevents this, we have to
1227 * be sure and clean this up and send a correct error response.
1228 */
1229 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1230 packet_put_int(num_prompts);
1231
Ben Lindstrom551ea372001-06-05 18:56:16 +00001232 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001233 for (i = 0; i < num_prompts; i++) {
1234 prompt = packet_get_string(NULL);
1235 echo = packet_get_char();
1236
Ben Lindstrom949974b2001-06-25 05:20:31 +00001237 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001238
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001239 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001240 memset(response, 0, strlen(response));
1241 xfree(response);
1242 xfree(prompt);
1243 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001244 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001245
Damien Miller9f643902001-11-12 11:02:52 +11001246 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001247 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001248}
Damien Miller62cee002000-09-23 17:15:56 +11001249
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001250static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001251ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001252 u_char *data, u_int datalen)
1253{
1254 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001255 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001256 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001257 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001258
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001259 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001260
Ben Lindstrom5206b952002-06-06 19:59:29 +00001261 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1262 error("ssh_keysign: no installed: %s", strerror(errno));
1263 return -1;
1264 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001265 if (fflush(stdout) != 0)
1266 error("ssh_keysign: fflush: %s", strerror(errno));
1267 if (pipe(to) < 0) {
1268 error("ssh_keysign: pipe: %s", strerror(errno));
1269 return -1;
1270 }
1271 if (pipe(from) < 0) {
1272 error("ssh_keysign: pipe: %s", strerror(errno));
1273 return -1;
1274 }
1275 if ((pid = fork()) < 0) {
1276 error("ssh_keysign: fork: %s", strerror(errno));
1277 return -1;
1278 }
1279 if (pid == 0) {
Damien Miller2e5fe882006-06-13 13:10:00 +10001280 permanently_drop_suid(getuid());
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001281 close(from[0]);
1282 if (dup2(from[1], STDOUT_FILENO) < 0)
1283 fatal("ssh_keysign: dup2: %s", strerror(errno));
1284 close(to[1]);
1285 if (dup2(to[0], STDIN_FILENO) < 0)
1286 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001287 close(from[1]);
1288 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001289 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001290 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1291 strerror(errno));
1292 }
1293 close(from[1]);
1294 close(to[0]);
1295
1296 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001297 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001298 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001299 if (ssh_msg_send(to[1], version, &b) == -1)
1300 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001301
Damien Miller901119b2002-10-04 11:10:04 +10001302 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001303 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001304 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001305 return -1;
1306 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001307 close(from[0]);
1308 close(to[1]);
1309
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001310 while (waitpid(pid, &status, 0) < 0)
1311 if (errno != EINTR)
1312 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001313
Ben Lindstrom5206b952002-06-06 19:59:29 +00001314 if (buffer_get_char(&b) != version) {
1315 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001316 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001317 return -1;
1318 }
1319 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001320 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001321
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001322 return 0;
1323}
1324
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001325int
1326userauth_hostbased(Authctxt *authctxt)
1327{
1328 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001329 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001330 Buffer b;
1331 u_char *signature, *blob;
Darren Tucker26c66622007-05-20 15:09:42 +10001332 char *chost, *pkalg, *p, myname[NI_MAXHOST];
Ben Lindstrom671388f2001-04-19 20:40:45 +00001333 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001334 u_int blen, slen;
Ben Lindstrom2bffd6f2001-04-19 20:35:40 +00001335 int ok, i, len, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001336
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001337 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001338 for (i = 0; i < sensitive->nkeys; i++) {
1339 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001340 if (private && private->type != KEY_RSA1) {
1341 found = 1;
1342 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001343 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001344 break;
1345 }
1346 }
1347 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001348 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001349 return 0;
1350 }
1351 if (key_to_blob(private, &blob, &blen) == 0) {
1352 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001353 return 0;
1354 }
Damien Miller91c18472001-11-12 11:02:03 +11001355 /* figure out a name for the client host */
Darren Tucker26c66622007-05-20 15:09:42 +10001356 p = NULL;
1357 if (packet_connection_is_on_socket())
1358 p = get_local_name(packet_get_connection_in());
1359 if (p == NULL) {
1360 if (gethostname(myname, sizeof(myname)) == -1) {
1361 verbose("userauth_hostbased: gethostname: %s",
1362 strerror(errno));
1363 } else
1364 p = xstrdup(myname);
1365 }
Damien Miller91c18472001-11-12 11:02:03 +11001366 if (p == NULL) {
1367 error("userauth_hostbased: cannot get local ipaddr/name");
1368 key_free(private);
Damien Miller5790b592006-03-26 13:54:03 +11001369 xfree(blob);
Damien Miller91c18472001-11-12 11:02:03 +11001370 return 0;
1371 }
1372 len = strlen(p) + 2;
Damien Miller07d86be2006-03-26 14:19:21 +11001373 xasprintf(&chost, "%s.", p);
Damien Miller91c18472001-11-12 11:02:03 +11001374 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001375 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001376
Ben Lindstrom671388f2001-04-19 20:40:45 +00001377 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1378 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001379 pkalg = xstrdup(key_ssh_name(private));
1380 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001381 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001382 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001383 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1384 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001385 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001386 buffer_put_cstring(&b, authctxt->method->name);
1387 buffer_put_cstring(&b, pkalg);
1388 buffer_put_string(&b, blob, blen);
1389 buffer_put_cstring(&b, chost);
1390 buffer_put_cstring(&b, authctxt->local_user);
1391#ifdef DEBUG_PK
1392 buffer_dump(&b);
1393#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001394 if (sensitive->external_keysign)
1395 ok = ssh_keysign(private, &signature, &slen,
1396 buffer_ptr(&b), buffer_len(&b));
1397 else
1398 ok = key_sign(private, &signature, &slen,
1399 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001400 key_free(private);
1401 buffer_free(&b);
1402 if (ok != 0) {
1403 error("key_sign failed");
1404 xfree(chost);
1405 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001406 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001407 return 0;
1408 }
1409 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1410 packet_put_cstring(authctxt->server_user);
1411 packet_put_cstring(authctxt->service);
1412 packet_put_cstring(authctxt->method->name);
1413 packet_put_cstring(pkalg);
1414 packet_put_string(blob, blen);
1415 packet_put_cstring(chost);
1416 packet_put_cstring(authctxt->local_user);
1417 packet_put_string(signature, slen);
1418 memset(signature, 's', slen);
1419 xfree(signature);
1420 xfree(chost);
1421 xfree(pkalg);
Damien Miller5790b592006-03-26 13:54:03 +11001422 xfree(blob);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001423
1424 packet_send();
1425 return 1;
1426}
1427
Damien Miller62cee002000-09-23 17:15:56 +11001428/* find auth method */
1429
Damien Miller62cee002000-09-23 17:15:56 +11001430/*
1431 * given auth method name, if configurable options permit this method fill
1432 * in auth_ident field and return true, otherwise return false.
1433 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001434static int
Damien Miller62cee002000-09-23 17:15:56 +11001435authmethod_is_enabled(Authmethod *method)
1436{
1437 if (method == NULL)
1438 return 0;
1439 /* return false if options indicate this method is disabled */
1440 if (method->enabled == NULL || *method->enabled == 0)
1441 return 0;
1442 /* return false if batch mode is enabled but method needs interactive mode */
1443 if (method->batch_flag != NULL && *method->batch_flag != 0)
1444 return 0;
1445 return 1;
1446}
1447
Ben Lindstrombba81212001-06-25 05:01:22 +00001448static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001449authmethod_lookup(const char *name)
1450{
1451 Authmethod *method = NULL;
1452 if (name != NULL)
1453 for (method = authmethods; method->name != NULL; method++)
1454 if (strcmp(name, method->name) == 0)
1455 return method;
1456 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1457 return NULL;
1458}
1459
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001460/* XXX internal state */
1461static Authmethod *current = NULL;
1462static char *supported = NULL;
1463static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001464
Damien Miller62cee002000-09-23 17:15:56 +11001465/*
1466 * Given the authentication method list sent by the server, return the
1467 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001468 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001469 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001470static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001471authmethod_get(char *authlist)
1472{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001473 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001474 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001475
Damien Miller62cee002000-09-23 17:15:56 +11001476 /* Use a suitable default if we're passed a nil list. */
1477 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001478 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001479
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001480 if (supported == NULL || strcmp(authlist, supported) != 0) {
1481 debug3("start over, passed a different list %s", authlist);
1482 if (supported != NULL)
1483 xfree(supported);
1484 supported = xstrdup(authlist);
1485 preferred = options.preferred_authentications;
1486 debug3("preferred %s", preferred);
1487 current = NULL;
1488 } else if (current != NULL && authmethod_is_enabled(current))
1489 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001490
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001491 for (;;) {
1492 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001493 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001494 current = NULL;
1495 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001496 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001497 preferred += next;
1498 debug3("authmethod_lookup %s", name);
1499 debug3("remaining preferred: %s", preferred);
1500 if ((current = authmethod_lookup(name)) != NULL &&
1501 authmethod_is_enabled(current)) {
1502 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001503 debug("Next authentication method: %s", name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001504 return current;
1505 }
Damien Millereba71ba2000-04-29 23:57:08 +10001506 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001507}
Damien Miller62cee002000-09-23 17:15:56 +11001508
Ben Lindstrom79073822001-07-04 03:42:30 +00001509static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001510authmethods_get(void)
1511{
1512 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001513 Buffer b;
1514 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001515
Damien Miller0e3b8722002-01-22 23:26:38 +11001516 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001517 for (method = authmethods; method->name != NULL; method++) {
1518 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001519 if (buffer_len(&b) > 0)
1520 buffer_append(&b, ",", 1);
1521 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001522 }
Damien Miller62cee002000-09-23 17:15:56 +11001523 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001524 buffer_append(&b, "\0", 1);
1525 list = xstrdup(buffer_ptr(&b));
1526 buffer_free(&b);
1527 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001528}