2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* SSL server demonstration program
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-19 15:26:37 +01:00
|
|
|
#else
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
2016-04-27 02:26:50 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#define mbedtls_time time
|
2018-03-13 16:22:58 +01:00
|
|
|
#define mbedtls_time_t time_t
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_fprintf fprintf
|
|
|
|
#define mbedtls_printf printf
|
2015-01-19 15:26:37 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_CERTS_C) || \
|
|
|
|
!defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_SSL_TLS_C) || \
|
|
|
|
!defined(MBEDTLS_SSL_SRV_C) || !defined(MBEDTLS_NET_C) || \
|
|
|
|
!defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_CTR_DRBG_C) || \
|
|
|
|
!defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_FS_IO) || \
|
|
|
|
!defined(MBEDTLS_PEM_PARSE_C)
|
2015-03-27 11:24:27 +01:00
|
|
|
int main( void )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_CERTS_C and/or MBEDTLS_ENTROPY_C "
|
|
|
|
"and/or MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_SRV_C and/or "
|
|
|
|
"MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
|
|
|
|
"MBEDTLS_CTR_DRBG_C and/or MBEDTLS_X509_CRT_PARSE_C "
|
|
|
|
"and/or MBEDTLS_PEM_PARSE_C not defined.\n");
|
2015-03-27 11:24:27 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2009-01-03 22:22:43 +01:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
|
|
|
#include "mbedtls/certs.h"
|
|
|
|
#include "mbedtls/x509.h"
|
|
|
|
#include "mbedtls/ssl.h"
|
2016-09-14 15:32:09 +02:00
|
|
|
#include "mbedtls/net_sockets.h"
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/debug.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ssl_cache.h"
|
2012-09-25 23:55:46 +02:00
|
|
|
#endif
|
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#define HTTP_RESPONSE \
|
|
|
|
"HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \
|
|
|
|
"<h2>mbed TLS Test Server</h2>\r\n" \
|
|
|
|
"<p>Successful connection using: %s</p>\r\n"
|
|
|
|
|
|
|
|
#define DEBUG_LEVEL 0
|
|
|
|
|
2015-06-23 17:35:03 +02:00
|
|
|
static void my_debug( void *ctx, int level,
|
|
|
|
const char *file, int line,
|
|
|
|
const char *str )
|
2013-09-15 17:07:33 +02:00
|
|
|
{
|
2014-04-25 16:34:30 +02:00
|
|
|
((void) level);
|
|
|
|
|
2015-06-23 17:35:03 +02:00
|
|
|
mbedtls_fprintf( (FILE *) ctx, "%s:%04d: %s", file, line, str );
|
2014-04-25 16:34:30 +02:00
|
|
|
fflush( (FILE *) ctx );
|
2013-09-15 17:07:33 +02:00
|
|
|
}
|
|
|
|
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
int ret, len;
|
2015-06-30 15:40:39 +02:00
|
|
|
mbedtls_net_context listen_fd, client_fd;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buf[1024];
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "ssl_server";
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
|
|
|
mbedtls_ssl_context ssl;
|
2015-05-04 14:56:36 +02:00
|
|
|
mbedtls_ssl_config conf;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt srvcert;
|
|
|
|
mbedtls_pk_context pkey;
|
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
|
|
|
mbedtls_ssl_cache_context cache;
|
2012-09-26 10:29:38 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-30 15:40:39 +02:00
|
|
|
mbedtls_net_init( &listen_fd );
|
|
|
|
mbedtls_net_init( &client_fd );
|
2015-04-29 00:48:22 +02:00
|
|
|
mbedtls_ssl_init( &ssl );
|
2015-05-04 14:56:36 +02:00
|
|
|
mbedtls_ssl_config_init( &conf );
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
|
|
|
mbedtls_ssl_cache_init( &cache );
|
2012-09-25 23:55:46 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt_init( &srvcert );
|
|
|
|
mbedtls_pk_init( &pkey );
|
|
|
|
mbedtls_entropy_init( &entropy );
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
2012-02-06 17:45:10 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_DEBUG_C)
|
|
|
|
mbedtls_debug_set_threshold( DEBUG_LEVEL );
|
2014-04-25 16:34:30 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* 1. Load the certificates and private RSA key
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Loading the server cert. and key..." );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This demonstration program uses embedded test certificates.
|
2015-04-08 12:49:31 +02:00
|
|
|
* Instead, you may want to use mbedtls_x509_crt_parse_file() to read the
|
|
|
|
* server and CA certificates, as well as mbedtls_pk_parse_keyfile().
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_x509_crt_parse( &srvcert, (const unsigned char *) mbedtls_test_srv_crt,
|
|
|
|
mbedtls_test_srv_crt_len );
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_x509_crt_parse( &srvcert, (const unsigned char *) mbedtls_test_cas_pem,
|
|
|
|
mbedtls_test_cas_pem_len );
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_pk_parse_key( &pkey, (const unsigned char *) mbedtls_test_srv_key,
|
|
|
|
mbedtls_test_srv_key_len, NULL, 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_pk_parse_key returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 2. Setup the listening TCP socket
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Bind on https://localhost:4433/ ..." );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-06-23 12:30:57 +02:00
|
|
|
if( ( ret = mbedtls_net_bind( &listen_fd, NULL, "4433", MBEDTLS_NET_PROTO_TCP ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_net_bind returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
2011-12-04 18:09:26 +01:00
|
|
|
* 3. Seed the RNG
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Seeding the random number generator..." );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-28 22:52:30 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
|
2013-06-24 13:01:08 +02:00
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
2011-12-04 18:09:26 +01:00
|
|
|
{
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret );
|
2011-12-04 18:09:26 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2011-12-04 18:09:26 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 4. Setup stuff
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Setting up the SSL data...." );
|
2011-12-04 18:09:26 +01:00
|
|
|
fflush( stdout );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-04 19:32:36 +02:00
|
|
|
if( ( ret = mbedtls_ssl_config_defaults( &conf,
|
|
|
|
MBEDTLS_SSL_IS_SERVER,
|
2015-06-17 13:53:47 +02:00
|
|
|
MBEDTLS_SSL_TRANSPORT_STREAM,
|
|
|
|
MBEDTLS_SSL_PRESET_DEFAULT ) ) != 0 )
|
2015-05-04 14:56:36 +02:00
|
|
|
{
|
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_config_defaults returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-05-11 09:50:24 +02:00
|
|
|
mbedtls_ssl_conf_rng( &conf, mbedtls_ctr_drbg_random, &ctr_drbg );
|
|
|
|
mbedtls_ssl_conf_dbg( &conf, my_debug, stdout );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
2015-05-11 09:50:24 +02:00
|
|
|
mbedtls_ssl_conf_session_cache( &conf, &cache,
|
2015-05-06 19:06:26 +02:00
|
|
|
mbedtls_ssl_cache_get,
|
|
|
|
mbedtls_ssl_cache_set );
|
2012-09-25 23:55:46 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-11 09:50:24 +02:00
|
|
|
mbedtls_ssl_conf_ca_chain( &conf, srvcert.next, NULL );
|
|
|
|
if( ( ret = mbedtls_ssl_conf_own_cert( &conf, &srvcert, &pkey ) ) != 0 )
|
2014-07-08 14:05:52 +02:00
|
|
|
{
|
2015-05-11 09:50:24 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n", ret );
|
2014-07-08 14:05:52 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-11 11:25:46 +02:00
|
|
|
if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
|
|
|
reset:
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifdef MBEDTLS_ERROR_C
|
2011-11-27 22:07:34 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
char error_buf[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_strerror( ret, error_buf, 100 );
|
|
|
|
mbedtls_printf("Last error was: %d - %s\n\n", ret, error_buf );
|
2011-11-27 22:07:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-30 15:55:03 +02:00
|
|
|
mbedtls_net_free( &client_fd );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_session_reset( &ssl );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 3. Wait until a client connects
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Waiting for a remote connection ..." );
|
2011-10-06 14:37:39 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-06-30 15:40:39 +02:00
|
|
|
if( ( ret = mbedtls_net_accept( &listen_fd, &client_fd,
|
2015-05-14 21:52:40 +02:00
|
|
|
NULL, 0, NULL ) ) != 0 )
|
2011-10-06 14:37:39 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_net_accept returned %d\n\n", ret );
|
2011-10-06 14:37:39 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-05-06 16:54:23 +02:00
|
|
|
mbedtls_ssl_set_bio( &ssl, &client_fd, mbedtls_net_send, mbedtls_net_recv, NULL );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2011-10-06 14:37:39 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* 5. Handshake
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Performing the SSL/TLS handshake..." );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-05-06 17:19:31 +02:00
|
|
|
if( ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned %d\n\n", ret );
|
2011-10-06 14:37:39 +02:00
|
|
|
goto reset;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 6. Read the HTTP Request
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " < Read from client:" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
len = sizeof( buf ) - 1;
|
|
|
|
memset( buf, 0, sizeof( buf ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_ssl_read( &ssl, buf, len );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-06 17:19:31 +02:00
|
|
|
if( ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE )
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( ret <= 0 )
|
|
|
|
{
|
|
|
|
switch( ret )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
|
|
|
|
mbedtls_printf( " connection was closed gracefully\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
break;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
case MBEDTLS_ERR_NET_CONN_RESET:
|
|
|
|
mbedtls_printf( " connection was reset by peer\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n", -ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " %d bytes read\n\n%s", len, (char *) buf );
|
2012-09-16 21:57:18 +02:00
|
|
|
|
|
|
|
if( ret > 0 )
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2012-09-16 21:57:18 +02:00
|
|
|
while( 1 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 7. Write the 200 Response
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " > Write to client:" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
len = sprintf( (char *) buf, HTTP_RESPONSE,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_get_ciphersuite( &ssl ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( ( ret = mbedtls_ssl_write( &ssl, buf, len ) ) <= 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ret == MBEDTLS_ERR_NET_CONN_RESET )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! peer closed the connection\n\n" );
|
2011-10-06 14:37:39 +02:00
|
|
|
goto reset;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-05-06 17:19:31 +02:00
|
|
|
if( ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " %d bytes written\n\n%s\n", len, (char *) buf );
|
2014-03-25 11:24:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Closing the connection..." );
|
2014-03-25 11:24:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( ( ret = mbedtls_ssl_close_notify( &ssl ) ) < 0 )
|
2014-03-25 11:24:43 +01:00
|
|
|
{
|
2015-05-06 17:19:31 +02:00
|
|
|
if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
|
|
|
|
ret != MBEDTLS_ERR_SSL_WANT_WRITE )
|
2014-03-25 11:24:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_close_notify returned %d\n\n", ret );
|
2014-03-25 11:24:43 +01:00
|
|
|
goto reset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2014-03-25 11:24:43 +01:00
|
|
|
|
2011-11-27 22:07:34 +01:00
|
|
|
ret = 0;
|
2011-10-06 14:37:39 +02:00
|
|
|
goto reset;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifdef MBEDTLS_ERROR_C
|
2011-11-27 22:07:34 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
char error_buf[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_strerror( ret, error_buf, 100 );
|
|
|
|
mbedtls_printf("Last error was: %d - %s\n\n", ret, error_buf );
|
2011-11-27 22:07:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-30 15:55:03 +02:00
|
|
|
mbedtls_net_free( &client_fd );
|
|
|
|
mbedtls_net_free( &listen_fd );
|
2014-04-17 16:02:36 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt_free( &srvcert );
|
|
|
|
mbedtls_pk_free( &pkey );
|
|
|
|
mbedtls_ssl_free( &ssl );
|
2015-05-04 14:56:36 +02:00
|
|
|
mbedtls_ssl_config_free( &conf );
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
|
|
|
mbedtls_ssl_cache_free( &cache );
|
2012-09-25 23:55:46 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_free( &ctr_drbg );
|
|
|
|
mbedtls_entropy_free( &entropy );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " Press Enter to exit this program.\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_CERTS_C && MBEDTLS_ENTROPY_C &&
|
|
|
|
MBEDTLS_SSL_TLS_C && MBEDTLS_SSL_SRV_C && MBEDTLS_NET_C &&
|
|
|
|
MBEDTLS_RSA_C && MBEDTLS_CTR_DRBG_C && MBEDTLS_X509_CRT_PARSE_C
|
|
|
|
&& MBEDTLS_FS_IO && MBEDTLS_PEM_PARSE_C */
|