blob: 5c2d2c1b95e44eaebb85fb8853f46f90fee5acab [file] [log] [blame]
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001/*
Manuel Pégourié-Gonnard1c082f32014-06-12 22:34:55 +02002 * X.509 certificate parsing and verification
Paul Bakker7c6b2c32013-09-16 13:49:26 +02003 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker7c6b2c32013-09-16 13:49:26 +020018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020020 */
21/*
22 * The ITU-T X.509 standard defines a certificate format for PKI.
23 *
Manuel Pégourié-Gonnard1c082f32014-06-12 22:34:55 +020024 * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs)
25 * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs)
26 * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020027 *
28 * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf
29 * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +020030 *
31 * [SIRO] https://cabforum.org/wp-content/uploads/Chunghwatelecom201503cabforumV4.pdf
Paul Bakker7c6b2c32013-09-16 13:49:26 +020032 */
33
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020034#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000035#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020036#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020038#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +020039
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020041
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000042#include "mbedtls/x509_crt.h"
43#include "mbedtls/oid.h"
Rich Evans00ab4702015-02-06 13:43:58 +000044
45#include <stdio.h>
46#include <string.h>
47
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020048#if defined(MBEDTLS_PEM_PARSE_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000049#include "mbedtls/pem.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020050#endif
51
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020052#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000053#include "mbedtls/platform.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020054#else
Rich Evans00ab4702015-02-06 13:43:58 +000055#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020056#define mbedtls_free free
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020057#define mbedtls_calloc calloc
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058#define mbedtls_snprintf snprintf
Paul Bakker7c6b2c32013-09-16 13:49:26 +020059#endif
60
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000062#include "mbedtls/threading.h"
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +010063#endif
64
Paul Bakkerfa6a6202013-10-28 18:48:30 +010065#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020066#include <windows.h>
67#else
68#include <time.h>
69#endif
70
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020071#if defined(MBEDTLS_FS_IO)
Rich Evans00ab4702015-02-06 13:43:58 +000072#include <stdio.h>
Paul Bakker5ff3f912014-04-04 15:08:20 +020073#if !defined(_WIN32) || defined(EFIX64) || defined(EFI32)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020074#include <sys/types.h>
75#include <sys/stat.h>
76#include <dirent.h>
Rich Evans00ab4702015-02-06 13:43:58 +000077#endif /* !_WIN32 || EFIX64 || EFI32 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020078#endif
79
Paul Bakker34617722014-06-13 17:20:13 +020080/* Implementation that should never be optimized out by the compiler */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081static void mbedtls_zeroize( void *v, size_t n ) {
Paul Bakker34617722014-06-13 17:20:13 +020082 volatile unsigned char *p = v; while( n-- ) *p++ = 0;
83}
84
Paul Bakker7c6b2c32013-09-16 13:49:26 +020085/*
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +020086 * Default profile
87 */
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +020088const mbedtls_x509_crt_profile mbedtls_x509_crt_profile_default =
89{
Gilles Peskine5d2511c2017-05-12 13:16:40 +020090#if defined(MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES)
Gilles Peskine5e79cb32017-05-04 16:17:21 +020091 /* Allow SHA-1 (weak, but still safe in controlled environments) */
Manuel Pégourié-Gonnardf8ea8562015-06-15 15:33:19 +020092 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA1 ) |
Gilles Peskine5e79cb32017-05-04 16:17:21 +020093#endif
94 /* Only SHA-2 hashes */
Manuel Pégourié-Gonnardf8ea8562015-06-15 15:33:19 +020095 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA224 ) |
96 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA256 ) |
97 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA384 ) |
98 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA512 ),
99 0xFFFFFFF, /* Any PK alg */
100 0xFFFFFFF, /* Any curve */
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200101 2048,
102};
103
104/*
105 * Next-default profile
106 */
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200107const mbedtls_x509_crt_profile mbedtls_x509_crt_profile_next =
108{
Manuel Pégourié-Gonnardf8ea8562015-06-15 15:33:19 +0200109 /* Hashes from SHA-256 and above */
110 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA256 ) |
111 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA384 ) |
112 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA512 ),
113 0xFFFFFFF, /* Any PK alg */
114#if defined(MBEDTLS_ECP_C)
115 /* Curves at or above 128-bit security level */
116 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP256R1 ) |
117 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP384R1 ) |
118 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP521R1 ) |
119 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_BP256R1 ) |
120 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_BP384R1 ) |
121 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_BP512R1 ) |
122 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP256K1 ),
123#else
124 0,
125#endif
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200126 2048,
127};
128
129/*
130 * NSA Suite B Profile
131 */
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200132const mbedtls_x509_crt_profile mbedtls_x509_crt_profile_suiteb =
133{
Manuel Pégourié-Gonnardf8ea8562015-06-15 15:33:19 +0200134 /* Only SHA-256 and 384 */
135 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA256 ) |
136 MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA384 ),
137 /* Only ECDSA */
138 MBEDTLS_X509_ID_FLAG( MBEDTLS_PK_ECDSA ),
139#if defined(MBEDTLS_ECP_C)
140 /* Only NIST P-256 and P-384 */
141 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP256R1 ) |
142 MBEDTLS_X509_ID_FLAG( MBEDTLS_ECP_DP_SECP384R1 ),
143#else
144 0,
145#endif
146 0,
Manuel Pégourié-Gonnard88db5da2015-06-15 14:34:59 +0200147};
148
149/*
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +0200150 * Check md_alg against profile
151 * Return 0 if md_alg acceptable for this profile, -1 otherwise
152 */
153static int x509_profile_check_md_alg( const mbedtls_x509_crt_profile *profile,
154 mbedtls_md_type_t md_alg )
155{
156 if( ( profile->allowed_mds & MBEDTLS_X509_ID_FLAG( md_alg ) ) != 0 )
157 return( 0 );
158
159 return( -1 );
160}
161
162/*
163 * Check pk_alg against profile
164 * Return 0 if pk_alg acceptable for this profile, -1 otherwise
165 */
166static int x509_profile_check_pk_alg( const mbedtls_x509_crt_profile *profile,
167 mbedtls_pk_type_t pk_alg )
168{
169 if( ( profile->allowed_pks & MBEDTLS_X509_ID_FLAG( pk_alg ) ) != 0 )
170 return( 0 );
171
172 return( -1 );
173}
174
175/*
176 * Check key against profile
177 * Return 0 if pk_alg acceptable for this profile, -1 otherwise
178 */
179static int x509_profile_check_key( const mbedtls_x509_crt_profile *profile,
180 mbedtls_pk_type_t pk_alg,
181 const mbedtls_pk_context *pk )
182{
183#if defined(MBEDTLS_RSA_C)
184 if( pk_alg == MBEDTLS_PK_RSA || pk_alg == MBEDTLS_PK_RSASSA_PSS )
185 {
Manuel Pégourié-Gonnard097c7bb2015-06-18 16:43:38 +0200186 if( mbedtls_pk_get_bitlen( pk ) >= profile->rsa_min_bitlen )
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +0200187 return( 0 );
188
189 return( -1 );
190 }
191#endif
192
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +0200193#if defined(MBEDTLS_ECP_C)
194 if( pk_alg == MBEDTLS_PK_ECDSA ||
195 pk_alg == MBEDTLS_PK_ECKEY ||
196 pk_alg == MBEDTLS_PK_ECKEY_DH )
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +0200197 {
198 mbedtls_ecp_group_id gid = mbedtls_pk_ec( *pk )->grp.id;
199
200 if( ( profile->allowed_curves & MBEDTLS_X509_ID_FLAG( gid ) ) != 0 )
201 return( 0 );
202
203 return( -1 );
204 }
205#endif
206
207 return( -1 );
208}
209
210/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200211 * Version ::= INTEGER { v1(0), v2(1), v3(2) }
212 */
213static int x509_get_version( unsigned char **p,
214 const unsigned char *end,
215 int *ver )
216{
217 int ret;
218 size_t len;
219
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200220 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
221 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 0 ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200222 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200223 if( ret == MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200224 {
225 *ver = 0;
226 return( 0 );
227 }
228
229 return( ret );
230 }
231
232 end = *p + len;
233
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200234 if( ( ret = mbedtls_asn1_get_int( p, end, ver ) ) != 0 )
235 return( MBEDTLS_ERR_X509_INVALID_VERSION + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200236
237 if( *p != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238 return( MBEDTLS_ERR_X509_INVALID_VERSION +
239 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200240
241 return( 0 );
242}
243
244/*
245 * Validity ::= SEQUENCE {
246 * notBefore Time,
247 * notAfter Time }
248 */
249static int x509_get_dates( unsigned char **p,
250 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200251 mbedtls_x509_time *from,
252 mbedtls_x509_time *to )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200253{
254 int ret;
255 size_t len;
256
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200257 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
258 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
259 return( MBEDTLS_ERR_X509_INVALID_DATE + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200260
261 end = *p + len;
262
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200263 if( ( ret = mbedtls_x509_get_time( p, end, from ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200264 return( ret );
265
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200266 if( ( ret = mbedtls_x509_get_time( p, end, to ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200267 return( ret );
268
269 if( *p != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200270 return( MBEDTLS_ERR_X509_INVALID_DATE +
271 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200272
273 return( 0 );
274}
275
276/*
277 * X.509 v2/v3 unique identifier (not parsed)
278 */
279static int x509_get_uid( unsigned char **p,
280 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200281 mbedtls_x509_buf *uid, int n )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200282{
283 int ret;
284
285 if( *p == end )
286 return( 0 );
287
288 uid->tag = **p;
289
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200290 if( ( ret = mbedtls_asn1_get_tag( p, end, &uid->len,
291 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | n ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200292 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200293 if( ret == MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200294 return( 0 );
295
296 return( ret );
297 }
298
299 uid->p = *p;
300 *p += uid->len;
301
302 return( 0 );
303}
304
305static int x509_get_basic_constraints( unsigned char **p,
306 const unsigned char *end,
307 int *ca_istrue,
308 int *max_pathlen )
309{
310 int ret;
311 size_t len;
312
313 /*
314 * BasicConstraints ::= SEQUENCE {
315 * cA BOOLEAN DEFAULT FALSE,
316 * pathLenConstraint INTEGER (0..MAX) OPTIONAL }
317 */
318 *ca_istrue = 0; /* DEFAULT FALSE */
319 *max_pathlen = 0; /* endless */
320
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200321 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
322 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
323 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200324
325 if( *p == end )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200326 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200327
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200328 if( ( ret = mbedtls_asn1_get_bool( p, end, ca_istrue ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200329 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200330 if( ret == MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
331 ret = mbedtls_asn1_get_int( p, end, ca_istrue );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200332
333 if( ret != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200334 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200335
336 if( *ca_istrue != 0 )
337 *ca_istrue = 1;
338 }
339
340 if( *p == end )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200341 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200342
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200343 if( ( ret = mbedtls_asn1_get_int( p, end, max_pathlen ) ) != 0 )
344 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200345
346 if( *p != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200347 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
348 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200349
350 (*max_pathlen)++;
351
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200352 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200353}
354
355static int x509_get_ns_cert_type( unsigned char **p,
356 const unsigned char *end,
357 unsigned char *ns_cert_type)
358{
359 int ret;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200360 mbedtls_x509_bitstring bs = { 0, 0, NULL };
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200361
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200362 if( ( ret = mbedtls_asn1_get_bitstring( p, end, &bs ) ) != 0 )
363 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200364
365 if( bs.len != 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200366 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
367 MBEDTLS_ERR_ASN1_INVALID_LENGTH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200368
369 /* Get actual bitstring */
370 *ns_cert_type = *bs.p;
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200371 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200372}
373
374static int x509_get_key_usage( unsigned char **p,
375 const unsigned char *end,
Manuel Pégourié-Gonnard1d0ca1a2015-03-27 16:50:00 +0100376 unsigned int *key_usage)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200377{
378 int ret;
Manuel Pégourié-Gonnard9a702252015-06-23 10:14:36 +0200379 size_t i;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200380 mbedtls_x509_bitstring bs = { 0, 0, NULL };
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200381
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200382 if( ( ret = mbedtls_asn1_get_bitstring( p, end, &bs ) ) != 0 )
383 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200384
385 if( bs.len < 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200386 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
387 MBEDTLS_ERR_ASN1_INVALID_LENGTH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200388
389 /* Get actual bitstring */
Manuel Pégourié-Gonnard9a702252015-06-23 10:14:36 +0200390 *key_usage = 0;
391 for( i = 0; i < bs.len && i < sizeof( unsigned int ); i++ )
392 {
393 *key_usage |= (unsigned int) bs.p[i] << (8*i);
394 }
395
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200396 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200397}
398
399/*
400 * ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId
401 *
402 * KeyPurposeId ::= OBJECT IDENTIFIER
403 */
404static int x509_get_ext_key_usage( unsigned char **p,
405 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200406 mbedtls_x509_sequence *ext_key_usage)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200407{
408 int ret;
409
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200410 if( ( ret = mbedtls_asn1_get_sequence_of( p, end, ext_key_usage, MBEDTLS_ASN1_OID ) ) != 0 )
411 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200412
413 /* Sequence length must be >= 1 */
414 if( ext_key_usage->buf.p == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200415 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
416 MBEDTLS_ERR_ASN1_INVALID_LENGTH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200417
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200418 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200419}
420
421/*
422 * SubjectAltName ::= GeneralNames
423 *
424 * GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
425 *
426 * GeneralName ::= CHOICE {
427 * otherName [0] OtherName,
428 * rfc822Name [1] IA5String,
429 * dNSName [2] IA5String,
430 * x400Address [3] ORAddress,
431 * directoryName [4] Name,
432 * ediPartyName [5] EDIPartyName,
433 * uniformResourceIdentifier [6] IA5String,
434 * iPAddress [7] OCTET STRING,
435 * registeredID [8] OBJECT IDENTIFIER }
436 *
437 * OtherName ::= SEQUENCE {
438 * type-id OBJECT IDENTIFIER,
439 * value [0] EXPLICIT ANY DEFINED BY type-id }
440 *
441 * EDIPartyName ::= SEQUENCE {
442 * nameAssigner [0] DirectoryString OPTIONAL,
443 * partyName [1] DirectoryString }
444 *
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +0000445 * NOTE: we only parse and use dNSName at this point.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200446 */
447static int x509_get_subject_alt_name( unsigned char **p,
448 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200449 mbedtls_x509_sequence *subject_alt_name )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200450{
451 int ret;
452 size_t len, tag_len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200453 mbedtls_asn1_buf *buf;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200454 unsigned char tag;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200455 mbedtls_asn1_sequence *cur = subject_alt_name;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200456
457 /* Get main sequence tag */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200458 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
459 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
460 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200461
462 if( *p + len != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200463 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
464 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200465
466 while( *p < end )
467 {
468 if( ( end - *p ) < 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200469 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
470 MBEDTLS_ERR_ASN1_OUT_OF_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200471
472 tag = **p;
473 (*p)++;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200474 if( ( ret = mbedtls_asn1_get_len( p, end, &tag_len ) ) != 0 )
475 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200476
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200477 if( ( tag & MBEDTLS_ASN1_CONTEXT_SPECIFIC ) != MBEDTLS_ASN1_CONTEXT_SPECIFIC )
478 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
479 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200480
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +0200481 /* Skip everything but DNS name */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200482 if( tag != ( MBEDTLS_ASN1_CONTEXT_SPECIFIC | 2 ) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200483 {
484 *p += tag_len;
485 continue;
486 }
487
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200488 /* Allocate and assign next pointer */
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +0200489 if( cur->buf.p != NULL )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200490 {
Manuel Pégourié-Gonnardb1340602014-11-11 23:11:16 +0100491 if( cur->next != NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200492 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS );
Manuel Pégourié-Gonnardb1340602014-11-11 23:11:16 +0100493
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200494 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200495
496 if( cur->next == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200497 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200498 MBEDTLS_ERR_ASN1_ALLOC_FAILED );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200499
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200500 cur = cur->next;
501 }
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +0200502
503 buf = &(cur->buf);
504 buf->tag = tag;
505 buf->p = *p;
506 buf->len = tag_len;
507 *p += buf->len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200508 }
509
510 /* Set final sequence entry's next pointer to NULL */
511 cur->next = NULL;
512
513 if( *p != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200514 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
515 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200516
517 return( 0 );
518}
519
520/*
521 * X.509 v3 extensions
522 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200523 */
524static int x509_get_crt_ext( unsigned char **p,
525 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200526 mbedtls_x509_crt *crt )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200527{
528 int ret;
529 size_t len;
530 unsigned char *end_ext_data, *end_ext_octet;
531
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200532 if( ( ret = mbedtls_x509_get_ext( p, end, &crt->v3_ext, 3 ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200533 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200534 if( ret == MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200535 return( 0 );
536
537 return( ret );
538 }
539
540 while( *p < end )
541 {
542 /*
543 * Extension ::= SEQUENCE {
544 * extnID OBJECT IDENTIFIER,
545 * critical BOOLEAN DEFAULT FALSE,
546 * extnValue OCTET STRING }
547 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200548 mbedtls_x509_buf extn_oid = {0, 0, NULL};
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200549 int is_critical = 0; /* DEFAULT FALSE */
550 int ext_type = 0;
551
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200552 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
553 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
554 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200555
556 end_ext_data = *p + len;
557
558 /* Get extension ID */
559 extn_oid.tag = **p;
560
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200561 if( ( ret = mbedtls_asn1_get_tag( p, end, &extn_oid.len, MBEDTLS_ASN1_OID ) ) != 0 )
562 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200563
564 extn_oid.p = *p;
565 *p += extn_oid.len;
566
567 if( ( end - *p ) < 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200568 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
569 MBEDTLS_ERR_ASN1_OUT_OF_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200570
571 /* Get optional critical */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200572 if( ( ret = mbedtls_asn1_get_bool( p, end_ext_data, &is_critical ) ) != 0 &&
573 ( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) )
574 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200575
576 /* Data should be octet string type */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200577 if( ( ret = mbedtls_asn1_get_tag( p, end_ext_data, &len,
578 MBEDTLS_ASN1_OCTET_STRING ) ) != 0 )
579 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200580
581 end_ext_octet = *p + len;
582
583 if( end_ext_octet != end_ext_data )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200584 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
585 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200586
587 /*
588 * Detect supported extensions
589 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200590 ret = mbedtls_oid_get_x509_ext_type( &extn_oid, &ext_type );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200591
592 if( ret != 0 )
593 {
594 /* No parser found, skip extension */
595 *p = end_ext_octet;
596
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200597#if !defined(MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200598 if( is_critical )
599 {
600 /* Data is marked as critical: fail */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200601 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
602 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200603 }
604#endif
605 continue;
606 }
607
Manuel Pégourié-Gonnard8a5e3d42014-11-12 17:47:28 +0100608 /* Forbid repeated extensions */
609 if( ( crt->ext_types & ext_type ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200610 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS );
Manuel Pégourié-Gonnard8a5e3d42014-11-12 17:47:28 +0100611
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200612 crt->ext_types |= ext_type;
613
614 switch( ext_type )
615 {
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +0100616 case MBEDTLS_X509_EXT_BASIC_CONSTRAINTS:
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200617 /* Parse basic constraints */
618 if( ( ret = x509_get_basic_constraints( p, end_ext_octet,
619 &crt->ca_istrue, &crt->max_pathlen ) ) != 0 )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200620 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200621 break;
622
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200623 case MBEDTLS_X509_EXT_KEY_USAGE:
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200624 /* Parse key usage */
625 if( ( ret = x509_get_key_usage( p, end_ext_octet,
626 &crt->key_usage ) ) != 0 )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200627 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200628 break;
629
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200630 case MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE:
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200631 /* Parse extended key usage */
632 if( ( ret = x509_get_ext_key_usage( p, end_ext_octet,
633 &crt->ext_key_usage ) ) != 0 )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200634 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200635 break;
636
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +0100637 case MBEDTLS_X509_EXT_SUBJECT_ALT_NAME:
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200638 /* Parse subject alt name */
639 if( ( ret = x509_get_subject_alt_name( p, end_ext_octet,
640 &crt->subject_alt_names ) ) != 0 )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200641 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200642 break;
643
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200644 case MBEDTLS_X509_EXT_NS_CERT_TYPE:
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200645 /* Parse netscape certificate type */
646 if( ( ret = x509_get_ns_cert_type( p, end_ext_octet,
647 &crt->ns_cert_type ) ) != 0 )
Paul Bakkerd8bb8262014-06-17 14:06:49 +0200648 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200649 break;
650
651 default:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200652 return( MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200653 }
654 }
655
656 if( *p != end )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200657 return( MBEDTLS_ERR_X509_INVALID_EXTENSIONS +
658 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200659
660 return( 0 );
661}
662
663/*
664 * Parse and fill a single X.509 certificate in DER format
665 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200666static int x509_crt_parse_der_core( mbedtls_x509_crt *crt, const unsigned char *buf,
Paul Bakkerddf26b42013-09-18 13:46:23 +0200667 size_t buflen )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200668{
669 int ret;
670 size_t len;
671 unsigned char *p, *end, *crt_end;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200672 mbedtls_x509_buf sig_params1, sig_params2, sig_oid2;
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100673
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200674 memset( &sig_params1, 0, sizeof( mbedtls_x509_buf ) );
675 memset( &sig_params2, 0, sizeof( mbedtls_x509_buf ) );
676 memset( &sig_oid2, 0, sizeof( mbedtls_x509_buf ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200677
678 /*
679 * Check for valid input
680 */
681 if( crt == NULL || buf == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200682 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200683
Janos Follathcc0e49d2016-02-17 14:34:12 +0000684 // Use the original buffer until we figure out actual length
685 p = (unsigned char*) buf;
686 len = buflen;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200687 end = p + len;
688
689 /*
690 * Certificate ::= SEQUENCE {
691 * tbsCertificate TBSCertificate,
692 * signatureAlgorithm AlgorithmIdentifier,
693 * signatureValue BIT STRING }
694 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200695 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
696 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200697 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200698 mbedtls_x509_crt_free( crt );
699 return( MBEDTLS_ERR_X509_INVALID_FORMAT );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200700 }
701
702 if( len > (size_t) ( end - p ) )
703 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 mbedtls_x509_crt_free( crt );
705 return( MBEDTLS_ERR_X509_INVALID_FORMAT +
706 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200707 }
708 crt_end = p + len;
709
Janos Follathcc0e49d2016-02-17 14:34:12 +0000710 // Create and populate a new buffer for the raw field
711 crt->raw.len = crt_end - buf;
712 crt->raw.p = p = mbedtls_calloc( 1, crt->raw.len );
713 if( p == NULL )
714 return( MBEDTLS_ERR_X509_ALLOC_FAILED );
715
716 memcpy( p, buf, crt->raw.len );
717
718 // Direct pointers to the new buffer
719 p += crt->raw.len - len;
720 end = crt_end = p + len;
721
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200722 /*
723 * TBSCertificate ::= SEQUENCE {
724 */
725 crt->tbs.p = p;
726
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200727 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
728 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200729 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200730 mbedtls_x509_crt_free( crt );
731 return( MBEDTLS_ERR_X509_INVALID_FORMAT + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200732 }
733
734 end = p + len;
735 crt->tbs.len = end - crt->tbs.p;
736
737 /*
738 * Version ::= INTEGER { v1(0), v2(1), v3(2) }
739 *
740 * CertificateSerialNumber ::= INTEGER
741 *
742 * signature AlgorithmIdentifier
743 */
744 if( ( ret = x509_get_version( &p, end, &crt->version ) ) != 0 ||
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200745 ( ret = mbedtls_x509_get_serial( &p, end, &crt->serial ) ) != 0 ||
746 ( ret = mbedtls_x509_get_alg( &p, end, &crt->sig_oid,
Manuel Pégourié-Gonnarddddbb1d2014-06-05 17:02:24 +0200747 &sig_params1 ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200748 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200749 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200750 return( ret );
751 }
752
Andres AG7ca4a032017-03-09 16:16:11 +0000753 if( crt->version < 0 || crt->version > 2 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200754 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200755 mbedtls_x509_crt_free( crt );
756 return( MBEDTLS_ERR_X509_UNKNOWN_VERSION );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200757 }
758
Andres AG7ca4a032017-03-09 16:16:11 +0000759 crt->version++;
760
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200761 if( ( ret = mbedtls_x509_get_sig_alg( &crt->sig_oid, &sig_params1,
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200762 &crt->sig_md, &crt->sig_pk,
763 &crt->sig_opts ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200764 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200765 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200766 return( ret );
767 }
768
769 /*
770 * issuer Name
771 */
772 crt->issuer_raw.p = p;
773
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200774 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
775 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200776 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200777 mbedtls_x509_crt_free( crt );
778 return( MBEDTLS_ERR_X509_INVALID_FORMAT + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200779 }
780
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200781 if( ( ret = mbedtls_x509_get_name( &p, p + len, &crt->issuer ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200782 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200783 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200784 return( ret );
785 }
786
787 crt->issuer_raw.len = p - crt->issuer_raw.p;
788
789 /*
790 * Validity ::= SEQUENCE {
791 * notBefore Time,
792 * notAfter Time }
793 *
794 */
795 if( ( ret = x509_get_dates( &p, end, &crt->valid_from,
796 &crt->valid_to ) ) != 0 )
797 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200798 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200799 return( ret );
800 }
801
802 /*
803 * subject Name
804 */
805 crt->subject_raw.p = p;
806
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200807 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
808 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200809 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200810 mbedtls_x509_crt_free( crt );
811 return( MBEDTLS_ERR_X509_INVALID_FORMAT + ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200812 }
813
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200814 if( len && ( ret = mbedtls_x509_get_name( &p, p + len, &crt->subject ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200815 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200816 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200817 return( ret );
818 }
819
820 crt->subject_raw.len = p - crt->subject_raw.p;
821
822 /*
823 * SubjectPublicKeyInfo
824 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200825 if( ( ret = mbedtls_pk_parse_subpubkey( &p, end, &crt->pk ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200826 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200827 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200828 return( ret );
829 }
830
831 /*
832 * issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL,
833 * -- If present, version shall be v2 or v3
834 * subjectUniqueID [2] IMPLICIT UniqueIdentifier OPTIONAL,
835 * -- If present, version shall be v2 or v3
836 * extensions [3] EXPLICIT Extensions OPTIONAL
837 * -- If present, version shall be v3
838 */
839 if( crt->version == 2 || crt->version == 3 )
840 {
841 ret = x509_get_uid( &p, end, &crt->issuer_id, 1 );
842 if( ret != 0 )
843 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200844 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200845 return( ret );
846 }
847 }
848
849 if( crt->version == 2 || crt->version == 3 )
850 {
851 ret = x509_get_uid( &p, end, &crt->subject_id, 2 );
852 if( ret != 0 )
853 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200854 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200855 return( ret );
856 }
857 }
858
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200859#if !defined(MBEDTLS_X509_ALLOW_EXTENSIONS_NON_V3)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200860 if( crt->version == 3 )
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200861#endif
Manuel Pégourié-Gonnarda252af72015-03-27 16:15:55 +0100862 {
Paul Bakker66d5d072014-06-17 16:39:18 +0200863 ret = x509_get_crt_ext( &p, end, crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200864 if( ret != 0 )
865 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200866 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200867 return( ret );
868 }
869 }
870
871 if( p != end )
872 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200873 mbedtls_x509_crt_free( crt );
874 return( MBEDTLS_ERR_X509_INVALID_FORMAT +
875 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200876 }
877
878 end = crt_end;
879
880 /*
881 * }
882 * -- end of TBSCertificate
883 *
884 * signatureAlgorithm AlgorithmIdentifier,
885 * signatureValue BIT STRING
886 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200887 if( ( ret = mbedtls_x509_get_alg( &p, end, &sig_oid2, &sig_params2 ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200888 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200889 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200890 return( ret );
891 }
892
Manuel Pégourié-Gonnard1022fed2015-03-27 16:30:47 +0100893 if( crt->sig_oid.len != sig_oid2.len ||
894 memcmp( crt->sig_oid.p, sig_oid2.p, crt->sig_oid.len ) != 0 ||
Manuel Pégourié-Gonnarddddbb1d2014-06-05 17:02:24 +0200895 sig_params1.len != sig_params2.len ||
Manuel Pégourié-Gonnard159c5242015-04-30 11:15:22 +0200896 ( sig_params1.len != 0 &&
897 memcmp( sig_params1.p, sig_params2.p, sig_params1.len ) != 0 ) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200898 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200899 mbedtls_x509_crt_free( crt );
900 return( MBEDTLS_ERR_X509_SIG_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200901 }
902
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200903 if( ( ret = mbedtls_x509_get_sig( &p, end, &crt->sig ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200904 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200905 mbedtls_x509_crt_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200906 return( ret );
907 }
908
909 if( p != end )
910 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200911 mbedtls_x509_crt_free( crt );
912 return( MBEDTLS_ERR_X509_INVALID_FORMAT +
913 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200914 }
915
916 return( 0 );
917}
918
919/*
920 * Parse one X.509 certificate in DER format from a buffer and add them to a
921 * chained list
922 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200923int mbedtls_x509_crt_parse_der( mbedtls_x509_crt *chain, const unsigned char *buf,
Paul Bakkerddf26b42013-09-18 13:46:23 +0200924 size_t buflen )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200925{
926 int ret;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200927 mbedtls_x509_crt *crt = chain, *prev = NULL;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200928
929 /*
930 * Check for valid input
931 */
932 if( crt == NULL || buf == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200933 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200934
935 while( crt->version != 0 && crt->next != NULL )
936 {
937 prev = crt;
938 crt = crt->next;
939 }
940
941 /*
942 * Add new certificate on the end of the chain if needed.
943 */
Paul Bakker66d5d072014-06-17 16:39:18 +0200944 if( crt->version != 0 && crt->next == NULL )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200945 {
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200946 crt->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200947
948 if( crt->next == NULL )
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200949 return( MBEDTLS_ERR_X509_ALLOC_FAILED );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200950
951 prev = crt;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200952 mbedtls_x509_crt_init( crt->next );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200953 crt = crt->next;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200954 }
955
Paul Bakkerddf26b42013-09-18 13:46:23 +0200956 if( ( ret = x509_crt_parse_der_core( crt, buf, buflen ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200957 {
958 if( prev )
959 prev->next = NULL;
960
961 if( crt != chain )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200962 mbedtls_free( crt );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200963
964 return( ret );
965 }
966
967 return( 0 );
968}
969
970/*
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200971 * Parse one or more PEM certificates from a buffer and add them to the chained
972 * list
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200973 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200974int mbedtls_x509_crt_parse( mbedtls_x509_crt *chain, const unsigned char *buf, size_t buflen )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200975{
Janos Follath98e28a72016-05-31 14:03:54 +0100976#if defined(MBEDTLS_PEM_PARSE_C)
Andres AGc0db5112016-12-07 15:05:53 +0000977 int success = 0, first_error = 0, total_failed = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200978 int buf_format = MBEDTLS_X509_FORMAT_DER;
Janos Follath98e28a72016-05-31 14:03:54 +0100979#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200980
981 /*
982 * Check for valid input
983 */
984 if( chain == NULL || buf == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200985 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200986
987 /*
988 * Determine buffer content. Buffer contains either one DER certificate or
989 * one or more PEM certificates.
990 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200991#if defined(MBEDTLS_PEM_PARSE_C)
Manuel Pégourié-Gonnard0ece0f92015-05-12 12:43:54 +0200992 if( buflen != 0 && buf[buflen - 1] == '\0' &&
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200993 strstr( (const char *) buf, "-----BEGIN CERTIFICATE-----" ) != NULL )
994 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200995 buf_format = MBEDTLS_X509_FORMAT_PEM;
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200996 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200997
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200998 if( buf_format == MBEDTLS_X509_FORMAT_DER )
999 return mbedtls_x509_crt_parse_der( chain, buf, buflen );
Janos Follath98e28a72016-05-31 14:03:54 +01001000#else
1001 return mbedtls_x509_crt_parse_der( chain, buf, buflen );
1002#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001003
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001004#if defined(MBEDTLS_PEM_PARSE_C)
1005 if( buf_format == MBEDTLS_X509_FORMAT_PEM )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001006 {
1007 int ret;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001008 mbedtls_pem_context pem;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001009
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +02001010 /* 1 rather than 0 since the terminating NULL byte is counted in */
1011 while( buflen > 1 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001012 {
1013 size_t use_len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001014 mbedtls_pem_init( &pem );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001015
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +02001016 /* If we get there, we know the string is null-terminated */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001017 ret = mbedtls_pem_read_buffer( &pem,
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001018 "-----BEGIN CERTIFICATE-----",
1019 "-----END CERTIFICATE-----",
1020 buf, NULL, 0, &use_len );
1021
1022 if( ret == 0 )
1023 {
1024 /*
1025 * Was PEM encoded
1026 */
1027 buflen -= use_len;
1028 buf += use_len;
1029 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001030 else if( ret == MBEDTLS_ERR_PEM_BAD_INPUT_DATA )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001031 {
1032 return( ret );
1033 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001034 else if( ret != MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001035 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001036 mbedtls_pem_free( &pem );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001037
1038 /*
1039 * PEM header and footer were found
1040 */
1041 buflen -= use_len;
1042 buf += use_len;
1043
1044 if( first_error == 0 )
1045 first_error = ret;
1046
Paul Bakker5a5fa922014-09-26 14:53:04 +02001047 total_failed++;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001048 continue;
1049 }
1050 else
1051 break;
1052
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001053 ret = mbedtls_x509_crt_parse_der( chain, pem.buf, pem.buflen );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001054
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001055 mbedtls_pem_free( &pem );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001056
1057 if( ret != 0 )
1058 {
1059 /*
1060 * Quit parsing on a memory error
1061 */
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02001062 if( ret == MBEDTLS_ERR_X509_ALLOC_FAILED )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001063 return( ret );
1064
1065 if( first_error == 0 )
1066 first_error = ret;
1067
1068 total_failed++;
1069 continue;
1070 }
1071
1072 success = 1;
1073 }
1074 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001075
1076 if( success )
1077 return( total_failed );
1078 else if( first_error )
1079 return( first_error );
1080 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001081 return( MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT );
Janos Follath98e28a72016-05-31 14:03:54 +01001082#endif /* MBEDTLS_PEM_PARSE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001083}
1084
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001085#if defined(MBEDTLS_FS_IO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001086/*
1087 * Load one or more certificates and add them to the chained list
1088 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001089int mbedtls_x509_crt_parse_file( mbedtls_x509_crt *chain, const char *path )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001090{
1091 int ret;
1092 size_t n;
1093 unsigned char *buf;
1094
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001095 if( ( ret = mbedtls_pk_load_file( path, &buf, &n ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001096 return( ret );
1097
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001098 ret = mbedtls_x509_crt_parse( chain, buf, n );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001099
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +02001100 mbedtls_zeroize( buf, n );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001101 mbedtls_free( buf );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001102
1103 return( ret );
1104}
1105
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001106int mbedtls_x509_crt_parse_path( mbedtls_x509_crt *chain, const char *path )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001107{
1108 int ret = 0;
Paul Bakkerfa6a6202013-10-28 18:48:30 +01001109#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001110 int w_ret;
1111 WCHAR szDir[MAX_PATH];
1112 char filename[MAX_PATH];
Paul Bakker9af723c2014-05-01 13:03:14 +02001113 char *p;
Manuel Pégourié-Gonnard261faed2015-10-21 10:16:29 +02001114 size_t len = strlen( path );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001115
Paul Bakker9af723c2014-05-01 13:03:14 +02001116 WIN32_FIND_DATAW file_data;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001117 HANDLE hFind;
1118
1119 if( len > MAX_PATH - 3 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001120 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001121
Paul Bakker9af723c2014-05-01 13:03:14 +02001122 memset( szDir, 0, sizeof(szDir) );
1123 memset( filename, 0, MAX_PATH );
1124 memcpy( filename, path, len );
1125 filename[len++] = '\\';
1126 p = filename + len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001127 filename[len++] = '*';
1128
Simon B3c6b18d2016-11-03 01:11:37 +00001129 w_ret = MultiByteToWideChar( CP_ACP, 0, filename, (int)len, szDir,
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +02001130 MAX_PATH - 3 );
Manuel Pégourié-Gonnardacdb9b92015-01-23 17:50:34 +00001131 if( w_ret == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001132 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001133
1134 hFind = FindFirstFileW( szDir, &file_data );
Paul Bakker66d5d072014-06-17 16:39:18 +02001135 if( hFind == INVALID_HANDLE_VALUE )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001136 return( MBEDTLS_ERR_X509_FILE_IO_ERROR );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001137
1138 len = MAX_PATH - len;
1139 do
1140 {
Paul Bakker9af723c2014-05-01 13:03:14 +02001141 memset( p, 0, len );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001142
1143 if( file_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY )
1144 continue;
1145
Paul Bakker9af723c2014-05-01 13:03:14 +02001146 w_ret = WideCharToMultiByte( CP_ACP, 0, file_data.cFileName,
Paul Bakker66d5d072014-06-17 16:39:18 +02001147 lstrlenW( file_data.cFileName ),
Manuel Pégourié-Gonnard261faed2015-10-21 10:16:29 +02001148 p, (int) len - 1,
Paul Bakker9af723c2014-05-01 13:03:14 +02001149 NULL, NULL );
Manuel Pégourié-Gonnardacdb9b92015-01-23 17:50:34 +00001150 if( w_ret == 0 )
Ron Eldor36d90422017-01-09 15:09:16 +02001151 {
1152 ret = MBEDTLS_ERR_X509_FILE_IO_ERROR;
1153 goto cleanup;
1154 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001155
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001156 w_ret = mbedtls_x509_crt_parse_file( chain, filename );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001157 if( w_ret < 0 )
1158 ret++;
1159 else
1160 ret += w_ret;
1161 }
1162 while( FindNextFileW( hFind, &file_data ) != 0 );
1163
Paul Bakker66d5d072014-06-17 16:39:18 +02001164 if( GetLastError() != ERROR_NO_MORE_FILES )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001165 ret = MBEDTLS_ERR_X509_FILE_IO_ERROR;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001166
Ron Eldor36d90422017-01-09 15:09:16 +02001167cleanup:
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001168 FindClose( hFind );
Paul Bakkerbe089b02013-10-14 15:51:50 +02001169#else /* _WIN32 */
Manuel Pégourié-Gonnard964bf9b2013-11-26 16:47:11 +01001170 int t_ret;
Andres AGf9113192016-09-02 14:06:04 +01001171 int snp_ret;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001172 struct stat sb;
Manuel Pégourié-Gonnard964bf9b2013-11-26 16:47:11 +01001173 struct dirent *entry;
Andres AGf9113192016-09-02 14:06:04 +01001174 char entry_name[MBEDTLS_X509_MAX_FILE_PATH_LEN];
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001175 DIR *dir = opendir( path );
1176
Paul Bakker66d5d072014-06-17 16:39:18 +02001177 if( dir == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001178 return( MBEDTLS_ERR_X509_FILE_IO_ERROR );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001179
Ron Eldor63140682017-01-09 19:27:59 +02001180#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +02001181 if( ( ret = mbedtls_mutex_lock( &mbedtls_threading_readdir_mutex ) ) != 0 )
Manuel Pégourié-Gonnardf9b85d92015-06-22 18:39:57 +02001182 {
1183 closedir( dir );
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +01001184 return( ret );
Manuel Pégourié-Gonnardf9b85d92015-06-22 18:39:57 +02001185 }
Ron Eldor63140682017-01-09 19:27:59 +02001186#endif /* MBEDTLS_THREADING_C */
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +01001187
Manuel Pégourié-Gonnard964bf9b2013-11-26 16:47:11 +01001188 while( ( entry = readdir( dir ) ) != NULL )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001189 {
Andres AGf9113192016-09-02 14:06:04 +01001190 snp_ret = mbedtls_snprintf( entry_name, sizeof entry_name,
1191 "%s/%s", path, entry->d_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001192
Andres AGf9113192016-09-02 14:06:04 +01001193 if( snp_ret < 0 || (size_t)snp_ret >= sizeof entry_name )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001194 {
Andres AGf9113192016-09-02 14:06:04 +01001195 ret = MBEDTLS_ERR_X509_BUFFER_TOO_SMALL;
1196 goto cleanup;
1197 }
1198 else if( stat( entry_name, &sb ) == -1 )
1199 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001200 ret = MBEDTLS_ERR_X509_FILE_IO_ERROR;
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +01001201 goto cleanup;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001202 }
1203
1204 if( !S_ISREG( sb.st_mode ) )
1205 continue;
1206
1207 // Ignore parse errors
1208 //
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001209 t_ret = mbedtls_x509_crt_parse_file( chain, entry_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001210 if( t_ret < 0 )
1211 ret++;
1212 else
1213 ret += t_ret;
1214 }
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +01001215
1216cleanup:
Andres AGf9113192016-09-02 14:06:04 +01001217 closedir( dir );
1218
Ron Eldor63140682017-01-09 19:27:59 +02001219#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +02001220 if( mbedtls_mutex_unlock( &mbedtls_threading_readdir_mutex ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001221 ret = MBEDTLS_ERR_THREADING_MUTEX_ERROR;
Ron Eldor63140682017-01-09 19:27:59 +02001222#endif /* MBEDTLS_THREADING_C */
Manuel Pégourié-Gonnard5ad68e42013-11-28 17:11:54 +01001223
Paul Bakkerbe089b02013-10-14 15:51:50 +02001224#endif /* _WIN32 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001225
1226 return( ret );
1227}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001228#endif /* MBEDTLS_FS_IO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001229
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001230static int x509_info_subject_alt_name( char **buf, size_t *size,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001231 const mbedtls_x509_sequence *subject_alt_name )
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001232{
1233 size_t i;
1234 size_t n = *size;
1235 char *p = *buf;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001236 const mbedtls_x509_sequence *cur = subject_alt_name;
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001237 const char *sep = "";
1238 size_t sep_len = 0;
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001239
1240 while( cur != NULL )
1241 {
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001242 if( cur->buf.len + sep_len >= n )
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001243 {
1244 *p = '\0';
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001245 return( MBEDTLS_ERR_X509_BUFFER_TOO_SMALL );
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001246 }
1247
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001248 n -= cur->buf.len + sep_len;
1249 for( i = 0; i < sep_len; i++ )
1250 *p++ = sep[i];
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001251 for( i = 0; i < cur->buf.len; i++ )
1252 *p++ = cur->buf.p[i];
1253
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001254 sep = ", ";
1255 sep_len = 2;
1256
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001257 cur = cur->next;
1258 }
1259
1260 *p = '\0';
1261
1262 *size = n;
1263 *buf = p;
1264
1265 return( 0 );
1266}
1267
Manuel Pégourié-Gonnard0db29b02014-04-01 18:12:24 +02001268#define PRINT_ITEM(i) \
1269 { \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001270 ret = mbedtls_snprintf( p, n, "%s" i, sep ); \
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001271 MBEDTLS_X509_SAFE_SNPRINTF; \
Manuel Pégourié-Gonnard0db29b02014-04-01 18:12:24 +02001272 sep = ", "; \
1273 }
1274
1275#define CERT_TYPE(type,name) \
1276 if( ns_cert_type & type ) \
1277 PRINT_ITEM( name );
1278
Manuel Pégourié-Gonnard919f8f52014-04-01 13:01:11 +02001279static int x509_info_cert_type( char **buf, size_t *size,
1280 unsigned char ns_cert_type )
1281{
1282 int ret;
1283 size_t n = *size;
1284 char *p = *buf;
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001285 const char *sep = "";
Manuel Pégourié-Gonnard919f8f52014-04-01 13:01:11 +02001286
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001287 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT, "SSL Client" );
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001288 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_SSL_SERVER, "SSL Server" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001289 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_EMAIL, "Email" );
1290 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING, "Object Signing" );
1291 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_RESERVED, "Reserved" );
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001292 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_SSL_CA, "SSL CA" );
1293 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_EMAIL_CA, "Email CA" );
1294 CERT_TYPE( MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING_CA, "Object Signing CA" );
Manuel Pégourié-Gonnard919f8f52014-04-01 13:01:11 +02001295
1296 *size = n;
1297 *buf = p;
1298
1299 return( 0 );
1300}
1301
Manuel Pégourié-Gonnard0db29b02014-04-01 18:12:24 +02001302#define KEY_USAGE(code,name) \
1303 if( key_usage & code ) \
1304 PRINT_ITEM( name );
1305
Manuel Pégourié-Gonnard65c2ddc2014-04-01 14:12:11 +02001306static int x509_info_key_usage( char **buf, size_t *size,
Manuel Pégourié-Gonnard9a702252015-06-23 10:14:36 +02001307 unsigned int key_usage )
Manuel Pégourié-Gonnard65c2ddc2014-04-01 14:12:11 +02001308{
1309 int ret;
1310 size_t n = *size;
1311 char *p = *buf;
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001312 const char *sep = "";
Manuel Pégourié-Gonnard65c2ddc2014-04-01 14:12:11 +02001313
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001314 KEY_USAGE( MBEDTLS_X509_KU_DIGITAL_SIGNATURE, "Digital Signature" );
1315 KEY_USAGE( MBEDTLS_X509_KU_NON_REPUDIATION, "Non Repudiation" );
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001316 KEY_USAGE( MBEDTLS_X509_KU_KEY_ENCIPHERMENT, "Key Encipherment" );
1317 KEY_USAGE( MBEDTLS_X509_KU_DATA_ENCIPHERMENT, "Data Encipherment" );
1318 KEY_USAGE( MBEDTLS_X509_KU_KEY_AGREEMENT, "Key Agreement" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001319 KEY_USAGE( MBEDTLS_X509_KU_KEY_CERT_SIGN, "Key Cert Sign" );
1320 KEY_USAGE( MBEDTLS_X509_KU_CRL_SIGN, "CRL Sign" );
Manuel Pégourié-Gonnard9a702252015-06-23 10:14:36 +02001321 KEY_USAGE( MBEDTLS_X509_KU_ENCIPHER_ONLY, "Encipher Only" );
1322 KEY_USAGE( MBEDTLS_X509_KU_DECIPHER_ONLY, "Decipher Only" );
Manuel Pégourié-Gonnard65c2ddc2014-04-01 14:12:11 +02001323
1324 *size = n;
1325 *buf = p;
1326
1327 return( 0 );
1328}
1329
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001330static int x509_info_ext_key_usage( char **buf, size_t *size,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001331 const mbedtls_x509_sequence *extended_key_usage )
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001332{
1333 int ret;
1334 const char *desc;
1335 size_t n = *size;
1336 char *p = *buf;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001337 const mbedtls_x509_sequence *cur = extended_key_usage;
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001338 const char *sep = "";
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001339
1340 while( cur != NULL )
1341 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001342 if( mbedtls_oid_get_extended_key_usage( &cur->buf, &desc ) != 0 )
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001343 desc = "???";
1344
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001345 ret = mbedtls_snprintf( p, n, "%s%s", sep, desc );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001346 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001347
Manuel Pégourié-Gonnard7b30cfc2014-04-01 18:00:07 +02001348 sep = ", ";
1349
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001350 cur = cur->next;
1351 }
1352
1353 *size = n;
1354 *buf = p;
1355
1356 return( 0 );
1357}
1358
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001359/*
1360 * Return an informational string about the certificate.
1361 */
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001362#define BEFORE_COLON 18
1363#define BC "18"
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001364int mbedtls_x509_crt_info( char *buf, size_t size, const char *prefix,
1365 const mbedtls_x509_crt *crt )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001366{
1367 int ret;
1368 size_t n;
1369 char *p;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001370 char key_size_str[BEFORE_COLON];
1371
1372 p = buf;
1373 n = size;
1374
Janos Follath98e28a72016-05-31 14:03:54 +01001375 if( NULL == crt )
1376 {
1377 ret = mbedtls_snprintf( p, n, "\nCertificate is uninitialised!\n" );
1378 MBEDTLS_X509_SAFE_SNPRINTF;
1379
1380 return( (int) ( size - n ) );
1381 }
1382
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001383 ret = mbedtls_snprintf( p, n, "%scert. version : %d\n",
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001384 prefix, crt->version );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001385 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001386 ret = mbedtls_snprintf( p, n, "%sserial number : ",
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001387 prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001388 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001389
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001390 ret = mbedtls_x509_serial_gets( p, n, &crt->serial );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001391 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001392
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001393 ret = mbedtls_snprintf( p, n, "\n%sissuer name : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001394 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001395 ret = mbedtls_x509_dn_gets( p, n, &crt->issuer );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001396 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001397
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001398 ret = mbedtls_snprintf( p, n, "\n%ssubject name : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001399 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001400 ret = mbedtls_x509_dn_gets( p, n, &crt->subject );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001401 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001402
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001403 ret = mbedtls_snprintf( p, n, "\n%sissued on : " \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001404 "%04d-%02d-%02d %02d:%02d:%02d", prefix,
1405 crt->valid_from.year, crt->valid_from.mon,
1406 crt->valid_from.day, crt->valid_from.hour,
1407 crt->valid_from.min, crt->valid_from.sec );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001408 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001409
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001410 ret = mbedtls_snprintf( p, n, "\n%sexpires on : " \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001411 "%04d-%02d-%02d %02d:%02d:%02d", prefix,
1412 crt->valid_to.year, crt->valid_to.mon,
1413 crt->valid_to.day, crt->valid_to.hour,
1414 crt->valid_to.min, crt->valid_to.sec );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001415 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001417 ret = mbedtls_snprintf( p, n, "\n%ssigned using : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001418 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001419
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001420 ret = mbedtls_x509_sig_alg_gets( p, n, &crt->sig_oid, crt->sig_pk,
Manuel Pégourié-Gonnardbf696d02014-06-05 17:07:30 +02001421 crt->sig_md, crt->sig_opts );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001422 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001423
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001424 /* Key size */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001425 if( ( ret = mbedtls_x509_key_size_helper( key_size_str, BEFORE_COLON,
1426 mbedtls_pk_get_name( &crt->pk ) ) ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001427 {
1428 return( ret );
1429 }
1430
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001431 ret = mbedtls_snprintf( p, n, "\n%s%-" BC "s: %d bits", prefix, key_size_str,
Manuel Pégourié-Gonnard097c7bb2015-06-18 16:43:38 +02001432 (int) mbedtls_pk_get_bitlen( &crt->pk ) );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001433 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001434
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001435 /*
1436 * Optional extensions
1437 */
1438
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001439 if( crt->ext_types & MBEDTLS_X509_EXT_BASIC_CONSTRAINTS )
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001440 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001441 ret = mbedtls_snprintf( p, n, "\n%sbasic constraints : CA=%s", prefix,
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001442 crt->ca_istrue ? "true" : "false" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001443 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001444
1445 if( crt->max_pathlen > 0 )
1446 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001447 ret = mbedtls_snprintf( p, n, ", max_pathlen=%d", crt->max_pathlen - 1 );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001448 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001449 }
1450 }
1451
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001452 if( crt->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME )
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001453 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001454 ret = mbedtls_snprintf( p, n, "\n%ssubject alt name : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001455 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardbce2b302014-04-01 13:43:28 +02001456
1457 if( ( ret = x509_info_subject_alt_name( &p, &n,
1458 &crt->subject_alt_names ) ) != 0 )
1459 return( ret );
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001460 }
1461
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001462 if( crt->ext_types & MBEDTLS_X509_EXT_NS_CERT_TYPE )
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001463 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001464 ret = mbedtls_snprintf( p, n, "\n%scert. type : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001465 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard919f8f52014-04-01 13:01:11 +02001466
1467 if( ( ret = x509_info_cert_type( &p, &n, crt->ns_cert_type ) ) != 0 )
1468 return( ret );
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001469 }
1470
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001471 if( crt->ext_types & MBEDTLS_X509_EXT_KEY_USAGE )
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001472 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001473 ret = mbedtls_snprintf( p, n, "\n%skey usage : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001474 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard65c2ddc2014-04-01 14:12:11 +02001475
1476 if( ( ret = x509_info_key_usage( &p, &n, crt->key_usage ) ) != 0 )
1477 return( ret );
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001478 }
1479
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001480 if( crt->ext_types & MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE )
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001481 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001482 ret = mbedtls_snprintf( p, n, "\n%sext key usage : ", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001483 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardf6f4ab42014-04-01 17:32:44 +02001484
1485 if( ( ret = x509_info_ext_key_usage( &p, &n,
1486 &crt->ext_key_usage ) ) != 0 )
1487 return( ret );
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001488 }
1489
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001490 ret = mbedtls_snprintf( p, n, "\n" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001491 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardb28487d2014-04-01 12:19:09 +02001492
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001493 return( (int) ( size - n ) );
1494}
1495
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001496struct x509_crt_verify_string {
1497 int code;
1498 const char *string;
1499};
1500
1501static const struct x509_crt_verify_string x509_crt_verify_strings[] = {
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001502 { MBEDTLS_X509_BADCERT_EXPIRED, "The certificate validity has expired" },
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001503 { MBEDTLS_X509_BADCERT_REVOKED, "The certificate has been revoked (is on a CRL)" },
1504 { MBEDTLS_X509_BADCERT_CN_MISMATCH, "The certificate Common Name (CN) does not match with the expected CN" },
1505 { MBEDTLS_X509_BADCERT_NOT_TRUSTED, "The certificate is not correctly signed by the trusted CA" },
1506 { MBEDTLS_X509_BADCRL_NOT_TRUSTED, "The CRL is not correctly signed by the trusted CA" },
1507 { MBEDTLS_X509_BADCRL_EXPIRED, "The CRL is expired" },
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001508 { MBEDTLS_X509_BADCERT_MISSING, "Certificate was missing" },
1509 { MBEDTLS_X509_BADCERT_SKIP_VERIFY, "Certificate verification was skipped" },
1510 { MBEDTLS_X509_BADCERT_OTHER, "Other reason (can be used by verify callback)" },
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001511 { MBEDTLS_X509_BADCERT_FUTURE, "The certificate validity starts in the future" },
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001512 { MBEDTLS_X509_BADCRL_FUTURE, "The CRL is from the future" },
1513 { MBEDTLS_X509_BADCERT_KEY_USAGE, "Usage does not match the keyUsage extension" },
1514 { MBEDTLS_X509_BADCERT_EXT_KEY_USAGE, "Usage does not match the extendedKeyUsage extension" },
1515 { MBEDTLS_X509_BADCERT_NS_CERT_TYPE, "Usage does not match the nsCertType extension" },
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02001516 { MBEDTLS_X509_BADCERT_BAD_MD, "The certificate is signed with an unacceptable hash." },
1517 { MBEDTLS_X509_BADCERT_BAD_PK, "The certificate is signed with an unacceptable PK alg (eg RSA vs ECDSA)." },
1518 { MBEDTLS_X509_BADCERT_BAD_KEY, "The certificate is signed with an unacceptable key (eg bad curve, RSA too short)." },
1519 { MBEDTLS_X509_BADCRL_BAD_MD, "The CRL is signed with an unacceptable hash." },
1520 { MBEDTLS_X509_BADCRL_BAD_PK, "The CRL is signed with an unacceptable PK alg (eg RSA vs ECDSA)." },
1521 { MBEDTLS_X509_BADCRL_BAD_KEY, "The CRL is signed with an unacceptable key (eg bad curve, RSA too short)." },
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001522 { 0, NULL }
1523};
1524
1525int mbedtls_x509_crt_verify_info( char *buf, size_t size, const char *prefix,
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02001526 uint32_t flags )
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001527{
1528 int ret;
1529 const struct x509_crt_verify_string *cur;
1530 char *p = buf;
1531 size_t n = size;
1532
1533 for( cur = x509_crt_verify_strings; cur->string != NULL ; cur++ )
1534 {
1535 if( ( flags & cur->code ) == 0 )
1536 continue;
1537
1538 ret = mbedtls_snprintf( p, n, "%s%s\n", prefix, cur->string );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001539 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001540 flags ^= cur->code;
1541 }
1542
1543 if( flags != 0 )
1544 {
1545 ret = mbedtls_snprintf( p, n, "%sUnknown reason "
1546 "(this should not happen)\n", prefix );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +02001547 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardb5f48ad2015-04-20 10:38:13 +01001548 }
1549
1550 return( (int) ( size - n ) );
1551}
1552
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001553#if defined(MBEDTLS_X509_CHECK_KEY_USAGE)
Manuel Pégourié-Gonnard655a9642015-06-23 10:48:44 +02001554int mbedtls_x509_crt_check_key_usage( const mbedtls_x509_crt *crt,
1555 unsigned int usage )
Manuel Pégourié-Gonnard603116c2014-04-09 09:50:03 +02001556{
Manuel Pégourié-Gonnard655a9642015-06-23 10:48:44 +02001557 unsigned int usage_must, usage_may;
1558 unsigned int may_mask = MBEDTLS_X509_KU_ENCIPHER_ONLY
1559 | MBEDTLS_X509_KU_DECIPHER_ONLY;
1560
1561 if( ( crt->ext_types & MBEDTLS_X509_EXT_KEY_USAGE ) == 0 )
1562 return( 0 );
1563
1564 usage_must = usage & ~may_mask;
1565
1566 if( ( ( crt->key_usage & ~may_mask ) & usage_must ) != usage_must )
1567 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
1568
1569 usage_may = usage & may_mask;
1570
1571 if( ( ( crt->key_usage & may_mask ) | usage_may ) != usage_may )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001572 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard603116c2014-04-09 09:50:03 +02001573
1574 return( 0 );
1575}
1576#endif
1577
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001578#if defined(MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE)
1579int mbedtls_x509_crt_check_extended_key_usage( const mbedtls_x509_crt *crt,
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001580 const char *usage_oid,
1581 size_t usage_len )
1582{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001583 const mbedtls_x509_sequence *cur;
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001584
1585 /* Extension is not mandatory, absent means no restriction */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001586 if( ( crt->ext_types & MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE ) == 0 )
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001587 return( 0 );
1588
1589 /*
1590 * Look for the requested usage (or wildcard ANY) in our list
1591 */
1592 for( cur = &crt->ext_key_usage; cur != NULL; cur = cur->next )
1593 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001594 const mbedtls_x509_buf *cur_oid = &cur->buf;
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001595
1596 if( cur_oid->len == usage_len &&
1597 memcmp( cur_oid->p, usage_oid, usage_len ) == 0 )
1598 {
1599 return( 0 );
1600 }
1601
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001602 if( MBEDTLS_OID_CMP( MBEDTLS_OID_ANY_EXTENDED_KEY_USAGE, cur_oid ) == 0 )
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001603 return( 0 );
1604 }
1605
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001606 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001607}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001608#endif /* MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE */
Manuel Pégourié-Gonnard7afb8a02014-04-10 17:53:56 +02001609
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001610#if defined(MBEDTLS_X509_CRL_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001611/*
1612 * Return 1 if the certificate is revoked, or 0 otherwise.
1613 */
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001614int mbedtls_x509_crt_is_revoked( const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001615{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001616 const mbedtls_x509_crl_entry *cur = &crl->entry;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001617
1618 while( cur != NULL && cur->serial.len != 0 )
1619 {
1620 if( crt->serial.len == cur->serial.len &&
1621 memcmp( crt->serial.p, cur->serial.p, crt->serial.len ) == 0 )
1622 {
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001623 if( mbedtls_x509_time_is_past( &cur->revocation_date ) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001624 return( 1 );
1625 }
1626
1627 cur = cur->next;
1628 }
1629
1630 return( 0 );
1631}
1632
1633/*
Manuel Pégourié-Gonnardeeef9472016-02-22 11:36:55 +01001634 * Check that the given certificate is not revoked according to the CRL.
1635 * Skip validation is no CRL for the given CA is present.
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001636 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001637static int x509_crt_verifycrl( mbedtls_x509_crt *crt, mbedtls_x509_crt *ca,
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02001638 mbedtls_x509_crl *crl_list,
1639 const mbedtls_x509_crt_profile *profile )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001640{
1641 int flags = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001642 unsigned char hash[MBEDTLS_MD_MAX_SIZE];
1643 const mbedtls_md_info_t *md_info;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001644
1645 if( ca == NULL )
1646 return( flags );
1647
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001648 while( crl_list != NULL )
1649 {
1650 if( crl_list->version == 0 ||
1651 crl_list->issuer_raw.len != ca->subject_raw.len ||
1652 memcmp( crl_list->issuer_raw.p, ca->subject_raw.p,
1653 crl_list->issuer_raw.len ) != 0 )
1654 {
1655 crl_list = crl_list->next;
1656 continue;
1657 }
1658
1659 /*
Manuel Pégourié-Gonnard99d4f192014-04-08 15:10:07 +02001660 * Check if the CA is configured to sign CRLs
1661 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001662#if defined(MBEDTLS_X509_CHECK_KEY_USAGE)
1663 if( mbedtls_x509_crt_check_key_usage( ca, MBEDTLS_X509_KU_CRL_SIGN ) != 0 )
Manuel Pégourié-Gonnard99d4f192014-04-08 15:10:07 +02001664 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001665 flags |= MBEDTLS_X509_BADCRL_NOT_TRUSTED;
Manuel Pégourié-Gonnard99d4f192014-04-08 15:10:07 +02001666 break;
1667 }
1668#endif
1669
1670 /*
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001671 * Check if CRL is correctly signed by the trusted CA
1672 */
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +02001673 if( x509_profile_check_md_alg( profile, crl_list->sig_md ) != 0 )
1674 flags |= MBEDTLS_X509_BADCRL_BAD_MD;
1675
1676 if( x509_profile_check_pk_alg( profile, crl_list->sig_pk ) != 0 )
1677 flags |= MBEDTLS_X509_BADCRL_BAD_PK;
1678
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001679 md_info = mbedtls_md_info_from_type( crl_list->sig_md );
Manuel Pégourié-Gonnard329e78c2017-06-26 12:22:17 +02001680 if( mbedtls_md( md_info, crl_list->tbs.p, crl_list->tbs.len, hash ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001681 {
Manuel Pégourié-Gonnard329e78c2017-06-26 12:22:17 +02001682 /* Note: this can't happen except after an internal error */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001683 flags |= MBEDTLS_X509_BADCRL_NOT_TRUSTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001684 break;
1685 }
1686
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +02001687 if( x509_profile_check_key( profile, crl_list->sig_pk, &ca->pk ) != 0 )
1688 flags |= MBEDTLS_X509_BADCERT_BAD_KEY;
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02001689
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001690 if( mbedtls_pk_verify_ext( crl_list->sig_pk, crl_list->sig_opts, &ca->pk,
1691 crl_list->sig_md, hash, mbedtls_md_get_size( md_info ),
Manuel Pégourié-Gonnard53882022014-06-05 17:53:52 +02001692 crl_list->sig.p, crl_list->sig.len ) != 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001693 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001694 flags |= MBEDTLS_X509_BADCRL_NOT_TRUSTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001695 break;
1696 }
1697
1698 /*
1699 * Check for validity of CRL (Do not drop out)
1700 */
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001701 if( mbedtls_x509_time_is_past( &crl_list->next_update ) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001702 flags |= MBEDTLS_X509_BADCRL_EXPIRED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001703
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001704 if( mbedtls_x509_time_is_future( &crl_list->this_update ) )
Manuel Pégourié-Gonnarde6028c92015-04-20 12:19:02 +01001705 flags |= MBEDTLS_X509_BADCRL_FUTURE;
Manuel Pégourié-Gonnard95337652014-03-10 13:15:18 +01001706
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001707 /*
1708 * Check if certificate is revoked
1709 */
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001710 if( mbedtls_x509_crt_is_revoked( crt, crl_list ) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001711 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001712 flags |= MBEDTLS_X509_BADCERT_REVOKED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001713 break;
1714 }
1715
1716 crl_list = crl_list->next;
1717 }
Manuel Pégourié-Gonnardcbb1f6e2015-06-15 16:17:55 +02001718
Paul Bakkerd8bb8262014-06-17 14:06:49 +02001719 return( flags );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001720}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001721#endif /* MBEDTLS_X509_CRL_PARSE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001722
Manuel Pégourié-Gonnard88421242014-10-17 11:36:18 +02001723/*
1724 * Like memcmp, but case-insensitive and always returns -1 if different
1725 */
1726static int x509_memcasecmp( const void *s1, const void *s2, size_t len )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001727{
1728 size_t i;
1729 unsigned char diff;
1730 const unsigned char *n1 = s1, *n2 = s2;
1731
1732 for( i = 0; i < len; i++ )
1733 {
1734 diff = n1[i] ^ n2[i];
1735
Paul Bakkerf2b4d862013-11-20 17:23:53 +01001736 if( diff == 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001737 continue;
1738
Paul Bakkerf2b4d862013-11-20 17:23:53 +01001739 if( diff == 32 &&
1740 ( ( n1[i] >= 'a' && n1[i] <= 'z' ) ||
1741 ( n1[i] >= 'A' && n1[i] <= 'Z' ) ) )
1742 {
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001743 continue;
Paul Bakkerf2b4d862013-11-20 17:23:53 +01001744 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001745
Manuel Pégourié-Gonnard88421242014-10-17 11:36:18 +02001746 return( -1 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001747 }
1748
1749 return( 0 );
1750}
1751
Manuel Pégourié-Gonnard88421242014-10-17 11:36:18 +02001752/*
Manuel Pégourié-Gonnardb80d16d2015-06-23 09:24:29 +02001753 * Return 0 if name matches wildcard, -1 otherwise
Manuel Pégourié-Gonnard88421242014-10-17 11:36:18 +02001754 */
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02001755static int x509_check_wildcard( const char *cn, const mbedtls_x509_buf *name )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001756{
1757 size_t i;
Paul Bakker14b16c62014-05-28 11:33:54 +02001758 size_t cn_idx = 0, cn_len = strlen( cn );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001759
1760 if( name->len < 3 || name->p[0] != '*' || name->p[1] != '.' )
1761 return( 0 );
1762
Paul Bakker14b16c62014-05-28 11:33:54 +02001763 for( i = 0; i < cn_len; ++i )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001764 {
1765 if( cn[i] == '.' )
1766 {
1767 cn_idx = i;
1768 break;
1769 }
1770 }
1771
1772 if( cn_idx == 0 )
Manuel Pégourié-Gonnardb80d16d2015-06-23 09:24:29 +02001773 return( -1 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001774
Paul Bakker14b16c62014-05-28 11:33:54 +02001775 if( cn_len - cn_idx == name->len - 1 &&
Manuel Pégourié-Gonnard88421242014-10-17 11:36:18 +02001776 x509_memcasecmp( name->p + 1, cn + cn_idx, name->len - 1 ) == 0 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001777 {
Manuel Pégourié-Gonnardb80d16d2015-06-23 09:24:29 +02001778 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001779 }
1780
Manuel Pégourié-Gonnardb80d16d2015-06-23 09:24:29 +02001781 return( -1 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001782}
1783
Manuel Pégourié-Gonnard3fed0b32014-04-08 13:18:01 +02001784/*
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001785 * Compare two X.509 strings, case-insensitive, and allowing for some encoding
1786 * variations (but not all).
1787 *
1788 * Return 0 if equal, -1 otherwise.
1789 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001790static int x509_string_cmp( const mbedtls_x509_buf *a, const mbedtls_x509_buf *b )
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001791{
1792 if( a->tag == b->tag &&
1793 a->len == b->len &&
1794 memcmp( a->p, b->p, b->len ) == 0 )
1795 {
1796 return( 0 );
1797 }
1798
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001799 if( ( a->tag == MBEDTLS_ASN1_UTF8_STRING || a->tag == MBEDTLS_ASN1_PRINTABLE_STRING ) &&
1800 ( b->tag == MBEDTLS_ASN1_UTF8_STRING || b->tag == MBEDTLS_ASN1_PRINTABLE_STRING ) &&
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001801 a->len == b->len &&
1802 x509_memcasecmp( a->p, b->p, b->len ) == 0 )
1803 {
1804 return( 0 );
1805 }
1806
1807 return( -1 );
1808}
1809
1810/*
1811 * Compare two X.509 Names (aka rdnSequence).
1812 *
1813 * See RFC 5280 section 7.1, though we don't implement the whole algorithm:
1814 * we sometimes return unequal when the full algorithm would return equal,
1815 * but never the other way. (In particular, we don't do Unicode normalisation
1816 * or space folding.)
1817 *
1818 * Return 0 if equal, -1 otherwise.
1819 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001820static int x509_name_cmp( const mbedtls_x509_name *a, const mbedtls_x509_name *b )
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001821{
Manuel Pégourié-Gonnardf631bbc2014-11-12 18:35:31 +01001822 /* Avoid recursion, it might not be optimised by the compiler */
1823 while( a != NULL || b != NULL )
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001824 {
Manuel Pégourié-Gonnardf631bbc2014-11-12 18:35:31 +01001825 if( a == NULL || b == NULL )
1826 return( -1 );
1827
1828 /* type */
1829 if( a->oid.tag != b->oid.tag ||
1830 a->oid.len != b->oid.len ||
1831 memcmp( a->oid.p, b->oid.p, b->oid.len ) != 0 )
1832 {
1833 return( -1 );
1834 }
1835
1836 /* value */
1837 if( x509_string_cmp( &a->val, &b->val ) != 0 )
1838 return( -1 );
1839
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +00001840 /* structure of the list of sets */
1841 if( a->next_merged != b->next_merged )
1842 return( -1 );
1843
Manuel Pégourié-Gonnardf631bbc2014-11-12 18:35:31 +01001844 a = a->next;
1845 b = b->next;
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001846 }
1847
Manuel Pégourié-Gonnardf631bbc2014-11-12 18:35:31 +01001848 /* a == NULL == b */
1849 return( 0 );
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001850}
1851
1852/*
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001853 * Check the signature of a certificate by its parent
1854 */
1855static int x509_crt_check_signature( const mbedtls_x509_crt *child,
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001856 mbedtls_x509_crt *parent,
1857 mbedtls_x509_crt_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001858{
1859 const mbedtls_md_info_t *md_info;
1860 unsigned char hash[MBEDTLS_MD_MAX_SIZE];
1861
1862 md_info = mbedtls_md_info_from_type( child->sig_md );
1863 if( mbedtls_md( md_info, child->tbs.p, child->tbs.len, hash ) != 0 )
1864 {
1865 /* Note: this can't happen except after an internal error */
1866 return( -1 );
1867 }
1868
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001869 /* Skip expensive computation on obvious mismatch */
1870 if( ! mbedtls_pk_can_do( &parent->pk, child->sig_pk ) )
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001871 return( -1 );
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001872
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001873#if defined(MBEDTLS_ECP_RESTARTABLE)
1874 if( rs_ctx != NULL && child->sig_pk == MBEDTLS_PK_ECDSA )
1875 {
1876 return( mbedtls_pk_verify_restartable( &parent->pk,
1877 child->sig_md, hash, mbedtls_md_get_size( md_info ),
1878 child->sig.p, child->sig.len, &rs_ctx->ecdsa ) );
1879 }
1880#else
1881 (void) rs_ctx;
1882#endif
1883
1884 return( mbedtls_pk_verify_ext( child->sig_pk, child->sig_opts, &parent->pk,
1885 child->sig_md, hash, mbedtls_md_get_size( md_info ),
1886 child->sig.p, child->sig.len ) );
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001887}
1888
1889/*
Manuel Pégourié-Gonnard312010e2014-04-09 14:30:11 +02001890 * Check if 'parent' is a suitable parent (signing CA) for 'child'.
1891 * Return 0 if yes, -1 if not.
Manuel Pégourié-Gonnardd249b7a2014-06-24 11:49:16 +02001892 *
1893 * top means parent is a locally-trusted certificate
Manuel Pégourié-Gonnard3fed0b32014-04-08 13:18:01 +02001894 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001895static int x509_crt_check_parent( const mbedtls_x509_crt *child,
1896 const mbedtls_x509_crt *parent,
Manuel Pégourié-Gonnard27e94792017-07-04 00:49:31 +02001897 int top )
Manuel Pégourié-Gonnard3fed0b32014-04-08 13:18:01 +02001898{
Manuel Pégourié-Gonnardd249b7a2014-06-24 11:49:16 +02001899 int need_ca_bit;
1900
Manuel Pégourié-Gonnardc4eff162014-06-19 12:18:08 +02001901 /* Parent must be the issuer */
Manuel Pégourié-Gonnardef9a6ae2014-10-17 12:25:12 +02001902 if( x509_name_cmp( &child->issuer, &parent->subject ) != 0 )
Manuel Pégourié-Gonnard312010e2014-04-09 14:30:11 +02001903 return( -1 );
Manuel Pégourié-Gonnard3fed0b32014-04-08 13:18:01 +02001904
Manuel Pégourié-Gonnardd249b7a2014-06-24 11:49:16 +02001905 /* Parent must have the basicConstraints CA bit set as a general rule */
1906 need_ca_bit = 1;
1907
1908 /* Exception: v1/v2 certificates that are locally trusted. */
1909 if( top && parent->version < 3 )
1910 need_ca_bit = 0;
1911
Manuel Pégourié-Gonnardd249b7a2014-06-24 11:49:16 +02001912 if( need_ca_bit && ! parent->ca_istrue )
1913 return( -1 );
1914
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001915#if defined(MBEDTLS_X509_CHECK_KEY_USAGE)
Manuel Pégourié-Gonnardd249b7a2014-06-24 11:49:16 +02001916 if( need_ca_bit &&
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001917 mbedtls_x509_crt_check_key_usage( parent, MBEDTLS_X509_KU_KEY_CERT_SIGN ) != 0 )
Manuel Pégourié-Gonnardc4eff162014-06-19 12:18:08 +02001918 {
1919 return( -1 );
1920 }
Manuel Pégourié-Gonnard312010e2014-04-09 14:30:11 +02001921#endif
1922
1923 return( 0 );
Manuel Pégourié-Gonnard3fed0b32014-04-08 13:18:01 +02001924}
1925
Manuel Pégourié-Gonnard35407c72017-06-29 10:45:25 +02001926/*
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02001927 * Find a suitable parent for child in candidates, or return NULL.
1928 *
1929 * Here suitable is defined as:
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001930 * 1. subject name matches child's issuer
1931 * 2. if necessary, the CA bit is set and key usage allows signing certs
1932 * 3. for trusted roots, the signature is correct
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02001933 * (for intermediates, the signature is checked and the result reported)
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001934 * 4. pathlen constraints are satisfied
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02001935 *
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +02001936 * If there's a suitable candidate which is also time-valid, return the first
1937 * such. Otherwise, return the first suitable candidate (or NULL if there is
1938 * none).
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02001939 *
1940 * The rationale for this rule is that someone could have a list of trusted
1941 * roots with two versions on the same root with different validity periods.
1942 * (At least one user reported having such a list and wanted it to just work.)
1943 * The reason we don't just require time-validity is that generally there is
1944 * only one version, and if it's expired we want the flags to state that
1945 * rather than NOT_TRUSTED, as would be the case if we required it here.
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001946 *
1947 * The rationale for rule 3 (signature for trusted roots) is that users might
1948 * have two versions of the same CA with different keys in their list, and the
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02001949 * way we select the correct one is by checking the signature (as we don't
1950 * rely on key identifier extensions). (This is one way users might choose to
1951 * handle key rollover, another relies on self-issued certs, see [SIRO].)
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02001952 */
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001953static int x509_crt_find_parent_in(
1954 mbedtls_x509_crt *child,
1955 mbedtls_x509_crt *candidates,
1956 mbedtls_x509_crt **r_parent,
1957 int *r_signature_is_good,
1958 int top,
1959 int path_cnt,
1960 int self_cnt,
1961 mbedtls_x509_crt_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02001962{
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001963 int ret;
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02001964 mbedtls_x509_crt *parent, *fallback_parent = NULL;
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001965 int signature_is_good = 0, fallback_sign_good = 0;
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02001966
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02001967 for( parent = candidates; parent != NULL; parent = parent->next )
1968 {
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001969 /* basic parenting skills (name, CA bit, key usage) */
Manuel Pégourié-Gonnard27e94792017-07-04 00:49:31 +02001970 if( x509_crt_check_parent( child, parent, top ) != 0 )
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02001971 continue;
1972
Manuel Pégourié-Gonnard9c6118c2017-06-29 12:38:42 +02001973 /* +1 because stored max_pathlen is 1 higher that the actual value */
1974 if( parent->max_pathlen > 0 &&
1975 parent->max_pathlen < 1 + path_cnt - self_cnt )
1976 {
1977 continue;
1978 }
1979
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001980 /* Signature */
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02001981 ret = x509_crt_check_signature( child, parent, rs_ctx );
1982
1983#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
1984 if( ret == MBEDTLS_ERR_ECP_IN_PROGRESS ) {
1985 // TODO: stave state
1986 return( ret );
1987 }
1988#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
1989
1990 signature_is_good = ret == 0;
1991 if( top && ! signature_is_good )
Manuel Pégourié-Gonnardf82a4d52017-07-03 19:26:25 +02001992 continue;
Manuel Pégourié-Gonnard2f09d592017-07-03 18:30:43 +02001993
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +02001994 /* optional time check */
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02001995 if( mbedtls_x509_time_is_past( &parent->valid_to ) ||
1996 mbedtls_x509_time_is_future( &parent->valid_from ) )
1997 {
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02001998 if( fallback_parent == NULL )
1999 {
2000 fallback_parent = parent;
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002001 fallback_sign_good = signature_is_good;
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002002 }
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02002003
2004 continue;
2005 }
2006
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02002007 break;
2008 }
2009
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002010 if( parent != NULL )
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002011 {
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002012 *r_parent = parent;
2013 *r_signature_is_good = signature_is_good;
2014 }
2015 else
2016 {
2017 *r_parent = fallback_parent;
2018 *r_signature_is_good = fallback_sign_good;
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002019 }
Manuel Pégourié-Gonnard3e329b82017-06-29 12:55:27 +02002020
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002021 return( 0 );
Manuel Pégourié-Gonnard2f1c33d2017-06-29 12:27:23 +02002022}
2023
2024/*
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002025 * Find a parent in trusted CAs or the provided chain, or return NULL.
2026 *
2027 * Searches in trusted CAs first, and return the first suitable parent found
2028 * (see find_parent_in() for definition of suitable).
2029 */
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002030static int x509_crt_find_parent(
2031 mbedtls_x509_crt *child,
2032 mbedtls_x509_crt *trust_ca,
2033 mbedtls_x509_crt **parent,
2034 int *parent_is_trusted,
2035 int *signature_is_good,
2036 int path_cnt,
2037 int self_cnt,
2038 mbedtls_x509_crt_restart_ctx *rs_ctx )
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002039{
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002040 int ret;
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002041 mbedtls_x509_crt *search_list;
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002042
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002043 *parent_is_trusted = 1;
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002044
2045 while( 1 ) {
2046 search_list = *parent_is_trusted ? trust_ca : child->next;
2047
2048 ret = x509_crt_find_parent_in( child, search_list,
2049 parent, signature_is_good,
2050 *parent_is_trusted,
2051 path_cnt, self_cnt, rs_ctx );
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002052
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002053#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002054 if( ret == MBEDTLS_ERR_ECP_IN_PROGRESS ) {
2055 // TODO: stave state
2056 return( ret );
2057 }
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002058#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2059
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002060 /* stop here if found or already in second iteration */
2061 if( *parent != NULL || *parent_is_trusted == 0 )
2062 break;
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002063
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002064 /* prepare second iteration */
2065 *parent_is_trusted = 0;
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002066 }
Manuel Pégourié-Gonnard18547b52017-08-14 16:11:43 +02002067
2068 /* extra precaution against mistakes in the caller */
2069 if( parent == NULL )
2070 {
2071 parent_is_trusted = 0;
2072 signature_is_good = 0;
2073 }
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002074
2075 return( 0 );
Manuel Pégourié-Gonnard63686122017-07-04 01:01:39 +02002076}
2077
2078/*
Manuel Pégourié-Gonnard27e94792017-07-04 00:49:31 +02002079 * Check if an end-entity certificate is locally trusted
2080 *
2081 * Currently we require such certificates to be self-signed (actually only
2082 * check for self-issued as self-signatures are not checked)
2083 */
2084static int x509_crt_check_ee_locally_trusted(
2085 mbedtls_x509_crt *crt,
2086 mbedtls_x509_crt *trust_ca )
2087{
2088 mbedtls_x509_crt *cur;
2089
2090 /* must be self-issued */
2091 if( x509_name_cmp( &crt->issuer, &crt->subject ) != 0 )
2092 return( -1 );
2093
2094 /* look for an exact match with trusted cert */
2095 for( cur = trust_ca; cur != NULL; cur = cur->next )
2096 {
2097 if( crt->raw.len == cur->raw.len &&
2098 memcmp( crt->raw.p, cur->raw.p, crt->raw.len ) == 0 )
2099 {
2100 return( 0 );
2101 }
2102 }
2103
2104 /* too bad */
2105 return( -1 );
2106}
2107
2108/*
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002109 * Build and verify a certificate chain
Manuel Pégourié-Gonnard35407c72017-06-29 10:45:25 +02002110 *
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002111 * Given a peer-provided list of certificates EE, C1, ..., Cn and
2112 * a list of trusted certs R1, ... Rp, try to build and verify a chain
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +02002113 * EE, Ci1, ... Ciq [, Rj]
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002114 * such that every cert in the chain is a child of the next one,
2115 * jumping to a trusted root as early as possible.
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02002116 *
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002117 * Verify that chain and return it with flags for all issues found.
2118 *
2119 * Special cases:
2120 * - EE == Rj -> return a one-element list containing it
2121 * - EE, Ci1, ..., Ciq cannot be continued with a trusted root
2122 * -> return that chain with NOT_TRUSTED set on Ciq
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02002123 *
Manuel Pégourié-Gonnardd19a41d2017-07-14 11:05:59 +02002124 * Tests for (aspects of) this function should include at least:
2125 * - trusted EE
2126 * - EE -> trusted root
2127 * - EE -> intermedate CA -> trusted root
2128 * - if relevant: EE untrusted
2129 * - if relevant: EE -> intermediate, untrusted
2130 * with the aspect under test checked at each relevant level (EE, int, root).
2131 * For some aspects longer chains are required, but usually length 2 is
2132 * enough (but length 1 is not in general).
2133 *
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02002134 * Arguments:
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002135 * - [in] crt: the cert list EE, C1, ..., Cn
2136 * - [in] trust_ca: the trusted list R1, ..., Rp
2137 * - [in] ca_crl, profile: as in verify_with_profile()
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002138 * - [out] ver_chain: the built and verified chain
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002139 *
2140 * Return value:
2141 * - non-zero if the chain could not be fully built and examined
2142 * - 0 is the chain was successfully built and examined,
2143 * even if it was found to be invalid
Manuel Pégourié-Gonnard35407c72017-06-29 10:45:25 +02002144 */
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02002145static int x509_crt_verify_chain(
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002146 mbedtls_x509_crt *crt,
2147 mbedtls_x509_crt *trust_ca,
2148 mbedtls_x509_crl *ca_crl,
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02002149 const mbedtls_x509_crt_profile *profile,
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002150 mbedtls_x509_crt_verify_chain *ver_chain,
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002151 mbedtls_x509_crt_restart_ctx *rs_ctx )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002152{
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002153 int ret;
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002154 uint32_t *flags;
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002155 mbedtls_x509_crt_verify_chain_item *cur;
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002156 mbedtls_x509_crt *child;
Manuel Pégourié-Gonnard58dcd2d2017-07-03 21:35:04 +02002157 mbedtls_x509_crt *parent;
Manuel Pégourié-Gonnard6e786742017-07-03 23:47:44 +02002158 int parent_is_trusted = 0;
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002159 int child_is_trusted = 0;
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002160 int signature_is_good = 0;
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002161 int self_cnt = 0;
Manuel Pégourié-Gonnard8f8c2822017-07-03 21:25:10 +02002162
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002163 child = crt;
Manuel Pégourié-Gonnardf86f4912017-07-05 16:43:44 +02002164
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002165 while( 1 ) {
2166 /* Add certificate to the verification chain */
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002167 cur = &ver_chain->items[ver_chain->len];
2168 cur->crt = child;
2169 flags = &cur->flags;
2170 ver_chain->len++;
Manuel Pégourié-Gonnard66fac752017-07-03 21:39:21 +02002171
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002172 /* Check time-validity (all certificates) */
2173 if( mbedtls_x509_time_is_past( &child->valid_to ) )
2174 *flags |= MBEDTLS_X509_BADCERT_EXPIRED;
Manuel Pégourié-Gonnard66fac752017-07-03 21:39:21 +02002175
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002176 if( mbedtls_x509_time_is_future( &child->valid_from ) )
2177 *flags |= MBEDTLS_X509_BADCERT_FUTURE;
Manuel Pégourié-Gonnardcb396102017-07-04 00:00:24 +02002178
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002179 /* Stop here for trusted roots (but not for trusted EE certs) */
2180 if( child_is_trusted )
2181 return( 0 );
Manuel Pégourié-Gonnard66fac752017-07-03 21:39:21 +02002182
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002183 /* Check signature algorithm: MD & PK algs */
2184 if( x509_profile_check_md_alg( profile, child->sig_md ) != 0 )
2185 *flags |= MBEDTLS_X509_BADCERT_BAD_MD;
Manuel Pégourié-Gonnard66fac752017-07-03 21:39:21 +02002186
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002187 if( x509_profile_check_pk_alg( profile, child->sig_pk ) != 0 )
2188 *flags |= MBEDTLS_X509_BADCERT_BAD_PK;
Manuel Pégourié-Gonnard27e94792017-07-04 00:49:31 +02002189
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002190 /* Special case: EE certs that are locally trusted */
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002191 if( ver_chain->len == 1 &&
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002192 x509_crt_check_ee_locally_trusted( child, trust_ca ) == 0 )
2193 {
2194 return( 0 );
2195 }
Manuel Pégourié-Gonnard8f8c2822017-07-03 21:25:10 +02002196
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002197 /* Look for a parent in trusted CAs or up the chain */
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002198 ret = x509_crt_find_parent( child, trust_ca, &parent,
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002199 &parent_is_trusted, &signature_is_good,
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002200 ver_chain->len - 1, self_cnt, rs_ctx );
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002201
2202#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
2203 if( ret == MBEDTLS_ERR_ECP_IN_PROGRESS ) {
2204 // TODO: stave state
2205 return( ret );
2206#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2207 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002208
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002209 /* No parent? We're done here */
2210 if( parent == NULL )
2211 {
2212 *flags |= MBEDTLS_X509_BADCERT_NOT_TRUSTED;
2213 return( 0 );
2214 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002215
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002216 /* Count intermediate self-issued (not necessarily self-signed) certs.
2217 * These can occur with some strategies for key rollover, see [SIRO],
2218 * and should be excluded from max_pathlen checks. */
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002219 if( ver_chain->len != 1 &&
Manuel Pégourié-Gonnard24611f92017-08-09 10:28:07 +02002220 x509_name_cmp( &child->issuer, &child->subject ) == 0 )
2221 {
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002222 self_cnt++;
Manuel Pégourié-Gonnard24611f92017-08-09 10:28:07 +02002223 }
Manuel Pégourié-Gonnardfd6c85c2014-11-20 16:34:20 +01002224
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002225 /* path_cnt is 0 for the first intermediate CA,
2226 * and if parent is trusted it's not an intermediate CA */
2227 if( ! parent_is_trusted &&
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002228 ver_chain->len > MBEDTLS_X509_MAX_INTERMEDIATE_CA )
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002229 {
2230 /* return immediately to avoid overflow the chain array */
2231 return( MBEDTLS_ERR_X509_FATAL_ERROR );
2232 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002233
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002234 /* signature was check while searching parent */
2235 if( ! signature_is_good )
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002236 *flags |= MBEDTLS_X509_BADCERT_NOT_TRUSTED;
2237
2238 /* check size of signing key */
2239 if( x509_profile_check_key( profile, child->sig_pk, &parent->pk ) != 0 )
2240 *flags |= MBEDTLS_X509_BADCERT_BAD_KEY;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002241
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002242#if defined(MBEDTLS_X509_CRL_PARSE_C)
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002243 /* Check trusted CA's CRL for the given crt */
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +02002244 *flags |= x509_crt_verifycrl( child, parent, ca_crl, profile );
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002245#else
2246 (void) ca_crl;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002247#endif
2248
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002249 /* prepare for next iteration */
2250 child = parent;
2251 parent = NULL;
2252 child_is_trusted = parent_is_trusted;
Manuel Pégourié-Gonnardbe4ff422017-07-14 12:04:14 +02002253 signature_is_good = 0;
Manuel Pégourié-Gonnardce6e52f2017-07-05 17:05:03 +02002254 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002255}
2256
2257/*
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002258 * Check for CN match
2259 */
2260static int x509_crt_check_cn( const mbedtls_x509_buf *name,
2261 const char *cn, size_t cn_len )
2262{
2263 /* try exact match */
2264 if( name->len == cn_len &&
2265 x509_memcasecmp( cn, name->p, cn_len ) == 0 )
2266 {
2267 return( 0 );
2268 }
2269
2270 /* try wildcard match */
2271 if( name->len > 2 &&
2272 memcmp( name->p, "*.", 2 ) == 0 &&
2273 x509_check_wildcard( cn, name ) == 0 )
2274 {
2275 return( 0 );
2276 }
2277
2278 return( -1 );
2279}
2280
2281/*
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002282 * Verify the requested CN - only call this if cn is not NULL!
2283 */
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002284static void x509_crt_verify_name( const mbedtls_x509_crt *crt,
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002285 const char *cn,
2286 uint32_t *flags )
2287{
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002288 const mbedtls_x509_name *name;
2289 const mbedtls_x509_sequence *cur;
2290 size_t cn_len = strlen( cn );
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002291
2292 if( crt->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME )
2293 {
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002294 for( cur = &crt->subject_alt_names; cur != NULL; cur = cur->next )
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002295 {
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002296 if( x509_crt_check_cn( &cur->buf, cn, cn_len ) == 0 )
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002297 break;
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002298 }
2299
2300 if( cur == NULL )
2301 *flags |= MBEDTLS_X509_BADCERT_CN_MISMATCH;
2302 }
2303 else
2304 {
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002305 for( name = &crt->subject; name != NULL; name = name->next )
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002306 {
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002307 if( MBEDTLS_OID_CMP( MBEDTLS_OID_AT_CN, &name->oid ) == 0 &&
2308 x509_crt_check_cn( &name->val, cn, cn_len ) == 0 )
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002309 {
Manuel Pégourié-Gonnarda468eb12017-07-04 01:31:59 +02002310 break;
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002311 }
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002312 }
2313
2314 if( name == NULL )
2315 *flags |= MBEDTLS_X509_BADCERT_CN_MISMATCH;
2316 }
2317}
2318
2319/*
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002320 * Merge the flags for all certs in the chain, after calling callback
2321 */
2322static int x509_crt_merge_flags_with_cb(
2323 uint32_t *flags,
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002324 const mbedtls_x509_crt_verify_chain *ver_chain,
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002325 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *),
2326 void *p_vrfy )
2327{
2328 int ret;
Manuel Pégourié-Gonnard505c3952017-07-05 17:36:47 +02002329 size_t i;
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002330 uint32_t cur_flags;
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002331 const mbedtls_x509_crt_verify_chain_item *cur;
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002332
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002333 for( i = ver_chain->len; i != 0; --i )
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002334 {
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002335 cur = &ver_chain->items[i-1];
2336 cur_flags = cur->flags;
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002337
2338 if( NULL != f_vrfy )
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002339 if( ( ret = f_vrfy( p_vrfy, cur->crt, i-1, &cur_flags ) ) != 0 )
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002340 return( ret );
2341
2342 *flags |= cur_flags;
2343 }
2344
2345 return( 0 );
2346}
2347
2348/*
Manuel Pégourié-Gonnardbc3f44a2017-07-11 11:02:20 +02002349 * Verify the certificate validity (default profile, not restartable)
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002350 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002351int mbedtls_x509_crt_verify( mbedtls_x509_crt *crt,
2352 mbedtls_x509_crt *trust_ca,
2353 mbedtls_x509_crl *ca_crl,
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02002354 const char *cn, uint32_t *flags,
2355 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *),
Paul Bakkerddf26b42013-09-18 13:46:23 +02002356 void *p_vrfy )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002357{
Manuel Pégourié-Gonnardbc3f44a2017-07-11 11:02:20 +02002358 return( mbedtls_x509_crt_verify_restartable( crt, trust_ca, ca_crl,
2359 &mbedtls_x509_crt_profile_default, cn, flags,
2360 f_vrfy, p_vrfy, NULL ) );
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02002361}
2362
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02002363/*
Manuel Pégourié-Gonnardbc3f44a2017-07-11 11:02:20 +02002364 * Verify the certificate validity (user-chosen profile, not restartable)
Manuel Pégourié-Gonnard95051642015-06-15 10:39:46 +02002365 */
2366int mbedtls_x509_crt_verify_with_profile( mbedtls_x509_crt *crt,
2367 mbedtls_x509_crt *trust_ca,
2368 mbedtls_x509_crl *ca_crl,
2369 const mbedtls_x509_crt_profile *profile,
2370 const char *cn, uint32_t *flags,
2371 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *),
2372 void *p_vrfy )
2373{
Manuel Pégourié-Gonnardbc3f44a2017-07-11 11:02:20 +02002374 return( mbedtls_x509_crt_verify_restartable( crt, trust_ca, ca_crl,
2375 profile, cn, flags, f_vrfy, p_vrfy, NULL ) );
2376}
2377
2378/*
2379 * Verify the certificate validity, with profile, restartable version
2380 *
2381 * This function:
2382 * - checks the requested CN (if any)
2383 * - checks the type and size of the EE cert's key,
2384 * as that isn't done as part of chain building/verification currently
2385 * - builds and verifies the chain
2386 * - then calls the callback and merges the flags
2387 */
2388int mbedtls_x509_crt_verify_restartable( mbedtls_x509_crt *crt,
2389 mbedtls_x509_crt *trust_ca,
2390 mbedtls_x509_crl *ca_crl,
2391 const mbedtls_x509_crt_profile *profile,
2392 const char *cn, uint32_t *flags,
2393 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *),
2394 void *p_vrfy,
2395 mbedtls_x509_crt_restart_ctx *rs_ctx )
2396{
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002397 int ret;
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002398 mbedtls_pk_type_t pk_type;
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002399 mbedtls_x509_crt_verify_chain ver_chain;
2400 uint32_t *ee_flags = &ver_chain.items[0].flags;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002401
2402 *flags = 0;
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002403 memset( &ver_chain, 0, sizeof( ver_chain ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002404
Manuel Pégourié-Gonnardd15795a2017-06-22 12:19:27 +02002405 if( profile == NULL )
2406 {
2407 ret = MBEDTLS_ERR_X509_BAD_INPUT_DATA;
2408 goto exit;
2409 }
2410
Manuel Pégourié-Gonnard1300e992017-07-04 01:13:44 +02002411 /* check name if requested */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002412 if( cn != NULL )
Manuel Pégourié-Gonnardc547d1a2017-07-05 13:28:45 +02002413 x509_crt_verify_name( crt, cn, ee_flags );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002414
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002415 /* Check the type and size of the key */
2416 pk_type = mbedtls_pk_get_type( &crt->pk );
2417
2418 if( x509_profile_check_pk_alg( profile, pk_type ) != 0 )
Manuel Pégourié-Gonnardc547d1a2017-07-05 13:28:45 +02002419 *ee_flags |= MBEDTLS_X509_BADCERT_BAD_PK;
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002420
2421 if( x509_profile_check_key( profile, pk_type, &crt->pk ) != 0 )
Manuel Pégourié-Gonnardc547d1a2017-07-05 13:28:45 +02002422 *ee_flags |= MBEDTLS_X509_BADCERT_BAD_KEY;
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002423
Manuel Pégourié-Gonnardbdc54402017-07-04 00:33:39 +02002424 /* Check the chain */
Manuel Pégourié-Gonnard505c3952017-07-05 17:36:47 +02002425 ret = x509_crt_verify_chain( crt, trust_ca, ca_crl, profile,
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002426 &ver_chain, rs_ctx );
Manuel Pégourié-Gonnarda4a5d1d2017-07-17 10:26:19 +02002427
2428#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
2429 if( ret == MBEDTLS_ERR_ECP_IN_PROGRESS ) {
2430 // TODO: stave state
2431 return( ret );
2432 }
2433#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2434
Manuel Pégourié-Gonnardc547d1a2017-07-05 13:28:45 +02002435 if( ret != 0 )
2436 goto exit;
2437
Manuel Pégourié-Gonnarda707e1d2017-07-05 17:18:42 +02002438 /* Build final flags, calling callback on the way if any */
Manuel Pégourié-Gonnardc11e4ba2017-08-14 17:17:14 +02002439 ret = x509_crt_merge_flags_with_cb( flags, &ver_chain, f_vrfy, p_vrfy );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002440
Manuel Pégourié-Gonnardd15795a2017-06-22 12:19:27 +02002441exit:
Manuel Pégourié-Gonnard9107b5f2017-07-06 12:16:25 +02002442 /* prevent misuse of the vrfy callback - VERIFY_FAILED would be ignored by
2443 * the SSL module for authmode optional, but non-zero return from the
2444 * callback means a fatal error so it shouldn't be ignored */
Manuel Pégourié-Gonnard31458a12017-06-26 10:11:49 +02002445 if( ret == MBEDTLS_ERR_X509_CERT_VERIFY_FAILED )
2446 ret = MBEDTLS_ERR_X509_FATAL_ERROR;
2447
Manuel Pégourié-Gonnardd15795a2017-06-22 12:19:27 +02002448 if( ret != 0 )
2449 {
2450 *flags = (uint32_t) -1;
2451 return( ret );
2452 }
2453
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002454 if( *flags != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002455 return( MBEDTLS_ERR_X509_CERT_VERIFY_FAILED );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002456
2457 return( 0 );
2458}
2459
2460/*
Paul Bakker369d2eb2013-09-18 11:58:25 +02002461 * Initialize a certificate chain
2462 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002463void mbedtls_x509_crt_init( mbedtls_x509_crt *crt )
Paul Bakker369d2eb2013-09-18 11:58:25 +02002464{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002465 memset( crt, 0, sizeof(mbedtls_x509_crt) );
Paul Bakker369d2eb2013-09-18 11:58:25 +02002466}
2467
2468/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002469 * Unallocate all certificate data
2470 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002471void mbedtls_x509_crt_free( mbedtls_x509_crt *crt )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002472{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002473 mbedtls_x509_crt *cert_cur = crt;
2474 mbedtls_x509_crt *cert_prv;
2475 mbedtls_x509_name *name_cur;
2476 mbedtls_x509_name *name_prv;
2477 mbedtls_x509_sequence *seq_cur;
2478 mbedtls_x509_sequence *seq_prv;
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002479
2480 if( crt == NULL )
2481 return;
2482
2483 do
2484 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002485 mbedtls_pk_free( &cert_cur->pk );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002486
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002487#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
2488 mbedtls_free( cert_cur->sig_opts );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +02002489#endif
2490
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002491 name_cur = cert_cur->issuer.next;
2492 while( name_cur != NULL )
2493 {
2494 name_prv = name_cur;
2495 name_cur = name_cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002496 mbedtls_zeroize( name_prv, sizeof( mbedtls_x509_name ) );
2497 mbedtls_free( name_prv );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002498 }
2499
2500 name_cur = cert_cur->subject.next;
2501 while( name_cur != NULL )
2502 {
2503 name_prv = name_cur;
2504 name_cur = name_cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002505 mbedtls_zeroize( name_prv, sizeof( mbedtls_x509_name ) );
2506 mbedtls_free( name_prv );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002507 }
2508
2509 seq_cur = cert_cur->ext_key_usage.next;
2510 while( seq_cur != NULL )
2511 {
2512 seq_prv = seq_cur;
2513 seq_cur = seq_cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002514 mbedtls_zeroize( seq_prv, sizeof( mbedtls_x509_sequence ) );
2515 mbedtls_free( seq_prv );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002516 }
2517
2518 seq_cur = cert_cur->subject_alt_names.next;
2519 while( seq_cur != NULL )
2520 {
2521 seq_prv = seq_cur;
2522 seq_cur = seq_cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002523 mbedtls_zeroize( seq_prv, sizeof( mbedtls_x509_sequence ) );
2524 mbedtls_free( seq_prv );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002525 }
2526
2527 if( cert_cur->raw.p != NULL )
2528 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002529 mbedtls_zeroize( cert_cur->raw.p, cert_cur->raw.len );
2530 mbedtls_free( cert_cur->raw.p );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002531 }
2532
2533 cert_cur = cert_cur->next;
2534 }
2535 while( cert_cur != NULL );
2536
2537 cert_cur = crt;
2538 do
2539 {
2540 cert_prv = cert_cur;
2541 cert_cur = cert_cur->next;
2542
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002543 mbedtls_zeroize( cert_prv, sizeof( mbedtls_x509_crt ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002544 if( cert_prv != crt )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002545 mbedtls_free( cert_prv );
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002546 }
2547 while( cert_cur != NULL );
2548}
2549
Manuel Pégourié-Gonnardbc3f44a2017-07-11 11:02:20 +02002550#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
2551/*
2552 * Initialize a restart context
2553 */
2554void mbedtls_x509_crt_restart_init( mbedtls_x509_crt_restart_ctx *ctx )
2555{
2556 mbedtls_ecdsa_restart_init( &ctx->ecdsa );
2557}
2558
2559/*
2560 * Free the components of a restart context
2561 */
2562void mbedtls_x509_crt_restart_free( mbedtls_x509_crt_restart_ctx *ctx )
2563{
2564 if( ctx == NULL )
2565 return;
2566
2567 mbedtls_ecdsa_restart_free( &ctx->ecdsa );
2568}
2569#endif /* MBEDTLS_ECDSA_C && MBEDTLS_ECP_RESTARTABLE */
2570
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002571#endif /* MBEDTLS_X509_CRT_PARSE_C */