2014-10-14 11:47:21 +02:00
|
|
|
/*
|
|
|
|
* Simple DTLS client demonstration program
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2014-10-14 11:47:21 +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
|
2014-10-14 11:47:21 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-10-14 11:47:21 +02: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.
|
2014-10-14 11:47:21 +02:00
|
|
|
*/
|
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2014-10-14 11:47:21 +02: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-29 14:29:20 +01:00
|
|
|
#else
|
2015-03-27 11:24:27 +01:00
|
|
|
#include <stdio.h>
|
2019-04-24 14:24:46 +02:00
|
|
|
#include <stdlib.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
|
|
|
#define mbedtls_fprintf fprintf
|
2018-12-10 14:31:45 +01:00
|
|
|
#define mbedtls_exit exit
|
|
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
|
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
2015-01-29 14:29:20 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_SSL_CLI_C) || !defined(MBEDTLS_SSL_PROTO_DTLS) || \
|
2015-05-13 10:04:32 +02:00
|
|
|
!defined(MBEDTLS_NET_C) || !defined(MBEDTLS_TIMING_C) || \
|
2015-04-08 12:49:31 +02:00
|
|
|
!defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_CTR_DRBG_C) || \
|
|
|
|
!defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_RSA_C) || \
|
2021-02-08 15:34:42 +01:00
|
|
|
!defined(MBEDTLS_PEM_PARSE_C)
|
2015-05-13 10:04:32 +02:00
|
|
|
int main( void )
|
2014-10-14 11:47:21 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "MBEDTLS_SSL_CLI_C and/or MBEDTLS_SSL_PROTO_DTLS and/or "
|
2015-05-13 10:04:32 +02:00
|
|
|
"MBEDTLS_NET_C and/or MBEDTLS_TIMING_C and/or "
|
2015-04-08 12:49:31 +02:00
|
|
|
"MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or "
|
|
|
|
"MBEDTLS_X509_CRT_PARSE_C and/or MBEDTLS_RSA_C and/or "
|
2021-02-08 15:34:42 +01:00
|
|
|
"MBEDTLS_PEM_PARSE_C not defined.\n" );
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( 0 );
|
2014-10-14 11:47:21 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-09-14 15:32:09 +02:00
|
|
|
#include "mbedtls/net_sockets.h"
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/debug.h"
|
|
|
|
#include "mbedtls/ssl.h"
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
|
|
|
#include "mbedtls/error.h"
|
2015-05-26 12:19:45 +02:00
|
|
|
#include "mbedtls/timing.h"
|
2021-02-08 15:34:42 +01:00
|
|
|
#include "test/certs.h"
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2018-05-12 19:23:32 +02:00
|
|
|
/* Uncomment out the following line to default to IPv4 and disable IPv6 */
|
|
|
|
//#define FORCE_IPV4
|
|
|
|
|
2015-06-23 12:30:57 +02:00
|
|
|
#define SERVER_PORT "4433"
|
2014-10-14 11:47:21 +02:00
|
|
|
#define SERVER_NAME "localhost"
|
2018-05-12 19:23:32 +02:00
|
|
|
|
|
|
|
#ifdef FORCE_IPV4
|
|
|
|
#define SERVER_ADDR "127.0.0.1" /* Forces IPv4 */
|
|
|
|
#else
|
|
|
|
#define SERVER_ADDR "::1"
|
|
|
|
#endif
|
|
|
|
|
2014-10-14 11:47:21 +02:00
|
|
|
#define MESSAGE "Echo this"
|
|
|
|
|
|
|
|
#define READ_TIMEOUT_MS 1000
|
|
|
|
#define MAX_RETRY 5
|
|
|
|
|
|
|
|
#define DEBUG_LEVEL 0
|
|
|
|
|
2018-12-06 18:43:31 +01:00
|
|
|
|
2015-06-23 17:35:03 +02:00
|
|
|
static void my_debug( void *ctx, int level,
|
|
|
|
const char *file, int line,
|
|
|
|
const char *str )
|
2014-10-14 11:47:21 +02:00
|
|
|
{
|
|
|
|
((void) level);
|
|
|
|
|
2015-06-23 17:35:03 +02:00
|
|
|
mbedtls_fprintf( (FILE *) ctx, "%s:%04d: %s", file, line, str );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( (FILE *) ctx );
|
|
|
|
}
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
2015-06-30 15:40:39 +02:00
|
|
|
int ret, len;
|
|
|
|
mbedtls_net_context server_fd;
|
2015-05-11 19:54:43 +02:00
|
|
|
uint32_t flags;
|
2014-10-14 11:47:21 +02:00
|
|
|
unsigned char buf[1024];
|
|
|
|
const char *pers = "dtls_client";
|
|
|
|
int retry_left = MAX_RETRY;
|
|
|
|
|
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 cacert;
|
2015-05-13 10:04:32 +02:00
|
|
|
mbedtls_timing_delay_context timer;
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
((void) argc);
|
|
|
|
((void) argv);
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_DEBUG_C)
|
|
|
|
mbedtls_debug_set_threshold( DEBUG_LEVEL );
|
2014-10-14 11:47:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 0. Initialize the RNG and the session data
|
|
|
|
*/
|
2015-06-30 15:40:39 +02:00
|
|
|
mbedtls_net_init( &server_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
|
|
|
mbedtls_x509_crt_init( &cacert );
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctr_drbg );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n . Seeding the random number generator..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_init( &entropy );
|
2015-04-28 22:52:30 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
|
2014-10-14 11:47:21 +02:00
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
|
|
|
{
|
2015-04-28 22:52:30 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
2015-05-04 14:56:36 +02:00
|
|
|
* 0. Load certificates
|
2014-10-14 11:47:21 +02:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Loading the CA root certificate ..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = mbedtls_x509_crt_parse( &cacert, (const unsigned char *) mbedtls_test_cas_pem,
|
|
|
|
mbedtls_test_cas_pem_len );
|
2014-10-14 11:47:21 +02:00
|
|
|
if( ret < 0 )
|
|
|
|
{
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", (unsigned int) -ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok (%d skipped)\n", ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 1. Start the connection
|
|
|
|
*/
|
2015-06-23 12:30:57 +02:00
|
|
|
mbedtls_printf( " . Connecting to udp/%s/%s...", SERVER_NAME, SERVER_PORT );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_net_connect( &server_fd, SERVER_ADDR,
|
|
|
|
SERVER_PORT, MBEDTLS_NET_PROTO_UDP ) ) != 0 )
|
2014-10-14 11:47:21 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_net_connect returned %d\n\n", ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 2. Setup stuff
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Setting up the DTLS structure..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-05-04 19:32:36 +02:00
|
|
|
if( ( ret = mbedtls_ssl_config_defaults( &conf,
|
|
|
|
MBEDTLS_SSL_IS_CLIENT,
|
2015-06-17 13:53:47 +02:00
|
|
|
MBEDTLS_SSL_TRANSPORT_DATAGRAM,
|
|
|
|
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 11:25:46 +02:00
|
|
|
/* OPTIONAL is usually a bad choice for security, but makes interop easier
|
|
|
|
* in this simplified example, in which the ca chain is hardcoded.
|
|
|
|
* Production code should set a proper ca chain and use REQUIRED. */
|
|
|
|
mbedtls_ssl_conf_authmode( &conf, MBEDTLS_SSL_VERIFY_OPTIONAL );
|
|
|
|
mbedtls_ssl_conf_ca_chain( &conf, &cacert, NULL );
|
|
|
|
mbedtls_ssl_conf_rng( &conf, mbedtls_ctr_drbg_random, &ctr_drbg );
|
|
|
|
mbedtls_ssl_conf_dbg( &conf, my_debug, stdout );
|
2021-03-01 16:02:35 +01:00
|
|
|
mbedtls_ssl_conf_read_timeout( &conf, READ_TIMEOUT_MS );
|
2015-05-11 11:25:46 +02:00
|
|
|
|
2015-05-04 14:56:36 +02:00
|
|
|
if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
|
2014-10-14 11:47:21 +02:00
|
|
|
{
|
2015-04-29 00:48:22 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned %d\n\n", ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-05-06 12:14:19 +02:00
|
|
|
if( ( ret = mbedtls_ssl_set_hostname( &ssl, SERVER_NAME ) ) != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_set_hostname returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-05-06 16:54:23 +02:00
|
|
|
mbedtls_ssl_set_bio( &ssl, &server_fd,
|
2015-05-06 16:38:52 +02:00
|
|
|
mbedtls_net_send, mbedtls_net_recv, mbedtls_net_recv_timeout );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-05-13 10:04:32 +02:00
|
|
|
mbedtls_ssl_set_timer_cb( &ssl, &timer, mbedtls_timing_set_delay,
|
|
|
|
mbedtls_timing_get_delay );
|
|
|
|
|
2015-05-06 12:14:19 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
|
|
|
|
2014-10-14 11:47:21 +02:00
|
|
|
/*
|
|
|
|
* 4. Handshake
|
|
|
|
*/
|
2016-11-22 07:56:18 +01:00
|
|
|
mbedtls_printf( " . Performing the DTLS handshake..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
do ret = mbedtls_ssl_handshake( &ssl );
|
2015-05-06 17:19:31 +02:00
|
|
|
while( ret == MBEDTLS_ERR_SSL_WANT_READ ||
|
|
|
|
ret == MBEDTLS_ERR_SSL_WANT_WRITE );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
{
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n", (unsigned int) -ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 5. Verify the server certificate
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Verifying peer X.509 certificate..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* In real life, we would have used MBEDTLS_SSL_VERIFY_REQUIRED so that the
|
2014-10-14 11:47:21 +02:00
|
|
|
* handshake would not succeed if the peer's cert is bad. Even if we used
|
2015-04-08 12:49:31 +02:00
|
|
|
* MBEDTLS_SSL_VERIFY_OPTIONAL, we would bail out here if ret != 0 */
|
2015-05-11 19:54:43 +02:00
|
|
|
if( ( flags = mbedtls_ssl_get_verify_result( &ssl ) ) != 0 )
|
2014-10-14 11:47:21 +02:00
|
|
|
{
|
2020-10-09 10:19:39 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2015-05-11 19:54:43 +02:00
|
|
|
char vrfy_buf[512];
|
2018-12-11 20:55:56 +01:00
|
|
|
#endif
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-05-11 19:54:43 +02:00
|
|
|
mbedtls_printf( " failed\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2020-10-09 10:19:39 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2015-05-11 19:54:43 +02:00
|
|
|
mbedtls_x509_crt_verify_info( vrfy_buf, sizeof( vrfy_buf ), " ! ", flags );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-05-11 19:54:43 +02:00
|
|
|
mbedtls_printf( "%s\n", vrfy_buf );
|
2018-12-11 20:55:56 +01:00
|
|
|
#endif
|
2014-10-14 11:47:21 +02:00
|
|
|
}
|
|
|
|
else
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " ok\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 6. Write the echo request
|
|
|
|
*/
|
|
|
|
send_request:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " > Write to server:" );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
len = sizeof( MESSAGE ) - 1;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
do ret = mbedtls_ssl_write( &ssl, (unsigned char *) MESSAGE, len );
|
2015-05-06 17:19:31 +02:00
|
|
|
while( ret == MBEDTLS_ERR_SSL_WANT_READ ||
|
|
|
|
ret == MBEDTLS_ERR_SSL_WANT_WRITE );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
if( ret < 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n", ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " %d bytes written\n\n%s\n\n", len, MESSAGE );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 7. Read the echo response
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " < Read from server:" );
|
2014-10-14 11:47:21 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
len = sizeof( buf ) - 1;
|
|
|
|
memset( buf, 0, sizeof( buf ) );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
do ret = mbedtls_ssl_read( &ssl, buf, len );
|
2015-05-06 17:19:31 +02:00
|
|
|
while( ret == MBEDTLS_ERR_SSL_WANT_READ ||
|
|
|
|
ret == MBEDTLS_ERR_SSL_WANT_WRITE );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
if( ret <= 0 )
|
|
|
|
{
|
|
|
|
switch( ret )
|
|
|
|
{
|
2015-05-06 17:19:31 +02:00
|
|
|
case MBEDTLS_ERR_SSL_TIMEOUT:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " timeout\n\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
if( retry_left-- > 0 )
|
|
|
|
goto send_request;
|
|
|
|
goto exit;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
|
|
|
|
mbedtls_printf( " connection was closed gracefully\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
ret = 0;
|
|
|
|
goto close_notify;
|
|
|
|
|
|
|
|
default:
|
2020-04-01 17:22:45 +02:00
|
|
|
mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n\n", (unsigned int) -ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " %d bytes read\n\n%s\n\n", len, buf );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 8. Done, cleanly close the connection
|
|
|
|
*/
|
|
|
|
close_notify:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " . Closing the connection..." );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/* No error checking, the connection might be closed already */
|
2015-04-08 12:49:31 +02:00
|
|
|
do ret = mbedtls_ssl_close_notify( &ssl );
|
2015-05-06 17:19:31 +02:00
|
|
|
while( ret == MBEDTLS_ERR_SSL_WANT_WRITE );
|
2014-10-14 11:47:21 +02:00
|
|
|
ret = 0;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " done\n" );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 9. Final clean-ups and exit
|
|
|
|
*/
|
|
|
|
exit:
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#ifdef MBEDTLS_ERROR_C
|
2014-10-14 11:47:21 +02: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 );
|
2014-10-14 11:47:21 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-30 15:55:03 +02:00
|
|
|
mbedtls_net_free( &server_fd );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt_free( &cacert );
|
|
|
|
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
|
|
|
mbedtls_ctr_drbg_free( &ctr_drbg );
|
|
|
|
mbedtls_entropy_free( &entropy );
|
2014-10-14 11:47:21 +02:00
|
|
|
|
|
|
|
/* Shell can not handle large exit numbers -> 1 for errors */
|
|
|
|
if( ret < 0 )
|
|
|
|
ret = 1;
|
|
|
|
|
2019-04-24 14:24:46 +02:00
|
|
|
mbedtls_exit( ret );
|
2014-10-14 11:47:21 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SSL_CLI_C && MBEDTLS_SSL_PROTO_DTLS && MBEDTLS_NET_C &&
|
2015-05-13 10:04:32 +02:00
|
|
|
MBEDTLD_TIMING_C && MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C &&
|
2021-02-08 15:34:42 +01:00
|
|
|
MBEDTLS_X509_CRT_PARSE_C && MBEDTLS_RSA_C && MBEDTLS_PEM_PARSE_C */
|