]> andersk Git - gssapi-openssh.git/blame - openssh/sshconnect2.c
Import of openssh-SNAP-20040105
[gssapi-openssh.git] / openssh / sshconnect2.c
CommitLineData
3c0ef626 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.
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"
12408a1b 26RCSID("$OpenBSD: sshconnect2.c,v 1.133 2003/11/21 11:57:03 djm Exp $");
0fff78ff 27
28#include "openbsd-compat/sys-queue.h"
3c0ef626 29
30#include "ssh.h"
31#include "ssh2.h"
32#include "xmalloc.h"
3c0ef626 33#include "buffer.h"
34#include "packet.h"
3c0ef626 35#include "compat.h"
36#include "bufaux.h"
37#include "cipher.h"
38#include "kex.h"
39#include "myproposal.h"
3c0ef626 40#include "sshconnect.h"
41#include "authfile.h"
42#include "dh.h"
43#include "authfd.h"
44#include "log.h"
45#include "readconf.h"
46#include "readpass.h"
47#include "match.h"
48#include "dispatch.h"
49#include "canohost.h"
f5799ae1 50#include "msg.h"
51#include "pathnames.h"
3c0ef626 52
0fff78ff 53#ifdef GSSAPI
54#include "ssh-gss.h"
55#endif
56
3c0ef626 57/* import */
58extern char *client_version_string;
59extern char *server_version_string;
60extern Options options;
61
62/*
63 * SSH2 key exchange
64 */
65
66u_char *session_id2 = NULL;
0fff78ff 67u_int session_id2_len = 0;
3c0ef626 68
69char *xxx_host;
70struct sockaddr *xxx_hostaddr;
71
72Kex *xxx_kex = NULL;
73
74static int
75verify_host_key_callback(Key *hostkey)
76{
77 if (verify_host_key(xxx_host, xxx_hostaddr, hostkey) == -1)
78 fatal("Host key verification failed.");
79 return 0;
80}
81
82void
83ssh_kex2(char *host, struct sockaddr *hostaddr)
84{
85 Kex *kex;
86
87 xxx_host = host;
88 xxx_hostaddr = hostaddr;
89
90 if (options.ciphers == (char *)-1) {
0fff78ff 91 logit("No valid ciphers for protocol version 2 given, using defaults.");
3c0ef626 92 options.ciphers = NULL;
93 }
94 if (options.ciphers != NULL) {
95 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
96 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
97 }
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]);
102 if (options.compression) {
103 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
41b2f314 104 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib,none";
3c0ef626 105 } else {
106 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
41b2f314 107 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib";
3c0ef626 108 }
109 if (options.macs != NULL) {
110 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
111 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
112 }
113 if (options.hostkeyalgorithms != NULL)
e9a17296 114 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
3c0ef626 115 options.hostkeyalgorithms;
116
0fff78ff 117 if (options.rekey_limit)
118 packet_set_rekey_limit(options.rekey_limit);
119
3c0ef626 120 /* start key exchange */
121 kex = kex_setup(myproposal);
6a9b3198 122 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
123 kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
3c0ef626 124 kex->client_version_string=client_version_string;
125 kex->server_version_string=server_version_string;
126 kex->verify_host_key=&verify_host_key_callback;
127
128 xxx_kex = kex;
129
130 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
131
132 session_id2 = kex->session_id;
133 session_id2_len = kex->session_id_len;
134
135#ifdef DEBUG_KEXDH
136 /* send 1st encrypted/maced/compressed message */
137 packet_start(SSH2_MSG_IGNORE);
138 packet_put_cstring("markus");
139 packet_send();
140 packet_write_wait();
141#endif
3c0ef626 142}
143
144/*
145 * Authenticate user
146 */
147
148typedef struct Authctxt Authctxt;
149typedef struct Authmethod Authmethod;
0fff78ff 150typedef struct identity Identity;
151typedef struct idlist Idlist;
152
153struct identity {
154 TAILQ_ENTRY(identity) next;
155 AuthenticationConnection *ac; /* set if agent supports key */
156 Key *key; /* public/private key */
157 char *filename; /* comment for agent-only keys */
158 int tried;
159 int isprivate; /* key points to the private key */
160};
161TAILQ_HEAD(idlist, identity);
3c0ef626 162
163struct Authctxt {
164 const char *server_user;
165 const char *local_user;
166 const char *host;
167 const char *service;
168 Authmethod *method;
169 int success;
170 char *authlist;
171 /* pubkey */
0fff78ff 172 Idlist keys;
3c0ef626 173 AuthenticationConnection *agent;
174 /* hostbased */
f5799ae1 175 Sensitive *sensitive;
3c0ef626 176 /* kbd-interactive */
177 int info_req_seen;
0fff78ff 178 /* generic */
179 void *methoddata;
3c0ef626 180};
181struct Authmethod {
182 char *name; /* string to compare against server's list */
183 int (*userauth)(Authctxt *authctxt);
184 int *enabled; /* flag in option struct that enables method */
185 int *batch_flag; /* flag in option struct that disables method */
186};
187
e9a17296 188void input_userauth_success(int, u_int32_t, void *);
189void input_userauth_failure(int, u_int32_t, void *);
190void input_userauth_banner(int, u_int32_t, void *);
191void input_userauth_error(int, u_int32_t, void *);
192void input_userauth_info_req(int, u_int32_t, void *);
193void input_userauth_pk_ok(int, u_int32_t, void *);
700318f3 194void input_userauth_passwd_changereq(int, u_int32_t, void *);
3c0ef626 195
e9a17296 196int userauth_none(Authctxt *);
197int userauth_pubkey(Authctxt *);
198int userauth_passwd(Authctxt *);
199int userauth_kbdint(Authctxt *);
200int userauth_hostbased(Authctxt *);
0fff78ff 201int userauth_kerberos(Authctxt *);
202
203#ifdef GSSAPI
204int userauth_gssapi(Authctxt *authctxt);
205void input_gssapi_response(int type, u_int32_t, void *);
206void input_gssapi_token(int type, u_int32_t, void *);
207void input_gssapi_hash(int type, u_int32_t, void *);
208void input_gssapi_error(int, u_int32_t, void *);
209void input_gssapi_errtok(int, u_int32_t, void *);
210#endif
3c0ef626 211
e9a17296 212void userauth(Authctxt *, char *);
3c0ef626 213
0fff78ff 214static int sign_and_send_pubkey(Authctxt *, Identity *);
215static void pubkey_prepare(Authctxt *);
216static void pubkey_cleanup(Authctxt *);
217static Key *load_identity_file(char *);
3c0ef626 218
219static Authmethod *authmethod_get(char *authlist);
220static Authmethod *authmethod_lookup(const char *name);
221static char *authmethods_get(void);
222
223Authmethod authmethods[] = {
0fff78ff 224#ifdef GSSAPI
12408a1b 225 {"gssapi-with-mic",
0fff78ff 226 userauth_gssapi,
227 &options.gss_authentication,
228 NULL},
229#endif
3c0ef626 230 {"hostbased",
231 userauth_hostbased,
232 &options.hostbased_authentication,
233 NULL},
234 {"publickey",
235 userauth_pubkey,
236 &options.pubkey_authentication,
237 NULL},
238 {"keyboard-interactive",
239 userauth_kbdint,
240 &options.kbd_interactive_authentication,
241 &options.batch_mode},
242 {"password",
243 userauth_passwd,
244 &options.password_authentication,
245 &options.batch_mode},
246 {"none",
247 userauth_none,
248 NULL,
249 NULL},
250 {NULL, NULL, NULL, NULL}
251};
252
253void
254ssh_userauth2(const char *local_user, const char *server_user, char *host,
f5799ae1 255 Sensitive *sensitive)
3c0ef626 256{
257 Authctxt authctxt;
258 int type;
3c0ef626 259
260 if (options.challenge_response_authentication)
261 options.kbd_interactive_authentication = 1;
262
3c0ef626 263 packet_start(SSH2_MSG_SERVICE_REQUEST);
264 packet_put_cstring("ssh-userauth");
265 packet_send();
6a9b3198 266 debug("SSH2_MSG_SERVICE_REQUEST sent");
3c0ef626 267 packet_write_wait();
e9a17296 268 type = packet_read();
6a9b3198 269 if (type != SSH2_MSG_SERVICE_ACCEPT)
270 fatal("Server denied authentication request: %d", type);
3c0ef626 271 if (packet_remaining() > 0) {
e9a17296 272 char *reply = packet_get_string(NULL);
6a9b3198 273 debug2("service_accept: %s", reply);
3c0ef626 274 xfree(reply);
275 } else {
6a9b3198 276 debug2("buggy server: service_accept w/o service");
3c0ef626 277 }
e9a17296 278 packet_check_eom();
6a9b3198 279 debug("SSH2_MSG_SERVICE_ACCEPT received");
3c0ef626 280
281 if (options.preferred_authentications == NULL)
282 options.preferred_authentications = authmethods_get();
283
284 /* setup authentication context */
285 memset(&authctxt, 0, sizeof(authctxt));
0fff78ff 286 pubkey_prepare(&authctxt);
3c0ef626 287 authctxt.server_user = server_user;
288 authctxt.local_user = local_user;
289 authctxt.host = host;
290 authctxt.service = "ssh-connection"; /* service name */
291 authctxt.success = 0;
292 authctxt.method = authmethod_lookup("none");
293 authctxt.authlist = NULL;
0fff78ff 294 authctxt.methoddata = NULL;
f5799ae1 295 authctxt.sensitive = sensitive;
3c0ef626 296 authctxt.info_req_seen = 0;
297 if (authctxt.method == NULL)
298 fatal("ssh_userauth2: internal error: cannot send userauth none request");
299
300 /* initial userauth request */
301 userauth_none(&authctxt);
302
303 dispatch_init(&input_userauth_error);
304 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
305 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
306 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
307 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
308
0fff78ff 309 pubkey_cleanup(&authctxt);
310 dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL);
3c0ef626 311
6a9b3198 312 debug("Authentication succeeded (%s).", authctxt.method->name);
3c0ef626 313}
0fff78ff 314
3c0ef626 315void
316userauth(Authctxt *authctxt, char *authlist)
317{
0fff78ff 318 if (authctxt->methoddata) {
319 xfree(authctxt->methoddata);
320 authctxt->methoddata = NULL;
321 }
3c0ef626 322 if (authlist == NULL) {
323 authlist = authctxt->authlist;
324 } else {
325 if (authctxt->authlist)
326 xfree(authctxt->authlist);
327 authctxt->authlist = authlist;
328 }
329 for (;;) {
330 Authmethod *method = authmethod_get(authlist);
331 if (method == NULL)
332 fatal("Permission denied (%s).", authlist);
333 authctxt->method = method;
0fff78ff 334
335 /* reset the per method handler */
336 dispatch_range(SSH2_MSG_USERAUTH_PER_METHOD_MIN,
337 SSH2_MSG_USERAUTH_PER_METHOD_MAX, NULL);
338
339 /* and try new method */
3c0ef626 340 if (method->userauth(authctxt) != 0) {
341 debug2("we sent a %s packet, wait for reply", method->name);
342 break;
343 } else {
344 debug2("we did not send a packet, disable method");
345 method->enabled = NULL;
346 }
347 }
348}
680cee3b 349
3c0ef626 350void
e9a17296 351input_userauth_error(int type, u_int32_t seq, void *ctxt)
3c0ef626 352{
353 fatal("input_userauth_error: bad message during authentication: "
354 "type %d", type);
355}
680cee3b 356
3c0ef626 357void
e9a17296 358input_userauth_banner(int type, u_int32_t seq, void *ctxt)
3c0ef626 359{
360 char *msg, *lang;
12408a1b 361
3c0ef626 362 debug3("input_userauth_banner");
363 msg = packet_get_string(NULL);
364 lang = packet_get_string(NULL);
12408a1b 365 if (options.log_level > SYSLOG_LEVEL_QUIET)
366 fprintf(stderr, "%s", msg);
3c0ef626 367 xfree(msg);
368 xfree(lang);
369}
680cee3b 370
3c0ef626 371void
e9a17296 372input_userauth_success(int type, u_int32_t seq, void *ctxt)
3c0ef626 373{
374 Authctxt *authctxt = ctxt;
375 if (authctxt == NULL)
376 fatal("input_userauth_success: no authentication context");
12408a1b 377 if (authctxt->authlist) {
3c0ef626 378 xfree(authctxt->authlist);
12408a1b 379 authctxt->authlist = NULL;
380 }
381 if (authctxt->methoddata) {
0fff78ff 382 xfree(authctxt->methoddata);
12408a1b 383 authctxt->methoddata = NULL;
384 }
3c0ef626 385 authctxt->success = 1; /* break out */
386}
680cee3b 387
3c0ef626 388void
e9a17296 389input_userauth_failure(int type, u_int32_t seq, void *ctxt)
3c0ef626 390{
391 Authctxt *authctxt = ctxt;
392 char *authlist = NULL;
393 int partial;
394
395 if (authctxt == NULL)
396 fatal("input_userauth_failure: no authentication context");
397
398 authlist = packet_get_string(NULL);
399 partial = packet_get_char();
e9a17296 400 packet_check_eom();
3c0ef626 401
402 if (partial != 0)
0fff78ff 403 logit("Authenticated with partial success.");
6a9b3198 404 debug("Authentications that can continue: %s", authlist);
3c0ef626 405
3c0ef626 406 userauth(authctxt, authlist);
407}
408void
e9a17296 409input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
3c0ef626 410{
411 Authctxt *authctxt = ctxt;
412 Key *key = NULL;
0fff78ff 413 Identity *id = NULL;
3c0ef626 414 Buffer b;
e9a17296 415 int pktype, sent = 0;
416 u_int alen, blen;
417 char *pkalg, *fp;
418 u_char *pkblob;
3c0ef626 419
420 if (authctxt == NULL)
421 fatal("input_userauth_pk_ok: no authentication context");
422 if (datafellows & SSH_BUG_PKOK) {
423 /* this is similar to SSH_BUG_PKAUTH */
424 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
425 pkblob = packet_get_string(&blen);
426 buffer_init(&b);
427 buffer_append(&b, pkblob, blen);
428 pkalg = buffer_get_string(&b, &alen);
429 buffer_free(&b);
430 } else {
431 pkalg = packet_get_string(&alen);
432 pkblob = packet_get_string(&blen);
433 }
e9a17296 434 packet_check_eom();
3c0ef626 435
0fff78ff 436 debug("Server accepts key: pkalg %s blen %u", pkalg, blen);
3c0ef626 437
0fff78ff 438 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
439 debug("unknown pkalg %s", pkalg);
440 goto done;
441 }
442 if ((key = key_from_blob(pkblob, blen)) == NULL) {
443 debug("no key from blob. pkalg %s", pkalg);
444 goto done;
445 }
446 if (key->type != pktype) {
447 error("input_userauth_pk_ok: type mismatch "
448 "for decoded key (received %d, expected %d)",
449 key->type, pktype);
450 goto done;
451 }
452 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
453 debug2("input_userauth_pk_ok: fp %s", fp);
454 xfree(fp);
455
12408a1b 456 /*
457 * search keys in the reverse order, because last candidate has been
458 * moved to the end of the queue. this also avoids confusion by
459 * duplicate keys
460 */
461 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, next, idlist) {
0fff78ff 462 if (key_equal(key, id->key)) {
463 sent = sign_and_send_pubkey(authctxt, id);
3c0ef626 464 break;
465 }
0fff78ff 466 }
467done:
3c0ef626 468 if (key != NULL)
469 key_free(key);
470 xfree(pkalg);
471 xfree(pkblob);
472
41b2f314 473 /* try another method if we did not send a packet */
3c0ef626 474 if (sent == 0)
475 userauth(authctxt, NULL);
0fff78ff 476}
477
478#ifdef GSSAPI
12408a1b 479int
0fff78ff 480userauth_gssapi(Authctxt *authctxt)
481{
482 Gssctxt *gssctxt = NULL;
12408a1b 483 static gss_OID_set gss_supported = NULL;
0fff78ff 484 static int mech = 0;
485 OM_uint32 min;
486 int ok = 0;
487
488 /* Try one GSSAPI method at a time, rather than sending them all at
489 * once. */
490
12408a1b 491 if (gss_supported == NULL)
492 gss_indicate_mechs(&min, &gss_supported);
0fff78ff 493
494 /* Check to see if the mechanism is usable before we offer it */
12408a1b 495 while (mech < gss_supported->count && !ok) {
0fff78ff 496 if (gssctxt)
497 ssh_gssapi_delete_ctx(&gssctxt);
498 ssh_gssapi_build_ctx(&gssctxt);
12408a1b 499 ssh_gssapi_set_oid(gssctxt, &gss_supported->elements[mech]);
0fff78ff 500
501 /* My DER encoding requires length<128 */
12408a1b 502 if (gss_supported->elements[mech].length < 128 &&
0fff78ff 503 !GSS_ERROR(ssh_gssapi_import_name(gssctxt,
504 authctxt->host))) {
505 ok = 1; /* Mechanism works */
506 } else {
507 mech++;
508 }
509 }
510
511 if (!ok) return 0;
512
513 authctxt->methoddata=(void *)gssctxt;
514
515 packet_start(SSH2_MSG_USERAUTH_REQUEST);
516 packet_put_cstring(authctxt->server_user);
517 packet_put_cstring(authctxt->service);
518 packet_put_cstring(authctxt->method->name);
519
520 packet_put_int(1);
521
12408a1b 522 packet_put_int((gss_supported->elements[mech].length) + 2);
523 packet_put_char(SSH_GSS_OIDTYPE);
524 packet_put_char(gss_supported->elements[mech].length);
525 packet_put_raw(gss_supported->elements[mech].elements,
526 gss_supported->elements[mech].length);
0fff78ff 527
528 packet_send();
529
530 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE, &input_gssapi_response);
531 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
532 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERROR, &input_gssapi_error);
533 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
534
535 mech++; /* Move along to next candidate */
536
537 return 1;
538}
539
12408a1b 540static OM_uint32
541process_gssapi_token(void *ctxt, gss_buffer_t recv_tok)
542{
543 Authctxt *authctxt = ctxt;
544 Gssctxt *gssctxt = authctxt->methoddata;
545 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
546 gss_buffer_desc gssbuf, mic;
547 OM_uint32 status, ms, flags;
548 Buffer b;
549
550 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
551 recv_tok, &send_tok, &flags);
552
553 if (send_tok.length > 0) {
554 if (GSS_ERROR(status))
555 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
556 else
557 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
558
559 packet_put_string(send_tok.value, send_tok.length);
560 packet_send();
561 gss_release_buffer(&ms, &send_tok);
562 }
563
564 if (status == GSS_S_COMPLETE) {
565 /* send either complete or MIC, depending on mechanism */
566 if (!(flags & GSS_C_INTEG_FLAG)) {
567 packet_start(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE);
568 packet_send();
569 } else {
570 ssh_gssapi_buildmic(&b, authctxt->server_user,
571 authctxt->service, "gssapi-with-mic");
572
573 gssbuf.value = buffer_ptr(&b);
574 gssbuf.length = buffer_len(&b);
575
576 status = ssh_gssapi_sign(gssctxt, &gssbuf, &mic);
577
578 if (!GSS_ERROR(status)) {
579 packet_start(SSH2_MSG_USERAUTH_GSSAPI_MIC);
580 packet_put_string(mic.value, mic.length);
581
582 packet_send();
583 }
584
585 buffer_free(&b);
586 gss_release_buffer(&ms, &mic);
587 }
588 }
589
590 return status;
591}
592
0fff78ff 593void
594input_gssapi_response(int type, u_int32_t plen, void *ctxt)
595{
596 Authctxt *authctxt = ctxt;
597 Gssctxt *gssctxt;
0fff78ff 598 int oidlen;
599 char *oidv;
0fff78ff 600
601 if (authctxt == NULL)
602 fatal("input_gssapi_response: no authentication context");
603 gssctxt = authctxt->methoddata;
604
605 /* Setup our OID */
606 oidv = packet_get_string(&oidlen);
607
12408a1b 608 if (oidlen <= 2 ||
609 oidv[0] != SSH_GSS_OIDTYPE ||
610 oidv[1] != oidlen - 2) {
611 xfree(oidv);
612 debug("Badly encoded mechanism OID received");
613 userauth(authctxt, NULL);
614 return;
0fff78ff 615 }
616
12408a1b 617 if (!ssh_gssapi_check_oid(gssctxt, oidv + 2, oidlen - 2))
618 fatal("Server returned different OID than expected");
619
0fff78ff 620 packet_check_eom();
621
622 xfree(oidv);
623
12408a1b 624 if (GSS_ERROR(process_gssapi_token(ctxt, GSS_C_NO_BUFFER))) {
0fff78ff 625 /* Start again with next method on list */
626 debug("Trying to start again");
627 userauth(authctxt, NULL);
628 return;
629 }
0fff78ff 630}
631
632void
633input_gssapi_token(int type, u_int32_t plen, void *ctxt)
634{
635 Authctxt *authctxt = ctxt;
0fff78ff 636 gss_buffer_desc recv_tok;
12408a1b 637 OM_uint32 status;
0fff78ff 638 u_int slen;
639
640 if (authctxt == NULL)
641 fatal("input_gssapi_response: no authentication context");
0fff78ff 642
643 recv_tok.value = packet_get_string(&slen);
644 recv_tok.length = slen; /* safe typecast */
645
646 packet_check_eom();
647
12408a1b 648 status = process_gssapi_token(ctxt, &recv_tok);
0fff78ff 649
650 xfree(recv_tok.value);
651
652 if (GSS_ERROR(status)) {
0fff78ff 653 /* Start again with the next method in the list */
654 userauth(authctxt, NULL);
655 return;
656 }
3c0ef626 657}
658
0fff78ff 659void
660input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
661{
662 Authctxt *authctxt = ctxt;
663 Gssctxt *gssctxt;
664 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
665 gss_buffer_desc recv_tok;
666 OM_uint32 status, ms;
667 u_int len;
668
669 if (authctxt == NULL)
670 fatal("input_gssapi_response: no authentication context");
671 gssctxt = authctxt->methoddata;
672
673 recv_tok.value = packet_get_string(&len);
674 recv_tok.length = len;
675
676 packet_check_eom();
677
678 /* Stick it into GSSAPI and see what it says */
679 status = ssh_gssapi_init_ctx(gssctxt, options.gss_deleg_creds,
680 &recv_tok, &send_tok, NULL);
681
682 xfree(recv_tok.value);
683 gss_release_buffer(&ms, &send_tok);
684
685 /* Server will be returning a failed packet after this one */
686}
687
688void
689input_gssapi_error(int type, u_int32_t plen, void *ctxt)
690{
691 OM_uint32 maj, min;
692 char *msg;
693 char *lang;
694
695 maj=packet_get_int();
696 min=packet_get_int();
697 msg=packet_get_string(NULL);
698 lang=packet_get_string(NULL);
699
700 packet_check_eom();
701
702 debug("Server GSSAPI Error:\n%s\n", msg);
703 xfree(msg);
704 xfree(lang);
705}
706#endif /* GSSAPI */
707
3c0ef626 708int
709userauth_none(Authctxt *authctxt)
710{
711 /* initial userauth request */
712 packet_start(SSH2_MSG_USERAUTH_REQUEST);
713 packet_put_cstring(authctxt->server_user);
714 packet_put_cstring(authctxt->service);
715 packet_put_cstring(authctxt->method->name);
716 packet_send();
717 return 1;
718}
719
720int
721userauth_passwd(Authctxt *authctxt)
722{
723 static int attempt = 0;
700318f3 724 char prompt[150];
3c0ef626 725 char *password;
726
727 if (attempt++ >= options.number_of_password_prompts)
728 return 0;
729
e9a17296 730 if (attempt != 1)
3c0ef626 731 error("Permission denied, please try again.");
732
733 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
734 authctxt->server_user, authctxt->host);
735 password = read_passphrase(prompt, 0);
736 packet_start(SSH2_MSG_USERAUTH_REQUEST);
737 packet_put_cstring(authctxt->server_user);
738 packet_put_cstring(authctxt->service);
739 packet_put_cstring(authctxt->method->name);
740 packet_put_char(0);
741 packet_put_cstring(password);
742 memset(password, 0, strlen(password));
743 xfree(password);
744 packet_add_padding(64);
745 packet_send();
700318f3 746
f5799ae1 747 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
700318f3 748 &input_userauth_passwd_changereq);
749
3c0ef626 750 return 1;
751}
700318f3 752/*
753 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
754 */
755void
756input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
757{
758 Authctxt *authctxt = ctxt;
759 char *info, *lang, *password = NULL, *retype = NULL;
760 char prompt[150];
761
762 debug2("input_userauth_passwd_changereq");
763
764 if (authctxt == NULL)
765 fatal("input_userauth_passwd_changereq: "
766 "no authentication context");
767
768 info = packet_get_string(NULL);
769 lang = packet_get_string(NULL);
770 if (strlen(info) > 0)
0fff78ff 771 logit("%s", info);
700318f3 772 xfree(info);
773 xfree(lang);
774 packet_start(SSH2_MSG_USERAUTH_REQUEST);
775 packet_put_cstring(authctxt->server_user);
776 packet_put_cstring(authctxt->service);
777 packet_put_cstring(authctxt->method->name);
778 packet_put_char(1); /* additional info */
f5799ae1 779 snprintf(prompt, sizeof(prompt),
700318f3 780 "Enter %.30s@%.128s's old password: ",
781 authctxt->server_user, authctxt->host);
782 password = read_passphrase(prompt, 0);
783 packet_put_cstring(password);
784 memset(password, 0, strlen(password));
785 xfree(password);
786 password = NULL;
787 while (password == NULL) {
f5799ae1 788 snprintf(prompt, sizeof(prompt),
700318f3 789 "Enter %.30s@%.128s's new password: ",
790 authctxt->server_user, authctxt->host);
791 password = read_passphrase(prompt, RP_ALLOW_EOF);
792 if (password == NULL) {
793 /* bail out */
794 return;
795 }
f5799ae1 796 snprintf(prompt, sizeof(prompt),
700318f3 797 "Retype %.30s@%.128s's new password: ",
798 authctxt->server_user, authctxt->host);
799 retype = read_passphrase(prompt, 0);
800 if (strcmp(password, retype) != 0) {
801 memset(password, 0, strlen(password));
802 xfree(password);
0fff78ff 803 logit("Mismatch; try again, EOF to quit.");
700318f3 804 password = NULL;
805 }
806 memset(retype, 0, strlen(retype));
807 xfree(retype);
808 }
809 packet_put_cstring(password);
810 memset(password, 0, strlen(password));
811 xfree(password);
812 packet_add_padding(64);
813 packet_send();
f5799ae1 814
815 dispatch_set(SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ,
700318f3 816 &input_userauth_passwd_changereq);
817}
3c0ef626 818
0fff78ff 819static int
820identity_sign(Identity *id, u_char **sigp, u_int *lenp,
821 u_char *data, u_int datalen)
3c0ef626 822{
0fff78ff 823 Key *prv;
824 int ret;
700318f3 825
0fff78ff 826 /* the agent supports this key */
827 if (id->ac)
828 return (ssh_agent_sign(id->ac, id->key, sigp, lenp,
829 data, datalen));
830 /*
831 * we have already loaded the private key or
832 * the private key is stored in external hardware
833 */
834 if (id->isprivate || (id->key->flags & KEY_FLAG_EXT))
835 return (key_sign(id->key, sigp, lenp, data, datalen));
836 /* load the private key from the file */
837 if ((prv = load_identity_file(id->filename)) == NULL)
838 return (-1);
839 ret = key_sign(prv, sigp, lenp, data, datalen);
840 key_free(prv);
841 return (ret);
3c0ef626 842}
843
844static int
0fff78ff 845sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
3c0ef626 846{
847 Buffer b;
848 u_char *blob, *signature;
e9a17296 849 u_int bloblen, slen;
0fff78ff 850 u_int skip = 0;
3c0ef626 851 int ret = -1;
852 int have_sig = 1;
853
854 debug3("sign_and_send_pubkey");
855
0fff78ff 856 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
3c0ef626 857 /* we cannot handle this key */
858 debug3("sign_and_send_pubkey: cannot handle key");
859 return 0;
860 }
861 /* data to be signed */
862 buffer_init(&b);
863 if (datafellows & SSH_OLD_SESSIONID) {
864 buffer_append(&b, session_id2, session_id2_len);
865 skip = session_id2_len;
866 } else {
867 buffer_put_string(&b, session_id2, session_id2_len);
868 skip = buffer_len(&b);
869 }
870 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
871 buffer_put_cstring(&b, authctxt->server_user);
872 buffer_put_cstring(&b,
873 datafellows & SSH_BUG_PKSERVICE ?
874 "ssh-userauth" :
875 authctxt->service);
876 if (datafellows & SSH_BUG_PKAUTH) {
877 buffer_put_char(&b, have_sig);
878 } else {
879 buffer_put_cstring(&b, authctxt->method->name);
880 buffer_put_char(&b, have_sig);
0fff78ff 881 buffer_put_cstring(&b, key_ssh_name(id->key));
3c0ef626 882 }
883 buffer_put_string(&b, blob, bloblen);
884
885 /* generate signature */
0fff78ff 886 ret = identity_sign(id, &signature, &slen,
3c0ef626 887 buffer_ptr(&b), buffer_len(&b));
888 if (ret == -1) {
889 xfree(blob);
890 buffer_free(&b);
891 return 0;
892 }
893#ifdef DEBUG_PK
894 buffer_dump(&b);
895#endif
896 if (datafellows & SSH_BUG_PKSERVICE) {
897 buffer_clear(&b);
898 buffer_append(&b, session_id2, session_id2_len);
899 skip = session_id2_len;
900 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
901 buffer_put_cstring(&b, authctxt->server_user);
902 buffer_put_cstring(&b, authctxt->service);
903 buffer_put_cstring(&b, authctxt->method->name);
904 buffer_put_char(&b, have_sig);
905 if (!(datafellows & SSH_BUG_PKAUTH))
0fff78ff 906 buffer_put_cstring(&b, key_ssh_name(id->key));
3c0ef626 907 buffer_put_string(&b, blob, bloblen);
908 }
909 xfree(blob);
910
911 /* append signature */
912 buffer_put_string(&b, signature, slen);
913 xfree(signature);
914
915 /* skip session id and packet type */
916 if (buffer_len(&b) < skip + 1)
917 fatal("userauth_pubkey: internal error");
918 buffer_consume(&b, skip + 1);
919
920 /* put remaining data from buffer into packet */
921 packet_start(SSH2_MSG_USERAUTH_REQUEST);
922 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
923 buffer_free(&b);
924 packet_send();
925
926 return 1;
927}
928
929static int
0fff78ff 930send_pubkey_test(Authctxt *authctxt, Identity *id)
3c0ef626 931{
932 u_char *blob;
e9a17296 933 u_int bloblen, have_sig = 0;
3c0ef626 934
935 debug3("send_pubkey_test");
936
0fff78ff 937 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
3c0ef626 938 /* we cannot handle this key */
939 debug3("send_pubkey_test: cannot handle key");
940 return 0;
941 }
942 /* register callback for USERAUTH_PK_OK message */
3c0ef626 943 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
944
945 packet_start(SSH2_MSG_USERAUTH_REQUEST);
946 packet_put_cstring(authctxt->server_user);
947 packet_put_cstring(authctxt->service);
948 packet_put_cstring(authctxt->method->name);
949 packet_put_char(have_sig);
950 if (!(datafellows & SSH_BUG_PKAUTH))
0fff78ff 951 packet_put_cstring(key_ssh_name(id->key));
3c0ef626 952 packet_put_string(blob, bloblen);
953 xfree(blob);
954 packet_send();
955 return 1;
956}
957
958static Key *
959load_identity_file(char *filename)
960{
961 Key *private;
962 char prompt[300], *passphrase;
963 int quit, i;
964 struct stat st;
965
966 if (stat(filename, &st) < 0) {
967 debug3("no such identity: %s", filename);
968 return NULL;
969 }
970 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
971 if (private == NULL) {
972 if (options.batch_mode)
973 return NULL;
974 snprintf(prompt, sizeof prompt,
e9a17296 975 "Enter passphrase for key '%.100s': ", filename);
3c0ef626 976 for (i = 0; i < options.number_of_password_prompts; i++) {
977 passphrase = read_passphrase(prompt, 0);
978 if (strcmp(passphrase, "") != 0) {
979 private = key_load_private_type(KEY_UNSPEC, filename,
980 passphrase, NULL);
981 quit = 0;
982 } else {
983 debug2("no passphrase given, try next key");
984 quit = 1;
985 }
986 memset(passphrase, 0, strlen(passphrase));
987 xfree(passphrase);
988 if (private != NULL || quit)
989 break;
990 debug2("bad passphrase given, try again...");
991 }
992 }
993 return private;
994}
995
0fff78ff 996/*
997 * try keys in the following order:
998 * 1. agent keys that are found in the config file
999 * 2. other agent keys
1000 * 3. keys that are only listed in the config file
1001 */
1002static void
1003pubkey_prepare(Authctxt *authctxt)
3c0ef626 1004{
0fff78ff 1005 Identity *id;
1006 Idlist agent, files, *preferred;
1007 Key *key;
1008 AuthenticationConnection *ac;
1009 char *comment;
1010 int i, found;
1011
1012 TAILQ_INIT(&agent); /* keys from the agent */
1013 TAILQ_INIT(&files); /* keys from the config file */
1014 preferred = &authctxt->keys;
1015 TAILQ_INIT(preferred); /* preferred order of keys */
1016
1017 /* list of keys stored in the filesystem */
1018 for (i = 0; i < options.num_identity_files; i++) {
1019 key = options.identity_keys[i];
1020 if (key && key->type == KEY_RSA1)
1021 continue;
1022 options.identity_keys[i] = NULL;
1023 id = xmalloc(sizeof(*id));
1024 memset(id, 0, sizeof(*id));
1025 id->key = key;
1026 id->filename = xstrdup(options.identity_files[i]);
1027 TAILQ_INSERT_TAIL(&files, id, next);
1028 }
1029 /* list of keys supported by the agent */
1030 if ((ac = ssh_get_authentication_connection())) {
1031 for (key = ssh_get_first_identity(ac, &comment, 2);
1032 key != NULL;
1033 key = ssh_get_next_identity(ac, &comment, 2)) {
1034 found = 0;
1035 TAILQ_FOREACH(id, &files, next) {
12408a1b 1036 /* agent keys from the config file are preferred */
0fff78ff 1037 if (key_equal(key, id->key)) {
1038 key_free(key);
1039 xfree(comment);
1040 TAILQ_REMOVE(&files, id, next);
1041 TAILQ_INSERT_TAIL(preferred, id, next);
1042 id->ac = ac;
1043 found = 1;
1044 break;
1045 }
1046 }
1047 if (!found) {
1048 id = xmalloc(sizeof(*id));
1049 memset(id, 0, sizeof(*id));
1050 id->key = key;
1051 id->filename = comment;
1052 id->ac = ac;
1053 TAILQ_INSERT_TAIL(&agent, id, next);
1054 }
1055 }
1056 /* append remaining agent keys */
1057 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) {
1058 TAILQ_REMOVE(&agent, id, next);
1059 TAILQ_INSERT_TAIL(preferred, id, next);
1060 }
1061 authctxt->agent = ac;
1062 }
1063 /* append remaining keys from the config file */
1064 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) {
1065 TAILQ_REMOVE(&files, id, next);
1066 TAILQ_INSERT_TAIL(preferred, id, next);
1067 }
1068 TAILQ_FOREACH(id, preferred, next) {
1069 debug2("key: %s (%p)", id->filename, id->key);
1070 }
3c0ef626 1071}
1072
0fff78ff 1073static void
1074pubkey_cleanup(Authctxt *authctxt)
3c0ef626 1075{
0fff78ff 1076 Identity *id;
1077
1078 if (authctxt->agent != NULL)
1079 ssh_close_authentication_connection(authctxt->agent);
1080 for (id = TAILQ_FIRST(&authctxt->keys); id;
1081 id = TAILQ_FIRST(&authctxt->keys)) {
1082 TAILQ_REMOVE(&authctxt->keys, id, next);
1083 if (id->key)
1084 key_free(id->key);
1085 if (id->filename)
1086 xfree(id->filename);
1087 xfree(id);
3c0ef626 1088 }
3c0ef626 1089}
1090
1091int
1092userauth_pubkey(Authctxt *authctxt)
1093{
0fff78ff 1094 Identity *id;
3c0ef626 1095 int sent = 0;
0fff78ff 1096
1097 while ((id = TAILQ_FIRST(&authctxt->keys))) {
1098 if (id->tried++)
1099 return (0);
12408a1b 1100 /* move key to the end of the queue */
0fff78ff 1101 TAILQ_REMOVE(&authctxt->keys, id, next);
1102 TAILQ_INSERT_TAIL(&authctxt->keys, id, next);
1103 /*
1104 * send a test message if we have the public key. for
1105 * encrypted keys we cannot do this and have to load the
1106 * private key instead
1107 */
1108 if (id->key && id->key->type != KEY_RSA1) {
1109 debug("Offering public key: %s", id->filename);
1110 sent = send_pubkey_test(authctxt, id);
1111 } else if (id->key == NULL) {
1112 debug("Trying private key: %s", id->filename);
1113 id->key = load_identity_file(id->filename);
1114 if (id->key != NULL) {
1115 id->isprivate = 1;
1116 sent = sign_and_send_pubkey(authctxt, id);
1117 key_free(id->key);
1118 id->key = NULL;
3c0ef626 1119 }
3c0ef626 1120 }
0fff78ff 1121 if (sent)
1122 return (sent);
3c0ef626 1123 }
0fff78ff 1124 return (0);
3c0ef626 1125}
1126
1127/*
1128 * Send userauth request message specifying keyboard-interactive method.
1129 */
1130int
1131userauth_kbdint(Authctxt *authctxt)
1132{
1133 static int attempt = 0;
1134
1135 if (attempt++ >= options.number_of_password_prompts)
1136 return 0;
1137 /* disable if no SSH2_MSG_USERAUTH_INFO_REQUEST has been seen */
1138 if (attempt > 1 && !authctxt->info_req_seen) {
1139 debug3("userauth_kbdint: disable: no info_req_seen");
1140 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, NULL);
1141 return 0;
1142 }
1143
1144 debug2("userauth_kbdint");
1145 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1146 packet_put_cstring(authctxt->server_user);
1147 packet_put_cstring(authctxt->service);
1148 packet_put_cstring(authctxt->method->name);
1149 packet_put_cstring(""); /* lang */
1150 packet_put_cstring(options.kbd_interactive_devices ?
1151 options.kbd_interactive_devices : "");
1152 packet_send();
1153
1154 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1155 return 1;
1156}
1157
1158/*
1159 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
1160 */
1161void
e9a17296 1162input_userauth_info_req(int type, u_int32_t seq, void *ctxt)
3c0ef626 1163{
1164 Authctxt *authctxt = ctxt;
1165 char *name, *inst, *lang, *prompt, *response;
1166 u_int num_prompts, i;
1167 int echo = 0;
1168
1169 debug2("input_userauth_info_req");
1170
1171 if (authctxt == NULL)
1172 fatal("input_userauth_info_req: no authentication context");
1173
1174 authctxt->info_req_seen = 1;
1175
1176 name = packet_get_string(NULL);
1177 inst = packet_get_string(NULL);
1178 lang = packet_get_string(NULL);
1179 if (strlen(name) > 0)
0fff78ff 1180 logit("%s", name);
3c0ef626 1181 if (strlen(inst) > 0)
0fff78ff 1182 logit("%s", inst);
3c0ef626 1183 xfree(name);
1184 xfree(inst);
1185 xfree(lang);
1186
1187 num_prompts = packet_get_int();
1188 /*
1189 * Begin to build info response packet based on prompts requested.
1190 * We commit to providing the correct number of responses, so if
1191 * further on we run into a problem that prevents this, we have to
1192 * be sure and clean this up and send a correct error response.
1193 */
1194 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1195 packet_put_int(num_prompts);
1196
1197 debug2("input_userauth_info_req: num_prompts %d", num_prompts);
1198 for (i = 0; i < num_prompts; i++) {
1199 prompt = packet_get_string(NULL);
1200 echo = packet_get_char();
1201
1202 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
1203
1204 packet_put_cstring(response);
1205 memset(response, 0, strlen(response));
1206 xfree(response);
1207 xfree(prompt);
1208 }
e9a17296 1209 packet_check_eom(); /* done with parsing incoming message. */
3c0ef626 1210
1211 packet_add_padding(64);
1212 packet_send();
1213}
1214
f5799ae1 1215static int
680cee3b 1216ssh_keysign(Key *key, u_char **sigp, u_int *lenp,
f5799ae1 1217 u_char *data, u_int datalen)
1218{
1219 Buffer b;
1220 struct stat st;
1221 pid_t pid;
1222 int to[2], from[2], status, version = 2;
1223
6a9b3198 1224 debug2("ssh_keysign called");
f5799ae1 1225
1226 if (stat(_PATH_SSH_KEY_SIGN, &st) < 0) {
1227 error("ssh_keysign: no installed: %s", strerror(errno));
1228 return -1;
1229 }
1230 if (fflush(stdout) != 0)
1231 error("ssh_keysign: fflush: %s", strerror(errno));
1232 if (pipe(to) < 0) {
1233 error("ssh_keysign: pipe: %s", strerror(errno));
1234 return -1;
1235 }
1236 if (pipe(from) < 0) {
1237 error("ssh_keysign: pipe: %s", strerror(errno));
1238 return -1;
1239 }
1240 if ((pid = fork()) < 0) {
1241 error("ssh_keysign: fork: %s", strerror(errno));
1242 return -1;
1243 }
1244 if (pid == 0) {
1245 seteuid(getuid());
1246 setuid(getuid());
1247 close(from[0]);
1248 if (dup2(from[1], STDOUT_FILENO) < 0)
1249 fatal("ssh_keysign: dup2: %s", strerror(errno));
1250 close(to[1]);
1251 if (dup2(to[0], STDIN_FILENO) < 0)
1252 fatal("ssh_keysign: dup2: %s", strerror(errno));
1253 close(from[1]);
1254 close(to[0]);
1255 execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
1256 fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
1257 strerror(errno));
1258 }
1259 close(from[1]);
1260 close(to[0]);
1261
1262 buffer_init(&b);
1263 buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
1264 buffer_put_string(&b, data, datalen);
12408a1b 1265 if (ssh_msg_send(to[1], version, &b) == -1)
1266 fatal("ssh_keysign: couldn't send request");
f5799ae1 1267
41b2f314 1268 if (ssh_msg_recv(from[0], &b) < 0) {
f5799ae1 1269 error("ssh_keysign: no reply");
1270 buffer_clear(&b);
1271 return -1;
1272 }
1273 close(from[0]);
1274 close(to[1]);
1275
1276 while (waitpid(pid, &status, 0) < 0)
1277 if (errno != EINTR)
1278 break;
1279
1280 if (buffer_get_char(&b) != version) {
1281 error("ssh_keysign: bad version");
1282 buffer_clear(&b);
1283 return -1;
1284 }
1285 *sigp = buffer_get_string(&b, lenp);
1286 buffer_clear(&b);
1287
1288 return 0;
1289}
1290
3c0ef626 1291int
1292userauth_hostbased(Authctxt *authctxt)
1293{
1294 Key *private = NULL;
f5799ae1 1295 Sensitive *sensitive = authctxt->sensitive;
3c0ef626 1296 Buffer b;
1297 u_char *signature, *blob;
1298 char *chost, *pkalg, *p;
1299 const char *service;
1300 u_int blen, slen;
1301 int ok, i, len, found = 0;
1302
1303 /* check for a useful key */
f5799ae1 1304 for (i = 0; i < sensitive->nkeys; i++) {
1305 private = sensitive->keys[i];
3c0ef626 1306 if (private && private->type != KEY_RSA1) {
1307 found = 1;
1308 /* we take and free the key */
f5799ae1 1309 sensitive->keys[i] = NULL;
3c0ef626 1310 break;
1311 }
1312 }
1313 if (!found) {
6a9b3198 1314 debug("No more client hostkeys for hostbased authentication.");
3c0ef626 1315 return 0;
1316 }
1317 if (key_to_blob(private, &blob, &blen) == 0) {
1318 key_free(private);
1319 return 0;
1320 }
1321 /* figure out a name for the client host */
1322 p = get_local_name(packet_get_connection_in());
1323 if (p == NULL) {
1324 error("userauth_hostbased: cannot get local ipaddr/name");
1325 key_free(private);
1326 return 0;
1327 }
1328 len = strlen(p) + 2;
1329 chost = xmalloc(len);
1330 strlcpy(chost, p, len);
1331 strlcat(chost, ".", len);
1332 debug2("userauth_hostbased: chost %s", chost);
6a9b3198 1333 xfree(p);
3c0ef626 1334
1335 service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
1336 authctxt->service;
1337 pkalg = xstrdup(key_ssh_name(private));
1338 buffer_init(&b);
1339 /* construct data */
1340 buffer_put_string(&b, session_id2, session_id2_len);
1341 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
1342 buffer_put_cstring(&b, authctxt->server_user);
1343 buffer_put_cstring(&b, service);
1344 buffer_put_cstring(&b, authctxt->method->name);
1345 buffer_put_cstring(&b, pkalg);
1346 buffer_put_string(&b, blob, blen);
1347 buffer_put_cstring(&b, chost);
1348 buffer_put_cstring(&b, authctxt->local_user);
1349#ifdef DEBUG_PK
1350 buffer_dump(&b);
1351#endif
f5799ae1 1352 if (sensitive->external_keysign)
1353 ok = ssh_keysign(private, &signature, &slen,
1354 buffer_ptr(&b), buffer_len(&b));
1355 else
1356 ok = key_sign(private, &signature, &slen,
1357 buffer_ptr(&b), buffer_len(&b));
3c0ef626 1358 key_free(private);
1359 buffer_free(&b);
1360 if (ok != 0) {
1361 error("key_sign failed");
1362 xfree(chost);
1363 xfree(pkalg);
1364 return 0;
1365 }
1366 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1367 packet_put_cstring(authctxt->server_user);
1368 packet_put_cstring(authctxt->service);
1369 packet_put_cstring(authctxt->method->name);
1370 packet_put_cstring(pkalg);
1371 packet_put_string(blob, blen);
1372 packet_put_cstring(chost);
1373 packet_put_cstring(authctxt->local_user);
1374 packet_put_string(signature, slen);
1375 memset(signature, 's', slen);
1376 xfree(signature);
1377 xfree(chost);
1378 xfree(pkalg);
1379
1380 packet_send();
1381 return 1;
1382}
1383
1384/* find auth method */
1385
1386/*
1387 * given auth method name, if configurable options permit this method fill
1388 * in auth_ident field and return true, otherwise return false.
1389 */
1390static int
1391authmethod_is_enabled(Authmethod *method)
1392{
1393 if (method == NULL)
1394 return 0;
1395 /* return false if options indicate this method is disabled */
1396 if (method->enabled == NULL || *method->enabled == 0)
1397 return 0;
1398 /* return false if batch mode is enabled but method needs interactive mode */
1399 if (method->batch_flag != NULL && *method->batch_flag != 0)
1400 return 0;
1401 return 1;
1402}
1403
1404static Authmethod *
1405authmethod_lookup(const char *name)
1406{
1407 Authmethod *method = NULL;
1408 if (name != NULL)
1409 for (method = authmethods; method->name != NULL; method++)
1410 if (strcmp(name, method->name) == 0)
1411 return method;
1412 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1413 return NULL;
1414}
1415
1416/* XXX internal state */
1417static Authmethod *current = NULL;
1418static char *supported = NULL;
1419static char *preferred = NULL;
680cee3b 1420
3c0ef626 1421/*
1422 * Given the authentication method list sent by the server, return the
1423 * next method we should try. If the server initially sends a nil list,
1424 * use a built-in default list.
1425 */
1426static Authmethod *
1427authmethod_get(char *authlist)
1428{
3c0ef626 1429 char *name = NULL;
e9a17296 1430 u_int next;
3c0ef626 1431
1432 /* Use a suitable default if we're passed a nil list. */
1433 if (authlist == NULL || strlen(authlist) == 0)
1434 authlist = options.preferred_authentications;
1435
1436 if (supported == NULL || strcmp(authlist, supported) != 0) {
1437 debug3("start over, passed a different list %s", authlist);
1438 if (supported != NULL)
1439 xfree(supported);
1440 supported = xstrdup(authlist);
1441 preferred = options.preferred_authentications;
1442 debug3("preferred %s", preferred);
1443 current = NULL;
1444 } else if (current != NULL && authmethod_is_enabled(current))
1445 return current;
1446
1447 for (;;) {
1448 if ((name = match_list(preferred, supported, &next)) == NULL) {
6a9b3198 1449 debug("No more authentication methods to try.");
3c0ef626 1450 current = NULL;
1451 return NULL;
1452 }
1453 preferred += next;
1454 debug3("authmethod_lookup %s", name);
1455 debug3("remaining preferred: %s", preferred);
1456 if ((current = authmethod_lookup(name)) != NULL &&
1457 authmethod_is_enabled(current)) {
1458 debug3("authmethod_is_enabled %s", name);
6a9b3198 1459 debug("Next authentication method: %s", name);
3c0ef626 1460 return current;
1461 }
1462 }
1463}
1464
3c0ef626 1465static char *
1466authmethods_get(void)
1467{
1468 Authmethod *method = NULL;
e9a17296 1469 Buffer b;
1470 char *list;
3c0ef626 1471
e9a17296 1472 buffer_init(&b);
3c0ef626 1473 for (method = authmethods; method->name != NULL; method++) {
1474 if (authmethod_is_enabled(method)) {
e9a17296 1475 if (buffer_len(&b) > 0)
1476 buffer_append(&b, ",", 1);
1477 buffer_append(&b, method->name, strlen(method->name));
3c0ef626 1478 }
1479 }
e9a17296 1480 buffer_append(&b, "\0", 1);
1481 list = xstrdup(buffer_ptr(&b));
1482 buffer_free(&b);
1483 return list;
3c0ef626 1484}
This page took 0.386546 seconds and 5 git commands to generate.