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