]> andersk Git - openssh.git/blame - sshconnect2.c
- (djm) OpenBSD CVS Sync
[openssh.git] / sshconnect2.c
CommitLineData
a306f2dd 1/*
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.
a306f2dd 12 *
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"
4e2e5cfd 26RCSID("$OpenBSD: sshconnect2.c,v 1.140 2005/07/17 07:17:55 djm Exp $");
a306f2dd 27
751092f9 28#include "openbsd-compat/sys-queue.h"
29
a306f2dd 30#include "ssh.h"
42f11eb2 31#include "ssh2.h"
a306f2dd 32#include "xmalloc.h"
a306f2dd 33#include "buffer.h"
34#include "packet.h"
a306f2dd 35#include "compat.h"
a306f2dd 36#include "bufaux.h"
42f11eb2 37#include "cipher.h"
a306f2dd 38#include "kex.h"
39#include "myproposal.h"
a306f2dd 40#include "sshconnect.h"
41#include "authfile.h"
db1cd2f3 42#include "dh.h"
2e73a022 43#include "authfd.h"
42f11eb2 44#include "log.h"
45#include "readconf.h"
58ae9cb8 46#include "misc.h"
cab80f75 47#include "match.h"
a5c9ffdb 48#include "dispatch.h"
8002af61 49#include "canohost.h"
39c00dc2 50#include "msg.h"
51#include "pathnames.h"
94ec8c6b 52
7364bd04 53#ifdef GSSAPI
54#include "ssh-gss.h"
55#endif
56
a306f2dd 57/* import */
58extern char *client_version_string;
59extern char *server_version_string;
60extern Options options;
61
62/*
63 * SSH2 key exchange
64 */
65
1e3b8b07 66u_char *session_id2 = NULL;
a27002e5 67u_int session_id2_len = 0;
a306f2dd 68
a5c9ffdb 69char *xxx_host;
70struct sockaddr *xxx_hostaddr;
71
e092ce67 72Kex *xxx_kex = NULL;
73
396c147e 74static int
f49bc4f7 75verify_host_key_callback(Key *hostkey)
a5c9ffdb 76{
f49bc4f7 77 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
01e9ef57 78 fatal("Host key verification failed.");
a5c9ffdb 79 return 0;
80}
81
a306f2dd 82void
94ec8c6b 83ssh_kex2(char *host, struct sockaddr *hostaddr)
84{
94ec8c6b 85 Kex *kex;
a5c9ffdb 86
87 xxx_host = host;
88 xxx_hostaddr = hostaddr;
94ec8c6b 89
c523303b 90 if (options.ciphers == (char *)-1) {
bbe88b6d 91 logit("No valid ciphers for protocol version 2 given, using defaults.");
c523303b 92 options.ciphers = NULL;
94ec8c6b 93 }
94 if (options.ciphers != NULL) {
95 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
96 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
97 }
1ad64a93 98 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]);
94ec8c6b 102 if (options.compression) {
b2552997 103 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
713f6cd9 104 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib,none";
94ec8c6b 105 } else {
b2552997 106 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
713f6cd9 107 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib";
94ec8c6b 108 }
b2552997 109 if (options.macs != NULL) {
110 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
111 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
112 }
e961a8f9 113 if (options.hostkeyalgorithms != NULL)
184eed6a 114 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
e961a8f9 115 options.hostkeyalgorithms;
94ec8c6b 116
ffd7b36b 117 if (options.rekey_limit)
118 packet_set_rekey_limit(options.rekey_limit);
119
7a37c112 120 /* start key exchange */
d8ee838b 121 kex = kex_setup(myproposal);
98a58eda 122 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
41e5bd9a 123 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
98a58eda 124 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
a5c9ffdb 125 kex->client_version_string=client_version_string;
126 kex->server_version_string=server_version_string;
f49bc4f7 127 kex->verify_host_key=&verify_host_key_callback;
94ec8c6b 128
e092ce67 129 xxx_kex = kex;
130
c422989b 131 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
94ec8c6b 132
d1ac6175 133 session_id2 = kex->session_id;
134 session_id2_len = kex->session_id_len;
135
94ec8c6b 136#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
a306f2dd 143}
71276795 144
a306f2dd 145/*
146 * Authenticate user
147 */
188adeb2 148
149typedef struct Authctxt Authctxt;
150typedef struct Authmethod Authmethod;
43348518 151typedef struct identity Identity;
152typedef struct idlist Idlist;
153
154struct 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);
188adeb2 163
164struct Authctxt {
165 const char *server_user;
8002af61 166 const char *local_user;
188adeb2 167 const char *host;
168 const char *service;
188adeb2 169 Authmethod *method;
94ec8c6b 170 int success;
fee56204 171 char *authlist;
8002af61 172 /* pubkey */
43348518 173 Idlist keys;
8002af61 174 AuthenticationConnection *agent;
175 /* hostbased */
39c00dc2 176 Sensitive *sensitive;
6b759005 177 /* kbd-interactive */
178 int info_req_seen;
7364bd04 179 /* generic */
180 void *methoddata;
188adeb2 181};
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
7819b5c3 189void 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 *);
67ec167d 195void input_userauth_passwd_changereq(int, u_int32_t, void *);
94ec8c6b 196
d5bb9418 197int userauth_none(Authctxt *);
198int userauth_pubkey(Authctxt *);
199int userauth_passwd(Authctxt *);
200int userauth_kbdint(Authctxt *);
201int userauth_hostbased(Authctxt *);
802e01b8 202int userauth_kerberos(Authctxt *);
188adeb2 203
7364bd04 204#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
d5bb9418 213void userauth(Authctxt *, char *);
fee56204 214
43348518 215static int sign_and_send_pubkey(Authctxt *, Identity *);
43348518 216static void pubkey_prepare(Authctxt *);
217static void pubkey_cleanup(Authctxt *);
218static Key *load_identity_file(char *);
fee56204 219
396c147e 220static Authmethod *authmethod_get(char *authlist);
221static Authmethod *authmethod_lookup(const char *name);
222static char *authmethods_get(void);
188adeb2 223
224Authmethod authmethods[] = {
7364bd04 225#ifdef GSSAPI
0789992b 226 {"gssapi-with-mic",
7364bd04 227 userauth_gssapi,
228 &options.gss_authentication,
229 NULL},
230#endif
3398dda9 231 {"hostbased",
232 userauth_hostbased,
233 &options.hostbased_authentication,
234 NULL},
9f37c0af 235 {"publickey",
236 userauth_pubkey,
237 &options.pubkey_authentication,
238 NULL},
94ec8c6b 239 {"keyboard-interactive",
240 userauth_kbdint,
241 &options.kbd_interactive_authentication,
242 &options.batch_mode},
9f37c0af 243 {"password",
244 userauth_passwd,
245 &options.password_authentication,
246 &options.batch_mode},
94ec8c6b 247 {"none",
248 userauth_none,
249 NULL,
250 NULL},
188adeb2 251 {NULL, NULL, NULL, NULL}
252};
253
254void
8002af61 255ssh_userauth2(const char *local_user, const char *server_user, char *host,
39c00dc2 256 Sensitive *sensitive)
188adeb2 257{
258 Authctxt authctxt;
259 int type;
188adeb2 260
5ba55ada 261 if (options.challenge_response_authentication)
d464095c 262 options.kbd_interactive_authentication = 1;
263
188adeb2 264 packet_start(SSH2_MSG_SERVICE_REQUEST);
265 packet_put_cstring("ssh-userauth");
266 packet_send();
a77673cc 267 debug("SSH2_MSG_SERVICE_REQUEST sent");
188adeb2 268 packet_write_wait();
54a5250f 269 type = packet_read();
a77673cc 270 if (type != SSH2_MSG_SERVICE_ACCEPT)
271 fatal("Server denied authentication request: %d", type);
188adeb2 272 if (packet_remaining() > 0) {
54a5250f 273 char *reply = packet_get_string(NULL);
a77673cc 274 debug2("service_accept: %s", reply);
188adeb2 275 xfree(reply);
188adeb2 276 } else {
6226a8f8 277 debug2("buggy server: service_accept w/o service");
188adeb2 278 }
95500969 279 packet_check_eom();
a77673cc 280 debug("SSH2_MSG_SERVICE_ACCEPT received");
188adeb2 281
cab80f75 282 if (options.preferred_authentications == NULL)
283 options.preferred_authentications = authmethods_get();
284
188adeb2 285 /* setup authentication context */
6b759005 286 memset(&authctxt, 0, sizeof(authctxt));
43348518 287 pubkey_prepare(&authctxt);
188adeb2 288 authctxt.server_user = server_user;
8002af61 289 authctxt.local_user = local_user;
188adeb2 290 authctxt.host = host;
291 authctxt.service = "ssh-connection"; /* service name */
292 authctxt.success = 0;
94ec8c6b 293 authctxt.method = authmethod_lookup("none");
fee56204 294 authctxt.authlist = NULL;
7364bd04 295 authctxt.methoddata = NULL;
39c00dc2 296 authctxt.sensitive = sensitive;
6b759005 297 authctxt.info_req_seen = 0;
94ec8c6b 298 if (authctxt.method == NULL)
299 fatal("ssh_userauth2: internal error: cannot send userauth none request");
188adeb2 300
301 /* initial userauth request */
94ec8c6b 302 userauth_none(&authctxt);
188adeb2 303
7a37c112 304 dispatch_init(&input_userauth_error);
188adeb2 305 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
306 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
9616313f 307 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
188adeb2 308 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
309
43348518 310 pubkey_cleanup(&authctxt);
b8c2031b 311 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
312
6226a8f8 313 debug("Authentication succeeded (%s).", authctxt.method->name);
188adeb2 314}
b8c2031b 315
188adeb2 316void
fee56204 317userauth(Authctxt *authctxt, char *authlist)
318{
7364bd04 319 if (authctxt->methoddata) {
320 xfree(authctxt->methoddata);
321 authctxt->methoddata = NULL;
322 }
fee56204 323 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;
b8c2031b 335
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 */
fee56204 341 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}
d6133f43 350
fee56204 351void
7819b5c3 352input_userauth_error(int type, u_int32_t seq, void *ctxt)
188adeb2 353{
9616313f 354 fatal("input_userauth_error: bad message during authentication: "
4e2e5cfd 355 "type %d", type);
9616313f 356}
d6133f43 357
9616313f 358void
7819b5c3 359input_userauth_banner(int type, u_int32_t seq, void *ctxt)
9616313f 360{
361 char *msg, *lang;
c8f0cf13 362
9616313f 363 debug3("input_userauth_banner");
364 msg = packet_get_string(NULL);
365 lang = packet_get_string(NULL);
19e633e7 366 if (options.log_level > SYSLOG_LEVEL_QUIET)
367 fprintf(stderr, "%s", msg);
9616313f 368 xfree(msg);
369 xfree(lang);
188adeb2 370}
d6133f43 371
188adeb2 372void
7819b5c3 373input_userauth_success(int type, u_int32_t seq, void *ctxt)
188adeb2 374{
375 Authctxt *authctxt = ctxt;
376 if (authctxt == NULL)
377 fatal("input_userauth_success: no authentication context");
c8f0cf13 378 if (authctxt->authlist) {
fee56204 379 xfree(authctxt->authlist);
c8f0cf13 380 authctxt->authlist = NULL;
381 }
382 if (authctxt->methoddata) {
7364bd04 383 xfree(authctxt->methoddata);
c8f0cf13 384 authctxt->methoddata = NULL;
385 }
188adeb2 386 authctxt->success = 1; /* break out */
387}
d6133f43 388
188adeb2 389void
7819b5c3 390input_userauth_failure(int type, u_int32_t seq, void *ctxt)
188adeb2 391{
188adeb2 392 Authctxt *authctxt = ctxt;
393 char *authlist = NULL;
394 int partial;
188adeb2 395
396 if (authctxt == NULL)
397 fatal("input_userauth_failure: no authentication context");
398
94ec8c6b 399 authlist = packet_get_string(NULL);
188adeb2 400 partial = packet_get_char();
95500969 401 packet_check_eom();
188adeb2 402
403 if (partial != 0)
bbe88b6d 404 logit("Authenticated with partial success.");
6226a8f8 405 debug("Authentications that can continue: %s", authlist);
188adeb2 406
fee56204 407 userauth(authctxt, authlist);
408}
409void
7819b5c3 410input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
fee56204 411{
412 Authctxt *authctxt = ctxt;
413 Key *key = NULL;
43348518 414 Identity *id = NULL;
fee56204 415 Buffer b;
c66f9d0e 416 int pktype, sent = 0;
417 u_int alen, blen;
418 char *pkalg, *fp;
419 u_char *pkblob;
fee56204 420
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);
434 }
95500969 435 packet_check_eom();
fee56204 436
43348518 437 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
fee56204 438
43348518 439 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);
456
b56e99e2 457 /*
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 */
484b2208 462 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
43348518 463 if (key_equal(key, id->key)) {
464 sent = sign_and_send_pubkey(authctxt, id);
fee56204 465 break;
466 }
43348518 467 }
468done:
fee56204 469 if (key != NULL)
470 key_free(key);
471 xfree(pkalg);
472 xfree(pkblob);
473
343288b8 474 /* try another method if we did not send a packet */
fee56204 475 if (sent == 0)
476 userauth(authctxt, NULL);
188adeb2 477}
478
7364bd04 479#ifdef GSSAPI
aff51935 480int
7364bd04 481userauth_gssapi(Authctxt *authctxt)
482{
483 Gssctxt *gssctxt = NULL;
b0b30ca6 484 static gss_OID_set gss_supported = NULL;
2ceb8101 485 static u_int mech = 0;
7364bd04 486 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
b0b30ca6 492 if (gss_supported == NULL)
493 gss_indicate_mechs(&min, &gss_supported);
7364bd04 494
495 /* Check to see if the mechanism is usable before we offer it */
b0b30ca6 496 while (mech < gss_supported->count && !ok) {
7364bd04 497 if (gssctxt)
498 ssh_gssapi_delete_ctx(&gssctxt);
499 ssh_gssapi_build_ctx(&gssctxt);
b0b30ca6 500 ssh_gssapi_set_oid(gssctxt, &gss_supported->elements[mech]);
7364bd04 501
502 /* My DER encoding requires length<128 */
b0b30ca6 503 if (gss_supported->elements[mech].length < 128 &&
7364bd04 504 !GSS_ERROR(ssh_gssapi_import_name(gssctxt,
505 authctxt->host))) {
506 ok = 1; /* Mechanism works */
507 } else {
508 mech++;
509 }
510 }
511
2ceb8101 512 if (!ok)
513 return 0;
7364bd04 514
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
d8d9afd0 524 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);
7364bd04 529
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
b930668c 542static 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;
0789992b 548 gss_buffer_desc gssbuf, mic;
549 OM_uint32 status, ms, flags;
550 Buffer b;
b6453d99 551
b930668c 552 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
0789992b 553 recv_tok, &send_tok, &flags);
b930668c 554
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);
b6453d99 560
b930668c 561 packet_put_string(send_tok.value, send_tok.length);
562 packet_send();
563 gss_release_buffer(&ms, &send_tok);
564 }
b6453d99 565
b930668c 566 if (status == GSS_S_COMPLETE) {
0789992b 567 /* 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);
b6453d99 577
0789992b 578 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
b6453d99 579
0789992b 580 if (!GSS_ERROR(status)) {
581 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
582 packet_put_string(mic.value, mic.length);
b6453d99 583
0789992b 584 packet_send();
585 }
b6453d99 586
0789992b 587 buffer_free(&b);
588 gss_release_buffer(&ms, &mic);
b6453d99 589 }
b930668c 590 }
b6453d99 591
b930668c 592 return status;
593}
594
7364bd04 595void
596input_gssapi_response(int type, u_int32_t plen, void *ctxt)
597{
598 Authctxt *authctxt = ctxt;
599 Gssctxt *gssctxt;
7364bd04 600 int oidlen;
601 char *oidv;
7364bd04 602
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
d8d9afd0 610 if (oidlen <= 2 ||
611 oidv[0] != SSH_GSS_OIDTYPE ||
612 oidv[1] != oidlen - 2) {
b930668c 613 xfree(oidv);
d8d9afd0 614 debug("Badly encoded mechanism OID received");
615 userauth(authctxt, NULL);
d8d9afd0 616 return;
7364bd04 617 }
618
d8d9afd0 619 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
620 fatal("Server returned different OID than expected");
621
7364bd04 622 packet_check_eom();
623
624 xfree(oidv);
625
b930668c 626 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
7364bd04 627 /* Start again with next method on list */
628 debug("Trying to start again");
629 userauth(authctxt, NULL);
630 return;
631 }
7364bd04 632}
633
634void
635input_gssapi_token(int type, u_int32_t plen, void *ctxt)
636{
637 Authctxt *authctxt = ctxt;
7364bd04 638 gss_buffer_desc recv_tok;
b930668c 639 OM_uint32 status;
7364bd04 640 u_int slen;
641
642 if (authctxt == NULL)
643 fatal("input_gssapi_response: no authentication context");
7364bd04 644
645 recv_tok.value = packet_get_string(&slen);
646 recv_tok.length = slen; /* safe typecast */
647
648 packet_check_eom();
649
b930668c 650 status = process_gssapi_token(ctxt, &recv_tok);
7364bd04 651
652 xfree(recv_tok.value);
653
654 if (GSS_ERROR(status)) {
7364bd04 655 /* Start again with the next method in the list */
656 userauth(authctxt, NULL);
657 return;
658 }
7364bd04 659}
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;
f99e1ca4 669 u_int len;
7364bd04 670
671 if (authctxt == NULL)
672 fatal("input_gssapi_response: no authentication context");
673 gssctxt = authctxt->methoddata;
674
f99e1ca4 675 recv_tok.value = packet_get_string(&len);
676 recv_tok.length = len;
7364bd04 677
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,
4e2e5cfd 682 &recv_tok, &send_tok, NULL);
7364bd04 683
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
94ec8c6b 710int
711userauth_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();
94ec8c6b 719 return 1;
720}
721
a306f2dd 722int
188adeb2 723userauth_passwd(Authctxt *authctxt)
a306f2dd 724{
1d1ffb87 725 static int attempt = 0;
67ec167d 726 char prompt[150];
a306f2dd 727 char *password;
728
fa649821 729 if (attempt++ >= options.number_of_password_prompts)
1d1ffb87 730 return 0;
731
6aacefa7 732 if (attempt != 1)
fa649821 733 error("Permission denied, please try again.");
734
f72e01a5 735 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
188adeb2 736 authctxt->server_user, authctxt->host);
a306f2dd 737 password = read_passphrase(prompt, 0);
738 packet_start(SSH2_MSG_USERAUTH_REQUEST);
188adeb2 739 packet_put_cstring(authctxt->server_user);
740 packet_put_cstring(authctxt->service);
94ec8c6b 741 packet_put_cstring(authctxt->method->name);
a306f2dd 742 packet_put_char(0);
a6215e53 743 packet_put_cstring(password);
a306f2dd 744 memset(password, 0, strlen(password));
745 xfree(password);
b4b701be 746 packet_add_padding(64);
a306f2dd 747 packet_send();
67ec167d 748
7203d6bb 749 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
67ec167d 750 &input_userauth_passwd_changereq);
751
a306f2dd 752 return 1;
753}
67ec167d 754/*
755 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
756 */
757void
ef077e37 758input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
67ec167d 759{
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)
bbe88b6d 773 logit("%s", info);
67ec167d 774 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 */
7203d6bb 781 snprintf(prompt, sizeof(prompt),
67ec167d 782 "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) {
7203d6bb 790 snprintf(prompt, sizeof(prompt),
67ec167d 791 "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 }
7203d6bb 798 snprintf(prompt, sizeof(prompt),
67ec167d 799 "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);
bbe88b6d 805 logit("Mismatch; try again, EOF to quit.");
67ec167d 806 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();
7203d6bb 816
817 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
67ec167d 818 &input_userauth_passwd_changereq);
819}
a306f2dd 820
43348518 821static int
822identity_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);
fee56204 844}
845
396c147e 846static int
43348518 847sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
a306f2dd 848{
849 Buffer b;
1e3b8b07 850 u_char *blob, *signature;
c66f9d0e 851 u_int bloblen, slen;
a27002e5 852 u_int skip = 0;
2e73a022 853 int ret = -1;
94ec8c6b 854 int have_sig = 1;
a306f2dd 855
cbc5abf9 856 debug3("sign_and_send_pubkey");
fee56204 857
43348518 858 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
fa08c86b 859 /* we cannot handle this key */
cbc5abf9 860 debug3("sign_and_send_pubkey: cannot handle key");
fa08c86b 861 return 0;
862 }
a306f2dd 863 /* data to be signed */
864 buffer_init(&b);
33de75a3 865 if (datafellows & SSH_OLD_SESSIONID) {
74fc9186 866 buffer_append(&b, session_id2, session_id2_len);
2b87da3b 867 skip = session_id2_len;
33de75a3 868 } else {
869 buffer_put_string(&b, session_id2, session_id2_len);
870 skip = buffer_len(&b);
74fc9186 871 }
a306f2dd 872 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
188adeb2 873 buffer_put_cstring(&b, authctxt->server_user);
d0c832f3 874 buffer_put_cstring(&b,
cbc5abf9 875 datafellows & SSH_BUG_PKSERVICE ?
d0c832f3 876 "ssh-userauth" :
188adeb2 877 authctxt->service);
cbc5abf9 878 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);
43348518 883 buffer_put_cstring(&b, key_ssh_name(id->key));
cbc5abf9 884 }
a306f2dd 885 buffer_put_string(&b, blob, bloblen);
a306f2dd 886
887 /* generate signature */
43348518 888 ret = identity_sign(id, &signature, &slen,
fee56204 889 buffer_ptr(&b), buffer_len(&b));
2e73a022 890 if (ret == -1) {
891 xfree(blob);
892 buffer_free(&b);
893 return 0;
894 }
fa08c86b 895#ifdef DEBUG_PK
a306f2dd 896 buffer_dump(&b);
897#endif
cbc5abf9 898 if (datafellows & SSH_BUG_PKSERVICE) {
d0c832f3 899 buffer_clear(&b);
900 buffer_append(&b, session_id2, session_id2_len);
fee56204 901 skip = session_id2_len;
d0c832f3 902 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
188adeb2 903 buffer_put_cstring(&b, authctxt->server_user);
904 buffer_put_cstring(&b, authctxt->service);
94ec8c6b 905 buffer_put_cstring(&b, authctxt->method->name);
906 buffer_put_char(&b, have_sig);
cbc5abf9 907 if (!(datafellows & SSH_BUG_PKAUTH))
43348518 908 buffer_put_cstring(&b, key_ssh_name(id->key));
d0c832f3 909 buffer_put_string(&b, blob, bloblen);
910 }
911 xfree(blob);
fee56204 912
a306f2dd 913 /* append signature */
914 buffer_put_string(&b, signature, slen);
915 xfree(signature);
916
917 /* skip session id and packet type */
74fc9186 918 if (buffer_len(&b) < skip + 1)
188adeb2 919 fatal("userauth_pubkey: internal error");
74fc9186 920 buffer_consume(&b, skip + 1);
a306f2dd 921
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);
a306f2dd 926 packet_send();
2e73a022 927
928 return 1;
4c8722d9 929}
930
396c147e 931static int
43348518 932send_pubkey_test(Authctxt *authctxt, Identity *id)
4c8722d9 933{
fee56204 934 u_char *blob;
21b30f38 935 u_int bloblen, have_sig = 0;
4c8722d9 936
fee56204 937 debug3("send_pubkey_test");
938
43348518 939 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
fee56204 940 /* we cannot handle this key */
941 debug3("send_pubkey_test: cannot handle key");
4c8722d9 942 return 0;
943 }
fee56204 944 /* register callback for USERAUTH_PK_OK message */
fee56204 945 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
4c8722d9 946
fee56204 947 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))
43348518 953 packet_put_cstring(key_ssh_name(id->key));
fee56204 954 packet_put_string(blob, bloblen);
955 xfree(blob);
956 packet_send();
957 return 1;
958}
959
396c147e 960static Key *
fee56204 961load_identity_file(char *filename)
962{
963 Key *private;
964 char prompt[300], *passphrase;
aeaa3d9e 965 int quit, i;
d156519a 966 struct stat st;
fee56204 967
d156519a 968 if (stat(filename, &st) < 0) {
969 debug3("no such identity: %s", filename);
970 return NULL;
971 }
aeaa3d9e 972 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
973 if (private == NULL) {
974 if (options.batch_mode)
fee56204 975 return NULL;
4c8722d9 976 snprintf(prompt, sizeof prompt,
184eed6a 977 "Enter passphrase for key '%.100s': ", filename);
188adeb2 978 for (i = 0; i < options.number_of_password_prompts; i++) {
979 passphrase = read_passphrase(prompt, 0);
980 if (strcmp(passphrase, "") != 0) {
aeaa3d9e 981 private = key_load_private_type(KEY_UNSPEC, filename,
982 passphrase, NULL);
fee56204 983 quit = 0;
188adeb2 984 } else {
985 debug2("no passphrase given, try next key");
fee56204 986 quit = 1;
188adeb2 987 }
988 memset(passphrase, 0, strlen(passphrase));
989 xfree(passphrase);
aeaa3d9e 990 if (private != NULL || quit)
188adeb2 991 break;
992 debug2("bad passphrase given, try again...");
993 }
4c8722d9 994 }
fee56204 995 return private;
996}
997
43348518 998/*
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)
fee56204 1006{
43348518 1007 Identity *id;
1008 Idlist agent, files, *preferred;
1009 Key *key;
1010 AuthenticationConnection *ac;
1011 char *comment;
1012 int i, found;
1013
1014 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);
1030 }
1031 /* 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) {
aff51935 1038 /* agent keys from the config file are preferred */
43348518 1039 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 }
3a065ed0 1049 if (!found && !options.identities_only) {
43348518 1050 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;
1064 }
1065 /* 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 }
fee56204 1073}
1074
43348518 1075static void
1076pubkey_cleanup(Authctxt *authctxt)
2e73a022 1077{
43348518 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);
2e73a022 1090 }
a306f2dd 1091}
1092
188adeb2 1093int
1094userauth_pubkey(Authctxt *authctxt)
a306f2dd 1095{
43348518 1096 Identity *id;
188adeb2 1097 int sent = 0;
1098
43348518 1099 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1100 if (id->tried++)
1101 return (0);
b56e99e2 1102 /* move key to the end of the queue */
43348518 1103 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;
fee56204 1121 }
fee56204 1122 }
43348518 1123 if (sent)
1124 return (sent);
fa08c86b 1125 }
43348518 1126 return (0);
188adeb2 1127}
a306f2dd 1128
94ec8c6b 1129/*
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;
6b759005 1139 /* 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 }
94ec8c6b 1145
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();
94ec8c6b 1155
1156 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1157 return 1;
1158}
1159
1160/*
f72e01a5 1161 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
94ec8c6b 1162 */
1163void
7819b5c3 1164input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
94ec8c6b 1165{
1166 Authctxt *authctxt = ctxt;
f72e01a5 1167 char *name, *inst, *lang, *prompt, *response;
1e3b8b07 1168 u_int num_prompts, i;
94ec8c6b 1169 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
6b759005 1176 authctxt->info_req_seen = 1;
1177
94ec8c6b 1178 name = packet_get_string(NULL);
1179 inst = packet_get_string(NULL);
1180 lang = packet_get_string(NULL);
94ec8c6b 1181 if (strlen(name) > 0)
bbe88b6d 1182 logit("%s", name);
94ec8c6b 1183 if (strlen(inst) > 0)
bbe88b6d 1184 logit("%s", inst);
f72e01a5 1185 xfree(name);
94ec8c6b 1186 xfree(inst);
f72e01a5 1187 xfree(lang);
94ec8c6b 1188
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
5ba55ada 1199 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
94ec8c6b 1200 for (i = 0; i < num_prompts; i++) {
1201 prompt = packet_get_string(NULL);
1202 echo = packet_get_char();
1203
1843a425 1204 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
94ec8c6b 1205
a6215e53 1206 packet_put_cstring(response);
94ec8c6b 1207 memset(response, 0, strlen(response));
1208 xfree(response);
1209 xfree(prompt);
1210 }
95500969 1211 packet_check_eom(); /* done with parsing incoming message. */
94ec8c6b 1212
b4b701be 1213 packet_add_padding(64);
94ec8c6b 1214 packet_send();
94ec8c6b 1215}
a306f2dd 1216
39c00dc2 1217static int
d6133f43 1218ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
39c00dc2 1219 u_char *data, u_int datalen)
1220{
1221 Buffer b;
7091a26b 1222 struct stat st;
39c00dc2 1223 pid_t pid;
d4826734 1224 int to[2], from[2], status, version = 2;
39c00dc2 1225
6226a8f8 1226 debug2("ssh_keysign called");
39c00dc2 1227
7091a26b 1228 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1229 error("ssh_keysign: no installed: %s", strerror(errno));
1230 return -1;
1231 }
39c00dc2 1232 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));
d4826734 1255 close(from[1]);
1256 close(to[0]);
a3f69458 1257 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
39c00dc2 1258 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);
d4826734 1265 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
39c00dc2 1266 buffer_put_string(&b, data, datalen);
d3cbe6f8 1267 if (ssh_msg_send(to[1], version, &b) == -1)
1268 fatal("ssh_keysign: couldn't send request");
39c00dc2 1269
e987fdbe 1270 if (ssh_msg_recv(from[0], &b) < 0) {
7091a26b 1271 error("ssh_keysign: no reply");
43f7a4b8 1272 buffer_free(&b);
39c00dc2 1273 return -1;
1274 }
39c00dc2 1275 close(from[0]);
1276 close(to[1]);
1277
d4826734 1278 while (waitpid(pid, &status, 0) < 0)
1279 if (errno != EINTR)
1280 break;
39c00dc2 1281
7091a26b 1282 if (buffer_get_char(&b) != version) {
1283 error("ssh_keysign: bad version");
43f7a4b8 1284 buffer_free(&b);
7091a26b 1285 return -1;
1286 }
1287 *sigp = buffer_get_string(&b, lenp);
43f7a4b8 1288 buffer_free(&b);
7091a26b 1289
39c00dc2 1290 return 0;
1291}
1292
8002af61 1293int
1294userauth_hostbased(Authctxt *authctxt)
1295{
1296 Key *private = NULL;
39c00dc2 1297 Sensitive *sensitive = authctxt->sensitive;
8002af61 1298 Buffer b;
1299 u_char *signature, *blob;
1300 char *chost, *pkalg, *p;
8dddf799 1301 const char *service;
8002af61 1302 u_int blen, slen;
f98c3421 1303 int ok, i, len, found = 0;
8002af61 1304
8002af61 1305 /* check for a useful key */
39c00dc2 1306 for (i = 0; i < sensitive->nkeys; i++) {
1307 private = sensitive->keys[i];
8002af61 1308 if (private && private->type != KEY_RSA1) {
1309 found = 1;
1310 /* we take and free the key */
39c00dc2 1311 sensitive->keys[i] = NULL;
8002af61 1312 break;
1313 }
1314 }
1315 if (!found) {
6226a8f8 1316 debug("No more client hostkeys for hostbased authentication.");
8002af61 1317 return 0;
1318 }
1319 if (key_to_blob(private, &blob, &blen) == 0) {
1320 key_free(private);
8002af61 1321 return 0;
1322 }
e8d59b4d 1323 /* 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);
3e2f2431 1335 xfree(p);
e8d59b4d 1336
8dddf799 1337 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1338 authctxt->service;
8002af61 1339 pkalg = xstrdup(key_ssh_name(private));
1340 buffer_init(&b);
8002af61 1341 /* construct data */
8dddf799 1342 buffer_put_string(&b, session_id2, session_id2_len);
8002af61 1343 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1344 buffer_put_cstring(&b, authctxt->server_user);
8dddf799 1345 buffer_put_cstring(&b, service);
8002af61 1346 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
39c00dc2 1354 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));
8002af61 1360 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
188adeb2 1386/* find auth method */
1387
188adeb2 1388/*
1389 * given auth method name, if configurable options permit this method fill
1390 * in auth_ident field and return true, otherwise return false.
1391 */
396c147e 1392static int
188adeb2 1393authmethod_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}
a306f2dd 1405
396c147e 1406static Authmethod *
188adeb2 1407authmethod_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
cab80f75 1418/* XXX internal state */
1419static Authmethod *current = NULL;
1420static char *supported = NULL;
1421static char *preferred = NULL;
d6133f43 1422
188adeb2 1423/*
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,
cd332296 1426 * use a built-in default list.
2b87da3b 1427 */
396c147e 1428static Authmethod *
188adeb2 1429authmethod_get(char *authlist)
1430{
cab80f75 1431 char *name = NULL;
21b30f38 1432 u_int next;
2b87da3b 1433
188adeb2 1434 /* Use a suitable default if we're passed a nil list. */
1435 if (authlist == NULL || strlen(authlist) == 0)
cab80f75 1436 authlist = options.preferred_authentications;
1437
1438 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;
188adeb2 1448
cab80f75 1449 for (;;) {
1450 if ((name = match_list(preferred, supported, &next)) == NULL) {
6226a8f8 1451 debug("No more authentication methods to try.");
cab80f75 1452 current = NULL;
1453 return NULL;
1454 }
1455 preferred += next;
94ec8c6b 1456 debug3("authmethod_lookup %s", name);
cab80f75 1457 debug3("remaining preferred: %s", preferred);
1458 if ((current = authmethod_lookup(name)) != NULL &&
1459 authmethod_is_enabled(current)) {
94ec8c6b 1460 debug3("authmethod_is_enabled %s", name);
6226a8f8 1461 debug("Next authentication method: %s", name);
cab80f75 1462 return current;
94ec8c6b 1463 }
a306f2dd 1464 }
cab80f75 1465}
a22aff1f 1466
ffb215be 1467static char *
cab80f75 1468authmethods_get(void)
1469{
1470 Authmethod *method = NULL;
3469eac4 1471 Buffer b;
1472 char *list;
cab80f75 1473
3469eac4 1474 buffer_init(&b);
cab80f75 1475 for (method = authmethods; method->name != NULL; method++) {
1476 if (authmethod_is_enabled(method)) {
3469eac4 1477 if (buffer_len(&b) > 0)
1478 buffer_append(&b, ",", 1);
1479 buffer_append(&b, method->name, strlen(method->name));
cab80f75 1480 }
1481 }
3469eac4 1482 buffer_append(&b, "\0", 1);
1483 list = xstrdup(buffer_ptr(&b));
1484 buffer_free(&b);
1485 return list;
a306f2dd 1486}
This page took 0.515361 seconds and 5 git commands to generate.