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