blob: ca2e907ef3b4e5af9d3421ca46e4e0b9aefb3245 [file] [log] [blame]
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001/*
Manuel Pégourié-Gonnard1c082f32014-06-12 22:34:55 +02002 * X.509 common functions for parsing and verification
Paul Bakker7c6b2c32013-09-16 13:49:26 +02003 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
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 */
19/*
20 * The ITU-T X.509 standard defines a certificate format for PKI.
21 *
Manuel Pégourié-Gonnard1c082f32014-06-12 22:34:55 +020022 * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs)
23 * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs)
24 * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020025 *
26 * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf
27 * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf
28 */
29
Gilles Peskinedb09ef62020-06-03 01:43:33 +020030#include "common.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020031
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020032#if defined(MBEDTLS_X509_USE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020033
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000034#include "mbedtls/x509.h"
35#include "mbedtls/asn1.h"
Janos Follath73c616b2019-12-18 15:07:04 +000036#include "mbedtls/error.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000037#include "mbedtls/oid.h"
Rich Evans00ab4702015-02-06 13:43:58 +000038
Rich Evans36796df2015-02-12 18:27:14 +000039#include <stdio.h>
Rich Evans00ab4702015-02-06 13:43:58 +000040#include <string.h>
41
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020042#if defined(MBEDTLS_PEM_PARSE_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000043#include "mbedtls/pem.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020044#endif
45
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000046#include "mbedtls/platform.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020047
Simon Butcherb5b6af22016-07-13 14:46:18 +010048#if defined(MBEDTLS_HAVE_TIME)
49#include "mbedtls/platform_time.h"
50#endif
Nicholas Wilson512b4ee2017-12-05 12:07:33 +000051#if defined(MBEDTLS_HAVE_TIME_DATE)
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010052#include "mbedtls/platform_util.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020053#include <time.h>
54#endif
55
Manuel Pégourié-Gonnard07018f92022-09-15 11:29:35 +020056#include "mbedtls/legacy_or_psa.h"
Przemek Stekielfd183662022-08-02 15:29:20 +020057
Hanno Becker1eeca412018-10-15 12:01:35 +010058#define CHECK(code) if( ( ret = ( code ) ) != 0 ){ return( ret ); }
59#define CHECK_RANGE(min, max, val) \
60 do \
61 { \
62 if( ( val ) < ( min ) || ( val ) > ( max ) ) \
63 { \
64 return( ret ); \
65 } \
66 } while( 0 )
Rich Evans7d5a55a2015-02-13 11:48:02 +000067
Paul Bakker7c6b2c32013-09-16 13:49:26 +020068/*
69 * CertificateSerialNumber ::= INTEGER
70 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020071int mbedtls_x509_get_serial( unsigned char **p, const unsigned char *end,
72 mbedtls_x509_buf *serial )
Paul Bakker7c6b2c32013-09-16 13:49:26 +020073{
Janos Follath865b3eb2019-12-16 11:46:15 +000074 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020075
76 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +010077 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL,
78 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +020079
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080 if( **p != ( MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_PRIMITIVE | 2 ) &&
81 **p != MBEDTLS_ASN1_INTEGER )
Chris Jones9f7a6932021-04-14 12:12:09 +010082 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL,
83 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +020084
85 serial->tag = *(*p)++;
86
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020087 if( ( ret = mbedtls_asn1_get_len( p, end, &serial->len ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +010088 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +020089
90 serial->p = *p;
91 *p += serial->len;
92
93 return( 0 );
94}
95
96/* Get an algorithm identifier without parameters (eg for signatures)
97 *
98 * AlgorithmIdentifier ::= SEQUENCE {
99 * algorithm OBJECT IDENTIFIER,
100 * parameters ANY DEFINED BY algorithm OPTIONAL }
101 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200102int mbedtls_x509_get_alg_null( unsigned char **p, const unsigned char *end,
103 mbedtls_x509_buf *alg )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200104{
Janos Follath865b3eb2019-12-16 11:46:15 +0000105 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200106
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200107 if( ( ret = mbedtls_asn1_get_alg_null( p, end, alg ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100108 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200109
110 return( 0 );
111}
112
113/*
Antonin Décimo36e89b52019-01-23 15:24:37 +0100114 * Parse an algorithm identifier with (optional) parameters
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100115 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200116int mbedtls_x509_get_alg( unsigned char **p, const unsigned char *end,
117 mbedtls_x509_buf *alg, mbedtls_x509_buf *params )
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100118{
Janos Follath865b3eb2019-12-16 11:46:15 +0000119 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100120
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200121 if( ( ret = mbedtls_asn1_get_alg( p, end, alg, params ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100122 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100123
124 return( 0 );
125}
126
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200127/*
128 * Convert md type to string
129 */
130static inline const char* md_type_to_string( mbedtls_md_type_t md_alg )
131{
132 switch( md_alg )
133 {
Przemek Stekielfd183662022-08-02 15:29:20 +0200134#if defined(MBEDTLS_HAS_ALG_MD5_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200135 case MBEDTLS_MD_MD5:
136 return( "MD5" );
137#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200138#if defined(MBEDTLS_HAS_ALG_SHA_1_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200139 case MBEDTLS_MD_SHA1:
140 return( "SHA1" );
141#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200142#if defined(MBEDTLS_HAS_ALG_SHA_224_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200143 case MBEDTLS_MD_SHA224:
144 return( "SHA224" );
145#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200146#if defined(MBEDTLS_HAS_ALG_SHA_256_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200147 case MBEDTLS_MD_SHA256:
148 return( "SHA256" );
149#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200150#if defined(MBEDTLS_HAS_ALG_SHA_384_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200151 case MBEDTLS_MD_SHA384:
152 return( "SHA384" );
153#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200154#if defined(MBEDTLS_HAS_ALG_SHA_512_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200155 case MBEDTLS_MD_SHA512:
156 return( "SHA512" );
157#endif
Przemek Stekielfd183662022-08-02 15:29:20 +0200158#if defined(MBEDTLS_HAS_ALG_RIPEMD160_VIA_MD_OR_PSA)
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200159 case MBEDTLS_MD_RIPEMD160:
160 return( "RIPEMD160" );
161#endif
162 case MBEDTLS_MD_NONE:
163 return( NULL );
164 default:
165 return( NULL );
166 }
167}
168
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200169#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100170/*
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100171 * HashAlgorithm ::= AlgorithmIdentifier
172 *
173 * AlgorithmIdentifier ::= SEQUENCE {
174 * algorithm OBJECT IDENTIFIER,
175 * parameters ANY DEFINED BY algorithm OPTIONAL }
176 *
177 * For HashAlgorithm, parameters MUST be NULL or absent.
178 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200179static int x509_get_hash_alg( const mbedtls_x509_buf *alg, mbedtls_md_type_t *md_alg )
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100180{
Janos Follath865b3eb2019-12-16 11:46:15 +0000181 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100182 unsigned char *p;
183 const unsigned char *end;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200184 mbedtls_x509_buf md_oid;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100185 size_t len;
186
187 /* Make sure we got a SEQUENCE and setup bounds */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200188 if( alg->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
Chris Jones9f7a6932021-04-14 12:12:09 +0100189 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
190 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100191
Andrzej Kurekfeaebc52020-07-16 04:37:41 -0400192 p = alg->p;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100193 end = p + alg->len;
194
195 if( p >= end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100196 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
197 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100198
199 /* Parse md_oid */
200 md_oid.tag = *p;
201
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200202 if( ( ret = mbedtls_asn1_get_tag( &p, end, &md_oid.len, MBEDTLS_ASN1_OID ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100203 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100204
205 md_oid.p = p;
206 p += md_oid.len;
207
208 /* Get md_alg from md_oid */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200209 if( ( ret = mbedtls_oid_get_md_alg( &md_oid, md_alg ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100210 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100211
212 /* Make sure params is absent of NULL */
213 if( p == end )
214 return( 0 );
215
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200216 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len, MBEDTLS_ASN1_NULL ) ) != 0 || len != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100217 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100218
219 if( p != end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100220 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
221 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100222
223 return( 0 );
224}
225
226/*
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100227 * RSASSA-PSS-params ::= SEQUENCE {
228 * hashAlgorithm [0] HashAlgorithm DEFAULT sha1Identifier,
229 * maskGenAlgorithm [1] MaskGenAlgorithm DEFAULT mgf1SHA1Identifier,
230 * saltLength [2] INTEGER DEFAULT 20,
231 * trailerField [3] INTEGER DEFAULT 1 }
232 * -- Note that the tags in this Sequence are explicit.
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200233 *
234 * RFC 4055 (which defines use of RSASSA-PSS in PKIX) states that the value
235 * of trailerField MUST be 1, and PKCS#1 v2.2 doesn't even define any other
236 * option. Enfore this at parsing time.
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100237 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238int mbedtls_x509_get_rsassa_pss_params( const mbedtls_x509_buf *params,
239 mbedtls_md_type_t *md_alg, mbedtls_md_type_t *mgf_md,
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200240 int *salt_len )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100241{
Janos Follath865b3eb2019-12-16 11:46:15 +0000242 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100243 unsigned char *p;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100244 const unsigned char *end, *end2;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100245 size_t len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200246 mbedtls_x509_buf alg_id, alg_params;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100247
248 /* First set everything to defaults */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200249 *md_alg = MBEDTLS_MD_SHA1;
250 *mgf_md = MBEDTLS_MD_SHA1;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100251 *salt_len = 20;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100252
253 /* Make sure params is a SEQUENCE and setup bounds */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254 if( params->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
Chris Jones9f7a6932021-04-14 12:12:09 +0100255 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
256 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100257
258 p = (unsigned char *) params->p;
259 end = p + params->len;
260
261 if( p == end )
262 return( 0 );
263
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100264 /*
265 * HashAlgorithm
266 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200267 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
268 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 0 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100269 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100270 end2 = p + len;
271
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100272 /* HashAlgorithm ::= AlgorithmIdentifier (without parameters) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200273 if( ( ret = mbedtls_x509_get_alg_null( &p, end2, &alg_id ) ) != 0 )
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100274 return( ret );
275
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200276 if( ( ret = mbedtls_oid_get_md_alg( &alg_id, md_alg ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100277 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100278
279 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100280 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
281 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100282 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200283 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Chris Jones9f7a6932021-04-14 12:12:09 +0100284 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100285
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100286 if( p == end )
287 return( 0 );
288
289 /*
290 * MaskGenAlgorithm
291 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200292 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
293 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 1 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100294 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100295 end2 = p + len;
296
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100297 /* MaskGenAlgorithm ::= AlgorithmIdentifier (params = HashAlgorithm) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298 if( ( ret = mbedtls_x509_get_alg( &p, end2, &alg_id, &alg_params ) ) != 0 )
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100299 return( ret );
300
301 /* Only MFG1 is recognised for now */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200302 if( MBEDTLS_OID_CMP( MBEDTLS_OID_MGF1, &alg_id ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100303 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE,
304 MBEDTLS_ERR_OID_NOT_FOUND ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100305
306 /* Parse HashAlgorithm */
307 if( ( ret = x509_get_hash_alg( &alg_params, mgf_md ) ) != 0 )
308 return( ret );
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100309
310 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100311 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
312 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100313 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200314 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Chris Jones9f7a6932021-04-14 12:12:09 +0100315 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100316
317 if( p == end )
318 return( 0 );
319
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100320 /*
321 * salt_len
322 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200323 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
324 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 2 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100325 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100326 end2 = p + len;
327
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200328 if( ( ret = mbedtls_asn1_get_int( &p, end2, salt_len ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100329 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100330
331 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100332 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
333 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100334 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Chris Jones9f7a6932021-04-14 12:12:09 +0100336 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100337
338 if( p == end )
339 return( 0 );
340
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100341 /*
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200342 * trailer_field (if present, must be 1)
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100343 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200344 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
345 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 3 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100346 {
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200347 int trailer_field;
348
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100349 end2 = p + len;
350
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200351 if( ( ret = mbedtls_asn1_get_int( &p, end2, &trailer_field ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100352 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100353
354 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100355 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
356 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200357
358 if( trailer_field != 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200359 return( MBEDTLS_ERR_X509_INVALID_ALG );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100360 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200361 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Chris Jones9f7a6932021-04-14 12:12:09 +0100362 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100363
364 if( p != end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100365 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
366 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100367
368 return( 0 );
369}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200370#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100371
372/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200373 * AttributeTypeAndValue ::= SEQUENCE {
374 * type AttributeType,
375 * value AttributeValue }
376 *
377 * AttributeType ::= OBJECT IDENTIFIER
378 *
379 * AttributeValue ::= ANY DEFINED BY AttributeType
380 */
381static int x509_get_attr_type_value( unsigned char **p,
382 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200383 mbedtls_x509_name *cur )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200384{
Janos Follath865b3eb2019-12-16 11:46:15 +0000385 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200386 size_t len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200387 mbedtls_x509_buf *oid;
388 mbedtls_x509_buf *val;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200389
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200390 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
391 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100392 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200393
Hanno Becker12f62fb2019-02-12 17:22:36 +0000394 end = *p + len;
395
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200396 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100397 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
398 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200399
400 oid = &cur->oid;
401 oid->tag = **p;
402
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200403 if( ( ret = mbedtls_asn1_get_tag( p, end, &oid->len, MBEDTLS_ASN1_OID ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100404 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200405
406 oid->p = *p;
407 *p += oid->len;
408
409 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100410 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
411 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200412
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200413 if( **p != MBEDTLS_ASN1_BMP_STRING && **p != MBEDTLS_ASN1_UTF8_STRING &&
414 **p != MBEDTLS_ASN1_T61_STRING && **p != MBEDTLS_ASN1_PRINTABLE_STRING &&
415 **p != MBEDTLS_ASN1_IA5_STRING && **p != MBEDTLS_ASN1_UNIVERSAL_STRING &&
416 **p != MBEDTLS_ASN1_BIT_STRING )
Chris Jones9f7a6932021-04-14 12:12:09 +0100417 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
418 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200419
420 val = &cur->val;
421 val->tag = *(*p)++;
422
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200423 if( ( ret = mbedtls_asn1_get_len( p, end, &val->len ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100424 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200425
426 val->p = *p;
427 *p += val->len;
428
Hanno Becker12f62fb2019-02-12 17:22:36 +0000429 if( *p != end )
430 {
Chris Jones9f7a6932021-04-14 12:12:09 +0100431 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
432 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Hanno Becker12f62fb2019-02-12 17:22:36 +0000433 }
434
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200435 cur->next = NULL;
436
437 return( 0 );
438}
439
440/*
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000441 * Name ::= CHOICE { -- only one possibility for now --
442 * rdnSequence RDNSequence }
443 *
444 * RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
445 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200446 * RelativeDistinguishedName ::=
447 * SET OF AttributeTypeAndValue
448 *
449 * AttributeTypeAndValue ::= SEQUENCE {
450 * type AttributeType,
451 * value AttributeValue }
452 *
453 * AttributeType ::= OBJECT IDENTIFIER
454 *
455 * AttributeValue ::= ANY DEFINED BY AttributeType
Manuel Pégourié-Gonnard5d861852014-10-17 12:41:41 +0200456 *
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000457 * The data structure is optimized for the common case where each RDN has only
458 * one element, which is represented as a list of AttributeTypeAndValue.
459 * For the general case we still use a flat list, but we mark elements of the
460 * same set so that they are "merged" together in the functions that consume
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200461 * this list, eg mbedtls_x509_dn_gets().
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200462 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200463int mbedtls_x509_get_name( unsigned char **p, const unsigned char *end,
464 mbedtls_x509_name *cur )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200465{
Janos Follath865b3eb2019-12-16 11:46:15 +0000466 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard5d861852014-10-17 12:41:41 +0200467 size_t set_len;
468 const unsigned char *end_set;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200469
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100470 /* don't use recursion, we'd risk stack overflow if not optimized */
471 while( 1 )
472 {
473 /*
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000474 * parse SET
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100475 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200476 if( ( ret = mbedtls_asn1_get_tag( p, end, &set_len,
477 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SET ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100478 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200479
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100480 end_set = *p + set_len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200481
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000482 while( 1 )
483 {
484 if( ( ret = x509_get_attr_type_value( p, end_set, cur ) ) != 0 )
485 return( ret );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200486
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000487 if( *p == end_set )
488 break;
489
Manuel Pégourié-Gonnardeecb43c2015-05-12 12:56:41 +0200490 /* Mark this item as being no the only one in a set */
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000491 cur->next_merged = 1;
492
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200493 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_name ) );
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000494
495 if( cur->next == NULL )
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200496 return( MBEDTLS_ERR_X509_ALLOC_FAILED );
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000497
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000498 cur = cur->next;
499 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200500
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100501 /*
502 * continue until end of SEQUENCE is reached
503 */
504 if( *p == end )
505 return( 0 );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200506
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200507 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_name ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200508
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100509 if( cur->next == NULL )
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200510 return( MBEDTLS_ERR_X509_ALLOC_FAILED );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200511
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100512 cur = cur->next;
513 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200514}
515
Janos Follath87c98072017-02-03 12:36:59 +0000516static int x509_parse_int( unsigned char **p, size_t n, int *res )
517{
Rich Evans7d5a55a2015-02-13 11:48:02 +0000518 *res = 0;
Janos Follath87c98072017-02-03 12:36:59 +0000519
520 for( ; n > 0; --n )
521 {
522 if( ( **p < '0') || ( **p > '9' ) )
523 return ( MBEDTLS_ERR_X509_INVALID_DATE );
524
Rich Evans7d5a55a2015-02-13 11:48:02 +0000525 *res *= 10;
Janos Follath87c98072017-02-03 12:36:59 +0000526 *res += ( *(*p)++ - '0' );
Rich Evans7d5a55a2015-02-13 11:48:02 +0000527 }
Janos Follath87c98072017-02-03 12:36:59 +0000528
529 return( 0 );
Rich Evans7d5a55a2015-02-13 11:48:02 +0000530}
531
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000532static int x509_date_is_valid(const mbedtls_x509_time *t )
Andres AG4b76aec2016-09-23 13:16:02 +0100533{
534 int ret = MBEDTLS_ERR_X509_INVALID_DATE;
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000535 int month_len;
Andres AG4b76aec2016-09-23 13:16:02 +0100536
Hanno Becker61937d42017-04-26 15:01:23 +0100537 CHECK_RANGE( 0, 9999, t->year );
538 CHECK_RANGE( 0, 23, t->hour );
539 CHECK_RANGE( 0, 59, t->min );
540 CHECK_RANGE( 0, 59, t->sec );
Andres AG4b76aec2016-09-23 13:16:02 +0100541
Hanno Becker61937d42017-04-26 15:01:23 +0100542 switch( t->mon )
Andres AG4b76aec2016-09-23 13:16:02 +0100543 {
544 case 1: case 3: case 5: case 7: case 8: case 10: case 12:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000545 month_len = 31;
Andres AG4b76aec2016-09-23 13:16:02 +0100546 break;
547 case 4: case 6: case 9: case 11:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000548 month_len = 30;
Andres AG4b76aec2016-09-23 13:16:02 +0100549 break;
550 case 2:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000551 if( ( !( t->year % 4 ) && t->year % 100 ) ||
552 !( t->year % 400 ) )
553 month_len = 29;
554 else
555 month_len = 28;
Andres AG4b76aec2016-09-23 13:16:02 +0100556 break;
557 default:
558 return( ret );
559 }
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000560 CHECK_RANGE( 1, month_len, t->day );
Andres AG4b76aec2016-09-23 13:16:02 +0100561
562 return( 0 );
563}
564
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200565/*
Janos Follath87c98072017-02-03 12:36:59 +0000566 * Parse an ASN1_UTC_TIME (yearlen=2) or ASN1_GENERALIZED_TIME (yearlen=4)
567 * field.
568 */
569static int x509_parse_time( unsigned char **p, size_t len, size_t yearlen,
Hanno Becker61937d42017-04-26 15:01:23 +0100570 mbedtls_x509_time *tm )
Janos Follath87c98072017-02-03 12:36:59 +0000571{
Janos Follath865b3eb2019-12-16 11:46:15 +0000572 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Janos Follath87c98072017-02-03 12:36:59 +0000573
574 /*
575 * Minimum length is 10 or 12 depending on yearlen
576 */
577 if ( len < yearlen + 8 )
578 return ( MBEDTLS_ERR_X509_INVALID_DATE );
579 len -= yearlen + 8;
580
581 /*
582 * Parse year, month, day, hour, minute
583 */
Hanno Becker61937d42017-04-26 15:01:23 +0100584 CHECK( x509_parse_int( p, yearlen, &tm->year ) );
Janos Follath87c98072017-02-03 12:36:59 +0000585 if ( 2 == yearlen )
586 {
Hanno Becker61937d42017-04-26 15:01:23 +0100587 if ( tm->year < 50 )
588 tm->year += 100;
Janos Follath87c98072017-02-03 12:36:59 +0000589
Hanno Becker61937d42017-04-26 15:01:23 +0100590 tm->year += 1900;
Janos Follath87c98072017-02-03 12:36:59 +0000591 }
592
Hanno Becker61937d42017-04-26 15:01:23 +0100593 CHECK( x509_parse_int( p, 2, &tm->mon ) );
594 CHECK( x509_parse_int( p, 2, &tm->day ) );
595 CHECK( x509_parse_int( p, 2, &tm->hour ) );
596 CHECK( x509_parse_int( p, 2, &tm->min ) );
Janos Follath87c98072017-02-03 12:36:59 +0000597
598 /*
599 * Parse seconds if present
600 */
601 if ( len >= 2 )
602 {
Hanno Becker61937d42017-04-26 15:01:23 +0100603 CHECK( x509_parse_int( p, 2, &tm->sec ) );
Janos Follath87c98072017-02-03 12:36:59 +0000604 len -= 2;
605 }
606 else
607 return ( MBEDTLS_ERR_X509_INVALID_DATE );
608
609 /*
610 * Parse trailing 'Z' if present
611 */
612 if ( 1 == len && 'Z' == **p )
613 {
614 (*p)++;
615 len--;
616 }
617
618 /*
619 * We should have parsed all characters at this point
620 */
621 if ( 0 != len )
622 return ( MBEDTLS_ERR_X509_INVALID_DATE );
623
Hanno Becker61937d42017-04-26 15:01:23 +0100624 CHECK( x509_date_is_valid( tm ) );
Janos Follath87c98072017-02-03 12:36:59 +0000625
626 return ( 0 );
627}
628
629/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200630 * Time ::= CHOICE {
631 * utcTime UTCTime,
632 * generalTime GeneralizedTime }
633 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200634int mbedtls_x509_get_time( unsigned char **p, const unsigned char *end,
Hanno Becker61937d42017-04-26 15:01:23 +0100635 mbedtls_x509_time *tm )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200636{
Janos Follath865b3eb2019-12-16 11:46:15 +0000637 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Janos Follath87c98072017-02-03 12:36:59 +0000638 size_t len, year_len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200639 unsigned char tag;
640
641 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100642 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE,
643 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200644
645 tag = **p;
646
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200647 if( tag == MBEDTLS_ASN1_UTC_TIME )
Janos Follath87c98072017-02-03 12:36:59 +0000648 year_len = 2;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200649 else if( tag == MBEDTLS_ASN1_GENERALIZED_TIME )
Janos Follath87c98072017-02-03 12:36:59 +0000650 year_len = 4;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200651 else
Chris Jones9f7a6932021-04-14 12:12:09 +0100652 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE,
653 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Janos Follath87c98072017-02-03 12:36:59 +0000654
655 (*p)++;
656 ret = mbedtls_asn1_get_len( p, end, &len );
657
658 if( ret != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100659 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE, ret ) );
Janos Follath87c98072017-02-03 12:36:59 +0000660
Hanno Becker61937d42017-04-26 15:01:23 +0100661 return x509_parse_time( p, len, year_len, tm );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200662}
663
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200664int mbedtls_x509_get_sig( unsigned char **p, const unsigned char *end, mbedtls_x509_buf *sig )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200665{
Janos Follath865b3eb2019-12-16 11:46:15 +0000666 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200667 size_t len;
Andres AG4bdbe092016-09-19 16:58:45 +0100668 int tag_type;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200669
670 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100671 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SIGNATURE,
672 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200673
Andres AG4bdbe092016-09-19 16:58:45 +0100674 tag_type = **p;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200675
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200676 if( ( ret = mbedtls_asn1_get_bitstring_null( p, end, &len ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100677 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SIGNATURE, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200678
Andres AG4bdbe092016-09-19 16:58:45 +0100679 sig->tag = tag_type;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200680 sig->len = len;
681 sig->p = *p;
682
683 *p += len;
684
685 return( 0 );
686}
687
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100688/*
689 * Get signature algorithm from alg OID and optional parameters
690 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200691int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params,
692 mbedtls_md_type_t *md_alg, mbedtls_pk_type_t *pk_alg,
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200693 void **sig_opts )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200694{
Janos Follath865b3eb2019-12-16 11:46:15 +0000695 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200696
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200697 if( *sig_opts != NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200698 return( MBEDTLS_ERR_X509_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200699
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700 if( ( ret = mbedtls_oid_get_sig_alg( sig_oid, md_alg, pk_alg ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100701 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200702
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200703#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
704 if( *pk_alg == MBEDTLS_PK_RSASSA_PSS )
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100705 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200706 mbedtls_pk_rsassa_pss_options *pss_opts;
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100707
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200708 pss_opts = mbedtls_calloc( 1, sizeof( mbedtls_pk_rsassa_pss_options ) );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200709 if( pss_opts == NULL )
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200710 return( MBEDTLS_ERR_X509_ALLOC_FAILED );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200711
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200712 ret = mbedtls_x509_get_rsassa_pss_params( sig_params,
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200713 md_alg,
714 &pss_opts->mgf1_hash_id,
715 &pss_opts->expected_salt_len );
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100716 if( ret != 0 )
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200717 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200718 mbedtls_free( pss_opts );
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100719 return( ret );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200720 }
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100721
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200722 *sig_opts = (void *) pss_opts;
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100723 }
724 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200725#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100726 {
727 /* Make sure parameters are absent or NULL */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200728 if( ( sig_params->tag != MBEDTLS_ASN1_NULL && sig_params->tag != 0 ) ||
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100729 sig_params->len != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200730 return( MBEDTLS_ERR_X509_INVALID_ALG );
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100731 }
732
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200733 return( 0 );
734}
735
736/*
737 * X.509 Extensions (No parsing of extensions, pointer should
Brian J Murray1903fb32016-11-06 04:45:15 -0800738 * be either manually updated or extensions should be parsed!)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200739 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200740int mbedtls_x509_get_ext( unsigned char **p, const unsigned char *end,
Hanno Becker6ccfb182019-02-12 11:52:10 +0000741 mbedtls_x509_buf *ext, int tag )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200742{
Janos Follath865b3eb2019-12-16 11:46:15 +0000743 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200744 size_t len;
745
Hanno Becker3cddba82019-02-11 14:33:36 +0000746 /* Extension structure use EXPLICIT tagging. That is, the actual
747 * `Extensions` structure is wrapped by a tag-length pair using
748 * the respective context-specific tag. */
Hanno Becker6ccfb182019-02-12 11:52:10 +0000749 ret = mbedtls_asn1_get_tag( p, end, &ext->len,
750 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | tag );
751 if( ret != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100752 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200753
Hanno Becker6ccfb182019-02-12 11:52:10 +0000754 ext->tag = MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | tag;
755 ext->p = *p;
756 end = *p + ext->len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200757
758 /*
759 * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200760 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200761 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
762 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100763 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200764
765 if( end != *p + len )
Chris Jones9f7a6932021-04-14 12:12:09 +0100766 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS,
767 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200768
769 return( 0 );
770}
771
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200772/*
773 * Store the name in printable form into buf; no more
774 * than size characters will be written
775 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200776int mbedtls_x509_dn_gets( char *buf, size_t size, const mbedtls_x509_name *dn )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200777{
Janos Follath865b3eb2019-12-16 11:46:15 +0000778 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Werner Lewisb33dacd2022-05-20 12:48:46 +0100779 size_t i, j, n;
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000780 unsigned char c, merge = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200781 const mbedtls_x509_name *name;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200782 const char *short_name = NULL;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200783 char s[MBEDTLS_X509_MAX_DN_NAME_SIZE], *p;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200784
785 memset( s, 0, sizeof( s ) );
786
787 name = dn;
788 p = buf;
789 n = size;
790
791 while( name != NULL )
792 {
793 if( !name->oid.p )
794 {
795 name = name->next;
796 continue;
797 }
798
799 if( name != dn )
800 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200801 ret = mbedtls_snprintf( p, n, merge ? " + " : ", " );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200802 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200803 }
804
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200805 ret = mbedtls_oid_get_attr_short_name( &name->oid, &short_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200806
807 if( ret == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200808 ret = mbedtls_snprintf( p, n, "%s=", short_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200809 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200810 ret = mbedtls_snprintf( p, n, "\?\?=" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200811 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200812
Werner Lewisb33dacd2022-05-20 12:48:46 +0100813 for( i = 0, j = 0; i < name->val.len; i++, j++ )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200814 {
Werner Lewisb33dacd2022-05-20 12:48:46 +0100815 if( j >= sizeof( s ) - 1 )
816 return( MBEDTLS_ERR_X509_BUFFER_TOO_SMALL );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200817
818 c = name->val.p[i];
Werner Lewisb33dacd2022-05-20 12:48:46 +0100819 // Special characters requiring escaping, RFC 1779
820 if( c && strchr( ",=+<>#;\"\\", c ) )
821 {
822 if( j + 1 >= sizeof( s ) - 1 )
Werner Lewis9b0e9402022-06-27 12:01:22 +0100823 return( MBEDTLS_ERR_X509_BUFFER_TOO_SMALL );
Werner Lewisb33dacd2022-05-20 12:48:46 +0100824 s[j++] = '\\';
825 }
Koh M. Nakagawa46b87822020-05-16 10:08:09 +0900826 if( c < 32 || c >= 127 )
Werner Lewisb33dacd2022-05-20 12:48:46 +0100827 s[j] = '?';
828 else s[j] = c;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200829 }
Werner Lewisb33dacd2022-05-20 12:48:46 +0100830 s[j] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200831 ret = mbedtls_snprintf( p, n, "%s", s );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200832 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000833
834 merge = name->next_merged;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200835 name = name->next;
836 }
837
838 return( (int) ( size - n ) );
839}
840
841/*
842 * Store the serial in printable form into buf; no more
843 * than size characters will be written
844 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200845int mbedtls_x509_serial_gets( char *buf, size_t size, const mbedtls_x509_buf *serial )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200846{
Janos Follath865b3eb2019-12-16 11:46:15 +0000847 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200848 size_t i, n, nr;
849 char *p;
850
851 p = buf;
852 n = size;
853
854 nr = ( serial->len <= 32 )
855 ? serial->len : 28;
856
857 for( i = 0; i < nr; i++ )
858 {
859 if( i == 0 && nr > 1 && serial->p[i] == 0x0 )
860 continue;
861
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200862 ret = mbedtls_snprintf( p, n, "%02X%s",
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200863 serial->p[i], ( i < nr - 1 ) ? ":" : "" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200864 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200865 }
866
867 if( nr != serial->len )
868 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200869 ret = mbedtls_snprintf( p, n, "...." );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200870 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200871 }
872
873 return( (int) ( size - n ) );
874}
875
Hanno Becker612a2f12020-10-09 09:19:39 +0100876#if !defined(MBEDTLS_X509_REMOVE_INFO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200877/*
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200878 * Helper for writing signature algorithms
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100879 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200880int mbedtls_x509_sig_alg_gets( char *buf, size_t size, const mbedtls_x509_buf *sig_oid,
881 mbedtls_pk_type_t pk_alg, mbedtls_md_type_t md_alg,
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200882 const void *sig_opts )
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100883{
Janos Follath865b3eb2019-12-16 11:46:15 +0000884 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100885 char *p = buf;
886 size_t n = size;
887 const char *desc = NULL;
888
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200889 ret = mbedtls_oid_get_sig_alg_desc( sig_oid, &desc );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100890 if( ret != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200891 ret = mbedtls_snprintf( p, n, "???" );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100892 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200893 ret = mbedtls_snprintf( p, n, "%s", desc );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200894 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100895
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200896#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
897 if( pk_alg == MBEDTLS_PK_RSASSA_PSS )
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100898 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200899 const mbedtls_pk_rsassa_pss_options *pss_opts;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100900
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200901 pss_opts = (const mbedtls_pk_rsassa_pss_options *) sig_opts;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100902
Przemek Stekiel9e30fc92022-06-27 12:48:35 +0200903 const char *name = md_type_to_string( md_alg );
904 const char *mgf_name = md_type_to_string( pss_opts->mgf1_hash_id );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100905
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906 ret = mbedtls_snprintf( p, n, " (%s, MGF1-%s, 0x%02X)",
Przemek Stekiel6230d0d2022-06-27 11:19:04 +0200907 name ? name : "???",
908 mgf_name ? mgf_name : "???",
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200909 (unsigned int) pss_opts->expected_salt_len );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200910 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100911 }
912#else
913 ((void) pk_alg);
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200914 ((void) md_alg);
915 ((void) sig_opts);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200916#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100917
Sander Niemeijeref5087d2014-08-16 12:45:52 +0200918 return( (int)( size - n ) );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100919}
Hanno Becker612a2f12020-10-09 09:19:39 +0100920#endif /* MBEDTLS_X509_REMOVE_INFO */
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100921
922/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200923 * Helper for writing "RSA key size", "EC key size", etc
924 */
Manuel Pégourié-Gonnardfb317c52015-06-18 16:25:56 +0200925int mbedtls_x509_key_size_helper( char *buf, size_t buf_size, const char *name )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200926{
927 char *p = buf;
Manuel Pégourié-Gonnardfb317c52015-06-18 16:25:56 +0200928 size_t n = buf_size;
Janos Follath865b3eb2019-12-16 11:46:15 +0000929 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200930
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200931 ret = mbedtls_snprintf( p, n, "%s key size", name );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200932 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200933
934 return( 0 );
935}
936
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +0200937#if defined(MBEDTLS_HAVE_TIME_DATE)
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200938/*
939 * Set the time structure to the current time.
940 * Return 0 on success, non-zero on failure.
941 */
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200942static int x509_get_current_time( mbedtls_x509_time *now )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100943{
Nicholas Wilson512b4ee2017-12-05 12:07:33 +0000944 struct tm *lt, tm_buf;
SimonBd5800b72016-04-26 07:43:27 +0100945 mbedtls_time_t tt;
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200946 int ret = 0;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200947
SimonBd5800b72016-04-26 07:43:27 +0100948 tt = mbedtls_time( NULL );
Hanno Becker6a739782018-09-05 15:06:19 +0100949 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf );
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200950
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200951 if( lt == NULL )
952 ret = -1;
953 else
954 {
955 now->year = lt->tm_year + 1900;
956 now->mon = lt->tm_mon + 1;
957 now->day = lt->tm_mday;
958 now->hour = lt->tm_hour;
959 now->min = lt->tm_min;
960 now->sec = lt->tm_sec;
961 }
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200962
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200963 return( ret );
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100964}
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200965
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100966/*
967 * Return 0 if before <= after, 1 otherwise
968 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200969static int x509_check_time( const mbedtls_x509_time *before, const mbedtls_x509_time *after )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100970{
971 if( before->year > after->year )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200972 return( 1 );
973
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100974 if( before->year == after->year &&
975 before->mon > after->mon )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200976 return( 1 );
977
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100978 if( before->year == after->year &&
979 before->mon == after->mon &&
980 before->day > after->day )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200981 return( 1 );
982
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100983 if( before->year == after->year &&
984 before->mon == after->mon &&
985 before->day == after->day &&
986 before->hour > after->hour )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200987 return( 1 );
988
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100989 if( before->year == after->year &&
990 before->mon == after->mon &&
991 before->day == after->day &&
992 before->hour == after->hour &&
993 before->min > after->min )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200994 return( 1 );
995
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100996 if( before->year == after->year &&
997 before->mon == after->mon &&
998 before->day == after->day &&
999 before->hour == after->hour &&
1000 before->min == after->min &&
1001 before->sec > after->sec )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001002 return( 1 );
1003
1004 return( 0 );
1005}
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001006
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001007int mbedtls_x509_time_is_past( const mbedtls_x509_time *to )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001008{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001009 mbedtls_x509_time now;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001010
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +02001011 if( x509_get_current_time( &now ) != 0 )
Manuel Pégourié-Gonnarde7e89842015-06-22 19:15:32 +02001012 return( 1 );
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001013
1014 return( x509_check_time( &now, to ) );
1015}
1016
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001017int mbedtls_x509_time_is_future( const mbedtls_x509_time *from )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001018{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001019 mbedtls_x509_time now;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001020
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +02001021 if( x509_get_current_time( &now ) != 0 )
Manuel Pégourié-Gonnarde7e89842015-06-22 19:15:32 +02001022 return( 1 );
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001023
1024 return( x509_check_time( from, &now ) );
1025}
1026
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +02001027#else /* MBEDTLS_HAVE_TIME_DATE */
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001028
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001029int mbedtls_x509_time_is_past( const mbedtls_x509_time *to )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001030{
1031 ((void) to);
1032 return( 0 );
1033}
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001034
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +01001035int mbedtls_x509_time_is_future( const mbedtls_x509_time *from )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +01001036{
1037 ((void) from);
1038 return( 0 );
1039}
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +02001040#endif /* MBEDTLS_HAVE_TIME_DATE */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001041#endif /* MBEDTLS_X509_USE_C */