blob: 269d80900c90cedb13813b32d68f94b68280ab69 [file] [log] [blame]
Damien Miller85b45e02013-07-20 13:21:52 +10001/* $OpenBSD: kexdhs.c,v 1.14 2013/07/19 07:37:48 markus Exp $ */
Damien Miller8e7fb332003-02-24 12:03:03 +11002/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110027
Damien Millerd7834352006-08-05 12:39:39 +100028#include <sys/types.h>
Damien Millerded319c2006-09-01 15:38:36 +100029
30#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100032#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100033
Damien Miller4499f4c2010-11-20 15:15:49 +110034#include <openssl/dh.h>
35
Damien Miller8e7fb332003-02-24 12:03:03 +110036#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100037#include "buffer.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110038#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "cipher.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110040#include "kex.h"
41#include "log.h"
42#include "packet.h"
43#include "dh.h"
44#include "ssh2.h"
Damien Millerd7834352006-08-05 12:39:39 +100045#ifdef GSSAPI
46#include "ssh-gss.h"
47#endif
Damien Miller8e7fb332003-02-24 12:03:03 +110048#include "monitor_wrap.h"
49
50void
51kexdh_server(Kex *kex)
52{
53 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
54 DH *dh;
Damien Miller0a80ca12010-02-27 07:55:05 +110055 Key *server_host_public, *server_host_private;
Damien Miller8e7fb332003-02-24 12:03:03 +110056 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL;
Damien Miller570c2ab2006-11-05 05:32:02 +110057 u_int sbloblen, klen, hashlen, slen;
58 int kout;
Damien Miller8e7fb332003-02-24 12:03:03 +110059
60 /* generate server DH public key */
Damien Millerf675fc42004-06-15 10:30:09 +100061 switch (kex->kex_type) {
62 case KEX_DH_GRP1_SHA1:
63 dh = dh_new_group1();
64 break;
65 case KEX_DH_GRP14_SHA1:
66 dh = dh_new_group14();
67 break;
68 default:
69 fatal("%s: Unexpected KEX type %d", __func__, kex->kex_type);
70 }
Damien Miller8e7fb332003-02-24 12:03:03 +110071 dh_gen_key(dh, kex->we_need * 8);
72
73 debug("expecting SSH2_MSG_KEXDH_INIT");
74 packet_read_expect(SSH2_MSG_KEXDH_INIT);
75
Damien Miller0a80ca12010-02-27 07:55:05 +110076 if (kex->load_host_public_key == NULL ||
77 kex->load_host_private_key == NULL)
Damien Miller8e7fb332003-02-24 12:03:03 +110078 fatal("Cannot load hostkey");
Damien Miller0a80ca12010-02-27 07:55:05 +110079 server_host_public = kex->load_host_public_key(kex->hostkey_type);
80 if (server_host_public == NULL)
Damien Miller8e7fb332003-02-24 12:03:03 +110081 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller0a80ca12010-02-27 07:55:05 +110082 server_host_private = kex->load_host_private_key(kex->hostkey_type);
Damien Miller8e7fb332003-02-24 12:03:03 +110083
84 /* key, cert */
85 if ((dh_client_pub = BN_new()) == NULL)
86 fatal("dh_client_pub == NULL");
87 packet_get_bignum2(dh_client_pub);
88 packet_check_eom();
89
90#ifdef DEBUG_KEXDH
91 fprintf(stderr, "dh_client_pub= ");
92 BN_print_fp(stderr, dh_client_pub);
93 fprintf(stderr, "\n");
94 debug("bits %d", BN_num_bits(dh_client_pub));
95#endif
96
97#ifdef DEBUG_KEXDH
98 DHparams_print_fp(stderr, dh);
99 fprintf(stderr, "pub= ");
100 BN_print_fp(stderr, dh->pub_key);
101 fprintf(stderr, "\n");
102#endif
103 if (!dh_pub_is_valid(dh, dh_client_pub))
104 packet_disconnect("bad client public DH value");
105
106 klen = DH_size(dh);
107 kbuf = xmalloc(klen);
Damien Miller570c2ab2006-11-05 05:32:02 +1100108 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
109 fatal("DH_compute_key: failed");
Damien Miller8e7fb332003-02-24 12:03:03 +1100110#ifdef DEBUG_KEXDH
111 dump_digest("shared secret", kbuf, kout);
112#endif
113 if ((shared_secret = BN_new()) == NULL)
114 fatal("kexdh_server: BN_new failed");
Darren Tucker0bc85572006-11-07 23:14:41 +1100115 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
116 fatal("kexdh_server: BN_bin2bn failed");
Damien Miller8e7fb332003-02-24 12:03:03 +1100117 memset(kbuf, 0, klen);
Darren Tuckera627d422013-06-02 07:31:17 +1000118 free(kbuf);
Damien Miller8e7fb332003-02-24 12:03:03 +1100119
Damien Miller0a80ca12010-02-27 07:55:05 +1100120 key_to_blob(server_host_public, &server_host_key_blob, &sbloblen);
Damien Miller8e7fb332003-02-24 12:03:03 +1100121
122 /* calc H */
Damien Miller19bb3a52005-11-05 15:19:35 +1100123 kex_dh_hash(
Damien Miller8e7fb332003-02-24 12:03:03 +1100124 kex->client_version_string,
125 kex->server_version_string,
126 buffer_ptr(&kex->peer), buffer_len(&kex->peer),
127 buffer_ptr(&kex->my), buffer_len(&kex->my),
128 server_host_key_blob, sbloblen,
129 dh_client_pub,
130 dh->pub_key,
Damien Miller19bb3a52005-11-05 15:19:35 +1100131 shared_secret,
132 &hash, &hashlen
Damien Miller8e7fb332003-02-24 12:03:03 +1100133 );
134 BN_clear_free(dh_client_pub);
135
136 /* save session id := H */
Damien Miller8e7fb332003-02-24 12:03:03 +1100137 if (kex->session_id == NULL) {
Damien Miller19bb3a52005-11-05 15:19:35 +1100138 kex->session_id_len = hashlen;
Damien Miller8e7fb332003-02-24 12:03:03 +1100139 kex->session_id = xmalloc(kex->session_id_len);
140 memcpy(kex->session_id, hash, kex->session_id_len);
141 }
142
143 /* sign H */
Damien Miller85b45e02013-07-20 13:21:52 +1000144 kex->sign(server_host_private, server_host_public, &signature, &slen,
145 hash, hashlen);
Damien Miller8e7fb332003-02-24 12:03:03 +1100146
147 /* destroy_sensitive_data(); */
148
149 /* send server hostkey, DH pubkey 'f' and singed H */
150 packet_start(SSH2_MSG_KEXDH_REPLY);
151 packet_put_string(server_host_key_blob, sbloblen);
152 packet_put_bignum2(dh->pub_key); /* f */
153 packet_put_string(signature, slen);
154 packet_send();
155
Darren Tuckera627d422013-06-02 07:31:17 +1000156 free(signature);
157 free(server_host_key_blob);
Damien Miller8e7fb332003-02-24 12:03:03 +1100158 /* have keys, free DH */
159 DH_free(dh);
160
Damien Miller19bb3a52005-11-05 15:19:35 +1100161 kex_derive_keys(kex, hash, hashlen, shared_secret);
Damien Miller8e7fb332003-02-24 12:03:03 +1100162 BN_clear_free(shared_secret);
163 kex_finish(kex);
164}