blob: 2514fc05cbaf07de3ccd500772004b8086a8b390 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Diffie-Hellman-Merkle key exchange (server side)
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Bence Szépkútic662b362021-05-27 11:25:03 +020020#include "mbedtls/build_info.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000022#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000023
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#if defined(MBEDTLS_AES_C) && defined(MBEDTLS_DHM_C) && \
25 defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_NET_C) && \
26 defined(MBEDTLS_RSA_C) && defined(MBEDTLS_SHA256_C) && \
Janos Follath9fe6f922016-10-07 14:17:56 +010027 defined(MBEDTLS_FS_IO) && defined(MBEDTLS_CTR_DRBG_C) && \
28 defined(MBEDTLS_SHA1_C)
Andres AG788aa4a2016-09-14 14:32:09 +010029#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030#include "mbedtls/aes.h"
31#include "mbedtls/dhm.h"
32#include "mbedtls/rsa.h"
33#include "mbedtls/sha1.h"
34#include "mbedtls/entropy.h"
35#include "mbedtls/ctr_drbg.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000036
Rich Evans18b78c72015-02-11 14:06:19 +000037#include <stdio.h>
38#include <string.h>
39#endif
40
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +020041#define SERVER_PORT "11999"
Paul Bakker5121ce52009-01-03 21:22:43 +000042#define PLAINTEXT "==Hello there!=="
43
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020044#if !defined(MBEDTLS_AES_C) || !defined(MBEDTLS_DHM_C) || \
45 !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_NET_C) || \
46 !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_SHA256_C) || \
Janos Follath9fe6f922016-10-07 14:17:56 +010047 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_CTR_DRBG_C) || \
48 !defined(MBEDTLS_SHA1_C)
Gilles Peskine449bd832023-01-11 14:50:10 +010049int main(void)
Paul Bakker5690efc2011-05-26 13:16:06 +000050{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020051 mbedtls_printf("MBEDTLS_AES_C and/or MBEDTLS_DHM_C and/or MBEDTLS_ENTROPY_C "
Gilles Peskine449bd832023-01-11 14:50:10 +010052 "and/or MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
53 "MBEDTLS_SHA256_C and/or MBEDTLS_FS_IO and/or "
54 "MBEDTLS_CTR_DRBG_C not defined.\n");
55 mbedtls_exit(0);
Paul Bakker5690efc2011-05-26 13:16:06 +000056}
57#else
Simon Butcher63cb97e2018-12-06 17:43:31 +000058
Simon Butcher63cb97e2018-12-06 17:43:31 +000059
Gilles Peskine449bd832023-01-11 14:50:10 +010060int main(void)
Paul Bakker5121ce52009-01-03 21:22:43 +000061{
62 FILE *f;
63
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +010064 int ret = 1;
65 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker23986e52011-04-24 08:57:21 +000066 size_t n, buflen;
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +020067 mbedtls_net_context listen_fd, client_fd;
Paul Bakker5121ce52009-01-03 21:22:43 +000068
Paul Bakker520ea912012-10-24 14:17:01 +000069 unsigned char buf[2048];
Manuel Pégourié-Gonnard102a6202015-08-27 21:51:44 +020070 unsigned char hash[32];
Paul Bakker5121ce52009-01-03 21:22:43 +000071 unsigned char buf2[2];
Paul Bakkeref3f8c72013-06-24 13:01:08 +020072 const char *pers = "dh_server";
Paul Bakker5121ce52009-01-03 21:22:43 +000073
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074 mbedtls_entropy_context entropy;
75 mbedtls_ctr_drbg_context ctr_drbg;
76 mbedtls_rsa_context rsa;
77 mbedtls_dhm_context dhm;
78 mbedtls_aes_context aes;
Paul Bakker5121ce52009-01-03 21:22:43 +000079
Hanno Beckerc95fad32017-08-23 06:44:30 +010080 mbedtls_mpi N, P, Q, D, E;
81
Gilles Peskine449bd832023-01-11 14:50:10 +010082 mbedtls_net_init(&listen_fd);
83 mbedtls_net_init(&client_fd);
84 mbedtls_dhm_init(&dhm);
85 mbedtls_aes_init(&aes);
86 mbedtls_ctr_drbg_init(&ctr_drbg);
Paul Bakker5121ce52009-01-03 21:22:43 +000087
Gilles Peskine449bd832023-01-11 14:50:10 +010088 mbedtls_mpi_init(&N); mbedtls_mpi_init(&P); mbedtls_mpi_init(&Q);
89 mbedtls_mpi_init(&D); mbedtls_mpi_init(&E);
Hanno Beckerc95fad32017-08-23 06:44:30 +010090
Paul Bakker5121ce52009-01-03 21:22:43 +000091 /*
92 * 1. Setup the RNG
93 */
Gilles Peskine449bd832023-01-11 14:50:10 +010094 mbedtls_printf("\n . Seeding the random number generator");
95 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +000096
Gilles Peskine449bd832023-01-11 14:50:10 +010097 mbedtls_entropy_init(&entropy);
98 if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
99 (const unsigned char *) pers,
100 strlen(pers))) != 0) {
101 mbedtls_printf(" failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret);
Paul Bakker508ad5a2011-12-04 17:09:26 +0000102 goto exit;
103 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000104
105 /*
106 * 2a. Read the server's private RSA key
107 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100108 mbedtls_printf("\n . Reading private key from rsa_priv.txt");
109 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000110
Gilles Peskine449bd832023-01-11 14:50:10 +0100111 if ((f = fopen("rsa_priv.txt", "rb")) == NULL) {
112 mbedtls_printf(" failed\n ! Could not open rsa_priv.txt\n" \
113 " ! Please run rsa_genkey first\n\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000114 goto exit;
115 }
116
Gilles Peskine449bd832023-01-11 14:50:10 +0100117 mbedtls_rsa_init(&rsa);
Paul Bakker5121ce52009-01-03 21:22:43 +0000118
Gilles Peskine449bd832023-01-11 14:50:10 +0100119 if ((ret = mbedtls_mpi_read_file(&N, 16, f)) != 0 ||
120 (ret = mbedtls_mpi_read_file(&E, 16, f)) != 0 ||
121 (ret = mbedtls_mpi_read_file(&D, 16, f)) != 0 ||
122 (ret = mbedtls_mpi_read_file(&P, 16, f)) != 0 ||
123 (ret = mbedtls_mpi_read_file(&Q, 16, f)) != 0) {
124 mbedtls_printf(" failed\n ! mbedtls_mpi_read_file returned %d\n\n",
125 ret);
126 fclose(f);
Paul Bakker5121ce52009-01-03 21:22:43 +0000127 goto exit;
128 }
Gilles Peskine449bd832023-01-11 14:50:10 +0100129 fclose(f);
Paul Bakker5121ce52009-01-03 21:22:43 +0000130
Gilles Peskine449bd832023-01-11 14:50:10 +0100131 if ((ret = mbedtls_rsa_import(&rsa, &N, &P, &Q, &D, &E)) != 0) {
132 mbedtls_printf(" failed\n ! mbedtls_rsa_import returned %d\n\n",
133 ret);
Hanno Beckerc95fad32017-08-23 06:44:30 +0100134 goto exit;
135 }
136
Gilles Peskine449bd832023-01-11 14:50:10 +0100137 if ((ret = mbedtls_rsa_complete(&rsa)) != 0) {
138 mbedtls_printf(" failed\n ! mbedtls_rsa_complete returned %d\n\n",
139 ret);
Hanno Beckerc95fad32017-08-23 06:44:30 +0100140 goto exit;
141 }
142
Paul Bakker5121ce52009-01-03 21:22:43 +0000143 /*
144 * 2b. Get the DHM modulus and generator
145 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100146 mbedtls_printf("\n . Reading DH parameters from dh_prime.txt");
147 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000148
Gilles Peskine449bd832023-01-11 14:50:10 +0100149 if ((f = fopen("dh_prime.txt", "rb")) == NULL) {
150 mbedtls_printf(" failed\n ! Could not open dh_prime.txt\n" \
151 " ! Please run dh_genprime first\n\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000152 goto exit;
153 }
154
Gilles Peskine449bd832023-01-11 14:50:10 +0100155 if (mbedtls_mpi_read_file(&dhm.MBEDTLS_PRIVATE(P), 16, f) != 0 ||
156 mbedtls_mpi_read_file(&dhm.MBEDTLS_PRIVATE(G), 16, f) != 0) {
157 mbedtls_printf(" failed\n ! Invalid DH parameter file\n\n");
158 fclose(f);
Paul Bakker5121ce52009-01-03 21:22:43 +0000159 goto exit;
160 }
161
Gilles Peskine449bd832023-01-11 14:50:10 +0100162 fclose(f);
Paul Bakker5121ce52009-01-03 21:22:43 +0000163
164 /*
165 * 3. Wait for a client to connect
166 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100167 mbedtls_printf("\n . Waiting for a remote connection");
168 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000169
Gilles Peskine449bd832023-01-11 14:50:10 +0100170 if ((ret = mbedtls_net_bind(&listen_fd, NULL, SERVER_PORT, MBEDTLS_NET_PROTO_TCP)) != 0) {
171 mbedtls_printf(" failed\n ! mbedtls_net_bind returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000172 goto exit;
173 }
174
Gilles Peskine449bd832023-01-11 14:50:10 +0100175 if ((ret = mbedtls_net_accept(&listen_fd, &client_fd,
176 NULL, 0, NULL)) != 0) {
177 mbedtls_printf(" failed\n ! mbedtls_net_accept returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000178 goto exit;
179 }
180
181 /*
182 * 4. Setup the DH parameters (P,G,Ys)
183 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100184 mbedtls_printf("\n . Sending the server's DH parameters");
185 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000186
Gilles Peskine449bd832023-01-11 14:50:10 +0100187 memset(buf, 0, sizeof(buf));
Paul Bakker5121ce52009-01-03 21:22:43 +0000188
Gilles Peskine449bd832023-01-11 14:50:10 +0100189 if ((ret =
190 mbedtls_dhm_make_params(&dhm, (int) mbedtls_mpi_size(&dhm.MBEDTLS_PRIVATE(P)), buf, &n,
191 mbedtls_ctr_drbg_random, &ctr_drbg)) != 0) {
192 mbedtls_printf(" failed\n ! mbedtls_dhm_make_params returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000193 goto exit;
194 }
195
196 /*
197 * 5. Sign the parameters and send them
198 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100199 if ((ret = mbedtls_sha1(buf, n, hash)) != 0) {
200 mbedtls_printf(" failed\n ! mbedtls_sha1 returned %d\n\n", ret);
Andres Amaya Garcia1ff60f42017-06-28 13:26:36 +0100201 goto exit;
202 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000203
Gilles Peskine449bd832023-01-11 14:50:10 +0100204 buf[n] = (unsigned char) (rsa.MBEDTLS_PRIVATE(len) >> 8);
205 buf[n + 1] = (unsigned char) (rsa.MBEDTLS_PRIVATE(len));
Paul Bakker5121ce52009-01-03 21:22:43 +0000206
Gilles Peskine449bd832023-01-11 14:50:10 +0100207 if ((ret = mbedtls_rsa_pkcs1_sign(&rsa, NULL, NULL, MBEDTLS_MD_SHA256,
208 32, hash, buf + n + 2)) != 0) {
209 mbedtls_printf(" failed\n ! mbedtls_rsa_pkcs1_sign returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000210 goto exit;
211 }
212
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200213 buflen = n + 2 + rsa.MBEDTLS_PRIVATE(len);
Gilles Peskine449bd832023-01-11 14:50:10 +0100214 buf2[0] = (unsigned char) (buflen >> 8);
215 buf2[1] = (unsigned char) (buflen);
Paul Bakker5121ce52009-01-03 21:22:43 +0000216
Gilles Peskine449bd832023-01-11 14:50:10 +0100217 if ((ret = mbedtls_net_send(&client_fd, buf2, 2)) != 2 ||
218 (ret = mbedtls_net_send(&client_fd, buf, buflen)) != (int) buflen) {
219 mbedtls_printf(" failed\n ! mbedtls_net_send returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000220 goto exit;
221 }
222
223 /*
224 * 6. Get the client's public value: Yc = G ^ Xc mod P
225 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100226 mbedtls_printf("\n . Receiving the client's public value");
227 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000228
Gilles Peskine449bd832023-01-11 14:50:10 +0100229 memset(buf, 0, sizeof(buf));
Paul Bakker5121ce52009-01-03 21:22:43 +0000230
Gilles Peskine449bd832023-01-11 14:50:10 +0100231 n = mbedtls_dhm_get_len(&dhm);
232 if ((ret = mbedtls_net_recv(&client_fd, buf, n)) != (int) n) {
233 mbedtls_printf(" failed\n ! mbedtls_net_recv returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000234 goto exit;
235 }
236
Gilles Peskine449bd832023-01-11 14:50:10 +0100237 if ((ret = mbedtls_dhm_read_public(&dhm, buf, n)) != 0) {
238 mbedtls_printf(" failed\n ! mbedtls_dhm_read_public returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000239 goto exit;
240 }
241
242 /*
243 * 7. Derive the shared secret: K = Ys ^ Xc mod P
244 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100245 mbedtls_printf("\n . Shared secret: ");
246 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000247
Gilles Peskine449bd832023-01-11 14:50:10 +0100248 if ((ret = mbedtls_dhm_calc_secret(&dhm, buf, sizeof(buf), &n,
249 mbedtls_ctr_drbg_random, &ctr_drbg)) != 0) {
250 mbedtls_printf(" failed\n ! mbedtls_dhm_calc_secret returned %d\n\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +0000251 goto exit;
252 }
253
Gilles Peskine449bd832023-01-11 14:50:10 +0100254 for (n = 0; n < 16; n++) {
255 mbedtls_printf("%02x", buf[n]);
256 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000257
258 /*
259 * 8. Setup the AES-256 encryption key
260 *
261 * This is an overly simplified example; best practice is
262 * to hash the shared secret with a random value to derive
263 * the keying material for the encryption/decryption keys
264 * and MACs.
265 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100266 mbedtls_printf("...\n . Encrypting and sending the ciphertext");
267 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +0000268
Gilles Peskine449bd832023-01-11 14:50:10 +0100269 ret = mbedtls_aes_setkey_enc(&aes, buf, 256);
270 if (ret != 0) {
Gilles Peskine7820a572021-07-07 21:08:28 +0200271 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100272 }
273 memcpy(buf, PLAINTEXT, 16);
274 ret = mbedtls_aes_crypt_ecb(&aes, MBEDTLS_AES_ENCRYPT, buf, buf);
275 if (ret != 0) {
Paul Bakker5121ce52009-01-03 21:22:43 +0000276 goto exit;
277 }
278
Gilles Peskine449bd832023-01-11 14:50:10 +0100279 if ((ret = mbedtls_net_send(&client_fd, buf, 16)) != 16) {
280 mbedtls_printf(" failed\n ! mbedtls_net_send returned %d\n\n", ret);
281 goto exit;
282 }
283
284 mbedtls_printf("\n\n");
Paul Bakker5121ce52009-01-03 21:22:43 +0000285
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +0100286 exit_code = MBEDTLS_EXIT_SUCCESS;
287
Paul Bakker5121ce52009-01-03 21:22:43 +0000288exit:
289
Gilles Peskine449bd832023-01-11 14:50:10 +0100290 mbedtls_mpi_free(&N); mbedtls_mpi_free(&P); mbedtls_mpi_free(&Q);
291 mbedtls_mpi_free(&D); mbedtls_mpi_free(&E);
Hanno Beckerc95fad32017-08-23 06:44:30 +0100292
Gilles Peskine449bd832023-01-11 14:50:10 +0100293 mbedtls_net_free(&client_fd);
294 mbedtls_net_free(&listen_fd);
Paul Bakker0c226102014-04-17 16:02:36 +0200295
Gilles Peskine449bd832023-01-11 14:50:10 +0100296 mbedtls_aes_free(&aes);
297 mbedtls_rsa_free(&rsa);
298 mbedtls_dhm_free(&dhm);
299 mbedtls_ctr_drbg_free(&ctr_drbg);
300 mbedtls_entropy_free(&entropy);
Paul Bakker5121ce52009-01-03 21:22:43 +0000301
Gilles Peskine449bd832023-01-11 14:50:10 +0100302 mbedtls_exit(exit_code);
Paul Bakker5121ce52009-01-03 21:22:43 +0000303}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200304#endif /* MBEDTLS_AES_C && MBEDTLS_DHM_C && MBEDTLS_ENTROPY_C &&
305 MBEDTLS_NET_C && MBEDTLS_RSA_C && MBEDTLS_SHA256_C &&
306 MBEDTLS_FS_IO && MBEDTLS_CTR_DRBG_C */