blob: bbe61fd2a88b962a43193391a3e23244b7e01824 [file] [log] [blame]
Paul Bakker896ac222011-05-20 12:33:05 +00001/*
Paul Bakkercb79ae0b2011-05-20 12:44:16 +00002 * SSL server demonstration program using fork() for handling multiple clients
Paul Bakker896ac222011-05-20 12:33:05 +00003 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
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 Bakker896ac222011-05-20 12:33:05 +000018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker896ac222011-05-20 12:33:05 +000020 */
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker896ac222011-05-20 12:33:05 +000027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000030#else
Rich Evans18b78c72015-02-11 14:06:19 +000031#include <stdio.h>
Andres Amaya Garcia4be53b52018-04-29 20:57:21 +010032#include <stdlib.h>
33#define mbedtls_fprintf fprintf
34#define mbedtls_printf printf
35#define mbedtls_time_t time_t
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010036#define mbedtls_exit exit
Andres Amaya Garcia7d429652018-04-30 22:42:33 +010037#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia4be53b52018-04-29 20:57:21 +010038#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
39#endif /* MBEDTLS_PLATFORM_C */
Rich Evansf90016a2015-01-19 14:26:37 +000040
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020041#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_CERTS_C) || \
42 !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_SSL_TLS_C) || \
43 !defined(MBEDTLS_SSL_SRV_C) || !defined(MBEDTLS_NET_C) || \
44 !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_CTR_DRBG_C) || \
45 !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_TIMING_C) || \
Manuel Pégourié-Gonnarde744eab2019-03-18 10:51:18 +010046 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_PEM_PARSE_C) || \
Manuel Pégourié-Gonnardba8b1eb2019-06-17 15:21:07 +020047 defined(MBEDTLS_SSL_PROTO_NO_TLS)
Paul Bakkercce9d772011-11-18 14:26:47 +000048int main( int argc, char *argv[] )
Paul Bakkerb892b132011-10-12 09:19:43 +000049{
Paul Bakkercce9d772011-11-18 14:26:47 +000050 ((void) argc);
51 ((void) argv);
52
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020053 mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_CERTS_C and/or MBEDTLS_ENTROPY_C "
54 "and/or MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_SRV_C and/or "
55 "MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
56 "MBEDTLS_CTR_DRBG_C and/or MBEDTLS_X509_CRT_PARSE_C and/or "
Manuel Pégourié-Gonnardba8b1eb2019-06-17 15:21:07 +020057 "MBEDTLS_TIMING_C and/or MBEDTLS_PEM_PARSE_C not defined, and/or "
58 "MBEDTLS_SSL_PROTO_NO_TLS defined.\n");
Paul Bakkerb892b132011-10-12 09:19:43 +000059 return( 0 );
60}
Paul Bakkercce9d772011-11-18 14:26:47 +000061#elif defined(_WIN32)
Rich Evans85b05ec2015-02-12 11:37:29 +000062int main( void )
Paul Bakkerb892b132011-10-12 09:19:43 +000063{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020064 mbedtls_printf("_WIN32 defined. This application requires fork() and signals "
Paul Bakkerb892b132011-10-12 09:19:43 +000065 "to work correctly.\n");
66 return( 0 );
67}
68#else
Paul Bakker896ac222011-05-20 12:33:05 +000069
Manuel Pégourié-Gonnard4b3e5ef2015-03-27 11:24:27 +010070#include "mbedtls/entropy.h"
71#include "mbedtls/ctr_drbg.h"
72#include "mbedtls/certs.h"
73#include "mbedtls/x509.h"
74#include "mbedtls/ssl.h"
Andres AG788aa4a2016-09-14 14:32:09 +010075#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard4b3e5ef2015-03-27 11:24:27 +010076#include "mbedtls/timing.h"
77
78#include <string.h>
79#include <signal.h>
80
81#if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32)
82#include <unistd.h>
83#endif
84
85#define HTTP_RESPONSE \
86 "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \
87 "<h2>mbed TLS Test Server</h2>\r\n" \
88 "<p>Successful connection using: %s</p>\r\n"
89
Paul Bakker896ac222011-05-20 12:33:05 +000090#define DEBUG_LEVEL 0
91
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010092#if defined(MBEDTLS_CHECK_PARAMS)
93#include "mbedtls/platform_util.h"
94void mbedtls_param_failed( const char *failure_condition,
95 const char *file,
96 int line )
Simon Butcher63cb97e2018-12-06 17:43:31 +000097{
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010098 mbedtls_printf( "%s:%i: Input param failed - %s\n",
99 file, line, failure_condition );
Simon Butcher63cb97e2018-12-06 17:43:31 +0000100 mbedtls_exit( MBEDTLS_EXIT_FAILURE );
101}
102#endif
103
Manuel Pégourié-Gonnard61ee3512015-06-23 17:35:03 +0200104static void my_debug( void *ctx, int level,
105 const char *file, int line,
106 const char *str )
Paul Bakker896ac222011-05-20 12:33:05 +0000107{
Manuel Pégourié-Gonnard61ee3512015-06-23 17:35:03 +0200108 ((void) level);
109
110 mbedtls_fprintf( (FILE *) ctx, "%s:%04d: %s", file, line, str );
111 fflush( (FILE *) ctx );
Paul Bakker896ac222011-05-20 12:33:05 +0000112}
113
Rich Evans85b05ec2015-02-12 11:37:29 +0000114int main( void )
Paul Bakker896ac222011-05-20 12:33:05 +0000115{
Andres Amaya Garcia4be53b52018-04-29 20:57:21 +0100116 int ret = 1, len, cnt = 0, pid;
117 int exit_code = MBEDTLS_EXIT_FAILURE;
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200118 mbedtls_net_context listen_fd, client_fd;
Paul Bakker896ac222011-05-20 12:33:05 +0000119 unsigned char buf[1024];
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200120 const char *pers = "ssl_fork_server";
Paul Bakker896ac222011-05-20 12:33:05 +0000121
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200122 mbedtls_entropy_context entropy;
123 mbedtls_ctr_drbg_context ctr_drbg;
124 mbedtls_ssl_context ssl;
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +0200125 mbedtls_ssl_config conf;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200126 mbedtls_x509_crt srvcert;
127 mbedtls_pk_context pkey;
Paul Bakker896ac222011-05-20 12:33:05 +0000128
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200129 mbedtls_net_init( &listen_fd );
130 mbedtls_net_init( &client_fd );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +0200131 mbedtls_ssl_init( &ssl );
132 mbedtls_ssl_config_init( &conf );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200133 mbedtls_entropy_init( &entropy );
134 mbedtls_pk_init( &pkey );
135 mbedtls_x509_crt_init( &srvcert );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200136 mbedtls_ctr_drbg_init( &ctr_drbg );
Paul Bakker0c226102014-04-17 16:02:36 +0200137
Paul Bakker896ac222011-05-20 12:33:05 +0000138 signal( SIGCHLD, SIG_IGN );
139
140 /*
Paul Bakker508ad5a2011-12-04 17:09:26 +0000141 * 0. Initial seeding of the RNG
142 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200143 mbedtls_printf( "\n . Initial seeding of the random generator..." );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000144 fflush( stdout );
145
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200146 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200147 (const unsigned char *) pers,
148 strlen( pers ) ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +0000149 {
Janos Follath582a4612016-04-28 23:37:16 +0100150 mbedtls_printf( " failed! mbedtls_ctr_drbg_seed returned %d\n\n", ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000151 goto exit;
152 }
153
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200154 mbedtls_printf( " ok\n" );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000155
156 /*
Paul Bakker896ac222011-05-20 12:33:05 +0000157 * 1. Load the certificates and private RSA key
158 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200159 mbedtls_printf( " . Loading the server cert. and key..." );
Paul Bakker896ac222011-05-20 12:33:05 +0000160 fflush( stdout );
161
Paul Bakker896ac222011-05-20 12:33:05 +0000162 /*
163 * This demonstration program uses embedded test certificates.
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164 * Instead, you may want to use mbedtls_x509_crt_parse_file() to read the
165 * server and CA certificates, as well as mbedtls_pk_parse_keyfile().
Paul Bakker896ac222011-05-20 12:33:05 +0000166 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200167 ret = mbedtls_x509_crt_parse( &srvcert, (const unsigned char *) mbedtls_test_srv_crt,
168 mbedtls_test_srv_crt_len );
Paul Bakker896ac222011-05-20 12:33:05 +0000169 if( ret != 0 )
170 {
Janos Follath582a4612016-04-28 23:37:16 +0100171 mbedtls_printf( " failed! mbedtls_x509_crt_parse returned %d\n\n", ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000172 goto exit;
173 }
174
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200175 ret = mbedtls_x509_crt_parse( &srvcert, (const unsigned char *) mbedtls_test_cas_pem,
176 mbedtls_test_cas_pem_len );
Paul Bakker896ac222011-05-20 12:33:05 +0000177 if( ret != 0 )
178 {
Janos Follath582a4612016-04-28 23:37:16 +0100179 mbedtls_printf( " failed! mbedtls_x509_crt_parse returned %d\n\n", ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000180 goto exit;
181 }
182
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200183 ret = mbedtls_pk_parse_key( &pkey, (const unsigned char *) mbedtls_test_srv_key,
184 mbedtls_test_srv_key_len, NULL, 0 );
Paul Bakker896ac222011-05-20 12:33:05 +0000185 if( ret != 0 )
186 {
Janos Follath582a4612016-04-28 23:37:16 +0100187 mbedtls_printf( " failed! mbedtls_pk_parse_key returned %d\n\n", ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000188 goto exit;
189 }
190
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200191 mbedtls_printf( " ok\n" );
Paul Bakker896ac222011-05-20 12:33:05 +0000192
193 /*
Manuel Pégourié-Gonnard0af00e82015-05-11 11:32:43 +0200194 * 1b. Prepare SSL configuration
195 */
196 mbedtls_printf( " . Configuring SSL..." );
197 fflush( stdout );
198
199 if( ( ret = mbedtls_ssl_config_defaults( &conf,
200 MBEDTLS_SSL_IS_SERVER,
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +0200201 MBEDTLS_SSL_TRANSPORT_STREAM,
202 MBEDTLS_SSL_PRESET_DEFAULT ) ) != 0 )
Manuel Pégourié-Gonnard0af00e82015-05-11 11:32:43 +0200203 {
Janos Follath582a4612016-04-28 23:37:16 +0100204 mbedtls_printf( " failed! mbedtls_ssl_config_defaults returned %d\n\n", ret );
Manuel Pégourié-Gonnard0af00e82015-05-11 11:32:43 +0200205 goto exit;
206 }
207
208 mbedtls_ssl_conf_rng( &conf, mbedtls_ctr_drbg_random, &ctr_drbg );
209 mbedtls_ssl_conf_dbg( &conf, my_debug, stdout );
210
211 mbedtls_ssl_conf_ca_chain( &conf, srvcert.next, NULL );
212 if( ( ret = mbedtls_ssl_conf_own_cert( &conf, &srvcert, &pkey ) ) != 0 )
213 {
Janos Follath582a4612016-04-28 23:37:16 +0100214 mbedtls_printf( " failed! mbedtls_ssl_conf_own_cert returned %d\n\n", ret );
Manuel Pégourié-Gonnard0af00e82015-05-11 11:32:43 +0200215 goto exit;
216 }
217
218 mbedtls_printf( " ok\n" );
219
220 /*
Paul Bakker896ac222011-05-20 12:33:05 +0000221 * 2. Setup the listening TCP socket
222 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200223 mbedtls_printf( " . Bind on https://localhost:4433/ ..." );
Paul Bakker896ac222011-05-20 12:33:05 +0000224 fflush( stdout );
225
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200226 if( ( ret = mbedtls_net_bind( &listen_fd, NULL, "4433", MBEDTLS_NET_PROTO_TCP ) ) != 0 )
Paul Bakker896ac222011-05-20 12:33:05 +0000227 {
Janos Follath582a4612016-04-28 23:37:16 +0100228 mbedtls_printf( " failed! mbedtls_net_bind returned %d\n\n", ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000229 goto exit;
230 }
231
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200232 mbedtls_printf( " ok\n" );
Paul Bakker896ac222011-05-20 12:33:05 +0000233
234 while( 1 )
235 {
236 /*
237 * 3. Wait until a client connects
238 */
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200239 mbedtls_net_init( &client_fd );
240 mbedtls_ssl_init( &ssl );
Paul Bakker896ac222011-05-20 12:33:05 +0000241
Janos Follath582a4612016-04-28 23:37:16 +0100242 mbedtls_printf( " . Waiting for a remote connection ...\n" );
Paul Bakker896ac222011-05-20 12:33:05 +0000243 fflush( stdout );
244
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200245 if( ( ret = mbedtls_net_accept( &listen_fd, &client_fd,
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +0200246 NULL, 0, NULL ) ) != 0 )
Paul Bakker896ac222011-05-20 12:33:05 +0000247 {
Janos Follath582a4612016-04-28 23:37:16 +0100248 mbedtls_printf( " failed! mbedtls_net_accept returned %d\n\n", ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000249 goto exit;
250 }
251
Paul Bakker896ac222011-05-20 12:33:05 +0000252 /*
253 * 3.5. Forking server thread
254 */
255
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200256 mbedtls_printf( " . Forking to handle connection ..." );
Paul Bakker896ac222011-05-20 12:33:05 +0000257 fflush( stdout );
258
Janos Follath582a4612016-04-28 23:37:16 +0100259 pid = fork();
260
Paul Bakker896ac222011-05-20 12:33:05 +0000261 if( pid < 0 )
262 {
Janos Follath582a4612016-04-28 23:37:16 +0100263 mbedtls_printf(" failed! fork returned %d\n\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000264 goto exit;
265 }
266
Paul Bakker896ac222011-05-20 12:33:05 +0000267 if( pid != 0 )
268 {
Janos Follath582a4612016-04-28 23:37:16 +0100269 mbedtls_printf( " ok\n" );
270
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200271 if( ( ret = mbedtls_ctr_drbg_reseed( &ctr_drbg,
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200272 (const unsigned char *) "parent",
273 6 ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +0000274 {
Janos Follath582a4612016-04-28 23:37:16 +0100275 mbedtls_printf( " failed! mbedtls_ctr_drbg_reseed returned %d\n\n", ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000276 goto exit;
277 }
278
Paul Bakker896ac222011-05-20 12:33:05 +0000279 continue;
280 }
281
Janos Follathfe049db2016-03-31 11:37:33 +0100282 mbedtls_net_init( &listen_fd );
Paul Bakker896ac222011-05-20 12:33:05 +0000283
Janos Follath582a4612016-04-28 23:37:16 +0100284 pid = getpid();
285
Paul Bakker896ac222011-05-20 12:33:05 +0000286 /*
287 * 4. Setup stuff
288 */
Janos Follath582a4612016-04-28 23:37:16 +0100289 mbedtls_printf( "pid %d: Setting up the SSL data.\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000290 fflush( stdout );
291
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200292 if( ( ret = mbedtls_ctr_drbg_reseed( &ctr_drbg,
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200293 (const unsigned char *) "child",
294 5 ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +0000295 {
Janos Follath582a4612016-04-28 23:37:16 +0100296 mbedtls_printf(
297 "pid %d: SSL setup failed! mbedtls_ctr_drbg_reseed returned %d\n\n",
298 pid, ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000299 goto exit;
300 }
Paul Bakker0c226102014-04-17 16:02:36 +0200301
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +0200302 if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
303 {
Janos Follath582a4612016-04-28 23:37:16 +0100304 mbedtls_printf(
305 "pid %d: SSL setup failed! mbedtls_ssl_setup returned %d\n\n",
306 pid, ret );
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +0200307 goto exit;
308 }
309
310 mbedtls_ssl_set_bio( &ssl, &client_fd, mbedtls_net_send, mbedtls_net_recv, NULL );
311
Janos Follath582a4612016-04-28 23:37:16 +0100312 mbedtls_printf( "pid %d: SSL setup ok\n", pid );
Manuel Pégourié-Gonnard0af00e82015-05-11 11:32:43 +0200313
Paul Bakker896ac222011-05-20 12:33:05 +0000314 /*
315 * 5. Handshake
316 */
Janos Follath582a4612016-04-28 23:37:16 +0100317 mbedtls_printf( "pid %d: Performing the SSL/TLS handshake.\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000318 fflush( stdout );
319
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200320 while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
Paul Bakker896ac222011-05-20 12:33:05 +0000321 {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100322 if( ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE )
Paul Bakker896ac222011-05-20 12:33:05 +0000323 {
Janos Follath582a4612016-04-28 23:37:16 +0100324 mbedtls_printf(
325 "pid %d: SSL handshake failed! mbedtls_ssl_handshake returned %d\n\n",
326 pid, ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000327 goto exit;
328 }
329 }
330
Janos Follath582a4612016-04-28 23:37:16 +0100331 mbedtls_printf( "pid %d: SSL handshake ok\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000332
333 /*
334 * 6. Read the HTTP Request
335 */
Janos Follath582a4612016-04-28 23:37:16 +0100336 mbedtls_printf( "pid %d: Start reading from client.\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000337 fflush( stdout );
338
339 do
340 {
341 len = sizeof( buf ) - 1;
342 memset( buf, 0, sizeof( buf ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200343 ret = mbedtls_ssl_read( &ssl, buf, len );
Paul Bakker896ac222011-05-20 12:33:05 +0000344
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100345 if( ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE )
Paul Bakker896ac222011-05-20 12:33:05 +0000346 continue;
347
348 if( ret <= 0 )
349 {
350 switch( ret )
351 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200352 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
Janos Follath582a4612016-04-28 23:37:16 +0100353 mbedtls_printf( "pid %d: connection was closed gracefully\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000354 break;
355
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200356 case MBEDTLS_ERR_NET_CONN_RESET:
Janos Follath582a4612016-04-28 23:37:16 +0100357 mbedtls_printf( "pid %d: connection was reset by peer\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000358 break;
359
360 default:
Janos Follath582a4612016-04-28 23:37:16 +0100361 mbedtls_printf( "pid %d: mbedtls_ssl_read returned %d\n", pid, ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000362 break;
363 }
364
365 break;
366 }
367
368 len = ret;
Janos Follath582a4612016-04-28 23:37:16 +0100369 mbedtls_printf( "pid %d: %d bytes read\n\n%s", pid, len, (char *) buf );
Manuel Pégourié-Gonnard401caad2015-02-14 15:53:24 +0000370
371 if( ret > 0 )
372 break;
Paul Bakker896ac222011-05-20 12:33:05 +0000373 }
Manuel Pégourié-Gonnard401caad2015-02-14 15:53:24 +0000374 while( 1 );
Paul Bakker896ac222011-05-20 12:33:05 +0000375
376 /*
377 * 7. Write the 200 Response
378 */
Janos Follath582a4612016-04-28 23:37:16 +0100379 mbedtls_printf( "pid %d: Start writing to client.\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000380 fflush( stdout );
381
382 len = sprintf( (char *) buf, HTTP_RESPONSE,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200383 mbedtls_ssl_get_ciphersuite( &ssl ) );
Paul Bakker896ac222011-05-20 12:33:05 +0000384
Paul Bakker030decd2014-04-17 16:03:23 +0200385 while( cnt++ < 100 )
Paul Bakker896ac222011-05-20 12:33:05 +0000386 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200387 while( ( ret = mbedtls_ssl_write( &ssl, buf, len ) ) <= 0 )
Paul Bakker896ac222011-05-20 12:33:05 +0000388 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200389 if( ret == MBEDTLS_ERR_NET_CONN_RESET )
Paul Bakker896ac222011-05-20 12:33:05 +0000390 {
Janos Follath582a4612016-04-28 23:37:16 +0100391 mbedtls_printf(
392 "pid %d: Write failed! peer closed the connection\n\n", pid );
Paul Bakker896ac222011-05-20 12:33:05 +0000393 goto exit;
394 }
395
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100396 if( ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE )
Paul Bakker896ac222011-05-20 12:33:05 +0000397 {
Janos Follath582a4612016-04-28 23:37:16 +0100398 mbedtls_printf(
399 "pid %d: Write failed! mbedtls_ssl_write returned %d\n\n",
400 pid, ret );
Paul Bakker896ac222011-05-20 12:33:05 +0000401 goto exit;
402 }
403 }
404 len = ret;
Janos Follath582a4612016-04-28 23:37:16 +0100405 mbedtls_printf( "pid %d: %d bytes written\n\n%s\n", pid, len, (char *) buf );
Paul Bakker896ac222011-05-20 12:33:05 +0000406
Manuel Pégourié-Gonnarda63bc942015-05-14 18:22:47 +0200407 mbedtls_net_usleep( 1000000 );
Paul Bakker896ac222011-05-20 12:33:05 +0000408 }
409
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200410 mbedtls_ssl_close_notify( &ssl );
Paul Bakker896ac222011-05-20 12:33:05 +0000411 goto exit;
412 }
413
Andres Amaya Garcia4be53b52018-04-29 20:57:21 +0100414 exit_code = MBEDTLS_EXIT_SUCCESS;
415
Paul Bakker896ac222011-05-20 12:33:05 +0000416exit:
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +0200417 mbedtls_net_free( &client_fd );
418 mbedtls_net_free( &listen_fd );
Paul Bakker0c226102014-04-17 16:02:36 +0200419
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200420 mbedtls_x509_crt_free( &srvcert );
421 mbedtls_pk_free( &pkey );
422 mbedtls_ssl_free( &ssl );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +0200423 mbedtls_ssl_config_free( &conf );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200424 mbedtls_ctr_drbg_free( &ctr_drbg );
425 mbedtls_entropy_free( &entropy );
Paul Bakker896ac222011-05-20 12:33:05 +0000426
Paul Bakkercce9d772011-11-18 14:26:47 +0000427#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200428 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker896ac222011-05-20 12:33:05 +0000429 fflush( stdout ); getchar();
430#endif
431
Andres Amaya Garcia4be53b52018-04-29 20:57:21 +0100432 return( exit_code );
Paul Bakker896ac222011-05-20 12:33:05 +0000433}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200434#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_CERTS_C && MBEDTLS_ENTROPY_C &&
435 MBEDTLS_SSL_TLS_C && MBEDTLS_SSL_SRV_C && MBEDTLS_NET_C &&
436 MBEDTLS_RSA_C && MBEDTLS_CTR_DRBG_C && MBEDTLS_PEM_PARSE_C &&
Manuel Pégourié-Gonnard4b3e5ef2015-03-27 11:24:27 +0100437 ! _WIN32 */