blob: c5b5ee51550c262f40af6bb7aeeb6d9833001c74 [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"
Ben Lindstromc58ab022002-02-26 18:15:09 +000026RCSID("$OpenBSD: sshconnect2.c,v 1.97 2002/02/25 16:33:27 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100027
28#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100030#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100031#include "buffer.h"
32#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100033#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100034#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "cipher.h"
Damien Millereba71ba2000-04-29 23:57:08 +100036#include "kex.h"
37#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100038#include "sshconnect.h"
39#include "authfile.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000040#include "dh.h"
Damien Millerad833b32000-08-23 10:46:23 +100041#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042#include "log.h"
43#include "readconf.h"
44#include "readpass.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000045#include "match.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000046#include "dispatch.h"
Ben Lindstrom5eabda32001-04-12 23:34:34 +000047#include "canohost.h"
Damien Miller874d77b2000-10-14 16:23:11 +110048
Damien Millereba71ba2000-04-29 23:57:08 +100049/* import */
50extern char *client_version_string;
51extern char *server_version_string;
52extern Options options;
53
54/*
55 * SSH2 key exchange
56 */
57
Ben Lindstrom46c16222000-12-22 01:43:59 +000058u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100059int session_id2_len = 0;
60
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000061char *xxx_host;
62struct sockaddr *xxx_hostaddr;
63
Ben Lindstromf28f6342001-04-04 02:03:04 +000064Kex *xxx_kex = NULL;
65
Ben Lindstrombba81212001-06-25 05:01:22 +000066static int
Ben Lindstromd6481ea2001-06-25 04:37:41 +000067verify_host_key_callback(Key *hostkey)
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000068{
Ben Lindstromd6481ea2001-06-25 04:37:41 +000069 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
Damien Miller59d9fb92001-10-10 15:03:11 +100070 fatal("Host key verification failed.");
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000071 return 0;
72}
73
Damien Millereba71ba2000-04-29 23:57:08 +100074void
Damien Miller874d77b2000-10-14 16:23:11 +110075ssh_kex2(char *host, struct sockaddr *hostaddr)
76{
Damien Miller874d77b2000-10-14 16:23:11 +110077 Kex *kex;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000078
79 xxx_host = host;
80 xxx_hostaddr = hostaddr;
Damien Miller874d77b2000-10-14 16:23:11 +110081
Damien Millere39cacc2000-11-29 12:18:44 +110082 if (options.ciphers == (char *)-1) {
83 log("No valid ciphers for protocol version 2 given, using defaults.");
84 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110085 }
86 if (options.ciphers != NULL) {
87 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
88 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
89 }
Damien Millera0ff4662001-03-30 10:49:35 +100090 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
91 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
92 myproposal[PROPOSAL_ENC_ALGS_STOC] =
93 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
Damien Miller874d77b2000-10-14 16:23:11 +110094 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000095 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller874d77b2000-10-14 16:23:11 +110096 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib";
97 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000098 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller874d77b2000-10-14 16:23:11 +110099 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
100 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000101 if (options.macs != NULL) {
102 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
103 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
104 }
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000105 if (options.hostkeyalgorithms != NULL)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100106 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Ben Lindstrom982dbbc2001-04-17 18:11:36 +0000107 options.hostkeyalgorithms;
Damien Miller874d77b2000-10-14 16:23:11 +1100108
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000109 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +0000110 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000111 kex->client_version_string=client_version_string;
112 kex->server_version_string=server_version_string;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000113 kex->verify_host_key=&verify_host_key_callback;
Damien Miller874d77b2000-10-14 16:23:11 +1100114
Ben Lindstromf28f6342001-04-04 02:03:04 +0000115 xxx_kex = kex;
116
Ben Lindstrombe2cc432001-04-04 23:46:07 +0000117 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +1100118
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000119 session_id2 = kex->session_id;
120 session_id2_len = kex->session_id_len;
121
Damien Miller874d77b2000-10-14 16:23:11 +1100122#ifdef DEBUG_KEXDH
123 /* send 1st encrypted/maced/compressed message */
124 packet_start(SSH2_MSG_IGNORE);
125 packet_put_cstring("markus");
126 packet_send();
127 packet_write_wait();
128#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000129 debug("done: ssh_kex2.");
Damien Millereba71ba2000-04-29 23:57:08 +1000130}
Damien Millerb1715dc2000-05-30 13:44:51 +1000131
Damien Millereba71ba2000-04-29 23:57:08 +1000132/*
133 * Authenticate user
134 */
Damien Miller62cee002000-09-23 17:15:56 +1100135
136typedef struct Authctxt Authctxt;
137typedef struct Authmethod Authmethod;
138
139typedef int sign_cb_fn(
140 Authctxt *authctxt, Key *key,
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000141 u_char **sigp, u_int *lenp, u_char *data, u_int datalen);
Damien Miller62cee002000-09-23 17:15:56 +1100142
143struct Authctxt {
144 const char *server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000145 const char *local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100146 const char *host;
147 const char *service;
Damien Miller62cee002000-09-23 17:15:56 +1100148 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100149 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000150 char *authlist;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000151 /* pubkey */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000152 Key *last_key;
153 sign_cb_fn *last_key_sign;
154 int last_key_hint;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000155 AuthenticationConnection *agent;
156 /* hostbased */
157 Key **keys;
158 int nkeys;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000159 /* kbd-interactive */
160 int info_req_seen;
Damien Miller62cee002000-09-23 17:15:56 +1100161};
162struct Authmethod {
163 char *name; /* string to compare against server's list */
164 int (*userauth)(Authctxt *authctxt);
165 int *enabled; /* flag in option struct that enables method */
166 int *batch_flag; /* flag in option struct that disables method */
167};
168
Damien Miller630d6f42002-01-22 23:17:30 +1100169void input_userauth_success(int, u_int32_t, void *);
170void input_userauth_failure(int, u_int32_t, void *);
171void input_userauth_banner(int, u_int32_t, void *);
172void input_userauth_error(int, u_int32_t, void *);
173void input_userauth_info_req(int, u_int32_t, void *);
174void input_userauth_pk_ok(int, u_int32_t, void *);
Damien Miller874d77b2000-10-14 16:23:11 +1100175
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000176int userauth_none(Authctxt *);
177int userauth_pubkey(Authctxt *);
178int userauth_passwd(Authctxt *);
179int userauth_kbdint(Authctxt *);
180int userauth_hostbased(Authctxt *);
Damien Miller62cee002000-09-23 17:15:56 +1100181
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000182void userauth(Authctxt *, char *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000183
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static int sign_and_send_pubkey(Authctxt *, Key *, sign_cb_fn *);
185static void clear_auth_state(Authctxt *);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static Authmethod *authmethod_get(char *authlist);
188static Authmethod *authmethod_lookup(const char *name);
189static char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100190
191Authmethod authmethods[] = {
Ben Lindstrom1bfe2912001-06-05 19:37:25 +0000192 {"hostbased",
193 userauth_hostbased,
194 &options.hostbased_authentication,
195 NULL},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000196 {"publickey",
197 userauth_pubkey,
198 &options.pubkey_authentication,
199 NULL},
Damien Miller874d77b2000-10-14 16:23:11 +1100200 {"keyboard-interactive",
201 userauth_kbdint,
202 &options.kbd_interactive_authentication,
203 &options.batch_mode},
Ben Lindstrom45350e82001-08-06 20:57:11 +0000204 {"password",
205 userauth_passwd,
206 &options.password_authentication,
207 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100208 {"none",
209 userauth_none,
210 NULL,
211 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100212 {NULL, NULL, NULL, NULL}
213};
214
215void
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000216ssh_userauth2(const char *local_user, const char *server_user, char *host,
217 Key **keys, int nkeys)
Damien Miller62cee002000-09-23 17:15:56 +1100218{
219 Authctxt authctxt;
220 int type;
Damien Miller62cee002000-09-23 17:15:56 +1100221
Ben Lindstrom551ea372001-06-05 18:56:16 +0000222 if (options.challenge_response_authentication)
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000223 options.kbd_interactive_authentication = 1;
224
Damien Miller62cee002000-09-23 17:15:56 +1100225 debug("send SSH2_MSG_SERVICE_REQUEST");
226 packet_start(SSH2_MSG_SERVICE_REQUEST);
227 packet_put_cstring("ssh-userauth");
228 packet_send();
229 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100230 type = packet_read();
Damien Miller62cee002000-09-23 17:15:56 +1100231 if (type != SSH2_MSG_SERVICE_ACCEPT) {
232 fatal("denied SSH2_MSG_SERVICE_ACCEPT: %d", type);
233 }
234 if (packet_remaining() > 0) {
Damien Millerdff50992002-01-22 23:16:32 +1100235 char *reply = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100236 debug("service_accept: %s", reply);
237 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100238 } else {
239 debug("buggy server: service_accept w/o service");
240 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100241 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100242 debug("got SSH2_MSG_SERVICE_ACCEPT");
243
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000244 if (options.preferred_authentications == NULL)
245 options.preferred_authentications = authmethods_get();
246
Damien Miller62cee002000-09-23 17:15:56 +1100247 /* setup authentication context */
Ben Lindstrom7d199962001-09-12 18:29:00 +0000248 memset(&authctxt, 0, sizeof(authctxt));
Damien Miller62cee002000-09-23 17:15:56 +1100249 authctxt.agent = ssh_get_authentication_connection();
250 authctxt.server_user = server_user;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000251 authctxt.local_user = local_user;
Damien Miller62cee002000-09-23 17:15:56 +1100252 authctxt.host = host;
253 authctxt.service = "ssh-connection"; /* service name */
254 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100255 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000256 authctxt.authlist = NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000257 authctxt.keys = keys;
258 authctxt.nkeys = nkeys;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000259 authctxt.info_req_seen = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100260 if (authctxt.method == NULL)
261 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100262
263 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100264 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100265
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000266 dispatch_init(&input_userauth_error);
Damien Miller62cee002000-09-23 17:15:56 +1100267 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
268 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000269 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100270 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
271
272 if (authctxt.agent != NULL)
273 ssh_close_authentication_connection(authctxt.agent);
274
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000275 debug("ssh-userauth2 successful: method %s", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100276}
277void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000278userauth(Authctxt *authctxt, char *authlist)
279{
280 if (authlist == NULL) {
281 authlist = authctxt->authlist;
282 } else {
283 if (authctxt->authlist)
284 xfree(authctxt->authlist);
285 authctxt->authlist = authlist;
286 }
287 for (;;) {
288 Authmethod *method = authmethod_get(authlist);
289 if (method == NULL)
290 fatal("Permission denied (%s).", authlist);
291 authctxt->method = method;
292 if (method->userauth(authctxt) != 0) {
293 debug2("we sent a %s packet, wait for reply", method->name);
294 break;
295 } else {
296 debug2("we did not send a packet, disable method");
297 method->enabled = NULL;
298 }
299 }
300}
301void
Damien Miller630d6f42002-01-22 23:17:30 +1100302input_userauth_error(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100303{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000304 fatal("input_userauth_error: bad message during authentication: "
305 "type %d", type);
306}
307void
Damien Miller630d6f42002-01-22 23:17:30 +1100308input_userauth_banner(int type, u_int32_t seq, void *ctxt)
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000309{
310 char *msg, *lang;
311 debug3("input_userauth_banner");
312 msg = packet_get_string(NULL);
313 lang = packet_get_string(NULL);
314 fprintf(stderr, "%s", msg);
315 xfree(msg);
316 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100317}
318void
Damien Miller630d6f42002-01-22 23:17:30 +1100319input_userauth_success(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100320{
321 Authctxt *authctxt = ctxt;
322 if (authctxt == NULL)
323 fatal("input_userauth_success: no authentication context");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000324 if (authctxt->authlist)
325 xfree(authctxt->authlist);
326 clear_auth_state(authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100327 authctxt->success = 1; /* break out */
328}
329void
Damien Miller630d6f42002-01-22 23:17:30 +1100330input_userauth_failure(int type, u_int32_t seq, void *ctxt)
Damien Miller62cee002000-09-23 17:15:56 +1100331{
Damien Miller62cee002000-09-23 17:15:56 +1100332 Authctxt *authctxt = ctxt;
333 char *authlist = NULL;
334 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100335
336 if (authctxt == NULL)
337 fatal("input_userauth_failure: no authentication context");
338
Damien Miller874d77b2000-10-14 16:23:11 +1100339 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100340 partial = packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100341 packet_check_eom();
Damien Miller62cee002000-09-23 17:15:56 +1100342
343 if (partial != 0)
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000344 log("Authenticated with partial success.");
Damien Miller62cee002000-09-23 17:15:56 +1100345 debug("authentications that can continue: %s", authlist);
346
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000347 clear_auth_state(authctxt);
348 userauth(authctxt, authlist);
349}
350void
Damien Miller630d6f42002-01-22 23:17:30 +1100351input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000352{
353 Authctxt *authctxt = ctxt;
354 Key *key = NULL;
355 Buffer b;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000356 int pktype, sent = 0;
357 u_int alen, blen;
358 char *pkalg, *fp;
359 u_char *pkblob;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000360
361 if (authctxt == NULL)
362 fatal("input_userauth_pk_ok: no authentication context");
363 if (datafellows & SSH_BUG_PKOK) {
364 /* this is similar to SSH_BUG_PKAUTH */
365 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
366 pkblob = packet_get_string(&blen);
367 buffer_init(&b);
368 buffer_append(&b, pkblob, blen);
369 pkalg = buffer_get_string(&b, &alen);
370 buffer_free(&b);
371 } else {
372 pkalg = packet_get_string(&alen);
373 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000374 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100375 packet_check_eom();
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000376
377 debug("input_userauth_pk_ok: pkalg %s blen %d lastkey %p hint %d",
378 pkalg, blen, authctxt->last_key, authctxt->last_key_hint);
379
380 do {
381 if (authctxt->last_key == NULL ||
382 authctxt->last_key_sign == NULL) {
383 debug("no last key or no sign cb");
384 break;
385 }
Damien Miller68f45982002-02-05 12:23:32 +1100386 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000387 debug("unknown pkalg %s", pkalg);
388 break;
389 }
390 if ((key = key_from_blob(pkblob, blen)) == NULL) {
391 debug("no key from blob. pkalg %s", pkalg);
392 break;
393 }
Damien Miller68f45982002-02-05 12:23:32 +1100394 if (key->type != pktype) {
395 error("input_userauth_pk_ok: type mismatch "
396 "for decoded key (received %d, expected %d)",
397 key->type, pktype);
398 break;
399 }
Ben Lindstromcfccef92001-03-13 04:57:58 +0000400 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
401 debug2("input_userauth_pk_ok: fp %s", fp);
402 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000403 if (!key_equal(key, authctxt->last_key)) {
404 debug("key != last_key");
405 break;
406 }
407 sent = sign_and_send_pubkey(authctxt, key,
408 authctxt->last_key_sign);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000409 } while (0);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000410
411 if (key != NULL)
412 key_free(key);
413 xfree(pkalg);
414 xfree(pkblob);
415
416 /* unregister */
417 clear_auth_state(authctxt);
418 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, NULL);
419
420 /* try another method if we did not send a packet*/
421 if (sent == 0)
422 userauth(authctxt, NULL);
423
Damien Miller62cee002000-09-23 17:15:56 +1100424}
425
Damien Millereba71ba2000-04-29 23:57:08 +1000426int
Damien Miller874d77b2000-10-14 16:23:11 +1100427userauth_none(Authctxt *authctxt)
428{
429 /* initial userauth request */
430 packet_start(SSH2_MSG_USERAUTH_REQUEST);
431 packet_put_cstring(authctxt->server_user);
432 packet_put_cstring(authctxt->service);
433 packet_put_cstring(authctxt->method->name);
434 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100435 return 1;
436}
437
438int
Damien Miller62cee002000-09-23 17:15:56 +1100439userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000440{
Damien Millere247cc42000-05-07 12:03:14 +1000441 static int attempt = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000442 char prompt[80];
443 char *password;
444
Damien Millerd3a18572000-06-07 19:55:44 +1000445 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000446 return 0;
447
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000448 if (attempt != 1)
Damien Millerd3a18572000-06-07 19:55:44 +1000449 error("Permission denied, please try again.");
450
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000451 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100452 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000453 password = read_passphrase(prompt, 0);
454 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100455 packet_put_cstring(authctxt->server_user);
456 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100457 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000458 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000459 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000460 memset(password, 0, strlen(password));
461 xfree(password);
Damien Miller9f643902001-11-12 11:02:52 +1100462 packet_add_padding(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000463 packet_send();
Damien Millereba71ba2000-04-29 23:57:08 +1000464 return 1;
465}
466
Ben Lindstrom79073822001-07-04 03:42:30 +0000467static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000468clear_auth_state(Authctxt *authctxt)
469{
470 /* XXX clear authentication state */
471 if (authctxt->last_key != NULL && authctxt->last_key_hint == -1) {
472 debug3("clear_auth_state: key_free %p", authctxt->last_key);
473 key_free(authctxt->last_key);
474 }
475 authctxt->last_key = NULL;
476 authctxt->last_key_hint = -2;
477 authctxt->last_key_sign = NULL;
478}
479
Ben Lindstrombba81212001-06-25 05:01:22 +0000480static int
Damien Miller62cee002000-09-23 17:15:56 +1100481sign_and_send_pubkey(Authctxt *authctxt, Key *k, sign_cb_fn *sign_callback)
Damien Millereba71ba2000-04-29 23:57:08 +1000482{
483 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000484 u_char *blob, *signature;
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000485 u_int bloblen, slen;
Damien Miller6536c7d2000-06-22 21:32:31 +1000486 int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000487 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100488 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000489
Ben Lindstromd121f612000-12-03 17:00:47 +0000490 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000491
Damien Miller0bc1bd82000-11-13 22:57:25 +1100492 if (key_to_blob(k, &blob, &bloblen) == 0) {
493 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000494 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100495 return 0;
496 }
Damien Millereba71ba2000-04-29 23:57:08 +1000497 /* data to be signed */
498 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100499 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000500 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000501 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100502 } else {
503 buffer_put_string(&b, session_id2, session_id2_len);
504 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000505 }
Damien Millereba71ba2000-04-29 23:57:08 +1000506 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100507 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000508 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000509 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000510 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100511 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000512 if (datafellows & SSH_BUG_PKAUTH) {
513 buffer_put_char(&b, have_sig);
514 } else {
515 buffer_put_cstring(&b, authctxt->method->name);
516 buffer_put_char(&b, have_sig);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000517 buffer_put_cstring(&b, key_ssh_name(k));
Ben Lindstromd121f612000-12-03 17:00:47 +0000518 }
Damien Millereba71ba2000-04-29 23:57:08 +1000519 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000520
521 /* generate signature */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000522 ret = (*sign_callback)(authctxt, k, &signature, &slen,
523 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000524 if (ret == -1) {
525 xfree(blob);
526 buffer_free(&b);
527 return 0;
528 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100529#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000530 buffer_dump(&b);
531#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000532 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000533 buffer_clear(&b);
534 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000535 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000536 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100537 buffer_put_cstring(&b, authctxt->server_user);
538 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100539 buffer_put_cstring(&b, authctxt->method->name);
540 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000541 if (!(datafellows & SSH_BUG_PKAUTH))
Kevin Stevesef4eea92001-02-05 12:42:17 +0000542 buffer_put_cstring(&b, key_ssh_name(k));
Damien Miller30c3d422000-05-09 11:02:59 +1000543 buffer_put_string(&b, blob, bloblen);
544 }
545 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000546
Damien Millereba71ba2000-04-29 23:57:08 +1000547 /* append signature */
548 buffer_put_string(&b, signature, slen);
549 xfree(signature);
550
551 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000552 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100553 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000554 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000555
556 /* put remaining data from buffer into packet */
557 packet_start(SSH2_MSG_USERAUTH_REQUEST);
558 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
559 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000560 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000561
562 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000563}
564
Ben Lindstrombba81212001-06-25 05:01:22 +0000565static int
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000566send_pubkey_test(Authctxt *authctxt, Key *k, sign_cb_fn *sign_callback,
567 int hint)
Damien Miller994cf142000-07-21 10:19:44 +1000568{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000569 u_char *blob;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000570 u_int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000571
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000572 debug3("send_pubkey_test");
573
574 if (key_to_blob(k, &blob, &bloblen) == 0) {
575 /* we cannot handle this key */
576 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000577 return 0;
578 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000579 /* register callback for USERAUTH_PK_OK message */
580 authctxt->last_key_sign = sign_callback;
581 authctxt->last_key_hint = hint;
582 authctxt->last_key = k;
583 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000584
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000585 packet_start(SSH2_MSG_USERAUTH_REQUEST);
586 packet_put_cstring(authctxt->server_user);
587 packet_put_cstring(authctxt->service);
588 packet_put_cstring(authctxt->method->name);
589 packet_put_char(have_sig);
590 if (!(datafellows & SSH_BUG_PKAUTH))
591 packet_put_cstring(key_ssh_name(k));
592 packet_put_string(blob, bloblen);
593 xfree(blob);
594 packet_send();
595 return 1;
596}
597
Ben Lindstrombba81212001-06-25 05:01:22 +0000598static Key *
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000599load_identity_file(char *filename)
600{
601 Key *private;
602 char prompt[300], *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000603 int quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000604 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000605
Ben Lindstrom329782e2001-03-10 17:08:59 +0000606 if (stat(filename, &st) < 0) {
607 debug3("no such identity: %s", filename);
608 return NULL;
609 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000610 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
611 if (private == NULL) {
612 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000613 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +1000614 snprintf(prompt, sizeof prompt,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100615 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +1100616 for (i = 0; i < options.number_of_password_prompts; i++) {
617 passphrase = read_passphrase(prompt, 0);
618 if (strcmp(passphrase, "") != 0) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000619 private = key_load_private_type(KEY_UNSPEC, filename,
620 passphrase, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000621 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100622 } else {
623 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000624 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100625 }
626 memset(passphrase, 0, strlen(passphrase));
627 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000628 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +1100629 break;
630 debug2("bad passphrase given, try again...");
631 }
Damien Miller994cf142000-07-21 10:19:44 +1000632 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000633 return private;
634}
635
Ben Lindstrombba81212001-06-25 05:01:22 +0000636static int
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000637identity_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, u_int *lenp,
638 u_char *data, u_int datalen)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000639{
640 Key *private;
641 int idx, ret;
642
643 idx = authctxt->last_key_hint;
644 if (idx < 0)
645 return -1;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000646
647 /* private key is stored in external hardware */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100648 if (options.identity_keys[idx]->flags & KEY_FLAG_EXT)
Ben Lindstromc5b68002001-07-04 04:52:03 +0000649 return key_sign(options.identity_keys[idx], sigp, lenp, data, datalen);
650
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000651 private = load_identity_file(options.identity_files[idx]);
652 if (private == NULL)
653 return -1;
654 ret = key_sign(private, sigp, lenp, data, datalen);
655 key_free(private);
Damien Millerad833b32000-08-23 10:46:23 +1000656 return ret;
657}
658
Ben Lindstrombba81212001-06-25 05:01:22 +0000659static int
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000660agent_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, u_int *lenp,
661 u_char *data, u_int datalen)
Damien Millerad833b32000-08-23 10:46:23 +1000662{
Damien Miller62cee002000-09-23 17:15:56 +1100663 return ssh_agent_sign(authctxt->agent, key, sigp, lenp, data, datalen);
Damien Millerad833b32000-08-23 10:46:23 +1000664}
665
Ben Lindstrombba81212001-06-25 05:01:22 +0000666static int
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000667key_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, u_int *lenp,
668 u_char *data, u_int datalen)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000669{
Ben Lindstroma3700052001-04-05 23:26:32 +0000670 return key_sign(key, sigp, lenp, data, datalen);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000671}
672
Ben Lindstrombba81212001-06-25 05:01:22 +0000673static int
Damien Miller62cee002000-09-23 17:15:56 +1100674userauth_pubkey_agent(Authctxt *authctxt)
Damien Millerad833b32000-08-23 10:46:23 +1000675{
676 static int called = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100677 int ret = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000678 char *comment;
679 Key *k;
Damien Millerad833b32000-08-23 10:46:23 +1000680
681 if (called == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100682 if (ssh_get_num_identities(authctxt->agent, 2) == 0)
683 debug2("userauth_pubkey_agent: no keys at all");
Damien Miller62cee002000-09-23 17:15:56 +1100684 called = 1;
Damien Millerad833b32000-08-23 10:46:23 +1000685 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100686 k = ssh_get_next_identity(authctxt->agent, &comment, 2);
Damien Miller62cee002000-09-23 17:15:56 +1100687 if (k == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100688 debug2("userauth_pubkey_agent: no more keys");
689 } else {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000690 debug("userauth_pubkey_agent: testing agent key %s", comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100691 xfree(comment);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000692 ret = send_pubkey_test(authctxt, k, agent_sign_cb, -1);
693 if (ret == 0)
694 key_free(k);
Damien Miller62cee002000-09-23 17:15:56 +1100695 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100696 if (ret == 0)
697 debug2("userauth_pubkey_agent: no message sent");
Damien Millerad833b32000-08-23 10:46:23 +1000698 return ret;
Damien Millereba71ba2000-04-29 23:57:08 +1000699}
700
Damien Miller62cee002000-09-23 17:15:56 +1100701int
702userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000703{
Damien Miller62cee002000-09-23 17:15:56 +1100704 static int idx = 0;
705 int sent = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000706 Key *key;
707 char *filename;
Damien Millereba71ba2000-04-29 23:57:08 +1000708
Damien Miller0bc1bd82000-11-13 22:57:25 +1100709 if (authctxt->agent != NULL) {
710 do {
711 sent = userauth_pubkey_agent(authctxt);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000712 } while (!sent && authctxt->agent->howmany > 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100713 }
714 while (!sent && idx < options.num_identity_files) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000715 key = options.identity_keys[idx];
716 filename = options.identity_files[idx];
717 if (key == NULL) {
718 debug("try privkey: %s", filename);
719 key = load_identity_file(filename);
720 if (key != NULL) {
721 sent = sign_and_send_pubkey(authctxt, key,
722 key_sign_cb);
723 key_free(key);
724 }
725 } else if (key->type != KEY_RSA1) {
726 debug("try pubkey: %s", filename);
727 sent = send_pubkey_test(authctxt, key,
728 identity_sign_cb, idx);
729 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100730 idx++;
731 }
Damien Miller62cee002000-09-23 17:15:56 +1100732 return sent;
733}
Damien Millereba71ba2000-04-29 23:57:08 +1000734
Damien Miller874d77b2000-10-14 16:23:11 +1100735/*
736 * Send userauth request message specifying keyboard-interactive method.
737 */
738int
739userauth_kbdint(Authctxt *authctxt)
740{
741 static int attempt = 0;
742
743 if (attempt++ >= options.number_of_password_prompts)
744 return 0;
Ben Lindstrom7d199962001-09-12 18:29:00 +0000745 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
746 if (attempt > 1 && !authctxt->info_req_seen) {
747 debug3("userauth_kbdint: disable: no info_req_seen");
748 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
749 return 0;
750 }
Damien Miller874d77b2000-10-14 16:23:11 +1100751
752 debug2("userauth_kbdint");
753 packet_start(SSH2_MSG_USERAUTH_REQUEST);
754 packet_put_cstring(authctxt->server_user);
755 packet_put_cstring(authctxt->service);
756 packet_put_cstring(authctxt->method->name);
757 packet_put_cstring(""); /* lang */
758 packet_put_cstring(options.kbd_interactive_devices ?
759 options.kbd_interactive_devices : "");
760 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100761
762 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
763 return 1;
764}
765
766/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000767 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +1100768 */
769void
Damien Miller630d6f42002-01-22 23:17:30 +1100770input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
Damien Miller874d77b2000-10-14 16:23:11 +1100771{
772 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000773 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000774 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +1100775 int echo = 0;
776
777 debug2("input_userauth_info_req");
778
779 if (authctxt == NULL)
780 fatal("input_userauth_info_req: no authentication context");
781
Ben Lindstrom7d199962001-09-12 18:29:00 +0000782 authctxt->info_req_seen = 1;
783
Damien Miller874d77b2000-10-14 16:23:11 +1100784 name = packet_get_string(NULL);
785 inst = packet_get_string(NULL);
786 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +1100787 if (strlen(name) > 0)
Ben Lindstrom126c56a2001-06-25 05:22:53 +0000788 log("%s", name);
Damien Miller874d77b2000-10-14 16:23:11 +1100789 if (strlen(inst) > 0)
Ben Lindstrom126c56a2001-06-25 05:22:53 +0000790 log("%s", inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000791 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +1100792 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000793 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +1100794
795 num_prompts = packet_get_int();
796 /*
797 * Begin to build info response packet based on prompts requested.
798 * We commit to providing the correct number of responses, so if
799 * further on we run into a problem that prevents this, we have to
800 * be sure and clean this up and send a correct error response.
801 */
802 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
803 packet_put_int(num_prompts);
804
Ben Lindstrom551ea372001-06-05 18:56:16 +0000805 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
Damien Miller874d77b2000-10-14 16:23:11 +1100806 for (i = 0; i < num_prompts; i++) {
807 prompt = packet_get_string(NULL);
808 echo = packet_get_char();
809
Ben Lindstrom949974b2001-06-25 05:20:31 +0000810 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
Damien Miller874d77b2000-10-14 16:23:11 +1100811
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000812 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +1100813 memset(response, 0, strlen(response));
814 xfree(response);
815 xfree(prompt);
816 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100817 packet_check_eom(); /* done with parsing incoming message. */
Damien Miller874d77b2000-10-14 16:23:11 +1100818
Damien Miller9f643902001-11-12 11:02:52 +1100819 packet_add_padding(64);
Damien Miller874d77b2000-10-14 16:23:11 +1100820 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100821}
Damien Miller62cee002000-09-23 17:15:56 +1100822
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000823/*
824 * this will be move to an external program (ssh-keysign) ASAP. ssh-keysign
825 * will be setuid-root and the sbit can be removed from /usr/bin/ssh.
826 */
827int
828userauth_hostbased(Authctxt *authctxt)
829{
830 Key *private = NULL;
831 Buffer b;
832 u_char *signature, *blob;
833 char *chost, *pkalg, *p;
Ben Lindstrom671388f2001-04-19 20:40:45 +0000834 const char *service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000835 u_int blen, slen;
Ben Lindstrom2bffd6f2001-04-19 20:35:40 +0000836 int ok, i, len, found = 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000837
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000838 /* check for a useful key */
839 for (i = 0; i < authctxt->nkeys; i++) {
840 private = authctxt->keys[i];
841 if (private && private->type != KEY_RSA1) {
842 found = 1;
843 /* we take and free the key */
844 authctxt->keys[i] = NULL;
845 break;
846 }
847 }
848 if (!found) {
Damien Miller91c18472001-11-12 11:02:03 +1100849 debug("userauth_hostbased: no more client hostkeys");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000850 return 0;
851 }
852 if (key_to_blob(private, &blob, &blen) == 0) {
853 key_free(private);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000854 return 0;
855 }
Damien Miller91c18472001-11-12 11:02:03 +1100856 /* figure out a name for the client host */
857 p = get_local_name(packet_get_connection_in());
858 if (p == NULL) {
859 error("userauth_hostbased: cannot get local ipaddr/name");
860 key_free(private);
861 return 0;
862 }
863 len = strlen(p) + 2;
864 chost = xmalloc(len);
865 strlcpy(chost, p, len);
866 strlcat(chost, ".", len);
867 debug2("userauth_hostbased: chost %s", chost);
868
Ben Lindstrom671388f2001-04-19 20:40:45 +0000869 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
870 authctxt->service;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000871 pkalg = xstrdup(key_ssh_name(private));
872 buffer_init(&b);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000873 /* construct data */
Ben Lindstrom671388f2001-04-19 20:40:45 +0000874 buffer_put_string(&b, session_id2, session_id2_len);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000875 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
876 buffer_put_cstring(&b, authctxt->server_user);
Ben Lindstrom671388f2001-04-19 20:40:45 +0000877 buffer_put_cstring(&b, service);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000878 buffer_put_cstring(&b, authctxt->method->name);
879 buffer_put_cstring(&b, pkalg);
880 buffer_put_string(&b, blob, blen);
881 buffer_put_cstring(&b, chost);
882 buffer_put_cstring(&b, authctxt->local_user);
883#ifdef DEBUG_PK
884 buffer_dump(&b);
885#endif
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000886 ok = key_sign(private, &signature, &slen, buffer_ptr(&b), buffer_len(&b));
887 key_free(private);
888 buffer_free(&b);
889 if (ok != 0) {
890 error("key_sign failed");
891 xfree(chost);
892 xfree(pkalg);
893 return 0;
894 }
895 packet_start(SSH2_MSG_USERAUTH_REQUEST);
896 packet_put_cstring(authctxt->server_user);
897 packet_put_cstring(authctxt->service);
898 packet_put_cstring(authctxt->method->name);
899 packet_put_cstring(pkalg);
900 packet_put_string(blob, blen);
901 packet_put_cstring(chost);
902 packet_put_cstring(authctxt->local_user);
903 packet_put_string(signature, slen);
904 memset(signature, 's', slen);
905 xfree(signature);
906 xfree(chost);
907 xfree(pkalg);
908
909 packet_send();
910 return 1;
911}
912
Damien Miller62cee002000-09-23 17:15:56 +1100913/* find auth method */
914
Damien Miller62cee002000-09-23 17:15:56 +1100915/*
916 * given auth method name, if configurable options permit this method fill
917 * in auth_ident field and return true, otherwise return false.
918 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000919static int
Damien Miller62cee002000-09-23 17:15:56 +1100920authmethod_is_enabled(Authmethod *method)
921{
922 if (method == NULL)
923 return 0;
924 /* return false if options indicate this method is disabled */
925 if (method->enabled == NULL || *method->enabled == 0)
926 return 0;
927 /* return false if batch mode is enabled but method needs interactive mode */
928 if (method->batch_flag != NULL && *method->batch_flag != 0)
929 return 0;
930 return 1;
931}
932
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +1100934authmethod_lookup(const char *name)
935{
936 Authmethod *method = NULL;
937 if (name != NULL)
938 for (method = authmethods; method->name != NULL; method++)
939 if (strcmp(name, method->name) == 0)
940 return method;
941 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
942 return NULL;
943}
944
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000945/* XXX internal state */
946static Authmethod *current = NULL;
947static char *supported = NULL;
948static char *preferred = NULL;
Damien Miller62cee002000-09-23 17:15:56 +1100949/*
950 * Given the authentication method list sent by the server, return the
951 * next method we should try. If the server initially sends a nil list,
Ben Lindstroma3700052001-04-05 23:26:32 +0000952 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +0000953 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000954static Authmethod *
Damien Miller62cee002000-09-23 17:15:56 +1100955authmethod_get(char *authlist)
956{
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000957
958 char *name = NULL;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000959 u_int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000960
Damien Miller62cee002000-09-23 17:15:56 +1100961 /* Use a suitable default if we're passed a nil list. */
962 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000963 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +1100964
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000965 if (supported == NULL || strcmp(authlist, supported) != 0) {
966 debug3("start over, passed a different list %s", authlist);
967 if (supported != NULL)
968 xfree(supported);
969 supported = xstrdup(authlist);
970 preferred = options.preferred_authentications;
971 debug3("preferred %s", preferred);
972 current = NULL;
973 } else if (current != NULL && authmethod_is_enabled(current))
974 return current;
Damien Millereba71ba2000-04-29 23:57:08 +1000975
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000976 for (;;) {
977 if ((name = match_list(preferred, supported, &next)) == NULL) {
978 debug("no more auth methods to try");
979 current = NULL;
980 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100981 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000982 preferred += next;
983 debug3("authmethod_lookup %s", name);
984 debug3("remaining preferred: %s", preferred);
985 if ((current = authmethod_lookup(name)) != NULL &&
986 authmethod_is_enabled(current)) {
987 debug3("authmethod_is_enabled %s", name);
988 debug("next auth method to try is %s", name);
989 return current;
990 }
Damien Millereba71ba2000-04-29 23:57:08 +1000991 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000992}
Damien Miller62cee002000-09-23 17:15:56 +1100993
Ben Lindstrom79073822001-07-04 03:42:30 +0000994static char *
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000995authmethods_get(void)
996{
997 Authmethod *method = NULL;
Damien Miller0e3b8722002-01-22 23:26:38 +1100998 Buffer b;
999 char *list;
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001000
Damien Miller0e3b8722002-01-22 23:26:38 +11001001 buffer_init(&b);
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001002 for (method = authmethods; method->name != NULL; method++) {
1003 if (authmethod_is_enabled(method)) {
Damien Miller0e3b8722002-01-22 23:26:38 +11001004 if (buffer_len(&b) > 0)
1005 buffer_append(&b, ",", 1);
1006 buffer_append(&b, method->name, strlen(method->name));
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001007 }
Damien Miller62cee002000-09-23 17:15:56 +11001008 }
Damien Miller0e3b8722002-01-22 23:26:38 +11001009 buffer_append(&b, "\0", 1);
1010 list = xstrdup(buffer_ptr(&b));
1011 buffer_free(&b);
1012 return list;
Damien Millereba71ba2000-04-29 23:57:08 +10001013}