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