2010-03-18 21:11:58 +01:00
|
|
|
/*
|
|
|
|
* Certificate reading application
|
|
|
|
*
|
2015-01-23 10:45:19 +01:00
|
|
|
* Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-01-23 12:06:27 +01:00
|
|
|
* This file is part of mbed TLS (https://www.polarssl.org)
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2010-03-18 21:11:58 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2013-09-20 13:30:43 +02:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
#if defined(POLARSSL_PLATFORM_C)
|
|
|
|
#include "polarssl/platform.h"
|
|
|
|
#else
|
|
|
|
#define polarssl_printf printf
|
|
|
|
#define polarssl_fprintf fprintf
|
|
|
|
#endif
|
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
#include "polarssl/entropy.h"
|
|
|
|
#include "polarssl/ctr_drbg.h"
|
2010-03-18 21:11:58 +01:00
|
|
|
#include "polarssl/net.h"
|
|
|
|
#include "polarssl/ssl.h"
|
|
|
|
#include "polarssl/x509.h"
|
|
|
|
|
2013-09-09 15:59:20 +02:00
|
|
|
#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \
|
|
|
|
!defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \
|
|
|
|
!defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \
|
2013-09-16 13:49:26 +02:00
|
|
|
!defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_FS_IO) || \
|
2013-09-09 15:59:20 +02:00
|
|
|
!defined(POLARSSL_CTR_DRBG_C)
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
((void) argc);
|
|
|
|
((void) argv);
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or "
|
2013-09-09 15:59:20 +02:00
|
|
|
"POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or "
|
|
|
|
"POLARSSL_NET_C and/or POLARSSL_RSA_C and/or "
|
2013-09-16 13:49:26 +02:00
|
|
|
"POLARSSL_X509_CRT_PARSE_C and/or POLARSSL_FS_IO and/or "
|
2013-09-09 15:59:20 +02:00
|
|
|
"POLARSSL_CTR_DRBG_C not defined.\n");
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
#define MODE_NONE 0
|
|
|
|
#define MODE_FILE 1
|
|
|
|
#define MODE_SSL 2
|
|
|
|
|
|
|
|
#define DFL_MODE MODE_NONE
|
|
|
|
#define DFL_FILENAME "cert.crt"
|
2013-05-21 16:20:04 +02:00
|
|
|
#define DFL_CA_FILE ""
|
2014-05-28 11:36:16 +02:00
|
|
|
#define DFL_CRL_FILE ""
|
2013-05-21 16:20:04 +02:00
|
|
|
#define DFL_CA_PATH ""
|
2010-03-18 21:11:58 +01:00
|
|
|
#define DFL_SERVER_NAME "localhost"
|
|
|
|
#define DFL_SERVER_PORT 4433
|
|
|
|
#define DFL_DEBUG_LEVEL 0
|
2011-12-04 13:24:18 +01:00
|
|
|
#define DFL_PERMISSIVE 0
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* global options
|
|
|
|
*/
|
|
|
|
struct options
|
|
|
|
{
|
|
|
|
int mode; /* the mode to run the application in */
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *filename; /* filename of the certificate file */
|
|
|
|
const char *ca_file; /* the file with the CA certificate(s) */
|
2014-05-28 11:36:16 +02:00
|
|
|
const char *crl_file; /* the file with the CRL to use */
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *ca_path; /* the path with the CA certificate(s) reside */
|
|
|
|
const char *server_name; /* hostname of the server (client only) */
|
2010-03-18 21:11:58 +01:00
|
|
|
int server_port; /* port on which the ssl service runs */
|
|
|
|
int debug_level; /* level of debugging */
|
2011-12-04 13:24:18 +01:00
|
|
|
int permissive; /* permissive parsing */
|
2010-03-18 21:11:58 +01:00
|
|
|
} opt;
|
|
|
|
|
2013-06-25 16:37:45 +02:00
|
|
|
static void my_debug( void *ctx, int level, const char *str )
|
2010-03-18 21:11:58 +01:00
|
|
|
{
|
|
|
|
if( level < opt.debug_level )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_fprintf( (FILE *) ctx, "%s", str );
|
2010-03-18 21:11:58 +01:00
|
|
|
fflush( (FILE *) ctx );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 14:13:26 +02:00
|
|
|
static int my_verify( void *data, x509_crt *crt, int depth, int *flags )
|
2013-05-21 16:20:04 +02:00
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
((void) data);
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\nVerify requested for (Depth %d):\n", depth );
|
2013-09-18 13:46:23 +02:00
|
|
|
x509_crt_info( buf, sizeof( buf ) - 1, "", crt );
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "%s", buf );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCERT_EXPIRED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! server certificate has expired\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCERT_REVOKED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! server certificate has been revoked\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCERT_CN_MISMATCH ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! CN mismatch\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCERT_NOT_TRUSTED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! self-signed or not signed by a trusted CA\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCRL_NOT_TRUSTED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! CRL not trusted\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCRL_EXPIRED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! CRL expired\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( (*flags) & BADCERT_OTHER ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! other (unknown) flag\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if ( ( *flags ) == 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " This certificate has no flags\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#define USAGE_IO \
|
|
|
|
" ca_file=%%s The single file containing the top-level CA(s) you fully trust\n" \
|
|
|
|
" default: \"\" (none)\n" \
|
2014-05-28 11:36:16 +02:00
|
|
|
" crl_file=%%s The single CRL file you want to use\n" \
|
|
|
|
" default: \"\" (none)\n" \
|
2013-05-21 16:20:04 +02:00
|
|
|
" ca_path=%%s The path containing the top-level CA(s) you fully trust\n" \
|
|
|
|
" default: \"\" (none) (overrides ca_file)\n"
|
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
#define USAGE \
|
|
|
|
"\n usage: cert_app param=<>...\n" \
|
|
|
|
"\n acceptable parameters:\n" \
|
2013-05-21 16:20:04 +02:00
|
|
|
" mode=file|ssl default: none\n" \
|
2010-03-18 21:11:58 +01:00
|
|
|
" filename=%%s default: cert.crt\n" \
|
2013-05-21 16:20:04 +02:00
|
|
|
USAGE_IO \
|
2010-03-18 21:11:58 +01:00
|
|
|
" server_name=%%s default: localhost\n" \
|
|
|
|
" server_port=%%d default: 4433\n" \
|
|
|
|
" debug_level=%%d default: 0 (disabled)\n" \
|
2011-12-04 13:24:18 +01:00
|
|
|
" permissive=%%d default: 0 (disabled)\n" \
|
2010-03-18 21:11:58 +01:00
|
|
|
"\n"
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
|
|
|
int ret = 0, server_fd;
|
|
|
|
unsigned char buf[1024];
|
2011-12-04 18:09:26 +01:00
|
|
|
entropy_context entropy;
|
|
|
|
ctr_drbg_context ctr_drbg;
|
2010-03-18 21:11:58 +01:00
|
|
|
ssl_context ssl;
|
2013-09-18 14:13:26 +02:00
|
|
|
x509_crt cacert;
|
|
|
|
x509_crt clicert;
|
2014-05-28 11:36:16 +02:00
|
|
|
x509_crl cacrl;
|
2013-08-19 14:10:16 +02:00
|
|
|
pk_context pkey;
|
2013-09-17 13:25:29 +02:00
|
|
|
int i, j;
|
2013-05-21 16:20:04 +02:00
|
|
|
int flags, verify = 0;
|
2010-03-18 21:11:58 +01:00
|
|
|
char *p, *q;
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "cert_app";
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2011-02-06 14:22:40 +01:00
|
|
|
/*
|
|
|
|
* Set to sane values
|
|
|
|
*/
|
|
|
|
server_fd = 0;
|
2013-09-18 11:58:25 +02:00
|
|
|
x509_crt_init( &cacert );
|
|
|
|
x509_crt_init( &clicert );
|
2014-06-12 23:22:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRL_PARSE_C)
|
2014-05-28 11:36:16 +02:00
|
|
|
x509_crl_init( &cacrl );
|
2014-06-12 23:22:26 +02:00
|
|
|
#else
|
|
|
|
/* Zeroize structure as CRL parsing is not supported and we have to pass
|
|
|
|
it to the verify function */
|
|
|
|
memset( &cacrl, 0, sizeof(x509_crl) );
|
|
|
|
#endif
|
2013-08-19 14:10:16 +02:00
|
|
|
pk_init( &pkey );
|
2011-02-06 14:22:40 +01:00
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
if( argc == 0 )
|
|
|
|
{
|
|
|
|
usage:
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( USAGE );
|
2014-11-10 16:40:16 +01:00
|
|
|
ret = 2;
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
opt.mode = DFL_MODE;
|
|
|
|
opt.filename = DFL_FILENAME;
|
2013-05-21 16:20:04 +02:00
|
|
|
opt.ca_file = DFL_CA_FILE;
|
2014-05-28 11:36:16 +02:00
|
|
|
opt.crl_file = DFL_CRL_FILE;
|
2013-05-21 16:20:04 +02:00
|
|
|
opt.ca_path = DFL_CA_PATH;
|
2010-03-18 21:11:58 +01:00
|
|
|
opt.server_name = DFL_SERVER_NAME;
|
|
|
|
opt.server_port = DFL_SERVER_PORT;
|
|
|
|
opt.debug_level = DFL_DEBUG_LEVEL;
|
2011-12-04 13:24:18 +01:00
|
|
|
opt.permissive = DFL_PERMISSIVE;
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
for( i = 1; i < argc; i++ )
|
|
|
|
{
|
2013-09-16 21:40:34 +02:00
|
|
|
p = argv[i];
|
|
|
|
if( ( q = strchr( p, '=' ) ) == NULL )
|
|
|
|
goto usage;
|
|
|
|
*q++ = '\0';
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2013-09-16 21:40:34 +02:00
|
|
|
for( j = 0; p + j < q; j++ )
|
2010-03-18 21:11:58 +01:00
|
|
|
{
|
|
|
|
if( argv[i][j] >= 'A' && argv[i][j] <= 'Z' )
|
|
|
|
argv[i][j] |= 0x20;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( strcmp( p, "mode" ) == 0 )
|
|
|
|
{
|
|
|
|
if( strcmp( q, "file" ) == 0 )
|
|
|
|
opt.mode = MODE_FILE;
|
|
|
|
else if( strcmp( q, "ssl" ) == 0 )
|
|
|
|
opt.mode = MODE_SSL;
|
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
else if( strcmp( p, "filename" ) == 0 )
|
|
|
|
opt.filename = q;
|
2013-05-21 16:20:04 +02:00
|
|
|
else if( strcmp( p, "ca_file" ) == 0 )
|
|
|
|
opt.ca_file = q;
|
2014-05-28 11:36:16 +02:00
|
|
|
else if( strcmp( p, "crl_file" ) == 0 )
|
|
|
|
opt.crl_file = q;
|
2013-05-21 16:20:04 +02:00
|
|
|
else if( strcmp( p, "ca_path" ) == 0 )
|
|
|
|
opt.ca_path = q;
|
2010-03-18 21:11:58 +01:00
|
|
|
else if( strcmp( p, "server_name" ) == 0 )
|
|
|
|
opt.server_name = q;
|
|
|
|
else if( strcmp( p, "server_port" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.server_port = atoi( q );
|
|
|
|
if( opt.server_port < 1 || opt.server_port > 65535 )
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
else if( strcmp( p, "debug_level" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.debug_level = atoi( q );
|
|
|
|
if( opt.debug_level < 0 || opt.debug_level > 65535 )
|
|
|
|
goto usage;
|
|
|
|
}
|
2011-12-04 13:24:18 +01:00
|
|
|
else if( strcmp( p, "permissive" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.permissive = atoi( q );
|
|
|
|
if( opt.permissive < 0 || opt.permissive > 1 )
|
|
|
|
goto usage;
|
|
|
|
}
|
2010-03-18 21:11:58 +01:00
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
|
2013-05-21 16:20:04 +02:00
|
|
|
/*
|
|
|
|
* 1.1. Load the trusted CA
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " . Loading the CA root certificate ..." );
|
2013-05-21 16:20:04 +02:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( strlen( opt.ca_path ) )
|
|
|
|
{
|
2013-09-18 13:46:23 +02:00
|
|
|
ret = x509_crt_parse_path( &cacert, opt.ca_path );
|
2013-05-21 16:20:04 +02:00
|
|
|
verify = 1;
|
|
|
|
}
|
|
|
|
else if( strlen( opt.ca_file ) )
|
|
|
|
{
|
2013-09-18 13:46:23 +02:00
|
|
|
ret = x509_crt_parse_file( &cacert, opt.ca_file );
|
2013-05-21 16:20:04 +02:00
|
|
|
verify = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ret < 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crt_parse returned -0x%x\n\n", -ret );
|
2013-05-21 16:20:04 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ok (%d skipped)\n", ret );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
2014-06-12 23:22:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRL_PARSE_C)
|
2014-05-28 11:36:16 +02:00
|
|
|
if( strlen( opt.crl_file ) )
|
|
|
|
{
|
2014-06-12 23:22:26 +02:00
|
|
|
if( ( ret = x509_crl_parse_file( &cacrl, opt.crl_file ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crl_parse returned -0x%x\n\n", -ret );
|
2014-06-12 23:22:26 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2014-05-28 11:36:16 +02:00
|
|
|
|
2014-06-12 23:22:26 +02:00
|
|
|
verify = 1;
|
2014-05-28 11:36:16 +02:00
|
|
|
}
|
2014-06-12 23:22:26 +02:00
|
|
|
#endif
|
2014-05-28 11:36:16 +02:00
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
if( opt.mode == MODE_FILE )
|
|
|
|
{
|
2013-09-18 14:13:26 +02:00
|
|
|
x509_crt crt;
|
|
|
|
x509_crt *cur = &crt;
|
2013-09-18 11:58:25 +02:00
|
|
|
x509_crt_init( &crt );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-25 13:44:31 +01:00
|
|
|
* 1.1. Load the certificate(s)
|
2010-03-18 21:11:58 +01:00
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Loading the certificate(s) ..." );
|
2010-03-18 21:11:58 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2013-09-18 13:46:23 +02:00
|
|
|
ret = x509_crt_parse_file( &crt, opt.filename );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2011-12-10 22:55:01 +01:00
|
|
|
if( ret < 0 )
|
2010-03-18 21:11:58 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crt_parse_file returned %d\n\n", ret );
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( &crt );
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2011-12-10 22:55:01 +01:00
|
|
|
if( opt.permissive == 0 && ret > 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crt_parse failed to parse %d certificates\n\n", ret );
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( &crt );
|
2011-12-10 22:55:01 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ok\n" );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-25 13:44:31 +01:00
|
|
|
* 1.2 Print the certificate(s)
|
2010-03-18 21:11:58 +01:00
|
|
|
*/
|
2011-11-25 13:44:31 +01:00
|
|
|
while( cur != NULL )
|
2010-03-18 21:11:58 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " . Peer certificate information ...\n" );
|
2013-09-18 13:46:23 +02:00
|
|
|
ret = x509_crt_info( (char *) buf, sizeof( buf ) - 1, " ",
|
|
|
|
cur );
|
2011-11-25 13:44:31 +01:00
|
|
|
if( ret == -1 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crt_info returned %d\n\n", ret );
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( &crt );
|
2011-11-25 13:44:31 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "%s\n", buf );
|
2011-11-25 13:44:31 +01:00
|
|
|
|
|
|
|
cur = cur->next;
|
2010-03-18 21:11:58 +01:00
|
|
|
}
|
|
|
|
|
2013-05-21 16:20:04 +02:00
|
|
|
/*
|
|
|
|
* 1.3 Verify the certificate
|
|
|
|
*/
|
|
|
|
if( verify )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " . Verifying X.509 certificate..." );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
2014-05-28 11:36:16 +02:00
|
|
|
if( ( ret = x509_crt_verify( &crt, &cacert, &cacrl, NULL, &flags,
|
2013-09-18 13:46:23 +02:00
|
|
|
my_verify, NULL ) ) != 0 )
|
2013-05-21 16:20:04 +02:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( ret & BADCERT_EXPIRED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! server certificate has expired\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( ret & BADCERT_REVOKED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! server certificate has been revoked\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( ret & BADCERT_CN_MISMATCH ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! CN mismatch (expected CN=%s)\n", opt.server_name );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
|
|
|
if( ( ret & BADCERT_NOT_TRUSTED ) != 0 )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ! self-signed or not signed by a trusted CA\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
}
|
|
|
|
else
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ok\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( &crt );
|
2010-03-18 21:11:58 +01:00
|
|
|
}
|
|
|
|
else if( opt.mode == MODE_SSL )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* 1. Initialize the RNG and the session data
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Seeding the random number generator..." );
|
2011-12-04 18:09:26 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
entropy_init( &entropy );
|
|
|
|
if( ( ret = ctr_drbg_init( &ctr_drbg, 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-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ctr_drbg_init returned %d\n", ret );
|
2011-12-04 18:09:26 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ok\n" );
|
2013-05-21 16:20:04 +02:00
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
/*
|
|
|
|
* 2. Start the connection
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " . SSL connection to tcp/%s/%-4d...", opt.server_name,
|
2010-03-18 21:11:58 +01:00
|
|
|
opt.server_port );
|
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( ( ret = net_connect( &server_fd, opt.server_name,
|
|
|
|
opt.server_port ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_connect returned %d\n\n", ret );
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3. Setup stuff
|
|
|
|
*/
|
|
|
|
if( ( ret = ssl_init( &ssl ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ssl_init returned %d\n\n", ret );
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_set_endpoint( &ssl, SSL_IS_CLIENT );
|
2013-05-21 16:20:04 +02:00
|
|
|
if( verify )
|
|
|
|
{
|
|
|
|
ssl_set_authmode( &ssl, SSL_VERIFY_REQUIRED );
|
|
|
|
ssl_set_ca_chain( &ssl, &cacert, NULL, opt.server_name );
|
|
|
|
ssl_set_verify( &ssl, my_verify, NULL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ssl_set_authmode( &ssl, SSL_VERIFY_NONE );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
ssl_set_rng( &ssl, ctr_drbg_random, &ctr_drbg );
|
2010-03-18 21:11:58 +01:00
|
|
|
ssl_set_dbg( &ssl, my_debug, stdout );
|
|
|
|
ssl_set_bio( &ssl, net_recv, &server_fd,
|
|
|
|
net_send, &server_fd );
|
|
|
|
|
2014-07-08 14:05:52 +02:00
|
|
|
if( ( ret = ssl_set_own_cert( &ssl, &clicert, &pkey ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ssl_set_own_cert returned %d\n\n", ret );
|
2014-07-08 14:05:52 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2013-09-20 11:29:59 +02:00
|
|
|
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)
|
2014-07-08 14:05:52 +02:00
|
|
|
if( ( ret = ssl_set_hostname( &ssl, opt.server_name ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ssl_set_hostname returned %d\n\n", ret );
|
2014-07-08 14:05:52 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2013-09-20 11:29:59 +02:00
|
|
|
#endif
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 4. Handshake
|
|
|
|
*/
|
|
|
|
while( ( ret = ssl_handshake( &ssl ) ) != 0 )
|
|
|
|
{
|
2011-05-18 15:32:51 +02:00
|
|
|
if( ret != POLARSSL_ERR_NET_WANT_READ && ret != POLARSSL_ERR_NET_WANT_WRITE )
|
2010-03-18 21:11:58 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ssl_handshake returned %d\n\n", ret );
|
2012-11-14 13:39:52 +01:00
|
|
|
ssl_free( &ssl );
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " ok\n" );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 5. Print the certificate
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " . Peer certificate information ...\n" );
|
2013-09-18 13:46:23 +02:00
|
|
|
ret = x509_crt_info( (char *) buf, sizeof( buf ) - 1, " ",
|
|
|
|
ssl.session->peer_cert );
|
2010-03-18 21:11:58 +01:00
|
|
|
if( ret == -1 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! x509_crt_info returned %d\n\n", ret );
|
2012-11-14 13:39:52 +01:00
|
|
|
ssl_free( &ssl );
|
2010-03-18 21:11:58 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "%s\n", buf );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
|
|
|
ssl_close_notify( &ssl );
|
2012-11-14 13:39:52 +01:00
|
|
|
ssl_free( &ssl );
|
2010-03-18 21:11:58 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
|
2011-02-06 14:22:40 +01:00
|
|
|
if( server_fd )
|
|
|
|
net_close( server_fd );
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( &cacert );
|
|
|
|
x509_crt_free( &clicert );
|
2014-06-12 23:22:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRL_PARSE_C)
|
2014-05-28 11:36:16 +02:00
|
|
|
x509_crl_free( &cacrl );
|
2014-06-12 23:22:26 +02:00
|
|
|
#endif
|
2013-08-19 14:10:16 +02:00
|
|
|
pk_free( &pkey );
|
2014-06-18 16:44:11 +02:00
|
|
|
ctr_drbg_free( &ctr_drbg );
|
2013-09-28 15:23:03 +02:00
|
|
|
entropy_free( &entropy );
|
2010-03-18 21:11:58 +01:00
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " + Press Enter to exit this program.\n" );
|
2010-03-18 21:11:58 +01:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
2014-11-10 16:40:16 +01:00
|
|
|
if( ret < 0 )
|
|
|
|
ret = 1;
|
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
2011-12-04 18:09:26 +01:00
|
|
|
#endif /* POLARSSL_BIGNUM_C && POLARSSL_ENTROPY_C && POLARSSL_SSL_TLS_C &&
|
2011-05-26 15:16:06 +02:00
|
|
|
POLARSSL_SSL_CLI_C && POLARSSL_NET_C && POLARSSL_RSA_C &&
|
2013-09-17 13:25:29 +02:00
|
|
|
POLARSSL_X509_CRT_PARSE_C && POLARSSL_FS_IO && POLARSSL_CTR_DRBG_C */
|