source: trunk/programs/ssl/ssl_client2.c @ 1281

Revision 1281, 13.8 KB checked in by paul, 2 days ago (diff)
  • Updated to handle x509parse_crtfile() positive return values
Line 
1/*
2 *  SSL client with certificate authentication
3 *
4 *  Copyright (C) 2006-2011, Brainspark B.V.
5 *
6 *  This file is part of PolarSSL (http://www.polarssl.org)
7 *  Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
8 *
9 *  All rights reserved.
10 *
11 *  This program is free software; you can redistribute it and/or modify
12 *  it under the terms of the GNU General Public License as published by
13 *  the Free Software Foundation; either version 2 of the License, or
14 *  (at your option) any later version.
15 *
16 *  This program is distributed in the hope that it will be useful,
17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *  GNU General Public License for more details.
20 *
21 *  You should have received a copy of the GNU General Public License along
22 *  with this program; if not, write to the Free Software Foundation, Inc.,
23 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 */
25
26#ifndef _CRT_SECURE_NO_DEPRECATE
27#define _CRT_SECURE_NO_DEPRECATE 1
28#endif
29
30#include <string.h>
31#include <stdlib.h>
32#include <stdio.h>
33
34#include "polarssl/config.h"
35
36#include "polarssl/net.h"
37#include "polarssl/ssl.h"
38#include "polarssl/entropy.h"
39#include "polarssl/ctr_drbg.h"
40#include "polarssl/certs.h"
41#include "polarssl/x509.h"
42#include "polarssl/error.h"
43
44#define DFL_SERVER_NAME         "localhost"
45#define DFL_SERVER_PORT         4433
46#define DFL_REQUEST_PAGE        "/"
47#define DFL_DEBUG_LEVEL         0
48#define DFL_CA_FILE             ""
49#define DFL_CRT_FILE            ""
50#define DFL_KEY_FILE            ""
51#define DFL_FORCE_CIPHER        0
52
53#define GET_REQUEST "GET %s HTTP/1.0\r\n\r\n"
54
55/*
56 * global options
57 */
58struct options
59{
60    char *server_name;          /* hostname of the server (client only)     */
61    int server_port;            /* port on which the ssl service runs       */
62    int debug_level;            /* level of debugging                       */
63    char *request_page;         /* page on server to request                */
64    char *ca_file;              /* the file with the CA certificate(s)      */
65    char *crt_file;             /* the file with the client certificate     */
66    char *key_file;             /* the file with the client key             */
67    int force_ciphersuite[2];   /* protocol/ciphersuite to use, or all      */
68} opt;
69
70void my_debug( void *ctx, int level, const char *str )
71{
72    if( level < opt.debug_level )
73    {
74        fprintf( (FILE *) ctx, "%s", str );
75        fflush(  (FILE *) ctx  );
76    }
77}
78
79#if defined(POLARSSL_FS_IO)
80#define USAGE_IO \
81    "    ca_file=%%s          default: \"\" (pre-loaded)\n" \
82    "    crt_file=%%s         default: \"\" (pre-loaded)\n" \
83    "    key_file=%%s         default: \"\" (pre-loaded)\n"
84#else
85#define USAGE_IO \
86    "    No file operations available (POLARSSL_FS_IO not defined)\n"
87#endif /* POLARSSL_FS_IO */
88
89#define USAGE \
90    "\n usage: ssl_client2 param=<>...\n"                   \
91    "\n acceptable parameters:\n"                           \
92    "    server_name=%%s      default: localhost\n"         \
93    "    server_port=%%d      default: 4433\n"              \
94    "    debug_level=%%d      default: 0 (disabled)\n"      \
95    USAGE_IO                                                \
96    "    request_page=%%s     default: \".\"\n"             \
97    "    force_ciphersuite=<name>    default: all enabled\n"\
98    " acceptable ciphersuite names:\n"
99
100#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) ||  \
101    !defined(POLARSSL_SSL_TLS_C) || !defined(POLARSSL_SSL_CLI_C) || \
102    !defined(POLARSSL_NET_C) || !defined(POLARSSL_RSA_C) ||         \
103    !defined(POLARSSL_CTR_DRBG_C)
104int main( int argc, char *argv[] )
105{
106    ((void) argc);
107    ((void) argv);
108
109    printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or "
110           "POLARSSL_SSL_TLS_C and/or POLARSSL_SSL_CLI_C and/or "
111           "POLARSSL_NET_C and/or POLARSSL_RSA_C and/or "
112           "POLARSSL_CTR_DRBG_C not defined.\n");
113    return( 0 );
114}
115#else
116int main( int argc, char *argv[] )
117{
118    int ret = 0, len, server_fd;
119    unsigned char buf[1024];
120    char *pers = "ssl_client2";
121
122    entropy_context entropy;
123    ctr_drbg_context ctr_drbg;
124    ssl_context ssl;
125    ssl_session ssn;
126    x509_cert cacert;
127    x509_cert clicert;
128    rsa_context rsa;
129    int i;
130    size_t j, n;
131    char *p, *q;
132    const int *list;
133
134    /*
135     * Make sure memory references are valid.
136     */
137    server_fd = 0;
138    memset( &ssn, 0, sizeof( ssl_session ) );
139    memset( &ssl, 0, sizeof( ssl_context ) );
140    memset( &cacert, 0, sizeof( x509_cert ) );
141    memset( &clicert, 0, sizeof( x509_cert ) );
142    memset( &rsa, 0, sizeof( rsa_context ) );
143
144    if( argc == 0 )
145    {
146    usage:
147        if( ret == 0 )
148            ret = 1;
149
150        printf( USAGE );
151
152        list = ssl_list_ciphersuites();
153        while( *list )
154        {
155            printf("    %s\n", ssl_get_ciphersuite_name( *list ) );
156            list++;
157        }
158        printf("\n");
159        goto exit;
160    }
161
162    opt.server_name         = DFL_SERVER_NAME;
163    opt.server_port         = DFL_SERVER_PORT;
164    opt.debug_level         = DFL_DEBUG_LEVEL;
165    opt.request_page        = DFL_REQUEST_PAGE;
166    opt.ca_file             = DFL_CA_FILE;
167    opt.crt_file            = DFL_CRT_FILE;
168    opt.key_file            = DFL_KEY_FILE;
169    opt.force_ciphersuite[0]= DFL_FORCE_CIPHER;
170
171    for( i = 1; i < argc; i++ )
172    {
173        n = strlen( argv[i] );
174
175        for( j = 0; j < n; j++ )
176        {
177            if( argv[i][j] >= 'A' && argv[i][j] <= 'Z' )
178                argv[i][j] |= 0x20;
179        }
180
181        p = argv[i];
182        if( ( q = strchr( p, '=' ) ) == NULL )
183            goto usage;
184        *q++ = '\0';
185
186        if( strcmp( p, "server_name" ) == 0 )
187            opt.server_name = q;
188        else if( strcmp( p, "server_port" ) == 0 )
189        {
190            opt.server_port = atoi( q );
191            if( opt.server_port < 1 || opt.server_port > 65535 )
192                goto usage;
193        }
194        else if( strcmp( p, "debug_level" ) == 0 )
195        {
196            opt.debug_level = atoi( q );
197            if( opt.debug_level < 0 || opt.debug_level > 65535 )
198                goto usage;
199        }
200        else if( strcmp( p, "request_page" ) == 0 )
201            opt.request_page = q;
202        else if( strcmp( p, "ca_file" ) == 0 )
203            opt.ca_file = q;
204        else if( strcmp( p, "crt_file" ) == 0 )
205            opt.crt_file = q;
206        else if( strcmp( p, "key_file" ) == 0 )
207            opt.key_file = q;
208        else if( strcmp( p, "force_ciphersuite" ) == 0 )
209        {
210            opt.force_ciphersuite[0] = -1;
211
212            opt.force_ciphersuite[0] = ssl_get_ciphersuite_id( q );
213
214            if( opt.force_ciphersuite[0] <= 0 )
215            {
216                ret = 2;
217                goto usage;
218            }
219            opt.force_ciphersuite[1] = 0;
220        }
221        else
222            goto usage;
223    }
224
225    /*
226     * 0. Initialize the RNG and the session data
227     */
228    printf( "\n  . Seeding the random number generator..." );
229    fflush( stdout );
230
231    entropy_init( &entropy );
232    if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
233                               (unsigned char *) pers, strlen( pers ) ) ) != 0 )
234    {
235        printf( " failed\n  ! ctr_drbg_init returned -0x%x\n", -ret );
236        goto exit;
237    }
238
239    printf( " ok\n" );
240
241    /*
242     * 1.1. Load the trusted CA
243     */
244    printf( "  . Loading the CA root certificate ..." );
245    fflush( stdout );
246
247#if defined(POLARSSL_FS_IO)
248    if( strlen( opt.ca_file ) )
249        ret = x509parse_crtfile( &cacert, opt.ca_file );
250    else 
251#endif
252#if defined(POLARSSL_CERTS_C)
253        ret = x509parse_crt( &cacert, (unsigned char *) test_ca_crt,
254                strlen( test_ca_crt ) );
255#else
256    {
257        ret = 1;
258        printf("POLARSSL_CERTS_C not defined.");
259    }
260#endif
261    if( ret < 0 )
262    {
263        printf( " failed\n  !  x509parse_crt returned -0x%x\n\n", -ret );
264        goto exit;
265    }
266
267    printf( " ok (%d skipped)\n", ret );
268
269    /*
270     * 1.2. Load own certificate and private key
271     *
272     * (can be skipped if client authentication is not required)
273     */
274    printf( "  . Loading the client cert. and key..." );
275    fflush( stdout );
276
277#if defined(POLARSSL_FS_IO)
278    if( strlen( opt.crt_file ) )
279        ret = x509parse_crtfile( &clicert, opt.crt_file );
280    else 
281#endif
282#if defined(POLARSSL_CERTS_C)
283        ret = x509parse_crt( &clicert, (unsigned char *) test_cli_crt,
284                strlen( test_cli_crt ) );
285#else
286    {
287        ret = 1;
288        printf("POLARSSL_CERTS_C not defined.");
289    }
290#endif
291    if( ret != 0 )
292    {
293        printf( " failed\n  !  x509parse_crt returned -0x%x\n\n", -ret );
294        goto exit;
295    }
296
297#if defined(POLARSSL_FS_IO)
298    if( strlen( opt.key_file ) )
299        ret = x509parse_keyfile( &rsa, opt.key_file, "" );
300    else
301#endif
302#if defined(POLARSSL_CERTS_C)
303        ret = x509parse_key( &rsa, (unsigned char *) test_cli_key,
304                strlen( test_cli_key ), NULL, 0 );
305#else
306    {
307        ret = 1;
308        printf("POLARSSL_CERTS_C not defined.");
309    }
310#endif
311    if( ret != 0 )
312    {
313        printf( " failed\n  !  x509parse_key returned -0x%x\n\n", -ret );
314        goto exit;
315    }
316
317    printf( " ok\n" );
318
319    /*
320     * 2. Start the connection
321     */
322    printf( "  . Connecting to tcp/%s/%-4d...", opt.server_name,
323                                                opt.server_port );
324    fflush( stdout );
325
326    if( ( ret = net_connect( &server_fd, opt.server_name,
327                                         opt.server_port ) ) != 0 )
328    {
329        printf( " failed\n  ! net_connect returned -0x%x\n\n", -ret );
330        goto exit;
331    }
332
333    printf( " ok\n" );
334
335    /*
336     * 3. Setup stuff
337     */
338    printf( "  . Setting up the SSL/TLS structure..." );
339    fflush( stdout );
340
341    if( ( ret = ssl_init( &ssl ) ) != 0 )
342    {
343        printf( " failed\n  ! ssl_init returned -0x%x\n\n", -ret );
344        goto exit;
345    }
346
347    printf( " ok\n" );
348
349    ssl_set_endpoint( &ssl, SSL_IS_CLIENT );
350    ssl_set_authmode( &ssl, SSL_VERIFY_OPTIONAL );
351
352    ssl_set_rng( &ssl, ctr_drbg_random, &ctr_drbg );
353    ssl_set_dbg( &ssl, my_debug, stdout );
354    ssl_set_bio( &ssl, net_recv, &server_fd,
355                       net_send, &server_fd );
356
357    if( opt.force_ciphersuite[0] == DFL_FORCE_CIPHER )
358        ssl_set_ciphersuites( &ssl, ssl_default_ciphersuites );
359    else
360        ssl_set_ciphersuites( &ssl, opt.force_ciphersuite );
361
362    ssl_set_session( &ssl, 1, 600, &ssn );
363
364    ssl_set_ca_chain( &ssl, &cacert, NULL, opt.server_name );
365    ssl_set_own_cert( &ssl, &clicert, &rsa );
366
367    ssl_set_hostname( &ssl, opt.server_name );
368
369    /*
370     * 4. Handshake
371     */
372    printf( "  . Performing the SSL/TLS handshake..." );
373    fflush( stdout );
374
375    while( ( ret = ssl_handshake( &ssl ) ) != 0 )
376    {
377        if( ret != POLARSSL_ERR_NET_WANT_READ && ret != POLARSSL_ERR_NET_WANT_WRITE )
378        {
379            printf( " failed\n  ! ssl_handshake returned -0x%x\n\n", -ret );
380            goto exit;
381        }
382    }
383
384    printf( " ok\n    [ Ciphersuite is %s ]\n",
385            ssl_get_ciphersuite( &ssl ) );
386
387    /*
388     * 5. Verify the server certificate
389     */
390    printf( "  . Verifying peer X.509 certificate..." );
391
392    if( ( ret = ssl_get_verify_result( &ssl ) ) != 0 )
393    {
394        printf( " failed\n" );
395
396        if( ( ret & BADCERT_EXPIRED ) != 0 )
397            printf( "  ! server certificate has expired\n" );
398
399        if( ( ret & BADCERT_REVOKED ) != 0 )
400            printf( "  ! server certificate has been revoked\n" );
401
402        if( ( ret & BADCERT_CN_MISMATCH ) != 0 )
403            printf( "  ! CN mismatch (expected CN=%s)\n", opt.server_name );
404
405        if( ( ret & BADCERT_NOT_TRUSTED ) != 0 )
406            printf( "  ! self-signed or not signed by a trusted CA\n" );
407
408        printf( "\n" );
409    }
410    else
411        printf( " ok\n" );
412
413    printf( "  . Peer certificate information    ...\n" );
414    x509parse_cert_info( (char *) buf, sizeof( buf ) - 1, "      ", ssl.peer_cert );
415    printf( "%s\n", buf );
416
417    /*
418     * 6. Write the GET request
419     */
420    printf( "  > Write to server:" );
421    fflush( stdout );
422
423    len = sprintf( (char *) buf, GET_REQUEST, opt.request_page );
424
425    while( ( ret = ssl_write( &ssl, buf, len ) ) <= 0 )
426    {
427        if( ret != POLARSSL_ERR_NET_WANT_READ && ret != POLARSSL_ERR_NET_WANT_WRITE )
428        {
429            printf( " failed\n  ! ssl_write returned -0x%x\n\n", -ret );
430            goto exit;
431        }
432    }
433
434    len = ret;
435    printf( " %d bytes written\n\n%s", len, (char *) buf );
436
437    /*
438     * 7. Read the HTTP response
439     */
440    printf( "  < Read from server:" );
441    fflush( stdout );
442
443    do
444    {
445        len = sizeof( buf ) - 1;
446        memset( buf, 0, sizeof( buf ) );
447        ret = ssl_read( &ssl, buf, len );
448
449        if( ret == POLARSSL_ERR_NET_WANT_READ || ret == POLARSSL_ERR_NET_WANT_WRITE )
450            continue;
451
452        if( ret == POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY )
453            break;
454
455        if( ret < 0 )
456        {
457            printf( "failed\n  ! ssl_read returned -0x%x\n\n", -ret );
458            break;
459        }
460
461        if( ret == 0 )
462        {
463            printf("\n\nEOF\n\n");
464            break;
465        }
466
467        len = ret;
468        printf( " %d bytes read\n\n%s", len, (char *) buf );
469    }
470    while( 1 );
471
472    ssl_close_notify( &ssl );
473
474exit:
475
476#ifdef POLARSSL_ERROR_C
477    if( ret != 0 )
478    {
479        char error_buf[100];
480        error_strerror( ret, error_buf, 100 );
481        printf("Last error was: -0x%X - %s\n\n", -ret, error_buf );
482    }
483#endif
484
485    if( server_fd )
486        net_close( server_fd );
487    x509_free( &clicert );
488    x509_free( &cacert );
489    rsa_free( &rsa );
490    ssl_free( &ssl );
491
492    memset( &ssl, 0, sizeof( ssl ) );
493
494#if defined(_WIN32)
495    printf( "  + Press Enter to exit this program.\n" );
496    fflush( stdout ); getchar();
497#endif
498
499    return( ret );
500}
501#endif /* POLARSSL_BIGNUM_C && POLARSSL_ENTROPY_C && POLARSSL_SSL_TLS_C &&
502          POLARSSL_SSL_CLI_C && POLARSSL_NET_C && POLARSSL_RSA_C &&
503          POLARSSL_CTR_DRBG_C */
Note: See TracBrowser for help on using the repository browser.

What are you looking for?