blob: 7a8c77b670f14e20813f5fad6cd99fea511606fa [file] [log] [blame]
Damien Millereba71ba2000-04-29 23:57:08 +10001/*
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.
Damien Millereba71ba2000-04-29 23:57:08 +100012 *
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"
Damien Miller2557bfc2001-03-30 10:47:14 +100026RCSID("$OpenBSD: sshconnect2.c,v 1.58 2001/03/28 21:59:40 provos Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100027
28#include <openssl/bn.h>
Damien Millereba71ba2000-04-29 23:57:08 +100029#include <openssl/md5.h>
30#include <openssl/dh.h>
31#include <openssl/hmac.h>
32
33#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "ssh2.h"
Damien Millereba71ba2000-04-29 23:57:08 +100035#include "xmalloc.h"
36#include "rsa.h"
37#include "buffer.h"
38#include "packet.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039#include "uidswap.h"
40#include "compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042#include "cipher.h"
Damien Millereba71ba2000-04-29 23:57:08 +100043#include "kex.h"
44#include "myproposal.h"
45#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "sshconnect.h"
47#include "authfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110048#include "cli.h"
Ben Lindstromdf221392001-03-29 00:36:16 +000049#include "dh.h"
Damien Miller62cee002000-09-23 17:15:56 +110050#include "dispatch.h"
Damien Millerad833b32000-08-23 10:46:23 +100051#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "log.h"
53#include "readconf.h"
54#include "readpass.h"
Ben Lindstromb9be60a2001-03-11 01:49:19 +000055#include "match.h"
Damien Millereba71ba2000-04-29 23:57:08 +100056
Damien Miller874d77b2000-10-14 16:23:11 +110057void ssh_dh1_client(Kex *, char *, struct sockaddr *, Buffer *, Buffer *);
58void ssh_dhgex_client(Kex *, char *, struct sockaddr *, Buffer *, Buffer *);
59
Damien Millereba71ba2000-04-29 23:57:08 +100060/* import */
61extern char *client_version_string;
62extern char *server_version_string;
63extern Options options;
64
65/*
66 * SSH2 key exchange
67 */
68
Ben Lindstrom46c16222000-12-22 01:43:59 +000069u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100070int session_id2_len = 0;
71
72void
Damien Miller874d77b2000-10-14 16:23:11 +110073ssh_kex2(char *host, struct sockaddr *hostaddr)
74{
75 int i, plen;
76 Kex *kex;
77 Buffer *client_kexinit, *server_kexinit;
78 char *sprop[PROPOSAL_MAX];
79
Damien Millere39cacc2000-11-29 12:18:44 +110080 if (options.ciphers == (char *)-1) {
81 log("No valid ciphers for protocol version 2 given, using defaults.");
82 options.ciphers = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +110083 }
84 if (options.ciphers != NULL) {
85 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
86 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
87 }
88 if (options.compression) {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000089 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller874d77b2000-10-14 16:23:11 +110090 myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib";
91 } else {
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000092 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Damien Miller874d77b2000-10-14 16:23:11 +110093 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
94 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000095 if (options.macs != NULL) {
96 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
97 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
98 }
Damien Miller874d77b2000-10-14 16:23:11 +110099
Ben Lindstromc8530c72001-03-24 00:35:19 +0000100 myproposal[PROPOSAL_ENC_ALGS_STOC] =
101 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
102
Damien Miller874d77b2000-10-14 16:23:11 +1100103 /* buffers with raw kexinit messages */
104 server_kexinit = xmalloc(sizeof(*server_kexinit));
105 buffer_init(server_kexinit);
106 client_kexinit = kex_init(myproposal);
107
108 /* algorithm negotiation */
109 kex_exchange_kexinit(client_kexinit, server_kexinit, sprop);
110 kex = kex_choose_conf(myproposal, sprop, 0);
111 for (i = 0; i < PROPOSAL_MAX; i++)
112 xfree(sprop[i]);
113
114 /* server authentication and session key agreement */
115 switch(kex->kex_type) {
116 case DH_GRP1_SHA1:
117 ssh_dh1_client(kex, host, hostaddr,
118 client_kexinit, server_kexinit);
119 break;
120 case DH_GEX_SHA1:
121 ssh_dhgex_client(kex, host, hostaddr, client_kexinit,
122 server_kexinit);
123 break;
124 default:
125 fatal("Unsupported key exchange %d", kex->kex_type);
126 }
127
128 buffer_free(client_kexinit);
129 buffer_free(server_kexinit);
130 xfree(client_kexinit);
131 xfree(server_kexinit);
132
133 debug("Wait SSH2_MSG_NEWKEYS.");
134 packet_read_expect(&plen, SSH2_MSG_NEWKEYS);
135 packet_done();
136 debug("GOT SSH2_MSG_NEWKEYS.");
137
138 debug("send SSH2_MSG_NEWKEYS.");
139 packet_start(SSH2_MSG_NEWKEYS);
140 packet_send();
141 packet_write_wait();
142 debug("done: send SSH2_MSG_NEWKEYS.");
143
144#ifdef DEBUG_KEXDH
145 /* send 1st encrypted/maced/compressed message */
146 packet_start(SSH2_MSG_IGNORE);
147 packet_put_cstring("markus");
148 packet_send();
149 packet_write_wait();
150#endif
151 debug("done: KEX2.");
152}
153
154/* diffie-hellman-group1-sha1 */
155
156void
Kevin Stevesef4eea92001-02-05 12:42:17 +0000157ssh_dh1_client(Kex *kex, char *host, struct sockaddr *hostaddr,
Damien Miller874d77b2000-10-14 16:23:11 +1100158 Buffer *client_kexinit, Buffer *server_kexinit)
Damien Millereba71ba2000-04-29 23:57:08 +1000159{
Damien Miller62cee002000-09-23 17:15:56 +1100160#ifdef DEBUG_KEXDH
161 int i;
162#endif
Damien Millerb1715dc2000-05-30 13:44:51 +1000163 int plen, dlen;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000164 u_int klen, kout;
Damien Millereba71ba2000-04-29 23:57:08 +1000165 char *signature = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000166 u_int slen;
Damien Millereba71ba2000-04-29 23:57:08 +1000167 char *server_host_key_blob = NULL;
168 Key *server_host_key;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000169 u_int sbloblen;
Damien Millereba71ba2000-04-29 23:57:08 +1000170 DH *dh;
171 BIGNUM *dh_server_pub = 0;
172 BIGNUM *shared_secret = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000173 u_char *kbuf;
174 u_char *hash;
Damien Millereba71ba2000-04-29 23:57:08 +1000175
Damien Millereba71ba2000-04-29 23:57:08 +1000176 debug("Sending SSH2_MSG_KEXDH_INIT.");
Damien Millereba71ba2000-04-29 23:57:08 +1000177 /* generate and send 'e', client DH public key */
178 dh = dh_new_group1();
Ben Lindstrom4c4f05e2001-03-06 01:09:20 +0000179 dh_gen_key(dh, kex->we_need * 8);
Damien Millereba71ba2000-04-29 23:57:08 +1000180 packet_start(SSH2_MSG_KEXDH_INIT);
181 packet_put_bignum2(dh->pub_key);
182 packet_send();
183 packet_write_wait();
184
185#ifdef DEBUG_KEXDH
186 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +1100187 BN_print_fp(stderr, dh->p);
Damien Millereba71ba2000-04-29 23:57:08 +1000188 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +1100189 BN_print_fp(stderr, dh->g);
Damien Millereba71ba2000-04-29 23:57:08 +1000190 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +1100191 BN_print_fp(stderr, dh->pub_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000192 fprintf(stderr, "\n");
193 DHparams_print_fp(stderr, dh);
194#endif
195
196 debug("Wait SSH2_MSG_KEXDH_REPLY.");
197
Damien Millerb1715dc2000-05-30 13:44:51 +1000198 packet_read_expect(&plen, SSH2_MSG_KEXDH_REPLY);
Damien Millereba71ba2000-04-29 23:57:08 +1000199
200 debug("Got SSH2_MSG_KEXDH_REPLY.");
201
202 /* key, cert */
203 server_host_key_blob = packet_get_string(&sbloblen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100204 server_host_key = key_from_blob(server_host_key_blob, sbloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000205 if (server_host_key == NULL)
206 fatal("cannot decode server_host_key_blob");
207
208 check_host_key(host, hostaddr, server_host_key,
Damien Miller874d77b2000-10-14 16:23:11 +1100209 options.user_hostfile2, options.system_hostfile2);
Damien Millereba71ba2000-04-29 23:57:08 +1000210
211 /* DH paramter f, server public DH key */
212 dh_server_pub = BN_new();
213 if (dh_server_pub == NULL)
214 fatal("dh_server_pub == NULL");
215 packet_get_bignum2(dh_server_pub, &dlen);
216
217#ifdef DEBUG_KEXDH
218 fprintf(stderr, "\ndh_server_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +1100219 BN_print_fp(stderr, dh_server_pub);
Damien Millereba71ba2000-04-29 23:57:08 +1000220 fprintf(stderr, "\n");
221 debug("bits %d", BN_num_bits(dh_server_pub));
222#endif
223
224 /* signed H */
225 signature = packet_get_string(&slen);
226 packet_done();
227
228 if (!dh_pub_is_valid(dh, dh_server_pub))
229 packet_disconnect("bad server public DH value");
230
231 klen = DH_size(dh);
232 kbuf = xmalloc(klen);
233 kout = DH_compute_key(kbuf, dh_server_pub, dh);
234#ifdef DEBUG_KEXDH
235 debug("shared secret: len %d/%d", klen, kout);
236 fprintf(stderr, "shared secret == ");
237 for (i = 0; i< kout; i++)
238 fprintf(stderr, "%02x", (kbuf[i])&0xff);
239 fprintf(stderr, "\n");
240#endif
241 shared_secret = BN_new();
242
243 BN_bin2bn(kbuf, kout, shared_secret);
244 memset(kbuf, 0, klen);
245 xfree(kbuf);
246
247 /* calc and verify H */
248 hash = kex_hash(
249 client_version_string,
250 server_version_string,
251 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
252 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
253 server_host_key_blob, sbloblen,
254 dh->pub_key,
255 dh_server_pub,
256 shared_secret
257 );
258 xfree(server_host_key_blob);
Damien Millerb1715dc2000-05-30 13:44:51 +1000259 DH_free(dh);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000260 BN_free(dh_server_pub);
Damien Millereba71ba2000-04-29 23:57:08 +1000261#ifdef DEBUG_KEXDH
262 fprintf(stderr, "hash == ");
263 for (i = 0; i< 20; i++)
264 fprintf(stderr, "%02x", (hash[i])&0xff);
265 fprintf(stderr, "\n");
266#endif
Ben Lindstrom46c16222000-12-22 01:43:59 +0000267 if (key_verify(server_host_key, (u_char *)signature, slen, hash, 20) != 1)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100268 fatal("key_verify failed for server_host_key");
Damien Millereba71ba2000-04-29 23:57:08 +1000269 key_free(server_host_key);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000270 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +1000271
272 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000273 BN_clear_free(shared_secret);
Damien Millereba71ba2000-04-29 23:57:08 +1000274 packet_set_kex(kex);
275
Damien Millereba71ba2000-04-29 23:57:08 +1000276 /* save session id */
277 session_id2_len = 20;
278 session_id2 = xmalloc(session_id2_len);
279 memcpy(session_id2, hash, session_id2_len);
Damien Millerb1715dc2000-05-30 13:44:51 +1000280}
281
Damien Miller874d77b2000-10-14 16:23:11 +1100282/* diffie-hellman-group-exchange-sha1 */
283
284/*
285 * Estimates the group order for a Diffie-Hellman group that has an
286 * attack complexity approximately the same as O(2**bits). Estimate
287 * with: O(exp(1.9223 * (ln q)^(1/3) (ln ln q)^(2/3)))
288 */
289
290int
291dh_estimate(int bits)
Damien Millerb1715dc2000-05-30 13:44:51 +1000292{
Kevin Stevesef4eea92001-02-05 12:42:17 +0000293
Damien Miller874d77b2000-10-14 16:23:11 +1100294 if (bits < 64)
295 return (512); /* O(2**63) */
296 if (bits < 128)
297 return (1024); /* O(2**86) */
298 if (bits < 192)
299 return (2048); /* O(2**116) */
300 return (4096); /* O(2**156) */
301}
Damien Millerb1715dc2000-05-30 13:44:51 +1000302
Damien Miller874d77b2000-10-14 16:23:11 +1100303void
304ssh_dhgex_client(Kex *kex, char *host, struct sockaddr *hostaddr,
305 Buffer *client_kexinit, Buffer *server_kexinit)
306{
307#ifdef DEBUG_KEXDH
308 int i;
309#endif
310 int plen, dlen;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000311 u_int klen, kout;
Damien Miller874d77b2000-10-14 16:23:11 +1100312 char *signature = NULL;
Ben Lindstromdf221392001-03-29 00:36:16 +0000313 u_int slen, nbits, min, max;
Damien Miller874d77b2000-10-14 16:23:11 +1100314 char *server_host_key_blob = NULL;
315 Key *server_host_key;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000316 u_int sbloblen;
Damien Miller874d77b2000-10-14 16:23:11 +1100317 DH *dh;
318 BIGNUM *dh_server_pub = 0;
319 BIGNUM *shared_secret = 0;
320 BIGNUM *p = 0, *g = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000321 u_char *kbuf;
322 u_char *hash;
Damien Millerb1715dc2000-05-30 13:44:51 +1000323
Ben Lindstrom4c4f05e2001-03-06 01:09:20 +0000324 nbits = dh_estimate(kex->we_need * 8);
Damien Millerb1715dc2000-05-30 13:44:51 +1000325
Ben Lindstromdf221392001-03-29 00:36:16 +0000326 if (datafellows & SSH_OLD_DHGEX) {
327 debug("Sending SSH2_MSG_KEX_DH_GEX_REQUEST_OLD.");
328
329 /* Old GEX request */
330 packet_start(SSH2_MSG_KEX_DH_GEX_REQUEST_OLD);
331 packet_put_int(nbits);
332 min = DH_GRP_MIN;
333 max = DH_GRP_MAX;
334 } else {
335 debug("Sending SSH2_MSG_KEX_DH_GEX_REQUEST.");
336
337 /* New GEX request */
338 min = DH_GRP_MIN;
339 max = MIN(DH_GRP_MAX, nbits * 1.25);
340
341 packet_start(SSH2_MSG_KEX_DH_GEX_REQUEST);
342 packet_put_int(min);
343 packet_put_int(nbits);
344 packet_put_int(max);
345 }
Damien Millereba71ba2000-04-29 23:57:08 +1000346 packet_send();
347 packet_write_wait();
Damien Millereba71ba2000-04-29 23:57:08 +1000348
349#ifdef DEBUG_KEXDH
Ben Lindstromdf221392001-03-29 00:36:16 +0000350 fprintf(stderr, "\nmin = %d, nbits = %d, max = %d", min, nbits, max);
Damien Miller874d77b2000-10-14 16:23:11 +1100351#endif
352
353 debug("Wait SSH2_MSG_KEX_DH_GEX_GROUP.");
354
355 packet_read_expect(&plen, SSH2_MSG_KEX_DH_GEX_GROUP);
356
357 debug("Got SSH2_MSG_KEX_DH_GEX_GROUP.");
358
359 if ((p = BN_new()) == NULL)
360 fatal("BN_new");
361 packet_get_bignum2(p, &dlen);
362 if ((g = BN_new()) == NULL)
363 fatal("BN_new");
364 packet_get_bignum2(g, &dlen);
Ben Lindstromdf221392001-03-29 00:36:16 +0000365
366 if (BN_num_bits(p) < min || BN_num_bits(p) > max)
367 fatal("DH_GEX group out of range: %d !< %d !< %d",
368 min, BN_num_bits(p), max);
369
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000370 dh = dh_new_group(g, p);
Damien Miller874d77b2000-10-14 16:23:11 +1100371
Ben Lindstrom4c4f05e2001-03-06 01:09:20 +0000372 dh_gen_key(dh, kex->we_need * 8);
Kevin Steves6b875862000-12-15 23:31:01 +0000373
Damien Miller874d77b2000-10-14 16:23:11 +1100374#ifdef DEBUG_KEXDH
375 fprintf(stderr, "\np= ");
376 BN_print_fp(stderr, dh->p);
377 fprintf(stderr, "\ng= ");
378 BN_print_fp(stderr, dh->g);
379 fprintf(stderr, "\npub= ");
380 BN_print_fp(stderr, dh->pub_key);
381 fprintf(stderr, "\n");
382 DHparams_print_fp(stderr, dh);
383#endif
384
385 debug("Sending SSH2_MSG_KEX_DH_GEX_INIT.");
386 /* generate and send 'e', client DH public key */
387 packet_start(SSH2_MSG_KEX_DH_GEX_INIT);
388 packet_put_bignum2(dh->pub_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000389 packet_send();
390 packet_write_wait();
Damien Miller874d77b2000-10-14 16:23:11 +1100391
392 debug("Wait SSH2_MSG_KEX_DH_GEX_REPLY.");
393
394 packet_read_expect(&plen, SSH2_MSG_KEX_DH_GEX_REPLY);
395
396 debug("Got SSH2_MSG_KEXDH_REPLY.");
397
398 /* key, cert */
399 server_host_key_blob = packet_get_string(&sbloblen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100400 server_host_key = key_from_blob(server_host_key_blob, sbloblen);
Damien Miller874d77b2000-10-14 16:23:11 +1100401 if (server_host_key == NULL)
402 fatal("cannot decode server_host_key_blob");
403
404 check_host_key(host, hostaddr, server_host_key,
405 options.user_hostfile2, options.system_hostfile2);
406
407 /* DH paramter f, server public DH key */
408 dh_server_pub = BN_new();
409 if (dh_server_pub == NULL)
410 fatal("dh_server_pub == NULL");
411 packet_get_bignum2(dh_server_pub, &dlen);
412
413#ifdef DEBUG_KEXDH
414 fprintf(stderr, "\ndh_server_pub= ");
415 BN_print_fp(stderr, dh_server_pub);
416 fprintf(stderr, "\n");
417 debug("bits %d", BN_num_bits(dh_server_pub));
Damien Millereba71ba2000-04-29 23:57:08 +1000418#endif
Damien Miller874d77b2000-10-14 16:23:11 +1100419
420 /* signed H */
421 signature = packet_get_string(&slen);
422 packet_done();
423
424 if (!dh_pub_is_valid(dh, dh_server_pub))
425 packet_disconnect("bad server public DH value");
426
427 klen = DH_size(dh);
428 kbuf = xmalloc(klen);
429 kout = DH_compute_key(kbuf, dh_server_pub, dh);
430#ifdef DEBUG_KEXDH
431 debug("shared secret: len %d/%d", klen, kout);
432 fprintf(stderr, "shared secret == ");
433 for (i = 0; i< kout; i++)
434 fprintf(stderr, "%02x", (kbuf[i])&0xff);
435 fprintf(stderr, "\n");
436#endif
437 shared_secret = BN_new();
438
439 BN_bin2bn(kbuf, kout, shared_secret);
440 memset(kbuf, 0, klen);
441 xfree(kbuf);
442
Damien Miller2557bfc2001-03-30 10:47:14 +1000443 if (datafellows & SSH_OLD_DHGEX) {
444 /* These values are not included in the hash */
445 min = -1;
446 max = -1;
447 }
448
Damien Miller874d77b2000-10-14 16:23:11 +1100449 /* calc and verify H */
450 hash = kex_hash_gex(
451 client_version_string,
452 server_version_string,
453 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
454 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
455 server_host_key_blob, sbloblen,
Damien Miller2557bfc2001-03-30 10:47:14 +1000456 min, nbits, max,
457 dh->p, dh->g,
Damien Miller874d77b2000-10-14 16:23:11 +1100458 dh->pub_key,
459 dh_server_pub,
460 shared_secret
461 );
462 xfree(server_host_key_blob);
463 DH_free(dh);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000464 BN_free(dh_server_pub);
Damien Miller874d77b2000-10-14 16:23:11 +1100465#ifdef DEBUG_KEXDH
466 fprintf(stderr, "hash == ");
467 for (i = 0; i< 20; i++)
468 fprintf(stderr, "%02x", (hash[i])&0xff);
469 fprintf(stderr, "\n");
470#endif
Ben Lindstrom46c16222000-12-22 01:43:59 +0000471 if (key_verify(server_host_key, (u_char *)signature, slen, hash, 20) != 1)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100472 fatal("key_verify failed for server_host_key");
Damien Miller874d77b2000-10-14 16:23:11 +1100473 key_free(server_host_key);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000474 xfree(signature);
Damien Miller874d77b2000-10-14 16:23:11 +1100475
476 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +0000477 BN_clear_free(shared_secret);
Damien Miller874d77b2000-10-14 16:23:11 +1100478 packet_set_kex(kex);
479
480 /* save session id */
481 session_id2_len = 20;
482 session_id2 = xmalloc(session_id2_len);
483 memcpy(session_id2, hash, session_id2_len);
Damien Millereba71ba2000-04-29 23:57:08 +1000484}
Damien Millerb1715dc2000-05-30 13:44:51 +1000485
Damien Millereba71ba2000-04-29 23:57:08 +1000486/*
487 * Authenticate user
488 */
Damien Miller62cee002000-09-23 17:15:56 +1100489
490typedef struct Authctxt Authctxt;
491typedef struct Authmethod Authmethod;
492
493typedef int sign_cb_fn(
494 Authctxt *authctxt, Key *key,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000495 u_char **sigp, int *lenp, u_char *data, int datalen);
Damien Miller62cee002000-09-23 17:15:56 +1100496
497struct Authctxt {
498 const char *server_user;
499 const char *host;
500 const char *service;
501 AuthenticationConnection *agent;
Damien Miller62cee002000-09-23 17:15:56 +1100502 Authmethod *method;
Damien Miller874d77b2000-10-14 16:23:11 +1100503 int success;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000504 char *authlist;
505 Key *last_key;
506 sign_cb_fn *last_key_sign;
507 int last_key_hint;
Damien Miller62cee002000-09-23 17:15:56 +1100508};
509struct Authmethod {
510 char *name; /* string to compare against server's list */
511 int (*userauth)(Authctxt *authctxt);
512 int *enabled; /* flag in option struct that enables method */
513 int *batch_flag; /* flag in option struct that disables method */
514};
515
516void input_userauth_success(int type, int plen, void *ctxt);
517void input_userauth_failure(int type, int plen, void *ctxt);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000518void input_userauth_banner(int type, int plen, void *ctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100519void input_userauth_error(int type, int plen, void *ctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100520void input_userauth_info_req(int type, int plen, void *ctxt);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000521void input_userauth_pk_ok(int type, int plen, void *ctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100522
523int userauth_none(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100524int userauth_pubkey(Authctxt *authctxt);
525int userauth_passwd(Authctxt *authctxt);
Damien Miller874d77b2000-10-14 16:23:11 +1100526int userauth_kbdint(Authctxt *authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100527
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000528void userauth(Authctxt *authctxt, char *authlist);
529
530int
531sign_and_send_pubkey(Authctxt *authctxt, Key *k,
532 sign_cb_fn *sign_callback);
533void clear_auth_state(Authctxt *authctxt);
534
Damien Miller874d77b2000-10-14 16:23:11 +1100535Authmethod *authmethod_get(char *authlist);
536Authmethod *authmethod_lookup(const char *name);
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000537char *authmethods_get(void);
Damien Miller62cee002000-09-23 17:15:56 +1100538
539Authmethod authmethods[] = {
540 {"publickey",
541 userauth_pubkey,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100542 &options.pubkey_authentication,
Damien Miller62cee002000-09-23 17:15:56 +1100543 NULL},
544 {"password",
545 userauth_passwd,
546 &options.password_authentication,
547 &options.batch_mode},
Damien Miller874d77b2000-10-14 16:23:11 +1100548 {"keyboard-interactive",
549 userauth_kbdint,
550 &options.kbd_interactive_authentication,
551 &options.batch_mode},
552 {"none",
553 userauth_none,
554 NULL,
555 NULL},
Damien Miller62cee002000-09-23 17:15:56 +1100556 {NULL, NULL, NULL, NULL}
557};
558
559void
560ssh_userauth2(const char *server_user, char *host)
561{
562 Authctxt authctxt;
563 int type;
564 int plen;
565
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +0000566 if (options.challenge_reponse_authentication)
567 options.kbd_interactive_authentication = 1;
568
Damien Miller62cee002000-09-23 17:15:56 +1100569 debug("send SSH2_MSG_SERVICE_REQUEST");
570 packet_start(SSH2_MSG_SERVICE_REQUEST);
571 packet_put_cstring("ssh-userauth");
572 packet_send();
573 packet_write_wait();
574 type = packet_read(&plen);
575 if (type != SSH2_MSG_SERVICE_ACCEPT) {
576 fatal("denied SSH2_MSG_SERVICE_ACCEPT: %d", type);
577 }
578 if (packet_remaining() > 0) {
579 char *reply = packet_get_string(&plen);
580 debug("service_accept: %s", reply);
581 xfree(reply);
Damien Miller62cee002000-09-23 17:15:56 +1100582 } else {
583 debug("buggy server: service_accept w/o service");
584 }
585 packet_done();
586 debug("got SSH2_MSG_SERVICE_ACCEPT");
587
Ben Lindstromb9be60a2001-03-11 01:49:19 +0000588 if (options.preferred_authentications == NULL)
589 options.preferred_authentications = authmethods_get();
590
Damien Miller62cee002000-09-23 17:15:56 +1100591 /* setup authentication context */
592 authctxt.agent = ssh_get_authentication_connection();
593 authctxt.server_user = server_user;
594 authctxt.host = host;
595 authctxt.service = "ssh-connection"; /* service name */
596 authctxt.success = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100597 authctxt.method = authmethod_lookup("none");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000598 authctxt.authlist = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100599 if (authctxt.method == NULL)
600 fatal("ssh_userauth2: internal error: cannot send userauth none request");
Damien Miller62cee002000-09-23 17:15:56 +1100601
602 /* initial userauth request */
Damien Miller874d77b2000-10-14 16:23:11 +1100603 userauth_none(&authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100604
605 dispatch_init(&input_userauth_error);
606 dispatch_set(SSH2_MSG_USERAUTH_SUCCESS, &input_userauth_success);
607 dispatch_set(SSH2_MSG_USERAUTH_FAILURE, &input_userauth_failure);
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000608 dispatch_set(SSH2_MSG_USERAUTH_BANNER, &input_userauth_banner);
Damien Miller62cee002000-09-23 17:15:56 +1100609 dispatch_run(DISPATCH_BLOCK, &authctxt.success, &authctxt); /* loop until success */
610
611 if (authctxt.agent != NULL)
612 ssh_close_authentication_connection(authctxt.agent);
613
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000614 debug("ssh-userauth2 successful: method %s", authctxt.method->name);
Damien Miller62cee002000-09-23 17:15:56 +1100615}
616void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000617userauth(Authctxt *authctxt, char *authlist)
618{
619 if (authlist == NULL) {
620 authlist = authctxt->authlist;
621 } else {
622 if (authctxt->authlist)
623 xfree(authctxt->authlist);
624 authctxt->authlist = authlist;
625 }
626 for (;;) {
627 Authmethod *method = authmethod_get(authlist);
628 if (method == NULL)
629 fatal("Permission denied (%s).", authlist);
630 authctxt->method = method;
631 if (method->userauth(authctxt) != 0) {
632 debug2("we sent a %s packet, wait for reply", method->name);
633 break;
634 } else {
635 debug2("we did not send a packet, disable method");
636 method->enabled = NULL;
637 }
638 }
639}
640void
Damien Miller62cee002000-09-23 17:15:56 +1100641input_userauth_error(int type, int plen, void *ctxt)
642{
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000643 fatal("input_userauth_error: bad message during authentication: "
644 "type %d", type);
645}
646void
647input_userauth_banner(int type, int plen, void *ctxt)
648{
649 char *msg, *lang;
650 debug3("input_userauth_banner");
651 msg = packet_get_string(NULL);
652 lang = packet_get_string(NULL);
653 fprintf(stderr, "%s", msg);
654 xfree(msg);
655 xfree(lang);
Damien Miller62cee002000-09-23 17:15:56 +1100656}
657void
658input_userauth_success(int type, int plen, void *ctxt)
659{
660 Authctxt *authctxt = ctxt;
661 if (authctxt == NULL)
662 fatal("input_userauth_success: no authentication context");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000663 if (authctxt->authlist)
664 xfree(authctxt->authlist);
665 clear_auth_state(authctxt);
Damien Miller62cee002000-09-23 17:15:56 +1100666 authctxt->success = 1; /* break out */
667}
668void
669input_userauth_failure(int type, int plen, void *ctxt)
670{
Damien Miller62cee002000-09-23 17:15:56 +1100671 Authctxt *authctxt = ctxt;
672 char *authlist = NULL;
673 int partial;
Damien Miller62cee002000-09-23 17:15:56 +1100674
675 if (authctxt == NULL)
676 fatal("input_userauth_failure: no authentication context");
677
Damien Miller874d77b2000-10-14 16:23:11 +1100678 authlist = packet_get_string(NULL);
Damien Miller62cee002000-09-23 17:15:56 +1100679 partial = packet_get_char();
680 packet_done();
681
682 if (partial != 0)
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000683 log("Authenticated with partial success.");
Damien Miller62cee002000-09-23 17:15:56 +1100684 debug("authentications that can continue: %s", authlist);
685
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000686 clear_auth_state(authctxt);
687 userauth(authctxt, authlist);
688}
689void
690input_userauth_pk_ok(int type, int plen, void *ctxt)
691{
692 Authctxt *authctxt = ctxt;
693 Key *key = NULL;
694 Buffer b;
695 int alen, blen, pktype, sent = 0;
Ben Lindstromcfccef92001-03-13 04:57:58 +0000696 char *pkalg, *pkblob, *fp;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000697
698 if (authctxt == NULL)
699 fatal("input_userauth_pk_ok: no authentication context");
700 if (datafellows & SSH_BUG_PKOK) {
701 /* this is similar to SSH_BUG_PKAUTH */
702 debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
703 pkblob = packet_get_string(&blen);
704 buffer_init(&b);
705 buffer_append(&b, pkblob, blen);
706 pkalg = buffer_get_string(&b, &alen);
707 buffer_free(&b);
708 } else {
709 pkalg = packet_get_string(&alen);
710 pkblob = packet_get_string(&blen);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000711 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000712 packet_done();
713
714 debug("input_userauth_pk_ok: pkalg %s blen %d lastkey %p hint %d",
715 pkalg, blen, authctxt->last_key, authctxt->last_key_hint);
716
717 do {
718 if (authctxt->last_key == NULL ||
719 authctxt->last_key_sign == NULL) {
720 debug("no last key or no sign cb");
721 break;
722 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000723 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) {
724 debug("unknown pkalg %s", pkalg);
725 break;
726 }
727 if ((key = key_from_blob(pkblob, blen)) == NULL) {
728 debug("no key from blob. pkalg %s", pkalg);
729 break;
730 }
Ben Lindstromcfccef92001-03-13 04:57:58 +0000731 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
732 debug2("input_userauth_pk_ok: fp %s", fp);
733 xfree(fp);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000734 if (!key_equal(key, authctxt->last_key)) {
735 debug("key != last_key");
736 break;
737 }
738 sent = sign_and_send_pubkey(authctxt, key,
739 authctxt->last_key_sign);
740 } while(0);
741
742 if (key != NULL)
743 key_free(key);
744 xfree(pkalg);
745 xfree(pkblob);
746
747 /* unregister */
748 clear_auth_state(authctxt);
749 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, NULL);
750
751 /* try another method if we did not send a packet*/
752 if (sent == 0)
753 userauth(authctxt, NULL);
754
Damien Miller62cee002000-09-23 17:15:56 +1100755}
756
Damien Millereba71ba2000-04-29 23:57:08 +1000757int
Damien Miller874d77b2000-10-14 16:23:11 +1100758userauth_none(Authctxt *authctxt)
759{
760 /* initial userauth request */
761 packet_start(SSH2_MSG_USERAUTH_REQUEST);
762 packet_put_cstring(authctxt->server_user);
763 packet_put_cstring(authctxt->service);
764 packet_put_cstring(authctxt->method->name);
765 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +1100766 return 1;
767}
768
769int
Damien Miller62cee002000-09-23 17:15:56 +1100770userauth_passwd(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +1000771{
Damien Millere247cc42000-05-07 12:03:14 +1000772 static int attempt = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000773 char prompt[80];
774 char *password;
775
Damien Millerd3a18572000-06-07 19:55:44 +1000776 if (attempt++ >= options.number_of_password_prompts)
Damien Millere247cc42000-05-07 12:03:14 +1000777 return 0;
778
Damien Millerd3a18572000-06-07 19:55:44 +1000779 if(attempt != 1)
780 error("Permission denied, please try again.");
781
Ben Lindstrom03df5bd2001-02-10 22:16:41 +0000782 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
Damien Miller62cee002000-09-23 17:15:56 +1100783 authctxt->server_user, authctxt->host);
Damien Millereba71ba2000-04-29 23:57:08 +1000784 password = read_passphrase(prompt, 0);
785 packet_start(SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100786 packet_put_cstring(authctxt->server_user);
787 packet_put_cstring(authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100788 packet_put_cstring(authctxt->method->name);
Damien Millereba71ba2000-04-29 23:57:08 +1000789 packet_put_char(0);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000790 packet_put_cstring(password);
Damien Millereba71ba2000-04-29 23:57:08 +1000791 memset(password, 0, strlen(password));
792 xfree(password);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +0000793 packet_inject_ignore(64);
Damien Millereba71ba2000-04-29 23:57:08 +1000794 packet_send();
Damien Millereba71ba2000-04-29 23:57:08 +1000795 return 1;
796}
797
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000798void
799clear_auth_state(Authctxt *authctxt)
800{
801 /* XXX clear authentication state */
802 if (authctxt->last_key != NULL && authctxt->last_key_hint == -1) {
803 debug3("clear_auth_state: key_free %p", authctxt->last_key);
804 key_free(authctxt->last_key);
805 }
806 authctxt->last_key = NULL;
807 authctxt->last_key_hint = -2;
808 authctxt->last_key_sign = NULL;
809}
810
Damien Millerad833b32000-08-23 10:46:23 +1000811int
Damien Miller62cee002000-09-23 17:15:56 +1100812sign_and_send_pubkey(Authctxt *authctxt, Key *k, sign_cb_fn *sign_callback)
Damien Millereba71ba2000-04-29 23:57:08 +1000813{
814 Buffer b;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000815 u_char *blob, *signature;
Damien Millereba71ba2000-04-29 23:57:08 +1000816 int bloblen, slen;
Damien Miller6536c7d2000-06-22 21:32:31 +1000817 int skip = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000818 int ret = -1;
Damien Miller874d77b2000-10-14 16:23:11 +1100819 int have_sig = 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000820
Ben Lindstromd121f612000-12-03 17:00:47 +0000821 debug3("sign_and_send_pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000822
Damien Miller0bc1bd82000-11-13 22:57:25 +1100823 if (key_to_blob(k, &blob, &bloblen) == 0) {
824 /* we cannot handle this key */
Ben Lindstromd121f612000-12-03 17:00:47 +0000825 debug3("sign_and_send_pubkey: cannot handle key");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100826 return 0;
827 }
Damien Millereba71ba2000-04-29 23:57:08 +1000828 /* data to be signed */
829 buffer_init(&b);
Damien Miller50a41ed2000-10-16 12:14:42 +1100830 if (datafellows & SSH_OLD_SESSIONID) {
Damien Miller6536c7d2000-06-22 21:32:31 +1000831 buffer_append(&b, session_id2, session_id2_len);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000832 skip = session_id2_len;
Damien Miller50a41ed2000-10-16 12:14:42 +1100833 } else {
834 buffer_put_string(&b, session_id2, session_id2_len);
835 skip = buffer_len(&b);
Damien Miller6536c7d2000-06-22 21:32:31 +1000836 }
Damien Millereba71ba2000-04-29 23:57:08 +1000837 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100838 buffer_put_cstring(&b, authctxt->server_user);
Damien Miller30c3d422000-05-09 11:02:59 +1000839 buffer_put_cstring(&b,
Ben Lindstromd121f612000-12-03 17:00:47 +0000840 datafellows & SSH_BUG_PKSERVICE ?
Damien Miller30c3d422000-05-09 11:02:59 +1000841 "ssh-userauth" :
Damien Miller62cee002000-09-23 17:15:56 +1100842 authctxt->service);
Ben Lindstromd121f612000-12-03 17:00:47 +0000843 if (datafellows & SSH_BUG_PKAUTH) {
844 buffer_put_char(&b, have_sig);
845 } else {
846 buffer_put_cstring(&b, authctxt->method->name);
847 buffer_put_char(&b, have_sig);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000848 buffer_put_cstring(&b, key_ssh_name(k));
Ben Lindstromd121f612000-12-03 17:00:47 +0000849 }
Damien Millereba71ba2000-04-29 23:57:08 +1000850 buffer_put_string(&b, blob, bloblen);
Damien Millereba71ba2000-04-29 23:57:08 +1000851
852 /* generate signature */
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000853 ret = (*sign_callback)(authctxt, k, &signature, &slen,
854 buffer_ptr(&b), buffer_len(&b));
Damien Millerad833b32000-08-23 10:46:23 +1000855 if (ret == -1) {
856 xfree(blob);
857 buffer_free(&b);
858 return 0;
859 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100860#ifdef DEBUG_PK
Damien Millereba71ba2000-04-29 23:57:08 +1000861 buffer_dump(&b);
862#endif
Ben Lindstromd121f612000-12-03 17:00:47 +0000863 if (datafellows & SSH_BUG_PKSERVICE) {
Damien Miller30c3d422000-05-09 11:02:59 +1000864 buffer_clear(&b);
865 buffer_append(&b, session_id2, session_id2_len);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000866 skip = session_id2_len;
Damien Miller30c3d422000-05-09 11:02:59 +1000867 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller62cee002000-09-23 17:15:56 +1100868 buffer_put_cstring(&b, authctxt->server_user);
869 buffer_put_cstring(&b, authctxt->service);
Damien Miller874d77b2000-10-14 16:23:11 +1100870 buffer_put_cstring(&b, authctxt->method->name);
871 buffer_put_char(&b, have_sig);
Ben Lindstromd121f612000-12-03 17:00:47 +0000872 if (!(datafellows & SSH_BUG_PKAUTH))
Kevin Stevesef4eea92001-02-05 12:42:17 +0000873 buffer_put_cstring(&b, key_ssh_name(k));
Damien Miller30c3d422000-05-09 11:02:59 +1000874 buffer_put_string(&b, blob, bloblen);
875 }
876 xfree(blob);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000877
Damien Millereba71ba2000-04-29 23:57:08 +1000878 /* append signature */
879 buffer_put_string(&b, signature, slen);
880 xfree(signature);
881
882 /* skip session id and packet type */
Damien Miller6536c7d2000-06-22 21:32:31 +1000883 if (buffer_len(&b) < skip + 1)
Damien Miller62cee002000-09-23 17:15:56 +1100884 fatal("userauth_pubkey: internal error");
Damien Miller6536c7d2000-06-22 21:32:31 +1000885 buffer_consume(&b, skip + 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000886
887 /* put remaining data from buffer into packet */
888 packet_start(SSH2_MSG_USERAUTH_REQUEST);
889 packet_put_raw(buffer_ptr(&b), buffer_len(&b));
890 buffer_free(&b);
Damien Millereba71ba2000-04-29 23:57:08 +1000891 packet_send();
Damien Millerad833b32000-08-23 10:46:23 +1000892
893 return 1;
Damien Miller994cf142000-07-21 10:19:44 +1000894}
895
896int
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000897send_pubkey_test(Authctxt *authctxt, Key *k, sign_cb_fn *sign_callback,
898 int hint)
Damien Miller994cf142000-07-21 10:19:44 +1000899{
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000900 u_char *blob;
901 int bloblen, have_sig = 0;
Damien Miller994cf142000-07-21 10:19:44 +1000902
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000903 debug3("send_pubkey_test");
904
905 if (key_to_blob(k, &blob, &bloblen) == 0) {
906 /* we cannot handle this key */
907 debug3("send_pubkey_test: cannot handle key");
Damien Miller994cf142000-07-21 10:19:44 +1000908 return 0;
909 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000910 /* register callback for USERAUTH_PK_OK message */
911 authctxt->last_key_sign = sign_callback;
912 authctxt->last_key_hint = hint;
913 authctxt->last_key = k;
914 dispatch_set(SSH2_MSG_USERAUTH_PK_OK, &input_userauth_pk_ok);
Damien Miller994cf142000-07-21 10:19:44 +1000915
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000916 packet_start(SSH2_MSG_USERAUTH_REQUEST);
917 packet_put_cstring(authctxt->server_user);
918 packet_put_cstring(authctxt->service);
919 packet_put_cstring(authctxt->method->name);
920 packet_put_char(have_sig);
921 if (!(datafellows & SSH_BUG_PKAUTH))
922 packet_put_cstring(key_ssh_name(k));
923 packet_put_string(blob, bloblen);
924 xfree(blob);
925 packet_send();
926 return 1;
927}
928
929Key *
930load_identity_file(char *filename)
931{
932 Key *private;
933 char prompt[300], *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000934 int quit, i;
Ben Lindstrom329782e2001-03-10 17:08:59 +0000935 struct stat st;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000936
Ben Lindstrom329782e2001-03-10 17:08:59 +0000937 if (stat(filename, &st) < 0) {
938 debug3("no such identity: %s", filename);
939 return NULL;
940 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000941 private = key_load_private_type(KEY_UNSPEC, filename, "", NULL);
942 if (private == NULL) {
943 if (options.batch_mode)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000944 return NULL;
Damien Miller994cf142000-07-21 10:19:44 +1000945 snprintf(prompt, sizeof prompt,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100946 "Enter passphrase for key '%.100s': ", filename);
Damien Miller62cee002000-09-23 17:15:56 +1100947 for (i = 0; i < options.number_of_password_prompts; i++) {
948 passphrase = read_passphrase(prompt, 0);
949 if (strcmp(passphrase, "") != 0) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000950 private = key_load_private_type(KEY_UNSPEC, filename,
951 passphrase, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000952 quit = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100953 } else {
954 debug2("no passphrase given, try next key");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000955 quit = 1;
Damien Miller62cee002000-09-23 17:15:56 +1100956 }
957 memset(passphrase, 0, strlen(passphrase));
958 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000959 if (private != NULL || quit)
Damien Miller62cee002000-09-23 17:15:56 +1100960 break;
961 debug2("bad passphrase given, try again...");
962 }
Damien Miller994cf142000-07-21 10:19:44 +1000963 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000964 return private;
965}
966
967int
968identity_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, int *lenp,
969 u_char *data, int datalen)
970{
971 Key *private;
972 int idx, ret;
973
974 idx = authctxt->last_key_hint;
975 if (idx < 0)
976 return -1;
977 private = load_identity_file(options.identity_files[idx]);
978 if (private == NULL)
979 return -1;
980 ret = key_sign(private, sigp, lenp, data, datalen);
981 key_free(private);
Damien Millerad833b32000-08-23 10:46:23 +1000982 return ret;
983}
984
Ben Lindstrom46c16222000-12-22 01:43:59 +0000985int agent_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, int *lenp,
986 u_char *data, int datalen)
Damien Millerad833b32000-08-23 10:46:23 +1000987{
Damien Miller62cee002000-09-23 17:15:56 +1100988 return ssh_agent_sign(authctxt->agent, key, sigp, lenp, data, datalen);
Damien Millerad833b32000-08-23 10:46:23 +1000989}
990
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000991int key_sign_cb(Authctxt *authctxt, Key *key, u_char **sigp, int *lenp,
992 u_char *data, int datalen)
993{
994 return key_sign(key, sigp, lenp, data, datalen);
995}
996
Damien Millerad833b32000-08-23 10:46:23 +1000997int
Damien Miller62cee002000-09-23 17:15:56 +1100998userauth_pubkey_agent(Authctxt *authctxt)
Damien Millerad833b32000-08-23 10:46:23 +1000999{
1000 static int called = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001001 int ret = 0;
Damien Millerad833b32000-08-23 10:46:23 +10001002 char *comment;
1003 Key *k;
Damien Millerad833b32000-08-23 10:46:23 +10001004
1005 if (called == 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001006 if (ssh_get_num_identities(authctxt->agent, 2) == 0)
1007 debug2("userauth_pubkey_agent: no keys at all");
Damien Miller62cee002000-09-23 17:15:56 +11001008 called = 1;
Damien Millerad833b32000-08-23 10:46:23 +10001009 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001010 k = ssh_get_next_identity(authctxt->agent, &comment, 2);
Damien Miller62cee002000-09-23 17:15:56 +11001011 if (k == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001012 debug2("userauth_pubkey_agent: no more keys");
1013 } else {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001014 debug("userauth_pubkey_agent: testing agent key %s", comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001015 xfree(comment);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001016 ret = send_pubkey_test(authctxt, k, agent_sign_cb, -1);
1017 if (ret == 0)
1018 key_free(k);
Damien Miller62cee002000-09-23 17:15:56 +11001019 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001020 if (ret == 0)
1021 debug2("userauth_pubkey_agent: no message sent");
Damien Millerad833b32000-08-23 10:46:23 +10001022 return ret;
Damien Millereba71ba2000-04-29 23:57:08 +10001023}
1024
Damien Miller62cee002000-09-23 17:15:56 +11001025int
1026userauth_pubkey(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +10001027{
Damien Miller62cee002000-09-23 17:15:56 +11001028 static int idx = 0;
1029 int sent = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001030 Key *key;
1031 char *filename;
Damien Millereba71ba2000-04-29 23:57:08 +10001032
Damien Miller0bc1bd82000-11-13 22:57:25 +11001033 if (authctxt->agent != NULL) {
1034 do {
1035 sent = userauth_pubkey_agent(authctxt);
1036 } while(!sent && authctxt->agent->howmany > 0);
1037 }
1038 while (!sent && idx < options.num_identity_files) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001039 key = options.identity_keys[idx];
1040 filename = options.identity_files[idx];
1041 if (key == NULL) {
1042 debug("try privkey: %s", filename);
1043 key = load_identity_file(filename);
1044 if (key != NULL) {
1045 sent = sign_and_send_pubkey(authctxt, key,
1046 key_sign_cb);
1047 key_free(key);
1048 }
1049 } else if (key->type != KEY_RSA1) {
1050 debug("try pubkey: %s", filename);
1051 sent = send_pubkey_test(authctxt, key,
1052 identity_sign_cb, idx);
1053 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001054 idx++;
1055 }
Damien Miller62cee002000-09-23 17:15:56 +11001056 return sent;
1057}
Damien Millereba71ba2000-04-29 23:57:08 +10001058
Damien Miller874d77b2000-10-14 16:23:11 +11001059/*
1060 * Send userauth request message specifying keyboard-interactive method.
1061 */
1062int
1063userauth_kbdint(Authctxt *authctxt)
1064{
1065 static int attempt = 0;
1066
1067 if (attempt++ >= options.number_of_password_prompts)
1068 return 0;
1069
1070 debug2("userauth_kbdint");
1071 packet_start(SSH2_MSG_USERAUTH_REQUEST);
1072 packet_put_cstring(authctxt->server_user);
1073 packet_put_cstring(authctxt->service);
1074 packet_put_cstring(authctxt->method->name);
1075 packet_put_cstring(""); /* lang */
1076 packet_put_cstring(options.kbd_interactive_devices ?
1077 options.kbd_interactive_devices : "");
1078 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001079
1080 dispatch_set(SSH2_MSG_USERAUTH_INFO_REQUEST, &input_userauth_info_req);
1081 return 1;
1082}
1083
1084/*
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001085 * parse INFO_REQUEST, prompt user and send INFO_RESPONSE
Damien Miller874d77b2000-10-14 16:23:11 +11001086 */
1087void
1088input_userauth_info_req(int type, int plen, void *ctxt)
1089{
1090 Authctxt *authctxt = ctxt;
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001091 char *name, *inst, *lang, *prompt, *response;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001092 u_int num_prompts, i;
Damien Miller874d77b2000-10-14 16:23:11 +11001093 int echo = 0;
1094
1095 debug2("input_userauth_info_req");
1096
1097 if (authctxt == NULL)
1098 fatal("input_userauth_info_req: no authentication context");
1099
1100 name = packet_get_string(NULL);
1101 inst = packet_get_string(NULL);
1102 lang = packet_get_string(NULL);
Damien Miller874d77b2000-10-14 16:23:11 +11001103 if (strlen(name) > 0)
1104 cli_mesg(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001105 if (strlen(inst) > 0)
1106 cli_mesg(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001107 xfree(name);
Damien Miller874d77b2000-10-14 16:23:11 +11001108 xfree(inst);
Ben Lindstrom03df5bd2001-02-10 22:16:41 +00001109 xfree(lang);
Damien Miller874d77b2000-10-14 16:23:11 +11001110
1111 num_prompts = packet_get_int();
1112 /*
1113 * Begin to build info response packet based on prompts requested.
1114 * We commit to providing the correct number of responses, so if
1115 * further on we run into a problem that prevents this, we have to
1116 * be sure and clean this up and send a correct error response.
1117 */
1118 packet_start(SSH2_MSG_USERAUTH_INFO_RESPONSE);
1119 packet_put_int(num_prompts);
1120
1121 for (i = 0; i < num_prompts; i++) {
1122 prompt = packet_get_string(NULL);
1123 echo = packet_get_char();
1124
1125 response = cli_prompt(prompt, echo);
1126
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001127 packet_put_cstring(response);
Damien Miller874d77b2000-10-14 16:23:11 +11001128 memset(response, 0, strlen(response));
1129 xfree(response);
1130 xfree(prompt);
1131 }
1132 packet_done(); /* done with parsing incoming message. */
1133
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001134 packet_inject_ignore(64);
Damien Miller874d77b2000-10-14 16:23:11 +11001135 packet_send();
Damien Miller874d77b2000-10-14 16:23:11 +11001136}
Damien Miller62cee002000-09-23 17:15:56 +11001137
1138/* find auth method */
1139
Damien Miller62cee002000-09-23 17:15:56 +11001140/*
1141 * given auth method name, if configurable options permit this method fill
1142 * in auth_ident field and return true, otherwise return false.
1143 */
1144int
1145authmethod_is_enabled(Authmethod *method)
1146{
1147 if (method == NULL)
1148 return 0;
1149 /* return false if options indicate this method is disabled */
1150 if (method->enabled == NULL || *method->enabled == 0)
1151 return 0;
1152 /* return false if batch mode is enabled but method needs interactive mode */
1153 if (method->batch_flag != NULL && *method->batch_flag != 0)
1154 return 0;
1155 return 1;
1156}
1157
1158Authmethod *
1159authmethod_lookup(const char *name)
1160{
1161 Authmethod *method = NULL;
1162 if (name != NULL)
1163 for (method = authmethods; method->name != NULL; method++)
1164 if (strcmp(name, method->name) == 0)
1165 return method;
1166 debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
1167 return NULL;
1168}
1169
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001170/* XXX internal state */
1171static Authmethod *current = NULL;
1172static char *supported = NULL;
1173static char *preferred = NULL;
Damien Miller62cee002000-09-23 17:15:56 +11001174/*
1175 * Given the authentication method list sent by the server, return the
1176 * next method we should try. If the server initially sends a nil list,
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001177 * use a built-in default list.
Kevin Stevesef4eea92001-02-05 12:42:17 +00001178 */
Damien Miller62cee002000-09-23 17:15:56 +11001179Authmethod *
1180authmethod_get(char *authlist)
1181{
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001182
1183 char *name = NULL;
1184 int next;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001185
Damien Miller62cee002000-09-23 17:15:56 +11001186 /* Use a suitable default if we're passed a nil list. */
1187 if (authlist == NULL || strlen(authlist) == 0)
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001188 authlist = options.preferred_authentications;
Damien Miller62cee002000-09-23 17:15:56 +11001189
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001190 if (supported == NULL || strcmp(authlist, supported) != 0) {
1191 debug3("start over, passed a different list %s", authlist);
1192 if (supported != NULL)
1193 xfree(supported);
1194 supported = xstrdup(authlist);
1195 preferred = options.preferred_authentications;
1196 debug3("preferred %s", preferred);
1197 current = NULL;
1198 } else if (current != NULL && authmethod_is_enabled(current))
1199 return current;
Damien Millereba71ba2000-04-29 23:57:08 +10001200
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001201 for (;;) {
1202 if ((name = match_list(preferred, supported, &next)) == NULL) {
1203 debug("no more auth methods to try");
1204 current = NULL;
1205 return NULL;
Damien Miller874d77b2000-10-14 16:23:11 +11001206 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001207 preferred += next;
1208 debug3("authmethod_lookup %s", name);
1209 debug3("remaining preferred: %s", preferred);
1210 if ((current = authmethod_lookup(name)) != NULL &&
1211 authmethod_is_enabled(current)) {
1212 debug3("authmethod_is_enabled %s", name);
1213 debug("next auth method to try is %s", name);
1214 return current;
1215 }
Damien Millereba71ba2000-04-29 23:57:08 +10001216 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001217}
Damien Miller62cee002000-09-23 17:15:56 +11001218
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001219
1220#define DELIM ","
1221char *
1222authmethods_get(void)
1223{
1224 Authmethod *method = NULL;
1225 char buf[1024];
1226
1227 buf[0] = '\0';
1228 for (method = authmethods; method->name != NULL; method++) {
1229 if (authmethod_is_enabled(method)) {
1230 if (buf[0] != '\0')
1231 strlcat(buf, DELIM, sizeof buf);
1232 strlcat(buf, method->name, sizeof buf);
1233 }
Damien Miller62cee002000-09-23 17:15:56 +11001234 }
Ben Lindstromb9be60a2001-03-11 01:49:19 +00001235 return xstrdup(buf);
Damien Millereba71ba2000-04-29 23:57:08 +10001236}