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