2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* SSL client with certificate authentication
|
|
|
|
*
|
2011-11-18 15:26:47 +01:00
|
|
|
* Copyright (C) 2006-2011, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2009-01-03 22:22:43 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
2010-02-18 20:37:19 +01:00
|
|
|
#include <stdlib.h>
|
2009-01-03 22:22:43 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#include "polarssl/config.h"
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/net.h"
|
|
|
|
#include "polarssl/ssl.h"
|
2011-12-04 18:09:26 +01:00
|
|
|
#include "polarssl/entropy.h"
|
|
|
|
#include "polarssl/ctr_drbg.h"
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/certs.h"
|
|
|
|
#include "polarssl/x509.h"
|
2011-11-27 22:07:34 +01:00
|
|
|
#include "polarssl/error.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
#define DFL_SERVER_NAME "localhost"
|
|
|
|
#define DFL_SERVER_PORT 4433
|
|
|
|
#define DFL_REQUEST_PAGE "/"
|
|
|
|
#define DFL_DEBUG_LEVEL 0
|
2011-05-26 15:16:06 +02:00
|
|
|
#define DFL_CA_FILE ""
|
2010-07-18 10:28:20 +02:00
|
|
|
#define DFL_CRT_FILE ""
|
|
|
|
#define DFL_KEY_FILE ""
|
2011-02-20 17:05:58 +01:00
|
|
|
#define DFL_FORCE_CIPHER 0
|
2009-02-10 23:19:10 +01:00
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
#define GET_REQUEST "GET %s HTTP/1.0\r\n\r\n"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
/*
|
|
|
|
* global options
|
|
|
|
*/
|
|
|
|
struct options
|
|
|
|
{
|
2010-07-18 10:28:20 +02:00
|
|
|
char *server_name; /* hostname of the server (client only) */
|
|
|
|
int server_port; /* port on which the ssl service runs */
|
|
|
|
int debug_level; /* level of debugging */
|
|
|
|
char *request_page; /* page on server to request */
|
2011-05-26 15:16:06 +02:00
|
|
|
char *ca_file; /* the file with the CA certificate(s) */
|
2010-07-18 10:28:20 +02:00
|
|
|
char *crt_file; /* the file with the client certificate */
|
|
|
|
char *key_file; /* the file with the client key */
|
2011-02-20 17:05:58 +01:00
|
|
|
int force_ciphersuite[2]; /* protocol/ciphersuite to use, or all */
|
2010-02-18 20:37:19 +01:00
|
|
|
} opt;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-03-16 22:09:09 +01:00
|
|
|
void my_debug( void *ctx, int level, const char *str )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2010-02-18 20:37:19 +01:00
|
|
|
if( level < opt.debug_level )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
fprintf( (FILE *) ctx, "%s", str );
|
|
|
|
fflush( (FILE *) ctx );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
|
|
|
#define USAGE_IO \
|
|
|
|
" ca_file=%%s default: \"\" (pre-loaded)\n" \
|
|
|
|
" crt_file=%%s default: \"\" (pre-loaded)\n" \
|
|
|
|
" key_file=%%s default: \"\" (pre-loaded)\n"
|
|
|
|
#else
|
|
|
|
#define USAGE_IO \
|
|
|
|
" No file operations available (POLARSSL_FS_IO not defined)\n"
|
|
|
|
#endif /* POLARSSL_FS_IO */
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
#define USAGE \
|
2010-07-18 10:28:20 +02:00
|
|
|
"\n usage: ssl_client2 param=<>...\n" \
|
|
|
|
"\n acceptable parameters:\n" \
|
|
|
|
" server_name=%%s default: localhost\n" \
|
|
|
|
" server_port=%%d default: 4433\n" \
|
|
|
|
" debug_level=%%d default: 0 (disabled)\n" \
|
2011-05-26 15:16:06 +02:00
|
|
|
USAGE_IO \
|
2010-07-18 10:28:20 +02:00
|
|
|
" request_page=%%s default: \".\"\n" \
|
2011-02-20 17:05:58 +01:00
|
|
|
" force_ciphersuite=<name> default: all enabled\n"\
|
|
|
|
" acceptable ciphersuite names:\n"
|
2010-02-18 20:37:19 +01:00
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \
|
2011-05-26 15:16:06 +02:00
|
|
|
!defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \
|
2011-12-04 18:09:26 +01:00
|
|
|
!defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) || \
|
|
|
|
!defined(POLARSSL_CTR_DRBG_C)
|
2011-11-18 15:26:47 +01:00
|
|
|
int main( int argc, char *argv[] )
|
2011-05-26 15:16:06 +02:00
|
|
|
{
|
2011-11-18 15:26:47 +01:00
|
|
|
((void) argc);
|
|
|
|
((void) argv);
|
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or "
|
2011-05-26 15:16:06 +02:00
|
|
|
"POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or "
|
2011-12-04 18:09:26 +01:00
|
|
|
"POLARSSL_NET_C and/or POLARSSL_RSA_C and/or "
|
|
|
|
"POLARSSL_CTR_DRBG_C not defined.\n");
|
2011-05-26 15:16:06 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2010-02-18 20:37:19 +01:00
|
|
|
int main( int argc, char *argv[] )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2010-03-16 22:16:04 +01:00
|
|
|
int ret = 0, len, server_fd;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buf[1024];
|
2011-12-04 18:09:26 +01:00
|
|
|
char *pers = "ssl_client2";
|
|
|
|
|
|
|
|
entropy_context entropy;
|
|
|
|
ctr_drbg_context ctr_drbg;
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl_context ssl;
|
|
|
|
ssl_session ssn;
|
|
|
|
x509_cert cacert;
|
|
|
|
x509_cert clicert;
|
|
|
|
rsa_context rsa;
|
2011-04-24 10:57:21 +02:00
|
|
|
int i;
|
|
|
|
size_t j, n;
|
2010-02-18 20:37:19 +01:00
|
|
|
char *p, *q;
|
2011-02-20 17:05:58 +01:00
|
|
|
const int *list;
|
2010-02-18 20:37:19 +01:00
|
|
|
|
2011-02-06 14:22:40 +01:00
|
|
|
/*
|
|
|
|
* Make sure memory references are valid.
|
|
|
|
*/
|
|
|
|
server_fd = 0;
|
|
|
|
memset( &ssn, 0, sizeof( ssl_session ) );
|
|
|
|
memset( &ssl, 0, sizeof( ssl_context ) );
|
|
|
|
memset( &cacert, 0, sizeof( x509_cert ) );
|
|
|
|
memset( &clicert, 0, sizeof( x509_cert ) );
|
|
|
|
memset( &rsa, 0, sizeof( rsa_context ) );
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
if( argc == 0 )
|
|
|
|
{
|
|
|
|
usage:
|
2012-02-06 17:45:10 +01:00
|
|
|
if( ret == 0 )
|
|
|
|
ret = 1;
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
printf( USAGE );
|
2011-02-20 17:05:58 +01:00
|
|
|
|
|
|
|
list = ssl_list_ciphersuites();
|
|
|
|
while( *list )
|
|
|
|
{
|
|
|
|
printf(" %s\n", ssl_get_ciphersuite_name( *list ) );
|
|
|
|
list++;
|
|
|
|
}
|
|
|
|
printf("\n");
|
2010-02-18 20:37:19 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
opt.server_name = DFL_SERVER_NAME;
|
|
|
|
opt.server_port = DFL_SERVER_PORT;
|
|
|
|
opt.debug_level = DFL_DEBUG_LEVEL;
|
|
|
|
opt.request_page = DFL_REQUEST_PAGE;
|
2011-05-26 15:16:06 +02:00
|
|
|
opt.ca_file = DFL_CA_FILE;
|
2010-07-18 10:28:20 +02:00
|
|
|
opt.crt_file = DFL_CRT_FILE;
|
|
|
|
opt.key_file = DFL_KEY_FILE;
|
2011-02-20 17:05:58 +01:00
|
|
|
opt.force_ciphersuite[0]= DFL_FORCE_CIPHER;
|
2010-02-18 20:37:19 +01:00
|
|
|
|
|
|
|
for( i = 1; i < argc; i++ )
|
|
|
|
{
|
|
|
|
n = strlen( argv[i] );
|
|
|
|
|
|
|
|
for( j = 0; j < n; j++ )
|
|
|
|
{
|
|
|
|
if( argv[i][j] >= 'A' && argv[i][j] <= 'Z' )
|
|
|
|
argv[i][j] |= 0x20;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = argv[i];
|
|
|
|
if( ( q = strchr( p, '=' ) ) == NULL )
|
|
|
|
goto usage;
|
|
|
|
*q++ = '\0';
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if( strcmp( p, "request_page" ) == 0 )
|
|
|
|
opt.request_page = q;
|
2011-05-26 15:16:06 +02:00
|
|
|
else if( strcmp( p, "ca_file" ) == 0 )
|
|
|
|
opt.ca_file = q;
|
2010-07-18 10:28:20 +02:00
|
|
|
else if( strcmp( p, "crt_file" ) == 0 )
|
|
|
|
opt.crt_file = q;
|
|
|
|
else if( strcmp( p, "key_file" ) == 0 )
|
|
|
|
opt.key_file = q;
|
2011-02-20 17:05:58 +01:00
|
|
|
else if( strcmp( p, "force_ciphersuite" ) == 0 )
|
|
|
|
{
|
|
|
|
opt.force_ciphersuite[0] = -1;
|
|
|
|
|
|
|
|
opt.force_ciphersuite[0] = ssl_get_ciphersuite_id( q );
|
|
|
|
|
|
|
|
if( opt.force_ciphersuite[0] <= 0 )
|
2012-02-06 17:45:10 +01:00
|
|
|
{
|
|
|
|
ret = 2;
|
2011-02-20 17:05:58 +01:00
|
|
|
goto usage;
|
2012-02-06 17:45:10 +01:00
|
|
|
}
|
2011-02-20 17:05:58 +01:00
|
|
|
opt.force_ciphersuite[1] = 0;
|
|
|
|
}
|
2010-02-18 20:37:19 +01:00
|
|
|
else
|
|
|
|
goto usage;
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 0. Initialize the RNG and the session data
|
|
|
|
*/
|
2011-12-04 18:09:26 +01:00
|
|
|
printf( "\n . Seeding the random number generator..." );
|
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
entropy_init( &entropy );
|
|
|
|
if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
|
|
|
|
(unsigned char *) pers, strlen( pers ) ) ) != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n ! ctr_drbg_init returned %d\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf( " ok\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.1. Load the trusted CA
|
|
|
|
*/
|
2011-12-04 18:09:26 +01:00
|
|
|
printf( " . Loading the CA root certificate ..." );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
|
|
|
if( strlen( opt.ca_file ) )
|
2011-12-10 22:55:01 +01:00
|
|
|
ret = x509parse_crtfile( &cacert, opt.ca_file );
|
2011-05-26 15:16:06 +02:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CERTS_C)
|
|
|
|
ret = x509parse_crt( &cacert, (unsigned char *) test_ca_crt,
|
2011-12-10 22:55:01 +01:00
|
|
|
strlen( test_ca_crt ) );
|
2011-05-26 15:16:06 +02:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
printf("POLARSSL_CERTS_C not defined.");
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n ! x509parse_crt returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf( " ok\n" );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.2. Load own certificate and private key
|
|
|
|
*
|
|
|
|
* (can be skipped if client authentication is not required)
|
|
|
|
*/
|
|
|
|
printf( " . Loading the client cert. and key..." );
|
|
|
|
fflush( stdout );
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
2010-07-18 10:28:20 +02:00
|
|
|
if( strlen( opt.crt_file ) )
|
2011-12-10 22:55:01 +01:00
|
|
|
ret = x509parse_crtfile( &clicert, opt.crt_file );
|
2010-07-18 10:28:20 +02:00
|
|
|
else
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CERTS_C)
|
2010-07-18 10:28:20 +02:00
|
|
|
ret = x509parse_crt( &clicert, (unsigned char *) test_cli_crt,
|
2011-12-10 22:55:01 +01:00
|
|
|
strlen( test_cli_crt ) );
|
2011-05-26 15:16:06 +02:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
printf("POLARSSL_CERTS_C not defined.");
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n ! x509parse_crt returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#if defined(POLARSSL_FS_IO)
|
2010-07-18 10:28:20 +02:00
|
|
|
if( strlen( opt.key_file ) )
|
|
|
|
ret = x509parse_keyfile( &rsa, opt.key_file, "" );
|
|
|
|
else
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_CERTS_C)
|
2010-07-18 10:28:20 +02:00
|
|
|
ret = x509parse_key( &rsa, (unsigned char *) test_cli_key,
|
|
|
|
strlen( test_cli_key ), NULL, 0 );
|
2011-05-26 15:16:06 +02:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
printf("POLARSSL_CERTS_C not defined.");
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n ! x509parse_key returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf( " ok\n" );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 2. Start the connection
|
|
|
|
*/
|
2010-02-18 20:37:19 +01:00
|
|
|
printf( " . Connecting to tcp/%s/%-4d...", opt.server_name,
|
|
|
|
opt.server_port );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
if( ( ret = net_connect( &server_fd, opt.server_name,
|
|
|
|
opt.server_port ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
printf( " failed\n ! net_connect returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf( " ok\n" );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3. Setup stuff
|
|
|
|
*/
|
|
|
|
printf( " . Setting up the SSL/TLS structure..." );
|
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( ( ret = ssl_init( &ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n ! ssl_init returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf( " ok\n" );
|
|
|
|
|
|
|
|
ssl_set_endpoint( &ssl, SSL_IS_CLIENT );
|
|
|
|
ssl_set_authmode( &ssl, SSL_VERIFY_OPTIONAL );
|
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
ssl_set_rng( &ssl, ctr_drbg_random, &ctr_drbg );
|
2010-02-18 20:37:19 +01:00
|
|
|
ssl_set_dbg( &ssl, my_debug, stdout );
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl_set_bio( &ssl, net_recv, &server_fd,
|
|
|
|
net_send, &server_fd );
|
|
|
|
|
2011-02-20 17:05:58 +01:00
|
|
|
if( opt.force_ciphersuite[0] == DFL_FORCE_CIPHER )
|
|
|
|
ssl_set_ciphersuites( &ssl, ssl_default_ciphersuites );
|
|
|
|
else
|
|
|
|
ssl_set_ciphersuites( &ssl, opt.force_ciphersuite );
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl_set_session( &ssl, 1, 600, &ssn );
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
ssl_set_ca_chain( &ssl, &cacert, NULL, opt.server_name );
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl_set_own_cert( &ssl, &clicert, &rsa );
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
ssl_set_hostname( &ssl, opt.server_name );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 4. Handshake
|
|
|
|
*/
|
|
|
|
printf( " . Performing the SSL/TLS handshake..." );
|
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
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 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
printf( " failed\n ! ssl_handshake returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 18:40:50 +01:00
|
|
|
printf( " ok\n [ Ciphersuite is %s ]\n",
|
|
|
|
ssl_get_ciphersuite( &ssl ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 5. Verify the server certificate
|
|
|
|
*/
|
|
|
|
printf( " . Verifying peer X.509 certificate..." );
|
|
|
|
|
|
|
|
if( ( ret = ssl_get_verify_result( &ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
printf( " failed\n" );
|
|
|
|
|
|
|
|
if( ( ret & BADCERT_EXPIRED ) != 0 )
|
|
|
|
printf( " ! server certificate has expired\n" );
|
|
|
|
|
|
|
|
if( ( ret & BADCERT_REVOKED ) != 0 )
|
|
|
|
printf( " ! server certificate has been revoked\n" );
|
|
|
|
|
|
|
|
if( ( ret & BADCERT_CN_MISMATCH ) != 0 )
|
2010-02-18 20:37:19 +01:00
|
|
|
printf( " ! CN mismatch (expected CN=%s)\n", opt.server_name );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ( ret & BADCERT_NOT_TRUSTED ) != 0 )
|
|
|
|
printf( " ! self-signed or not signed by a trusted CA\n" );
|
|
|
|
|
|
|
|
printf( "\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf( " ok\n" );
|
|
|
|
|
|
|
|
printf( " . Peer certificate information ...\n" );
|
2009-05-02 17:13:40 +02:00
|
|
|
x509parse_cert_info( (char *) buf, sizeof( buf ) - 1, " ", ssl.peer_cert );
|
|
|
|
printf( "%s\n", buf );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 6. Write the GET request
|
|
|
|
*/
|
|
|
|
printf( " > Write to server:" );
|
|
|
|
fflush( stdout );
|
|
|
|
|
2010-02-18 20:37:19 +01:00
|
|
|
len = sprintf( (char *) buf, GET_REQUEST, opt.request_page );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
while( ( ret = ssl_write( &ssl, buf, len ) ) <= 0 )
|
|
|
|
{
|
2011-05-18 15:32:51 +02:00
|
|
|
if( ret != POLARSSL_ERR_NET_WANT_READ && ret != POLARSSL_ERR_NET_WANT_WRITE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
printf( " failed\n ! ssl_write returned %d\n\n", ret );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ret;
|
|
|
|
printf( " %d bytes written\n\n%s", len, (char *) buf );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 7. Read the HTTP response
|
|
|
|
*/
|
|
|
|
printf( " < Read from server:" );
|
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
len = sizeof( buf ) - 1;
|
|
|
|
memset( buf, 0, sizeof( buf ) );
|
|
|
|
ret = ssl_read( &ssl, buf, len );
|
|
|
|
|
2011-05-18 15:32:51 +02:00
|
|
|
if( ret == POLARSSL_ERR_NET_WANT_READ || ret == POLARSSL_ERR_NET_WANT_WRITE )
|
2009-01-03 22:22:43 +01:00
|
|
|
continue;
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
if( ret == POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY )
|
2009-01-03 22:22:43 +01:00
|
|
|
break;
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
if( ret < 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
printf( "failed\n ! ssl_read returned %d\n\n", ret );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
if( ret == 0 )
|
|
|
|
{
|
|
|
|
printf("\n\nEOF\n\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
len = ret;
|
|
|
|
printf( " %d bytes read\n\n%s", len, (char *) buf );
|
|
|
|
}
|
2011-05-20 14:32:35 +02:00
|
|
|
while( 1 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
ssl_close_notify( &ssl );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
|
2011-11-27 22:07:34 +01:00
|
|
|
#ifdef POLARSSL_ERROR_C
|
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
char error_buf[100];
|
|
|
|
error_strerror( ret, error_buf, 100 );
|
|
|
|
printf("Last error was: %d - %s\n\n", ret, error_buf );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-06 14:22:40 +01:00
|
|
|
if( server_fd )
|
|
|
|
net_close( server_fd );
|
2009-01-03 22:22:43 +01:00
|
|
|
x509_free( &clicert );
|
|
|
|
x509_free( &cacert );
|
|
|
|
rsa_free( &rsa );
|
|
|
|
ssl_free( &ssl );
|
|
|
|
|
|
|
|
memset( &ssl, 0, sizeof( ssl ) );
|
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2009-01-03 22:22:43 +01:00
|
|
|
printf( " + Press Enter to exit this program.\n" );
|
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-12-04 18:09:26 +01:00
|
|
|
#endif /* POLARSSL_BIGNUM_C && POLARSSL_ENTROPY_C && POLARSSL_SSL_TLS_C &&
|
|
|
|
POLARSSL_SSL_CLI_C && POLARSSL_NET_C && POLARSSL_RSA_C &&
|
|
|
|
POLARSSL_CTR_DRBG_C */
|