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