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