blob: 012ce2b423e6fc51129720eb018627bee6f289be [file] [log] [blame]
Damien Millereba71ba2000-04-29 23:57:08 +10001/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Millereba71ba2000-04-29 23:57:08 +100012 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
Damien Miller0dc1bef2005-07-17 17:22:45 +100026RCSID("$OpenBSD: sshconnect2.c,v 1.140 2005/07/17 07:17:55 djm Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100027
Damien Miller9c617692003-05-14 14:31:11 +100028#include "openbsd-compat/sys-queue.h"
29
Damien Millereba71ba2000-04-29 23:57:08 +100030#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100032#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "buffer.h"
34#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100035#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100036#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000037#include "cipher.h"
Damien Millereba71ba2000-04-29 23:57:08 +100038#include "kex.h"
39#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100040#include "sshconnect.h"
41#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000042#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100043#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "log.h"
45#include "readconf.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100046#include "misc.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000047#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000048#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000049#include "canohost.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000050#include "msg.h"
51#include "pathnames.h"
Damien Miller874d77b2000-10-14 16:23:11 +110052
Darren Tucker0efd1552003-08-26 11:49:55 +100053#ifdef GSSAPI
54#include "ssh-gss.h"
55#endif
56
Damien Millereba71ba2000-04-29 23:57:08 +100057/* import */
58extern char *client_version_string;
59extern char *server_version_string;
60extern Options options;
61
62/*
63 * SSH2 key exchange
64 */
65
Ben Lindstrom46c16222000-12-22 01:43:59 +000066u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +100067u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +100068
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000069char *xxx_host;
70struct sockaddr *xxx_hostaddr;
71
Ben Lindstromf28f6342001-04-04 02:03:04 +000072Kex *xxx_kex = NULL;
73
Ben Lindstrombba81212001-06-25 05:01:22 +000074static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000075verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000076{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000077 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100078 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000079 return 0;
80}
81
Damien Millereba71ba2000-04-29 23:57:08 +100082void
Damien Miller874d77b2000-10-14 16:23:11 +110083ssh_kex2(char *host, struct sockaddr *hostaddr)
84{
Damien Miller874d77b2000-10-14 16:23:11 +110085 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000086
87 xxx_host = host;
88 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +110089
Damien Millere39cacc2000-11-29 12:18:44 +110090 if (options.ciphers == (char *)-1) {
Damien Miller996acd22003-04-09 20:59:48 +100091 logit("No valid ciphers for protocol version 2 given, using defaults.");
Damien Millere39cacc2000-11-29 12:18:44 +110092 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110093 }
94 if (options.ciphers != NULL) {
95 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
96 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
97 }
Damien Millera0ff4662001-03-30 10:49:35 +100098 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
99 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
100 myproposal[PROPOSAL_ENC_ALGS_STOC] =
101 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +1100102 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000103 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Ben Lindstrom343010a2002-07-04 00:16:25 +0000104 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib,none";
Damien Miller874d77b2000-10-14 16:23:11 +1100105 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000106 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Ben Lindstrom343010a2002-07-04 00:16:25 +0000107 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib";
Damien Miller874d77b2000-10-14 16:23:11 +1100108 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000109 if (options.macs != NULL) {
110 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
111 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
112 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000113 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100114 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000115 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100116
Damien Millera5539d22003-04-09 20:50:06 +1000117 if (options.rekey_limit)
118 packet_set_rekey_limit(options.rekey_limit);
119
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000120 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000121 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100122 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000123 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100124 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000125 kex->client_version_string=client_version_string;
126 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000127 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100128
Ben Lindstromf28f6342001-04-04 02:03:04 +0000129 xxx_kex = kex;
130
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000131 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100132
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000133 session_id2 = kex->session_id;
134 session_id2_len = kex->session_id_len;
135
Damien Miller874d77b2000-10-14 16:23:11 +1100136#ifdef DEBUG_KEXDH
137 /* send 1st encrypted/maced/compressed message */
138 packet_start(SSH2_MSG_IGNORE);
139 packet_put_cstring("markus");
140 packet_send();
141 packet_write_wait();
142#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000143}
Damien Millerb1715dc2000-05-30 13:44:51 +1000144
Damien Millereba71ba2000-04-29 23:57:08 +1000145/*
146 * Authenticate user
147 */
Damien Miller62cee002000-09-23 17:15:56 +1100148
149typedef struct Authctxt Authctxt;
150typedef struct Authmethod Authmethod;
Damien Miller280ecfb2003-05-14 13:46:00 +1000151typedef struct identity Identity;
152typedef struct idlist Idlist;
Damien Miller62cee002000-09-23 17:15:56 +1100153
Damien Miller280ecfb2003-05-14 13:46:00 +1000154struct identity {
155 TAILQ_ENTRY(identity) next;
156 AuthenticationConnection *ac; /* set if agent supports key */
157 Key *key; /* public/private key */
158 char *filename; /* comment for agent-only keys */
159 int tried;
160 int isprivate; /* key points to the private key */
161};
162TAILQ_HEAD(idlist, identity);
Damien Miller62cee002000-09-23 17:15:56 +1100163
164struct Authctxt {
165 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000166 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100167 const char *host;
168 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100169 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100170 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000171 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000172 /* pubkey */
Damien Miller280ecfb2003-05-14 13:46:00 +1000173 Idlist keys;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000174 AuthenticationConnection *agent;
175 /* hostbased */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000176 Sensitive *sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000177 /* kbd-interactive */
178 int info_req_seen;
Darren Tucker0efd1552003-08-26 11:49:55 +1000179 /* generic */
180 void *methoddata;
Damien Miller62cee002000-09-23 17:15:56 +1100181};
182struct Authmethod {
183 char *name; /* string to compare against server's list */
184 int (*userauth)(Authctxt *authctxt);
185 int *enabled; /* flag in option struct that enables method */
186 int *batch_flag; /* flag in option struct that disables method */
187};
188
Damien Miller630d6f42002-01-22 23:17:30 +1100189void input_userauth_success(int, u_int32_t, void *);
190void input_userauth_failure(int, u_int32_t, void *);
191void input_userauth_banner(int, u_int32_t, void *);
192void input_userauth_error(int, u_int32_t, void *);
193void input_userauth_info_req(int, u_int32_t, void *);
194void input_userauth_pk_ok(int, u_int32_t, void *);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000195void input_userauth_passwd_changereq(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100196
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000197int userauth_none(Authctxt *);
198int userauth_pubkey(Authctxt *);
199int userauth_passwd(Authctxt *);
200int userauth_kbdint(Authctxt *);
201int userauth_hostbased(Authctxt *);
Damien Miller3ab496b2003-05-14 13:47:37 +1000202int userauth_kerberos(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100203
Darren Tucker0efd1552003-08-26 11:49:55 +1000204#ifdef GSSAPI
205int userauth_gssapi(Authctxt *authctxt);
206void input_gssapi_response(int type, u_int32_t, void *);
207void input_gssapi_token(int type, u_int32_t, void *);
208void input_gssapi_hash(int type, u_int32_t, void *);
209void input_gssapi_error(int, u_int32_t, void *);
210void input_gssapi_errtok(int, u_int32_t, void *);
211#endif
212
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000213void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000214
Damien Miller280ecfb2003-05-14 13:46:00 +1000215static int sign_and_send_pubkey(Authctxt *, Identity *);
Damien Miller280ecfb2003-05-14 13:46:00 +1000216static void pubkey_prepare(Authctxt *);
217static void pubkey_cleanup(Authctxt *);
218static Key *load_identity_file(char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000219
Ben Lindstrombba81212001-06-25 05:01:22 +0000220static Authmethod *authmethod_get(char *authlist);
221static Authmethod *authmethod_lookup(const char *name);
222static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100223
224Authmethod authmethods[] = {
Darren Tucker0efd1552003-08-26 11:49:55 +1000225#ifdef GSSAPI
Damien Miller0425d402003-11-17 22:18:21 +1100226 {"gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000227 userauth_gssapi,
228 &options.gss_authentication,
229 NULL},
230#endif
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000231 {"hostbased",
232 userauth_hostbased,
233 &options.hostbased_authentication,
234 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000235 {"publickey",
236 userauth_pubkey,
237 &options.pubkey_authentication,
238 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100239 {"keyboard-interactive",
240 userauth_kbdint,
241 &options.kbd_interactive_authentication,
242 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000243 {"password",
244 userauth_passwd,
245 &options.password_authentication,
246 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100247 {"none",
248 userauth_none,
249 NULL,
250 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100251 {NULL, NULL, NULL, NULL}
252};
253
254void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000255ssh_userauth2(const char *local_user, const char *server_user, char *host,
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000256 Sensitive *sensitive)
Damien Miller62cee002000-09-23 17:15:56 +1100257{
258 Authctxt authctxt;
259 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100260
Ben Lindstrom551ea372001-06-05 18:56:16 +0000261 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000262 options.kbd_interactive_authentication = 1;
263
Damien Miller62cee002000-09-23 17:15:56 +1100264 packet_start(SSH2_MSG_SERVICE_REQUEST);
265 packet_put_cstring("ssh-userauth");
266 packet_send();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000267 debug("SSH2_MSG_SERVICE_REQUEST sent");
Damien Miller62cee002000-09-23 17:15:56 +1100268 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100269 type = packet_read();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000270 if (type != SSH2_MSG_SERVICE_ACCEPT)
271 fatal("Server denied authentication request: %d", type);
Damien Miller62cee002000-09-23 17:15:56 +1100272 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100273 char *reply = packet_get_string(NULL);
Ben Lindstrom064496f2002-12-23 02:04:22 +0000274 debug2("service_accept: %s", reply);
Damien Miller62cee002000-09-23 17:15:56 +1100275 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100276 } else {
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000277 debug2("buggy server: service_accept w/o service");
Damien Miller62cee002000-09-23 17:15:56 +1100278 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100279 packet_check_eom();
Ben Lindstrom064496f2002-12-23 02:04:22 +0000280 debug("SSH2_MSG_SERVICE_ACCEPT received");
Damien Miller62cee002000-09-23 17:15:56 +1100281
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000282 if (options.preferred_authentications == NULL)
283 options.preferred_authentications = authmethods_get();
284
Damien Miller62cee002000-09-23 17:15:56 +1100285 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000286 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller280ecfb2003-05-14 13:46:00 +1000287 pubkey_prepare(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100288 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000289 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100290 authctxt.host = host;
291 authctxt.service = "ssh-connection"; /* service name */
292 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100293 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000294 authctxt.authlist = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +1000295 authctxt.methoddata = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000296 authctxt.sensitive = sensitive;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000297 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100298 if (authctxt.method == NULL)
299 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100300
301 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100302 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100303
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000304 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100305 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
306 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000307 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100308 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
309
Damien Miller280ecfb2003-05-14 13:46:00 +1000310 pubkey_cleanup(&authctxt);
Damien Millerf842fcb2003-05-15 12:01:28 +1000311 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
312
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000313 debug("Authentication succeeded (%s).", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100314}
Damien Millerf842fcb2003-05-15 12:01:28 +1000315
Damien Miller62cee002000-09-23 17:15:56 +1100316void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000317userauth(Authctxt *authctxt, char *authlist)
318{
Darren Tucker0efd1552003-08-26 11:49:55 +1000319 if (authctxt->methoddata) {
320 xfree(authctxt->methoddata);
321 authctxt->methoddata = NULL;
322 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000323 if (authlist == NULL) {
324 authlist = authctxt->authlist;
325 } else {
326 if (authctxt->authlist)
327 xfree(authctxt->authlist);
328 authctxt->authlist = authlist;
329 }
330 for (;;) {
331 Authmethod *method = authmethod_get(authlist);
332 if (method == NULL)
333 fatal("Permission denied (%s).", authlist);
334 authctxt->method = method;
Damien Millerf842fcb2003-05-15 12:01:28 +1000335
336 /* reset the per method handler */
337 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
338 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
339
340 /* and try new method */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000341 if (method->userauth(authctxt) != 0) {
342 debug2("we sent a %s packet, wait for reply", method->name);
343 break;
344 } else {
345 debug2("we did not send a packet, disable method");
346 method->enabled = NULL;
347 }
348 }
349}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000350
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000351void
Damien Miller630d6f42002-01-22 23:17:30 +1100352input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100353{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000354 fatal("input_userauth_error: bad message during authentication: "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000355 "type %d", type);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000356}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000357
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000358void
Damien Miller630d6f42002-01-22 23:17:30 +1100359input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000360{
361 char *msg, *lang;
Darren Tucker79644822003-10-08 17:37:58 +1000362
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000363 debug3("input_userauth_banner");
364 msg = packet_get_string(NULL);
365 lang = packet_get_string(NULL);
Darren Tucker046dff22003-10-08 17:32:02 +1000366 if (options.log_level > SYSLOG_LEVEL_QUIET)
367 fprintf(stderr, "%s", msg);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000368 xfree(msg);
369 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100370}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000371
Damien Miller62cee002000-09-23 17:15:56 +1100372void
Damien Miller630d6f42002-01-22 23:17:30 +1100373input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100374{
375 Authctxt *authctxt = ctxt;
376 if (authctxt == NULL)
377 fatal("input_userauth_success: no authentication context");
Darren Tucker79644822003-10-08 17:37:58 +1000378 if (authctxt->authlist) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000379 xfree(authctxt->authlist);
Darren Tucker79644822003-10-08 17:37:58 +1000380 authctxt->authlist = NULL;
381 }
382 if (authctxt->methoddata) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000383 xfree(authctxt->methoddata);
Darren Tucker79644822003-10-08 17:37:58 +1000384 authctxt->methoddata = NULL;
385 }
Damien Miller62cee002000-09-23 17:15:56 +1100386 authctxt->success = 1; /* break out */
387}
Ben Lindstrom5c385522002-06-23 21:23:20 +0000388
Damien Miller62cee002000-09-23 17:15:56 +1100389void
Damien Miller630d6f42002-01-22 23:17:30 +1100390input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100391{
Damien Miller62cee002000-09-23 17:15:56 +1100392 Authctxt *authctxt = ctxt;
393 char *authlist = NULL;
394 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100395
396 if (authctxt == NULL)
397 fatal("input_userauth_failure: no authentication context");
398
Damien Miller874d77b2000-10-14 16:23:11 +1100399 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100400 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100401 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100402
403 if (partial != 0)
Damien Miller996acd22003-04-09 20:59:48 +1000404 logit("Authenticated with partial success.");
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000405 debug("Authentications that can continue: %s", authlist);
Damien Miller62cee002000-09-23 17:15:56 +1100406
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000407 userauth(authctxt, authlist);
408}
409void
Damien Miller630d6f42002-01-22 23:17:30 +1100410input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000411{
412 Authctxt *authctxt = ctxt;
413 Key *key = NULL;
Damien Miller280ecfb2003-05-14 13:46:00 +1000414 Identity *id = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000415 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000416 int pktype, sent = 0;
417 u_int alen, blen;
418 char *pkalg, *fp;
419 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000420
421 if (authctxt == NULL)
422 fatal("input_userauth_pk_ok: no authentication context");
423 if (datafellows & SSH_BUG_PKOK) {
424 /* this is similar to SSH_BUG_PKAUTH */
425 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
426 pkblob = packet_get_string(&blen);
427 buffer_init(&b);
428 buffer_append(&b, pkblob, blen);
429 pkalg = buffer_get_string(&b, &alen);
430 buffer_free(&b);
431 } else {
432 pkalg = packet_get_string(&alen);
433 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000434 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100435 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000436
Damien Miller280ecfb2003-05-14 13:46:00 +1000437 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000438
Damien Miller280ecfb2003-05-14 13:46:00 +1000439 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
440 debug("unknown pkalg %s", pkalg);
441 goto done;
442 }
443 if ((key = key_from_blob(pkblob, blen)) == NULL) {
444 debug("no key from blob. pkalg %s", pkalg);
445 goto done;
446 }
447 if (key->type != pktype) {
448 error("input_userauth_pk_ok: type mismatch "
449 "for decoded key (received %d, expected %d)",
450 key->type, pktype);
451 goto done;
452 }
453 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
454 debug2("input_userauth_pk_ok: fp %s", fp);
455 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000456
Darren Tuckerd05b6012003-10-15 15:55:59 +1000457 /*
458 * search keys in the reverse order, because last candidate has been
459 * moved to the end of the queue. this also avoids confusion by
460 * duplicate keys
461 */
Damien Miller0b51a522004-04-20 20:07:19 +1000462 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
Damien Miller280ecfb2003-05-14 13:46:00 +1000463 if (key_equal(key, id->key)) {
464 sent = sign_and_send_pubkey(authctxt, id);
465 break;
466 }
467 }
468done:
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000469 if (key != NULL)
470 key_free(key);
471 xfree(pkalg);
472 xfree(pkblob);
473
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000474 /* try another method if we did not send a packet */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000475 if (sent == 0)
476 userauth(authctxt, NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100477}
478
Darren Tucker0efd1552003-08-26 11:49:55 +1000479#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100480int
Darren Tucker0efd1552003-08-26 11:49:55 +1000481userauth_gssapi(Authctxt *authctxt)
482{
483 Gssctxt *gssctxt = NULL;
Darren Tucker56afe142003-11-03 20:06:14 +1100484 static gss_OID_set gss_supported = NULL;
Damien Millereccb9de2005-06-17 12:59:34 +1000485 static u_int mech = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000486 OM_uint32 min;
487 int ok = 0;
488
489 /* Try one GSSAPI method at a time, rather than sending them all at
490 * once. */
491
Darren Tucker56afe142003-11-03 20:06:14 +1100492 if (gss_supported == NULL)
493 gss_indicate_mechs(&min, &gss_supported);
Darren Tucker0efd1552003-08-26 11:49:55 +1000494
495 /* Check to see if the mechanism is usable before we offer it */
Darren Tucker56afe142003-11-03 20:06:14 +1100496 while (mech < gss_supported->count && !ok) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000497 if (gssctxt)
498 ssh_gssapi_delete_ctx(&gssctxt);
499 ssh_gssapi_build_ctx(&gssctxt);
Darren Tucker56afe142003-11-03 20:06:14 +1100500 ssh_gssapi_set_oid(gssctxt, &gss_supported->elements[mech]);
Darren Tucker0efd1552003-08-26 11:49:55 +1000501
502 /* My DER encoding requires length<128 */
Darren Tucker56afe142003-11-03 20:06:14 +1100503 if (gss_supported->elements[mech].length < 128 &&
Darren Tucker0efd1552003-08-26 11:49:55 +1000504 !GSS_ERROR(ssh_gssapi_import_name(gssctxt,
505 authctxt->host))) {
506 ok = 1; /* Mechanism works */
507 } else {
508 mech++;
509 }
510 }
511
Damien Millereccb9de2005-06-17 12:59:34 +1000512 if (!ok)
513 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000514
515 authctxt->methoddata=(void *)gssctxt;
516
517 packet_start(SSH2_MSG_USERAUTH_REQUEST);
518 packet_put_cstring(authctxt->server_user);
519 packet_put_cstring(authctxt->service);
520 packet_put_cstring(authctxt->method->name);
521
522 packet_put_int(1);
523
Darren Tucker655a5e02003-11-03 20:09:03 +1100524 packet_put_int((gss_supported->elements[mech].length) + 2);
525 packet_put_char(SSH_GSS_OIDTYPE);
526 packet_put_char(gss_supported->elements[mech].length);
527 packet_put_raw(gss_supported->elements[mech].elements,
528 gss_supported->elements[mech].length);
Darren Tucker0efd1552003-08-26 11:49:55 +1000529
530 packet_send();
531
532 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
533 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
534 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
535 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
536
537 mech++; /* Move along to next candidate */
538
539 return 1;
540}
541
Damien Miller91c6aa42003-11-17 21:20:18 +1100542static OM_uint32
543process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
544{
545 Authctxt *authctxt = ctxt;
546 Gssctxt *gssctxt = authctxt->methoddata;
547 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
Damien Miller0425d402003-11-17 22:18:21 +1100548 gss_buffer_desc gssbuf, mic;
549 OM_uint32 status, ms, flags;
550 Buffer b;
Damien Miller787b2ec2003-11-21 23:56:47 +1100551
Damien Miller91c6aa42003-11-17 21:20:18 +1100552 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0425d402003-11-17 22:18:21 +1100553 recv_tok, &send_tok, &flags);
Damien Miller91c6aa42003-11-17 21:20:18 +1100554
555 if (send_tok.length > 0) {
556 if (GSS_ERROR(status))
557 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
558 else
559 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
Damien Miller787b2ec2003-11-21 23:56:47 +1100560
Damien Miller91c6aa42003-11-17 21:20:18 +1100561 packet_put_string(send_tok.value, send_tok.length);
562 packet_send();
563 gss_release_buffer(&ms, &send_tok);
564 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100565
Damien Miller91c6aa42003-11-17 21:20:18 +1100566 if (status == GSS_S_COMPLETE) {
Damien Miller0425d402003-11-17 22:18:21 +1100567 /* send either complete or MIC, depending on mechanism */
568 if (!(flags & GSS_C_INTEG_FLAG)) {
569 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
570 packet_send();
571 } else {
572 ssh_gssapi_buildmic(&b, authctxt->server_user,
573 authctxt->service, "gssapi-with-mic");
574
575 gssbuf.value = buffer_ptr(&b);
576 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100577
Damien Miller0425d402003-11-17 22:18:21 +1100578 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100579
Damien Miller0425d402003-11-17 22:18:21 +1100580 if (!GSS_ERROR(status)) {
581 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
582 packet_put_string(mic.value, mic.length);
Damien Miller787b2ec2003-11-21 23:56:47 +1100583
Damien Miller0425d402003-11-17 22:18:21 +1100584 packet_send();
585 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100586
Damien Miller0425d402003-11-17 22:18:21 +1100587 buffer_free(&b);
588 gss_release_buffer(&ms, &mic);
Damien Miller787b2ec2003-11-21 23:56:47 +1100589 }
Damien Miller91c6aa42003-11-17 21:20:18 +1100590 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100591
Damien Miller91c6aa42003-11-17 21:20:18 +1100592 return status;
593}
594
Darren Tucker0efd1552003-08-26 11:49:55 +1000595void
596input_gssapi_response(int type, u_int32_t plen, void *ctxt)
597{
598 Authctxt *authctxt = ctxt;
599 Gssctxt *gssctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000600 int oidlen;
601 char *oidv;
Darren Tucker0efd1552003-08-26 11:49:55 +1000602
603 if (authctxt == NULL)
604 fatal("input_gssapi_response: no authentication context");
605 gssctxt = authctxt->methoddata;
606
607 /* Setup our OID */
608 oidv = packet_get_string(&oidlen);
609
Darren Tucker655a5e02003-11-03 20:09:03 +1100610 if (oidlen <= 2 ||
611 oidv[0] != SSH_GSS_OIDTYPE ||
612 oidv[1] != oidlen - 2) {
Damien Miller91c6aa42003-11-17 21:20:18 +1100613 xfree(oidv);
Darren Tucker655a5e02003-11-03 20:09:03 +1100614 debug("Badly encoded mechanism OID received");
615 userauth(authctxt, NULL);
Darren Tucker655a5e02003-11-03 20:09:03 +1100616 return;
Darren Tucker0efd1552003-08-26 11:49:55 +1000617 }
618
Darren Tucker655a5e02003-11-03 20:09:03 +1100619 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
620 fatal("Server returned different OID than expected");
621
Darren Tucker0efd1552003-08-26 11:49:55 +1000622 packet_check_eom();
623
624 xfree(oidv);
625
Damien Miller91c6aa42003-11-17 21:20:18 +1100626 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000627 /* Start again with next method on list */
628 debug("Trying to start again");
629 userauth(authctxt, NULL);
630 return;
631 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000632}
633
634void
635input_gssapi_token(int type, u_int32_t plen, void *ctxt)
636{
637 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000638 gss_buffer_desc recv_tok;
Damien Miller91c6aa42003-11-17 21:20:18 +1100639 OM_uint32 status;
Darren Tucker0efd1552003-08-26 11:49:55 +1000640 u_int slen;
641
642 if (authctxt == NULL)
643 fatal("input_gssapi_response: no authentication context");
Darren Tucker0efd1552003-08-26 11:49:55 +1000644
645 recv_tok.value = packet_get_string(&slen);
646 recv_tok.length = slen; /* safe typecast */
647
648 packet_check_eom();
649
Damien Miller91c6aa42003-11-17 21:20:18 +1100650 status = process_gssapi_token(ctxt, &recv_tok);
Darren Tucker0efd1552003-08-26 11:49:55 +1000651
652 xfree(recv_tok.value);
653
654 if (GSS_ERROR(status)) {
Darren Tucker0efd1552003-08-26 11:49:55 +1000655 /* Start again with the next method in the list */
656 userauth(authctxt, NULL);
657 return;
658 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000659}
660
661void
662input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
663{
664 Authctxt *authctxt = ctxt;
665 Gssctxt *gssctxt;
666 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
667 gss_buffer_desc recv_tok;
668 OM_uint32 status, ms;
Darren Tucker600ad8d2003-08-26 12:10:48 +1000669 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000670
671 if (authctxt == NULL)
672 fatal("input_gssapi_response: no authentication context");
673 gssctxt = authctxt->methoddata;
674
Darren Tucker600ad8d2003-08-26 12:10:48 +1000675 recv_tok.value = packet_get_string(&len);
676 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000677
678 packet_check_eom();
679
680 /* Stick it into GSSAPI and see what it says */
681 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
Damien Miller0dc1bef2005-07-17 17:22:45 +1000682 &recv_tok, &send_tok, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000683
684 xfree(recv_tok.value);
685 gss_release_buffer(&ms, &send_tok);
686
687 /* Server will be returning a failed packet after this one */
688}
689
690void
691input_gssapi_error(int type, u_int32_t plen, void *ctxt)
692{
693 OM_uint32 maj, min;
694 char *msg;
695 char *lang;
696
697 maj=packet_get_int();
698 min=packet_get_int();
699 msg=packet_get_string(NULL);
700 lang=packet_get_string(NULL);
701
702 packet_check_eom();
703
704 debug("Server GSSAPI Error:\n%s\n", msg);
705 xfree(msg);
706 xfree(lang);
707}
708#endif /* GSSAPI */
709
Damien Millereba71ba2000-04-29 23:57:08 +1000710int
Damien Miller874d77b2000-10-14 16:23:11 +1100711userauth_none(Authctxt *authctxt)
712{
713 /* initial userauth request */
714 packet_start(SSH2_MSG_USERAUTH_REQUEST);
715 packet_put_cstring(authctxt->server_user);
716 packet_put_cstring(authctxt->service);
717 packet_put_cstring(authctxt->method->name);
718 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100719 return 1;
720}
721
722int
Damien Miller62cee002000-09-23 17:15:56 +1100723userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000724{
Damien Millere247cc42000-05-07 12:03:14 +1000725 static int attempt = 0;
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000726 char prompt[150];
Damien Millereba71ba2000-04-29 23:57:08 +1000727 char *password;
728
Damien Millerd3a18572000-06-07 19:55:44 +1000729 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000730 return 0;
731
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000732 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000733 error("Permission denied, please try again.");
734
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000735 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100736 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000737 password = read_passphrase(prompt, 0);
738 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100739 packet_put_cstring(authctxt->server_user);
740 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100741 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000742 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000743 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000744 memset(password, 0, strlen(password));
745 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100746 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000747 packet_send();
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000748
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000749 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000750 &input_userauth_passwd_changereq);
751
Damien Millereba71ba2000-04-29 23:57:08 +1000752 return 1;
753}
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000754/*
755 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
756 */
757void
Tim Ricec8549622002-03-31 12:49:38 -0800758input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000759{
760 Authctxt *authctxt = ctxt;
761 char *info, *lang, *password = NULL, *retype = NULL;
762 char prompt[150];
763
764 debug2("input_userauth_passwd_changereq");
765
766 if (authctxt == NULL)
767 fatal("input_userauth_passwd_changereq: "
768 "no authentication context");
769
770 info = packet_get_string(NULL);
771 lang = packet_get_string(NULL);
772 if (strlen(info) > 0)
Damien Miller996acd22003-04-09 20:59:48 +1000773 logit("%s", info);
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000774 xfree(info);
775 xfree(lang);
776 packet_start(SSH2_MSG_USERAUTH_REQUEST);
777 packet_put_cstring(authctxt->server_user);
778 packet_put_cstring(authctxt->service);
779 packet_put_cstring(authctxt->method->name);
780 packet_put_char(1); /* additional info */
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000781 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000782 "Enter %.30s@%.128s's old password: ",
783 authctxt->server_user, authctxt->host);
784 password = read_passphrase(prompt, 0);
785 packet_put_cstring(password);
786 memset(password, 0, strlen(password));
787 xfree(password);
788 password = NULL;
789 while (password == NULL) {
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000790 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000791 "Enter %.30s@%.128s's new password: ",
792 authctxt->server_user, authctxt->host);
793 password = read_passphrase(prompt, RP_ALLOW_EOF);
794 if (password == NULL) {
795 /* bail out */
796 return;
797 }
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000798 snprintf(prompt, sizeof(prompt),
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000799 "Retype %.30s@%.128s's new password: ",
800 authctxt->server_user, authctxt->host);
801 retype = read_passphrase(prompt, 0);
802 if (strcmp(password, retype) != 0) {
803 memset(password, 0, strlen(password));
804 xfree(password);
Damien Miller996acd22003-04-09 20:59:48 +1000805 logit("Mismatch; try again, EOF to quit.");
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000806 password = NULL;
807 }
808 memset(retype, 0, strlen(retype));
809 xfree(retype);
810 }
811 packet_put_cstring(password);
812 memset(password, 0, strlen(password));
813 xfree(password);
814 packet_add_padding(64);
815 packet_send();
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000816
817 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
Ben Lindstrom38a69e62002-03-27 17:28:46 +0000818 &input_userauth_passwd_changereq);
819}
Damien Millereba71ba2000-04-29 23:57:08 +1000820
Ben Lindstrombba81212001-06-25 05:01:22 +0000821static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000822identity_sign(Identity *id, u_char **sigp, u_int *lenp,
823 u_char *data, u_int datalen)
824{
825 Key *prv;
826 int ret;
827
828 /* the agent supports this key */
829 if (id->ac)
830 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
831 data, datalen));
832 /*
833 * we have already loaded the private key or
834 * the private key is stored in external hardware
835 */
836 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
837 return (key_sign(id->key, sigp, lenp, data, datalen));
838 /* load the private key from the file */
839 if ((prv = load_identity_file(id->filename)) == NULL)
840 return (-1);
841 ret = key_sign(prv, sigp, lenp, data, datalen);
842 key_free(prv);
843 return (ret);
844}
845
846static int
847sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
Damien Millereba71ba2000-04-29 23:57:08 +1000848{
849 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000850 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000851 u_int bloblen, slen;
Darren Tucker502d3842003-06-28 12:38:01 +1000852 u_int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000853 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100854 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000855
Ben Lindstromd121f612000-12-03 17:00:47 +0000856 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000857
Damien Miller280ecfb2003-05-14 13:46:00 +1000858 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100859 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000860 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100861 return 0;
862 }
Damien Millereba71ba2000-04-29 23:57:08 +1000863 /* data to be signed */
864 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100865 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000866 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000867 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100868 } else {
869 buffer_put_string(&b, session_id2, session_id2_len);
870 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000871 }
Damien Millereba71ba2000-04-29 23:57:08 +1000872 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100873 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000874 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000875 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000876 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100877 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000878 if (datafellows & SSH_BUG_PKAUTH) {
879 buffer_put_char(&b, have_sig);
880 } else {
881 buffer_put_cstring(&b, authctxt->method->name);
882 buffer_put_char(&b, have_sig);
Damien Miller280ecfb2003-05-14 13:46:00 +1000883 buffer_put_cstring(&b, key_ssh_name(id->key));
Ben Lindstromd121f612000-12-03 17:00:47 +0000884 }
Damien Millereba71ba2000-04-29 23:57:08 +1000885 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000886
887 /* generate signature */
Damien Miller280ecfb2003-05-14 13:46:00 +1000888 ret = identity_sign(id, &signature, &slen,
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000889 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000890 if (ret == -1) {
891 xfree(blob);
892 buffer_free(&b);
893 return 0;
894 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100895#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000896 buffer_dump(&b);
897#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000898 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000899 buffer_clear(&b);
900 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000901 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000902 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100903 buffer_put_cstring(&b, authctxt->server_user);
904 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100905 buffer_put_cstring(&b, authctxt->method->name);
906 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000907 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000908 buffer_put_cstring(&b, key_ssh_name(id->key));
Damien Miller30c3d422000-05-09 11:02:59 +1000909 buffer_put_string(&b, blob, bloblen);
910 }
911 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000912
Damien Millereba71ba2000-04-29 23:57:08 +1000913 /* append signature */
914 buffer_put_string(&b, signature, slen);
915 xfree(signature);
916
917 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000918 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100919 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000920 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000921
922 /* put remaining data from buffer into packet */
923 packet_start(SSH2_MSG_USERAUTH_REQUEST);
924 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
925 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000926 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000927
928 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000929}
930
Ben Lindstrombba81212001-06-25 05:01:22 +0000931static int
Damien Miller280ecfb2003-05-14 13:46:00 +1000932send_pubkey_test(Authctxt *authctxt, Identity *id)
Damien Miller994cf142000-07-21 10:19:44 +1000933{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000934 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000935 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000936
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000937 debug3("send_pubkey_test");
938
Damien Miller280ecfb2003-05-14 13:46:00 +1000939 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000940 /* we cannot handle this key */
941 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000942 return 0;
943 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000944 /* register callback for USERAUTH_PK_OK message */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000945 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000946
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000947 packet_start(SSH2_MSG_USERAUTH_REQUEST);
948 packet_put_cstring(authctxt->server_user);
949 packet_put_cstring(authctxt->service);
950 packet_put_cstring(authctxt->method->name);
951 packet_put_char(have_sig);
952 if (!(datafellows & SSH_BUG_PKAUTH))
Damien Miller280ecfb2003-05-14 13:46:00 +1000953 packet_put_cstring(key_ssh_name(id->key));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000954 packet_put_string(blob, bloblen);
955 xfree(blob);
956 packet_send();
957 return 1;
958}
959
Ben Lindstrombba81212001-06-25 05:01:22 +0000960static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000961load_identity_file(char *filename)
962{
963 Key *private;
964 char prompt[300], *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000965 int quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000966 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000967
Ben Lindstrom329782e2001-03-10 17:08:59 +0000968 if (stat(filename, &st) < 0) {
969 debug3("no such identity: %s", filename);
970 return NULL;
971 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000972 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
973 if (private == NULL) {
974 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000975 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +1000976 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100977 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +1100978 for (i = 0; i < options.number_of_password_prompts; i++) {
979 passphrase = read_passphrase(prompt, 0);
980 if (strcmp(passphrase, "") != 0) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000981 private = key_load_private_type(KEY_UNSPEC, filename,
982 passphrase, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000983 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100984 } else {
985 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000986 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100987 }
988 memset(passphrase, 0, strlen(passphrase));
989 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000990 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +1100991 break;
992 debug2("bad passphrase given, try again...");
993 }
Damien Miller994cf142000-07-21 10:19:44 +1000994 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000995 return private;
996}
997
Damien Miller280ecfb2003-05-14 13:46:00 +1000998/*
999 * try keys in the following order:
1000 * 1. agent keys that are found in the config file
1001 * 2. other agent keys
1002 * 3. keys that are only listed in the config file
1003 */
1004static void
1005pubkey_prepare(Authctxt *authctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001006{
Damien Miller280ecfb2003-05-14 13:46:00 +10001007 Identity *id;
1008 Idlist agent, files, *preferred;
1009 Key *key;
1010 AuthenticationConnection *ac;
Damien Millerad833b32000-08-23 10:46:23 +10001011 char *comment;
Damien Miller280ecfb2003-05-14 13:46:00 +10001012 int i, found;
Damien Millerad833b32000-08-23 10:46:23 +10001013
Damien Miller280ecfb2003-05-14 13:46:00 +10001014 TAILQ_INIT(&agent); /* keys from the agent */
1015 TAILQ_INIT(&files); /* keys from the config file */
1016 preferred = &authctxt->keys;
1017 TAILQ_INIT(preferred); /* preferred order of keys */
1018
1019 /* list of keys stored in the filesystem */
1020 for (i = 0; i < options.num_identity_files; i++) {
1021 key = options.identity_keys[i];
1022 if (key && key->type == KEY_RSA1)
1023 continue;
1024 options.identity_keys[i] = NULL;
1025 id = xmalloc(sizeof(*id));
1026 memset(id, 0, sizeof(*id));
1027 id->key = key;
1028 id->filename = xstrdup(options.identity_files[i]);
1029 TAILQ_INSERT_TAIL(&files, id, next);
Damien Millerad833b32000-08-23 10:46:23 +10001030 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001031 /* list of keys supported by the agent */
1032 if ((ac = ssh_get_authentication_connection())) {
1033 for (key = ssh_get_first_identity(ac, &comment, 2);
1034 key != NULL;
1035 key = ssh_get_next_identity(ac, &comment, 2)) {
1036 found = 0;
1037 TAILQ_FOREACH(id, &files, next) {
Damien Millera8e06ce2003-11-21 23:48:55 +11001038 /* agent keys from the config file are preferred */
Damien Miller280ecfb2003-05-14 13:46:00 +10001039 if (key_equal(key, id->key)) {
1040 key_free(key);
1041 xfree(comment);
1042 TAILQ_REMOVE(&files, id, next);
1043 TAILQ_INSERT_TAIL(preferred, id, next);
1044 id->ac = ac;
1045 found = 1;
1046 break;
1047 }
1048 }
Damien Millerbd394c32004-03-08 23:12:36 +11001049 if (!found && !options.identities_only) {
Damien Miller280ecfb2003-05-14 13:46:00 +10001050 id = xmalloc(sizeof(*id));
1051 memset(id, 0, sizeof(*id));
1052 id->key = key;
1053 id->filename = comment;
1054 id->ac = ac;
1055 TAILQ_INSERT_TAIL(&agent, id, next);
1056 }
1057 }
1058 /* append remaining agent keys */
1059 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1060 TAILQ_REMOVE(&agent, id, next);
1061 TAILQ_INSERT_TAIL(preferred, id, next);
1062 }
1063 authctxt->agent = ac;
Damien Miller62cee002000-09-23 17:15:56 +11001064 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001065 /* append remaining keys from the config file */
1066 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1067 TAILQ_REMOVE(&files, id, next);
1068 TAILQ_INSERT_TAIL(preferred, id, next);
1069 }
1070 TAILQ_FOREACH(id, preferred, next) {
1071 debug2("key: %s (%p)", id->filename, id->key);
1072 }
1073}
1074
1075static void
1076pubkey_cleanup(Authctxt *authctxt)
1077{
1078 Identity *id;
1079
1080 if (authctxt->agent != NULL)
1081 ssh_close_authentication_connection(authctxt->agent);
1082 for (id = TAILQ_FIRST(&authctxt->keys); id;
1083 id = TAILQ_FIRST(&authctxt->keys)) {
1084 TAILQ_REMOVE(&authctxt->keys, id, next);
1085 if (id->key)
1086 key_free(id->key);
1087 if (id->filename)
1088 xfree(id->filename);
1089 xfree(id);
1090 }
Damien Millereba71ba2000-04-29 23:57:08 +10001091}
1092
Damien Miller62cee002000-09-23 17:15:56 +11001093int
1094userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001095{
Damien Miller280ecfb2003-05-14 13:46:00 +10001096 Identity *id;
Damien Miller62cee002000-09-23 17:15:56 +11001097 int sent = 0;
Damien Millereba71ba2000-04-29 23:57:08 +10001098
Damien Miller280ecfb2003-05-14 13:46:00 +10001099 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1100 if (id->tried++)
1101 return (0);
Darren Tuckerd05b6012003-10-15 15:55:59 +10001102 /* move key to the end of the queue */
Damien Miller280ecfb2003-05-14 13:46:00 +10001103 TAILQ_REMOVE(&authctxt->keys, id, next);
1104 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1105 /*
1106 * send a test message if we have the public key. for
1107 * encrypted keys we cannot do this and have to load the
1108 * private key instead
1109 */
1110 if (id->key && id->key->type != KEY_RSA1) {
1111 debug("Offering public key: %s", id->filename);
1112 sent = send_pubkey_test(authctxt, id);
1113 } else if (id->key == NULL) {
1114 debug("Trying private key: %s", id->filename);
1115 id->key = load_identity_file(id->filename);
1116 if (id->key != NULL) {
1117 id->isprivate = 1;
1118 sent = sign_and_send_pubkey(authctxt, id);
1119 key_free(id->key);
1120 id->key = NULL;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001121 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001122 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001123 if (sent)
1124 return (sent);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001125 }
Damien Miller280ecfb2003-05-14 13:46:00 +10001126 return (0);
Damien Miller62cee002000-09-23 17:15:56 +11001127}
Damien Millereba71ba2000-04-29 23:57:08 +10001128
Damien Miller874d77b2000-10-14 16:23:11 +11001129/*
1130 * Send userauth request message specifying keyboard-interactive method.
1131 */
1132int
1133userauth_kbdint(Authctxt *authctxt)
1134{
1135 static int attempt = 0;
1136
1137 if (attempt++ >= options.number_of_password_prompts)
1138 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +00001139 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1140 if (attempt > 1 && !authctxt->info_req_seen) {
1141 debug3("userauth_kbdint: disable: no info_req_seen");
1142 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1143 return 0;
1144 }
Damien Miller874d77b2000-10-14 16:23:11 +11001145
1146 debug2("userauth_kbdint");
1147 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1148 packet_put_cstring(authctxt->server_user);
1149 packet_put_cstring(authctxt->service);
1150 packet_put_cstring(authctxt->method->name);
1151 packet_put_cstring(""); /* lang */
1152 packet_put_cstring(options.kbd_interactive_devices ?
1153 options.kbd_interactive_devices : "");
1154 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001155
1156 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1157 return 1;
1158}
1159
1160/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001161 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001162 */
1163void
Damien Miller630d6f42002-01-22 23:17:30 +11001164input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +11001165{
1166 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001167 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001168 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001169 int echo = 0;
1170
1171 debug2("input_userauth_info_req");
1172
1173 if (authctxt == NULL)
1174 fatal("input_userauth_info_req: no authentication context");
1175
Ben Lindstrom7d199962001-09-12 18:29:00 +00001176 authctxt->info_req_seen = 1;
1177
Damien Miller874d77b2000-10-14 16:23:11 +11001178 name = packet_get_string(NULL);
1179 inst = packet_get_string(NULL);
1180 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001181 if (strlen(name) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001182 logit("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +11001183 if (strlen(inst) > 0)
Damien Miller996acd22003-04-09 20:59:48 +10001184 logit("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001185 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001186 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001187 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001188
1189 num_prompts = packet_get_int();
1190 /*
1191 * Begin to build info response packet based on prompts requested.
1192 * We commit to providing the correct number of responses, so if
1193 * further on we run into a problem that prevents this, we have to
1194 * be sure and clean this up and send a correct error response.
1195 */
1196 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1197 packet_put_int(num_prompts);
1198
Ben Lindstrom551ea372001-06-05 18:56:16 +00001199 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +11001200 for (i = 0; i < num_prompts; i++) {
1201 prompt = packet_get_string(NULL);
1202 echo = packet_get_char();
1203
Ben Lindstrom949974b2001-06-25 05:20:31 +00001204 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +11001205
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001206 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001207 memset(response, 0, strlen(response));
1208 xfree(response);
1209 xfree(prompt);
1210 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001211 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +11001212
Damien Miller9f643902001-11-12 11:02:52 +11001213 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001214 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001215}
Damien Miller62cee002000-09-23 17:15:56 +11001216
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001217static int
Ben Lindstrom5c385522002-06-23 21:23:20 +00001218ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001219 u_char *data, u_int datalen)
1220{
1221 Buffer b;
Ben Lindstrom5206b952002-06-06 19:59:29 +00001222 struct stat st;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001223 pid_t pid;
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001224 int to[2], from[2], status, version = 2;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001225
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001226 debug2("ssh_keysign called");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001227
Ben Lindstrom5206b952002-06-06 19:59:29 +00001228 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1229 error("ssh_keysign: no installed: %s", strerror(errno));
1230 return -1;
1231 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001232 if (fflush(stdout) != 0)
1233 error("ssh_keysign: fflush: %s", strerror(errno));
1234 if (pipe(to) < 0) {
1235 error("ssh_keysign: pipe: %s", strerror(errno));
1236 return -1;
1237 }
1238 if (pipe(from) < 0) {
1239 error("ssh_keysign: pipe: %s", strerror(errno));
1240 return -1;
1241 }
1242 if ((pid = fork()) < 0) {
1243 error("ssh_keysign: fork: %s", strerror(errno));
1244 return -1;
1245 }
1246 if (pid == 0) {
1247 seteuid(getuid());
1248 setuid(getuid());
1249 close(from[0]);
1250 if (dup2(from[1], STDOUT_FILENO) < 0)
1251 fatal("ssh_keysign: dup2: %s", strerror(errno));
1252 close(to[1]);
1253 if (dup2(to[0], STDIN_FILENO) < 0)
1254 fatal("ssh_keysign: dup2: %s", strerror(errno));
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001255 close(from[1]);
1256 close(to[0]);
Ben Lindstrom4887da22002-06-06 20:05:57 +00001257 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001258 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1259 strerror(errno));
1260 }
1261 close(from[1]);
1262 close(to[0]);
1263
1264 buffer_init(&b);
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001265 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001266 buffer_put_string(&b, data, datalen);
Damien Miller51bf11f2003-11-17 21:20:47 +11001267 if (ssh_msg_send(to[1], version, &b) == -1)
1268 fatal("ssh_keysign: couldn't send request");
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001269
Damien Miller901119b2002-10-04 11:10:04 +10001270 if (ssh_msg_recv(from[0], &b) < 0) {
Ben Lindstrom5206b952002-06-06 19:59:29 +00001271 error("ssh_keysign: no reply");
Damien Millerfb1310e2004-01-21 11:02:50 +11001272 buffer_free(&b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001273 return -1;
1274 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001275 close(from[0]);
1276 close(to[1]);
1277
Ben Lindstromcec2ea82002-06-06 20:51:04 +00001278 while (waitpid(pid, &status, 0) < 0)
1279 if (errno != EINTR)
1280 break;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001281
Ben Lindstrom5206b952002-06-06 19:59:29 +00001282 if (buffer_get_char(&b) != version) {
1283 error("ssh_keysign: bad version");
Damien Millerfb1310e2004-01-21 11:02:50 +11001284 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001285 return -1;
1286 }
1287 *sigp = buffer_get_string(&b, lenp);
Damien Millerfb1310e2004-01-21 11:02:50 +11001288 buffer_free(&b);
Ben Lindstrom5206b952002-06-06 19:59:29 +00001289
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001290 return 0;
1291}
1292
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001293int
1294userauth_hostbased(Authctxt *authctxt)
1295{
1296 Key *private = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001297 Sensitive *sensitive = authctxt->sensitive;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001298 Buffer b;
1299 u_char *signature, *blob;
1300 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +00001301 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001302 u_int blen, slen;
Ben Lindstrom2bffd6f2001-04-19 20:35:40 +00001303 int ok, i, len, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001304
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001305 /* check for a useful key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001306 for (i = 0; i < sensitive->nkeys; i++) {
1307 private = sensitive->keys[i];
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001308 if (private && private->type != KEY_RSA1) {
1309 found = 1;
1310 /* we take and free the key */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001311 sensitive->keys[i] = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001312 break;
1313 }
1314 }
1315 if (!found) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001316 debug("No more client hostkeys for hostbased authentication.");
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001317 return 0;
1318 }
1319 if (key_to_blob(private, &blob, &blen) == 0) {
1320 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001321 return 0;
1322 }
Damien Miller91c18472001-11-12 11:02:03 +11001323 /* figure out a name for the client host */
1324 p = get_local_name(packet_get_connection_in());
1325 if (p == NULL) {
1326 error("userauth_hostbased: cannot get local ipaddr/name");
1327 key_free(private);
1328 return 0;
1329 }
1330 len = strlen(p) + 2;
1331 chost = xmalloc(len);
1332 strlcpy(chost, p, len);
1333 strlcat(chost, ".", len);
1334 debug2("userauth_hostbased: chost %s", chost);
Damien Miller00111382003-03-10 11:21:17 +11001335 xfree(p);
Damien Miller91c18472001-11-12 11:02:03 +11001336
Ben Lindstrom671388f2001-04-19 20:40:45 +00001337 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1338 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001339 pkalg = xstrdup(key_ssh_name(private));
1340 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001341 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +00001342 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001343 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1344 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +00001345 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001346 buffer_put_cstring(&b, authctxt->method->name);
1347 buffer_put_cstring(&b, pkalg);
1348 buffer_put_string(&b, blob, blen);
1349 buffer_put_cstring(&b, chost);
1350 buffer_put_cstring(&b, authctxt->local_user);
1351#ifdef DEBUG_PK
1352 buffer_dump(&b);
1353#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001354 if (sensitive->external_keysign)
1355 ok = ssh_keysign(private, &signature, &slen,
1356 buffer_ptr(&b), buffer_len(&b));
1357 else
1358 ok = key_sign(private, &signature, &slen,
1359 buffer_ptr(&b), buffer_len(&b));
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001360 key_free(private);
1361 buffer_free(&b);
1362 if (ok != 0) {
1363 error("key_sign failed");
1364 xfree(chost);
1365 xfree(pkalg);
1366 return 0;
1367 }
1368 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1369 packet_put_cstring(authctxt->server_user);
1370 packet_put_cstring(authctxt->service);
1371 packet_put_cstring(authctxt->method->name);
1372 packet_put_cstring(pkalg);
1373 packet_put_string(blob, blen);
1374 packet_put_cstring(chost);
1375 packet_put_cstring(authctxt->local_user);
1376 packet_put_string(signature, slen);
1377 memset(signature, 's', slen);
1378 xfree(signature);
1379 xfree(chost);
1380 xfree(pkalg);
1381
1382 packet_send();
1383 return 1;
1384}
1385
Damien Miller62cee002000-09-23 17:15:56 +11001386/* find auth method */
1387
Damien Miller62cee002000-09-23 17:15:56 +11001388/*
1389 * given auth method name, if configurable options permit this method fill
1390 * in auth_ident field and return true, otherwise return false.
1391 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001392static int
Damien Miller62cee002000-09-23 17:15:56 +11001393authmethod_is_enabled(Authmethod *method)
1394{
1395 if (method == NULL)
1396 return 0;
1397 /* return false if options indicate this method is disabled */
1398 if (method->enabled == NULL || *method->enabled == 0)
1399 return 0;
1400 /* return false if batch mode is enabled but method needs interactive mode */
1401 if (method->batch_flag != NULL && *method->batch_flag != 0)
1402 return 0;
1403 return 1;
1404}
1405
Ben Lindstrombba81212001-06-25 05:01:22 +00001406static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001407authmethod_lookup(const char *name)
1408{
1409 Authmethod *method = NULL;
1410 if (name != NULL)
1411 for (method = authmethods; method->name != NULL; method++)
1412 if (strcmp(name, method->name) == 0)
1413 return method;
1414 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1415 return NULL;
1416}
1417
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001418/* XXX internal state */
1419static Authmethod *current = NULL;
1420static char *supported = NULL;
1421static char *preferred = NULL;
Ben Lindstrom5c385522002-06-23 21:23:20 +00001422
Damien Miller62cee002000-09-23 17:15:56 +11001423/*
1424 * Given the authentication method list sent by the server, return the
1425 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +00001426 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001427 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001428static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +11001429authmethod_get(char *authlist)
1430{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001431 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +00001432 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001433
Damien Miller62cee002000-09-23 17:15:56 +11001434 /* Use a suitable default if we're passed a nil list. */
1435 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001436 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001437
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001438 if (supported == NULL || strcmp(authlist, supported) != 0) {
1439 debug3("start over, passed a different list %s", authlist);
1440 if (supported != NULL)
1441 xfree(supported);
1442 supported = xstrdup(authlist);
1443 preferred = options.preferred_authentications;
1444 debug3("preferred %s", preferred);
1445 current = NULL;
1446 } else if (current != NULL && authmethod_is_enabled(current))
1447 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001448
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001449 for (;;) {
1450 if ((name = match_list(preferred, supported, &next)) == NULL) {
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001451 debug("No more authentication methods to try.");
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001452 current = NULL;
1453 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001454 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001455 preferred += next;
1456 debug3("authmethod_lookup %s", name);
1457 debug3("remaining preferred: %s", preferred);
1458 if ((current = authmethod_lookup(name)) != NULL &&
1459 authmethod_is_enabled(current)) {
1460 debug3("authmethod_is_enabled %s", name);
Ben Lindstrom1d568f92002-12-23 02:44:36 +00001461 debug("Next authentication method: %s", name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001462 return current;
1463 }
Damien Millereba71ba2000-04-29 23:57:08 +10001464 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001465}
Damien Miller62cee002000-09-23 17:15:56 +11001466
Ben Lindstrom79073822001-07-04 03:42:30 +00001467static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001468authmethods_get(void)
1469{
1470 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +11001471 Buffer b;
1472 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001473
Damien Miller0e3b8722002-01-22 23:26:38 +11001474 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001475 for (method = authmethods; method->name != NULL; method++) {
1476 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001477 if (buffer_len(&b) > 0)
1478 buffer_append(&b, ",", 1);
1479 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001480 }
Damien Miller62cee002000-09-23 17:15:56 +11001481 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001482 buffer_append(&b, "\0", 1);
1483 list = xstrdup(buffer_ptr(&b));
1484 buffer_free(&b);
1485 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001486}