blob: 4bc37037f2c41aa97b857a1cf64338de2507d662 [file] [log] [blame]
Paul Bakkera9507c02011-02-12 15:27:28 +00001/*
2 * CRL reading application
3 *
Paul Bakker3c5ef712013-06-25 16:37:45 +02004 * Copyright (C) 2006-2013, Brainspark B.V.
Paul Bakkera9507c02011-02-12 15:27:28 +00005 *
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
Manuel Pégourié-Gonnardabd6e022013-09-20 13:30:43 +020026#include "polarssl/config.h"
Paul Bakkera9507c02011-02-12 15:27:28 +000027
28#include <string.h>
29#include <stdlib.h>
30#include <stdio.h>
31
Paul Bakker7c6b2c32013-09-16 13:49:26 +020032#include "polarssl/x509_crl.h"
Paul Bakkera9507c02011-02-12 15:27:28 +000033
Paul Bakker80d44fe2013-09-09 15:59:20 +020034#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \
Paul Bakker7c6b2c32013-09-16 13:49:26 +020035 !defined(POLARSSL_X509_CRL_PARSE_C) || !defined(POLARSSL_FS_IO)
Paul Bakker80d44fe2013-09-09 15:59:20 +020036int main( int argc, char *argv[] )
37{
38 ((void) argc);
39 ((void) argv);
40
41 printf("POLARSSL_BIGNUM_C and/or POLARSSL_RSA_C and/or "
Paul Bakker7c6b2c32013-09-16 13:49:26 +020042 "POLARSSL_X509_CRL_PARSE_C and/or POLARSSL_FS_IO not defined.\n");
Paul Bakker80d44fe2013-09-09 15:59:20 +020043 return( 0 );
44}
45#else
46
Paul Bakkera9507c02011-02-12 15:27:28 +000047#define DFL_FILENAME "crl.pem"
48#define DFL_DEBUG_LEVEL 0
49
50/*
51 * global options
52 */
53struct options
54{
Paul Bakkeref3f8c72013-06-24 13:01:08 +020055 const char *filename; /* filename of the certificate file */
Paul Bakkera9507c02011-02-12 15:27:28 +000056} opt;
57
Paul Bakkera9507c02011-02-12 15:27:28 +000058#define USAGE \
59 "\n usage: crl_app param=<>...\n" \
60 "\n acceptable parameters:\n" \
Paul Bakkerd3b486a2011-10-12 10:15:05 +000061 " filename=%%s default: crl.pem\n" \
Paul Bakkera9507c02011-02-12 15:27:28 +000062 "\n"
63
64int main( int argc, char *argv[] )
65{
66 int ret = 0;
Paul Bakkerb8ba90b2011-12-05 14:34:12 +000067 unsigned char buf[100000];
Paul Bakkera9507c02011-02-12 15:27:28 +000068 x509_crl crl;
69 int i, j, n;
70 char *p, *q;
71
72 /*
73 * Set to sane values
74 */
Paul Bakker369d2eb2013-09-18 11:58:25 +020075 x509_crl_init( &crl );
Paul Bakkera9507c02011-02-12 15:27:28 +000076
77 if( argc == 0 )
78 {
79 usage:
80 printf( USAGE );
81 goto exit;
82 }
83
84 opt.filename = DFL_FILENAME;
Paul Bakkera9507c02011-02-12 15:27:28 +000085
86 for( i = 1; i < argc; i++ )
87 {
88 n = strlen( argv[i] );
89
90 for( j = 0; j < n; j++ )
91 {
92 if( argv[i][j] >= 'A' && argv[i][j] <= 'Z' )
93 argv[i][j] |= 0x20;
94 }
95
96 p = argv[i];
97 if( ( q = strchr( p, '=' ) ) == NULL )
98 goto usage;
99 *q++ = '\0';
100
101 if( strcmp( p, "filename" ) == 0 )
102 opt.filename = q;
Paul Bakkera9507c02011-02-12 15:27:28 +0000103 else
104 goto usage;
105 }
106
107 /*
108 * 1.1. Load the CRL
109 */
110 printf( "\n . Loading the CRL ..." );
111 fflush( stdout );
112
Paul Bakkerddf26b42013-09-18 13:46:23 +0200113 ret = x509_crl_parse_file( &crl, opt.filename );
Paul Bakkera9507c02011-02-12 15:27:28 +0000114
115 if( ret != 0 )
116 {
Paul Bakkerddf26b42013-09-18 13:46:23 +0200117 printf( " failed\n ! x509_crl_parse_file returned %d\n\n", ret );
Paul Bakkera9507c02011-02-12 15:27:28 +0000118 x509_crl_free( &crl );
119 goto exit;
120 }
121
122 printf( " ok\n" );
123
124 /*
125 * 1.2 Print the CRL
126 */
127 printf( " . CRL information ...\n" );
Paul Bakkerddf26b42013-09-18 13:46:23 +0200128 ret = x509_crl_info( (char *) buf, sizeof( buf ) - 1, " ", &crl );
Paul Bakkera9507c02011-02-12 15:27:28 +0000129 if( ret == -1 )
130 {
Paul Bakkerddf26b42013-09-18 13:46:23 +0200131 printf( " failed\n ! x509_crl_info returned %d\n\n", ret );
Paul Bakkera9507c02011-02-12 15:27:28 +0000132 x509_crl_free( &crl );
133 goto exit;
134 }
135
136 printf( "%s\n", buf );
137
138exit:
139 x509_crl_free( &crl );
140
Paul Bakkercce9d772011-11-18 14:26:47 +0000141#if defined(_WIN32)
Paul Bakkera9507c02011-02-12 15:27:28 +0000142 printf( " + Press Enter to exit this program.\n" );
143 fflush( stdout ); getchar();
144#endif
145
146 return( ret );
147}
Paul Bakker36713e82013-09-17 13:25:29 +0200148#endif /* POLARSSL_BIGNUM_C && POLARSSL_RSA_C && POLARSSL_X509_CRL_PARSE_C &&
Paul Bakker5690efc2011-05-26 13:16:06 +0000149 POLARSSL_FS_IO */