blob: 0f14aad07b649ea33ceee8352f02bfd88ad885a1 [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é-Gonnard2cf5a7c2015-04-08 12:49:31 +020046#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000047#include "mbedtls/platform.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020048#else
Rich Evans00ab4702015-02-06 13:43:58 +000049#include <stdio.h>
50#include <stdlib.h>
SimonBd5800b72016-04-26 07:43:27 +010051#define mbedtls_free free
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020052#define mbedtls_calloc calloc
SimonBd5800b72016-04-26 07:43:27 +010053#define mbedtls_printf printf
54#define mbedtls_snprintf snprintf
Paul Bakker7c6b2c32013-09-16 13:49:26 +020055#endif
56
Simon Butcherb5b6af22016-07-13 14:46:18 +010057#if defined(MBEDTLS_HAVE_TIME)
58#include "mbedtls/platform_time.h"
59#endif
Nicholas Wilson512b4ee2017-12-05 12:07:33 +000060#if defined(MBEDTLS_HAVE_TIME_DATE)
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010061#include "mbedtls/platform_util.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020062#include <time.h>
63#endif
64
Mateusz Starzyke36f5b12021-07-22 16:43:35 +020065#define CHECK(code) if( ( ret = ( code ) ) != 0 ){ return ret ; }
Hanno Becker1eeca412018-10-15 12:01:35 +010066#define CHECK_RANGE(min, max, val) \
67 do \
68 { \
69 if( ( val ) < ( min ) || ( val ) > ( max ) ) \
70 { \
Mateusz Starzyke36f5b12021-07-22 16:43:35 +020071 return ret ; \
Hanno Becker1eeca412018-10-15 12:01:35 +010072 } \
73 } while( 0 )
Rich Evans7d5a55a2015-02-13 11:48:02 +000074
Paul Bakker7c6b2c32013-09-16 13:49:26 +020075/*
76 * CertificateSerialNumber ::= INTEGER
77 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078int mbedtls_x509_get_serial( unsigned char **p, const unsigned char *end,
79 mbedtls_x509_buf *serial )
Paul Bakker7c6b2c32013-09-16 13:49:26 +020080{
Janos Follath865b3eb2019-12-16 11:46:15 +000081 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020082
83 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +010084 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL,
85 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +020086
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020087 if( **p != ( MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_PRIMITIVE | 2 ) &&
88 **p != MBEDTLS_ASN1_INTEGER )
Chris Jones9f7a6932021-04-14 12:12:09 +010089 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL,
90 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +020091
92 serial->tag = *(*p)++;
93
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094 if( ( ret = mbedtls_asn1_get_len( p, end, &serial->len ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +020095 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SERIAL, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020096
97 serial->p = *p;
98 *p += serial->len;
99
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200100 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200101}
102
103/* Get an algorithm identifier without parameters (eg for signatures)
104 *
105 * AlgorithmIdentifier ::= SEQUENCE {
106 * algorithm OBJECT IDENTIFIER,
107 * parameters ANY DEFINED BY algorithm OPTIONAL }
108 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109int mbedtls_x509_get_alg_null( unsigned char **p, const unsigned char *end,
110 mbedtls_x509_buf *alg )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200111{
Janos Follath865b3eb2019-12-16 11:46:15 +0000112 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200113
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200114 if( ( ret = mbedtls_asn1_get_alg_null( p, end, alg ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200115 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200116
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200117 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200118}
119
120/*
Antonin Décimo36e89b52019-01-23 15:24:37 +0100121 * Parse an algorithm identifier with (optional) parameters
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100122 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200123int mbedtls_x509_get_alg( unsigned char **p, const unsigned char *end,
124 mbedtls_x509_buf *alg, mbedtls_x509_buf *params )
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100125{
Janos Follath865b3eb2019-12-16 11:46:15 +0000126 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100127
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200128 if( ( ret = mbedtls_asn1_get_alg( p, end, alg, params ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200129 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100130
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200131 return 0 ;
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100132}
133
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200134#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
Manuel Pégourié-Gonnard59a75d52014-01-22 10:12:57 +0100135/*
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100136 * HashAlgorithm ::= AlgorithmIdentifier
137 *
138 * AlgorithmIdentifier ::= SEQUENCE {
139 * algorithm OBJECT IDENTIFIER,
140 * parameters ANY DEFINED BY algorithm OPTIONAL }
141 *
142 * For HashAlgorithm, parameters MUST be NULL or absent.
143 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200144static 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 +0100145{
Janos Follath865b3eb2019-12-16 11:46:15 +0000146 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100147 unsigned char *p;
148 const unsigned char *end;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200149 mbedtls_x509_buf md_oid;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100150 size_t len;
151
152 /* Make sure we got a SEQUENCE and setup bounds */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200153 if( alg->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
Chris Jones9f7a6932021-04-14 12:12:09 +0100154 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
155 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100156
Andrzej Kurekfeaebc52020-07-16 04:37:41 -0400157 p = alg->p;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100158 end = p + alg->len;
159
160 if( p >= end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100161 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
162 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100163
164 /* Parse md_oid */
165 md_oid.tag = *p;
166
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200167 if( ( ret = mbedtls_asn1_get_tag( &p, end, &md_oid.len, MBEDTLS_ASN1_OID ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200168 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100169
170 md_oid.p = p;
171 p += md_oid.len;
172
173 /* Get md_alg from md_oid */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174 if( ( ret = mbedtls_oid_get_md_alg( &md_oid, md_alg ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200175 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100176
177 /* Make sure params is absent of NULL */
178 if( p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200179 return 0 ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100180
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200181 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len, MBEDTLS_ASN1_NULL ) ) != 0 || len != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200182 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100183
184 if( p != end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100185 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
186 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100187
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200188 return 0 ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100189}
190
191/*
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100192 * RSASSA-PSS-params ::= SEQUENCE {
193 * hashAlgorithm [0] HashAlgorithm DEFAULT sha1Identifier,
194 * maskGenAlgorithm [1] MaskGenAlgorithm DEFAULT mgf1SHA1Identifier,
195 * saltLength [2] INTEGER DEFAULT 20,
196 * trailerField [3] INTEGER DEFAULT 1 }
197 * -- Note that the tags in this Sequence are explicit.
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200198 *
199 * RFC 4055 (which defines use of RSASSA-PSS in PKIX) states that the value
200 * of trailerField MUST be 1, and PKCS#1 v2.2 doesn't even define any other
201 * option. Enfore this at parsing time.
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100202 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200203int mbedtls_x509_get_rsassa_pss_params( const mbedtls_x509_buf *params,
204 mbedtls_md_type_t *md_alg, mbedtls_md_type_t *mgf_md,
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200205 int *salt_len )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100206{
Janos Follath865b3eb2019-12-16 11:46:15 +0000207 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100208 unsigned char *p;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100209 const unsigned char *end, *end2;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100210 size_t len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200211 mbedtls_x509_buf alg_id, alg_params;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100212
213 /* First set everything to defaults */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200214 *md_alg = MBEDTLS_MD_SHA1;
215 *mgf_md = MBEDTLS_MD_SHA1;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100216 *salt_len = 20;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100217
218 /* Make sure params is a SEQUENCE and setup bounds */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200219 if( params->tag != ( MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) )
Chris Jones9f7a6932021-04-14 12:12:09 +0100220 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
221 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100222
223 p = (unsigned char *) params->p;
224 end = p + params->len;
225
226 if( p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200227 return 0 ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100228
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100229 /*
230 * HashAlgorithm
231 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200232 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
233 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 0 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100234 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100235 end2 = p + len;
236
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100237 /* HashAlgorithm ::= AlgorithmIdentifier (without parameters) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238 if( ( ret = mbedtls_x509_get_alg_null( &p, end2, &alg_id ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200239 return ret ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100240
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200241 if( ( ret = mbedtls_oid_get_md_alg( &alg_id, md_alg ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200242 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100243
244 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100245 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
246 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100247 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200248 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200249 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100250
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100251 if( p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200252 return 0 ;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100253
254 /*
255 * MaskGenAlgorithm
256 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200257 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
258 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 1 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100259 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100260 end2 = p + len;
261
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100262 /* MaskGenAlgorithm ::= AlgorithmIdentifier (params = HashAlgorithm) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200263 if( ( ret = mbedtls_x509_get_alg( &p, end2, &alg_id, &alg_params ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200264 return ret ;
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100265
266 /* Only MFG1 is recognised for now */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200267 if( MBEDTLS_OID_CMP( MBEDTLS_OID_MGF1, &alg_id ) != 0 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100268 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE,
269 MBEDTLS_ERR_OID_NOT_FOUND ) );
Manuel Pégourié-Gonnarde76b7502014-01-23 19:15:29 +0100270
271 /* Parse HashAlgorithm */
272 if( ( ret = x509_get_hash_alg( &alg_params, mgf_md ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200273 return ret ;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100274
275 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100276 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
277 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100278 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200279 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200280 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100281
282 if( p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200283 return 0 ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100284
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100285 /*
286 * salt_len
287 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200288 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
289 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 2 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100290 {
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100291 end2 = p + len;
292
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200293 if( ( ret = mbedtls_asn1_get_int( &p, end2, salt_len ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200294 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100295
296 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100297 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
298 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100299 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200300 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200301 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100302
303 if( p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200304 return 0 ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100305
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100306 /*
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200307 * trailer_field (if present, must be 1)
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100308 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309 if( ( ret = mbedtls_asn1_get_tag( &p, end, &len,
310 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | 3 ) ) == 0 )
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100311 {
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200312 int trailer_field;
313
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100314 end2 = p + len;
315
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200316 if( ( ret = mbedtls_asn1_get_int( &p, end2, &trailer_field ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200317 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnard9c9cf5b2014-01-24 14:15:20 +0100318
319 if( p != end2 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100320 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
321 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnard78117d52014-05-31 17:08:16 +0200322
323 if( trailer_field != 1 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200324 return MBEDTLS_ERR_X509_INVALID_ALG ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100325 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200326 else if( ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200327 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG, ret ) ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100328
329 if( p != end )
Chris Jones9f7a6932021-04-14 12:12:09 +0100330 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_ALG,
331 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100332
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200333 return 0 ;
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100334}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardf346bab2014-01-23 16:24:44 +0100336
337/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200338 * AttributeTypeAndValue ::= SEQUENCE {
339 * type AttributeType,
340 * value AttributeValue }
341 *
342 * AttributeType ::= OBJECT IDENTIFIER
343 *
344 * AttributeValue ::= ANY DEFINED BY AttributeType
345 */
346static int x509_get_attr_type_value( unsigned char **p,
347 const unsigned char *end,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200348 mbedtls_x509_name *cur )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200349{
Janos Follath865b3eb2019-12-16 11:46:15 +0000350 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200351 size_t len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200352 mbedtls_x509_buf *oid;
353 mbedtls_x509_buf *val;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200354
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200355 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
356 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200357 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200358
Hanno Becker12f62fb2019-02-12 17:22:36 +0000359 end = *p + len;
360
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200361 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100362 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
363 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200364
365 oid = &cur->oid;
366 oid->tag = **p;
367
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200368 if( ( ret = mbedtls_asn1_get_tag( p, end, &oid->len, MBEDTLS_ASN1_OID ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200369 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200370
371 oid->p = *p;
372 *p += oid->len;
373
374 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100375 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
376 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200377
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200378 if( **p != MBEDTLS_ASN1_BMP_STRING && **p != MBEDTLS_ASN1_UTF8_STRING &&
379 **p != MBEDTLS_ASN1_T61_STRING && **p != MBEDTLS_ASN1_PRINTABLE_STRING &&
380 **p != MBEDTLS_ASN1_IA5_STRING && **p != MBEDTLS_ASN1_UNIVERSAL_STRING &&
381 **p != MBEDTLS_ASN1_BIT_STRING )
Chris Jones9f7a6932021-04-14 12:12:09 +0100382 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
383 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200384
385 val = &cur->val;
386 val->tag = *(*p)++;
387
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200388 if( ( ret = mbedtls_asn1_get_len( p, end, &val->len ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200389 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200390
391 val->p = *p;
392 *p += val->len;
393
Hanno Becker12f62fb2019-02-12 17:22:36 +0000394 if( *p != end )
395 {
Chris Jones9f7a6932021-04-14 12:12:09 +0100396 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME,
397 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Hanno Becker12f62fb2019-02-12 17:22:36 +0000398 }
399
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200400 cur->next = NULL;
401
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200402 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200403}
404
405/*
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000406 * Name ::= CHOICE { -- only one possibility for now --
407 * rdnSequence RDNSequence }
408 *
409 * RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
410 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200411 * RelativeDistinguishedName ::=
412 * SET OF AttributeTypeAndValue
413 *
414 * AttributeTypeAndValue ::= SEQUENCE {
415 * type AttributeType,
416 * value AttributeValue }
417 *
418 * AttributeType ::= OBJECT IDENTIFIER
419 *
420 * AttributeValue ::= ANY DEFINED BY AttributeType
Manuel Pégourié-Gonnard5d861852014-10-17 12:41:41 +0200421 *
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000422 * The data structure is optimized for the common case where each RDN has only
423 * one element, which is represented as a list of AttributeTypeAndValue.
424 * For the general case we still use a flat list, but we mark elements of the
425 * same set so that they are "merged" together in the functions that consume
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200426 * this list, eg mbedtls_x509_dn_gets().
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200427 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200428int mbedtls_x509_get_name( unsigned char **p, const unsigned char *end,
429 mbedtls_x509_name *cur )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200430{
Janos Follath865b3eb2019-12-16 11:46:15 +0000431 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard5d861852014-10-17 12:41:41 +0200432 size_t set_len;
433 const unsigned char *end_set;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200434
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100435 /* don't use recursion, we'd risk stack overflow if not optimized */
436 while( 1 )
437 {
438 /*
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000439 * parse SET
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100440 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200441 if( ( ret = mbedtls_asn1_get_tag( p, end, &set_len,
442 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SET ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200443 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_NAME, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200444
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100445 end_set = *p + set_len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200446
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000447 while( 1 )
448 {
449 if( ( ret = x509_get_attr_type_value( p, end_set, cur ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200450 return ret ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200451
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000452 if( *p == end_set )
453 break;
454
Manuel Pégourié-Gonnardeecb43c2015-05-12 12:56:41 +0200455 /* Mark this item as being no the only one in a set */
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000456 cur->next_merged = 1;
457
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200458 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_name ) );
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000459
460 if( cur->next == NULL )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200461 return MBEDTLS_ERR_X509_ALLOC_FAILED ;
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000462
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000463 cur = cur->next;
464 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200465
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100466 /*
467 * continue until end of SEQUENCE is reached
468 */
469 if( *p == end )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200470 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200471
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200472 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_name ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200473
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100474 if( cur->next == NULL )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200475 return MBEDTLS_ERR_X509_ALLOC_FAILED ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200476
Manuel Pégourié-Gonnardd6814432014-11-12 01:25:31 +0100477 cur = cur->next;
478 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200479}
480
Janos Follath87c98072017-02-03 12:36:59 +0000481static int x509_parse_int( unsigned char **p, size_t n, int *res )
482{
Rich Evans7d5a55a2015-02-13 11:48:02 +0000483 *res = 0;
Janos Follath87c98072017-02-03 12:36:59 +0000484
485 for( ; n > 0; --n )
486 {
487 if( ( **p < '0') || ( **p > '9' ) )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200488 return MBEDTLS_ERR_X509_INVALID_DATE ;
Janos Follath87c98072017-02-03 12:36:59 +0000489
Rich Evans7d5a55a2015-02-13 11:48:02 +0000490 *res *= 10;
Janos Follath87c98072017-02-03 12:36:59 +0000491 *res += ( *(*p)++ - '0' );
Rich Evans7d5a55a2015-02-13 11:48:02 +0000492 }
Janos Follath87c98072017-02-03 12:36:59 +0000493
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200494 return 0 ;
Rich Evans7d5a55a2015-02-13 11:48:02 +0000495}
496
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000497static int x509_date_is_valid(const mbedtls_x509_time *t )
Andres AG4b76aec2016-09-23 13:16:02 +0100498{
499 int ret = MBEDTLS_ERR_X509_INVALID_DATE;
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000500 int month_len;
Andres AG4b76aec2016-09-23 13:16:02 +0100501
Hanno Becker61937d42017-04-26 15:01:23 +0100502 CHECK_RANGE( 0, 9999, t->year );
503 CHECK_RANGE( 0, 23, t->hour );
504 CHECK_RANGE( 0, 59, t->min );
505 CHECK_RANGE( 0, 59, t->sec );
Andres AG4b76aec2016-09-23 13:16:02 +0100506
Hanno Becker61937d42017-04-26 15:01:23 +0100507 switch( t->mon )
Andres AG4b76aec2016-09-23 13:16:02 +0100508 {
509 case 1: case 3: case 5: case 7: case 8: case 10: case 12:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000510 month_len = 31;
Andres AG4b76aec2016-09-23 13:16:02 +0100511 break;
512 case 4: case 6: case 9: case 11:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000513 month_len = 30;
Andres AG4b76aec2016-09-23 13:16:02 +0100514 break;
515 case 2:
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000516 if( ( !( t->year % 4 ) && t->year % 100 ) ||
517 !( t->year % 400 ) )
518 month_len = 29;
519 else
520 month_len = 28;
Andres AG4b76aec2016-09-23 13:16:02 +0100521 break;
522 default:
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200523 return ret ;
Andres AG4b76aec2016-09-23 13:16:02 +0100524 }
Andres Amaya Garcia735b37e2016-11-21 15:38:02 +0000525 CHECK_RANGE( 1, month_len, t->day );
Andres AG4b76aec2016-09-23 13:16:02 +0100526
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200527 return 0 ;
Andres AG4b76aec2016-09-23 13:16:02 +0100528}
529
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200530/*
Janos Follath87c98072017-02-03 12:36:59 +0000531 * Parse an ASN1_UTC_TIME (yearlen=2) or ASN1_GENERALIZED_TIME (yearlen=4)
532 * field.
533 */
534static int x509_parse_time( unsigned char **p, size_t len, size_t yearlen,
Hanno Becker61937d42017-04-26 15:01:23 +0100535 mbedtls_x509_time *tm )
Janos Follath87c98072017-02-03 12:36:59 +0000536{
Janos Follath865b3eb2019-12-16 11:46:15 +0000537 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Janos Follath87c98072017-02-03 12:36:59 +0000538
539 /*
540 * Minimum length is 10 or 12 depending on yearlen
541 */
542 if ( len < yearlen + 8 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200543 return MBEDTLS_ERR_X509_INVALID_DATE ;
Janos Follath87c98072017-02-03 12:36:59 +0000544 len -= yearlen + 8;
545
546 /*
547 * Parse year, month, day, hour, minute
548 */
Hanno Becker61937d42017-04-26 15:01:23 +0100549 CHECK( x509_parse_int( p, yearlen, &tm->year ) );
Janos Follath87c98072017-02-03 12:36:59 +0000550 if ( 2 == yearlen )
551 {
Hanno Becker61937d42017-04-26 15:01:23 +0100552 if ( tm->year < 50 )
553 tm->year += 100;
Janos Follath87c98072017-02-03 12:36:59 +0000554
Hanno Becker61937d42017-04-26 15:01:23 +0100555 tm->year += 1900;
Janos Follath87c98072017-02-03 12:36:59 +0000556 }
557
Hanno Becker61937d42017-04-26 15:01:23 +0100558 CHECK( x509_parse_int( p, 2, &tm->mon ) );
559 CHECK( x509_parse_int( p, 2, &tm->day ) );
560 CHECK( x509_parse_int( p, 2, &tm->hour ) );
561 CHECK( x509_parse_int( p, 2, &tm->min ) );
Janos Follath87c98072017-02-03 12:36:59 +0000562
563 /*
564 * Parse seconds if present
565 */
566 if ( len >= 2 )
567 {
Hanno Becker61937d42017-04-26 15:01:23 +0100568 CHECK( x509_parse_int( p, 2, &tm->sec ) );
Janos Follath87c98072017-02-03 12:36:59 +0000569 len -= 2;
570 }
571 else
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200572 return MBEDTLS_ERR_X509_INVALID_DATE ;
Janos Follath87c98072017-02-03 12:36:59 +0000573
574 /*
575 * Parse trailing 'Z' if present
576 */
577 if ( 1 == len && 'Z' == **p )
578 {
579 (*p)++;
580 len--;
581 }
582
583 /*
584 * We should have parsed all characters at this point
585 */
586 if ( 0 != len )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200587 return MBEDTLS_ERR_X509_INVALID_DATE ;
Janos Follath87c98072017-02-03 12:36:59 +0000588
Hanno Becker61937d42017-04-26 15:01:23 +0100589 CHECK( x509_date_is_valid( tm ) );
Janos Follath87c98072017-02-03 12:36:59 +0000590
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200591 return 0 ;
Janos Follath87c98072017-02-03 12:36:59 +0000592}
593
594/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200595 * Time ::= CHOICE {
596 * utcTime UTCTime,
597 * generalTime GeneralizedTime }
598 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200599int mbedtls_x509_get_time( unsigned char **p, const unsigned char *end,
Hanno Becker61937d42017-04-26 15:01:23 +0100600 mbedtls_x509_time *tm )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200601{
Janos Follath865b3eb2019-12-16 11:46:15 +0000602 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Janos Follath87c98072017-02-03 12:36:59 +0000603 size_t len, year_len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200604 unsigned char tag;
605
606 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100607 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE,
608 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200609
610 tag = **p;
611
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200612 if( tag == MBEDTLS_ASN1_UTC_TIME )
Janos Follath87c98072017-02-03 12:36:59 +0000613 year_len = 2;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200614 else if( tag == MBEDTLS_ASN1_GENERALIZED_TIME )
Janos Follath87c98072017-02-03 12:36:59 +0000615 year_len = 4;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200616 else
Chris Jones9f7a6932021-04-14 12:12:09 +0100617 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE,
618 MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ) );
Janos Follath87c98072017-02-03 12:36:59 +0000619
620 (*p)++;
621 ret = mbedtls_asn1_get_len( p, end, &len );
622
623 if( ret != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200624 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_DATE, ret ) ;
Janos Follath87c98072017-02-03 12:36:59 +0000625
Hanno Becker61937d42017-04-26 15:01:23 +0100626 return x509_parse_time( p, len, year_len, tm );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200627}
628
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200629int mbedtls_x509_get_sig( unsigned char **p, const unsigned char *end, mbedtls_x509_buf *sig )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200630{
Janos Follath865b3eb2019-12-16 11:46:15 +0000631 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200632 size_t len;
Andres AG4bdbe092016-09-19 16:58:45 +0100633 int tag_type;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200634
635 if( ( end - *p ) < 1 )
Chris Jones9f7a6932021-04-14 12:12:09 +0100636 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SIGNATURE,
637 MBEDTLS_ERR_ASN1_OUT_OF_DATA ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200638
Andres AG4bdbe092016-09-19 16:58:45 +0100639 tag_type = **p;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200640
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200641 if( ( ret = mbedtls_asn1_get_bitstring_null( p, end, &len ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200642 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_SIGNATURE, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200643
Andres AG4bdbe092016-09-19 16:58:45 +0100644 sig->tag = tag_type;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200645 sig->len = len;
646 sig->p = *p;
647
648 *p += len;
649
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200650 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200651}
652
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100653/*
654 * Get signature algorithm from alg OID and optional parameters
655 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656int mbedtls_x509_get_sig_alg( const mbedtls_x509_buf *sig_oid, const mbedtls_x509_buf *sig_params,
657 mbedtls_md_type_t *md_alg, mbedtls_pk_type_t *pk_alg,
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200658 void **sig_opts )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200659{
Janos Follath865b3eb2019-12-16 11:46:15 +0000660 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200661
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200662 if( *sig_opts != NULL )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200663 return MBEDTLS_ERR_X509_BAD_INPUT_DATA ;
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200664
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200665 if( ( ret = mbedtls_oid_get_sig_alg( sig_oid, md_alg, pk_alg ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200666 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200667
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200668#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
669 if( *pk_alg == MBEDTLS_PK_RSASSA_PSS )
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100670 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200671 mbedtls_pk_rsassa_pss_options *pss_opts;
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100672
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200673 pss_opts = mbedtls_calloc( 1, sizeof( mbedtls_pk_rsassa_pss_options ) );
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200674 if( pss_opts == NULL )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200675 return MBEDTLS_ERR_X509_ALLOC_FAILED ;
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200676
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200677 ret = mbedtls_x509_get_rsassa_pss_params( sig_params,
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200678 md_alg,
679 &pss_opts->mgf1_hash_id,
680 &pss_opts->expected_salt_len );
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100681 if( ret != 0 )
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200682 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200683 mbedtls_free( pss_opts );
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200684 return ret ;
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200685 }
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100686
Manuel Pégourié-Gonnardf75f2f72014-06-05 15:14:28 +0200687 *sig_opts = (void *) pss_opts;
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100688 }
689 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200690#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100691 {
692 /* Make sure parameters are absent or NULL */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200693 if( ( sig_params->tag != MBEDTLS_ASN1_NULL && sig_params->tag != 0 ) ||
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100694 sig_params->len != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200695 return MBEDTLS_ERR_X509_INVALID_ALG ;
Manuel Pégourié-Gonnardcf975a32014-01-24 19:28:43 +0100696 }
697
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200698 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200699}
700
701/*
702 * X.509 Extensions (No parsing of extensions, pointer should
Brian J Murray1903fb32016-11-06 04:45:15 -0800703 * be either manually updated or extensions should be parsed!)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200704 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200705int mbedtls_x509_get_ext( unsigned char **p, const unsigned char *end,
Hanno Becker6ccfb182019-02-12 11:52:10 +0000706 mbedtls_x509_buf *ext, int tag )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200707{
Janos Follath865b3eb2019-12-16 11:46:15 +0000708 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200709 size_t len;
710
Hanno Becker3cddba82019-02-11 14:33:36 +0000711 /* Extension structure use EXPLICIT tagging. That is, the actual
712 * `Extensions` structure is wrapped by a tag-length pair using
713 * the respective context-specific tag. */
Hanno Becker6ccfb182019-02-12 11:52:10 +0000714 ret = mbedtls_asn1_get_tag( p, end, &ext->len,
715 MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | tag );
716 if( ret != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200717 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200718
Hanno Becker6ccfb182019-02-12 11:52:10 +0000719 ext->tag = MBEDTLS_ASN1_CONTEXT_SPECIFIC | MBEDTLS_ASN1_CONSTRUCTED | tag;
720 ext->p = *p;
721 end = *p + ext->len;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200722
723 /*
724 * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200725 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200726 if( ( ret = mbedtls_asn1_get_tag( p, end, &len,
727 MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE ) ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200728 return MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret ) ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200729
730 if( end != *p + len )
Chris Jones9f7a6932021-04-14 12:12:09 +0100731 return( MBEDTLS_ERROR_ADD( MBEDTLS_ERR_X509_INVALID_EXTENSIONS,
732 MBEDTLS_ERR_ASN1_LENGTH_MISMATCH ) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200733
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200734 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200735}
736
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200737/*
738 * Store the name in printable form into buf; no more
739 * than size characters will be written
740 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200741int mbedtls_x509_dn_gets( char *buf, size_t size, const mbedtls_x509_name *dn )
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 i, n;
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000745 unsigned char c, merge = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746 const mbedtls_x509_name *name;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200747 const char *short_name = NULL;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200748 char s[MBEDTLS_X509_MAX_DN_NAME_SIZE], *p;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200749
750 memset( s, 0, sizeof( s ) );
751
752 name = dn;
753 p = buf;
754 n = size;
755
756 while( name != NULL )
757 {
758 if( !name->oid.p )
759 {
760 name = name->next;
761 continue;
762 }
763
764 if( name != dn )
765 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200766 ret = mbedtls_snprintf( p, n, merge ? " + " : ", " );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200767 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200768 }
769
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200770 ret = mbedtls_oid_get_attr_short_name( &name->oid, &short_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200771
772 if( ret == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200773 ret = mbedtls_snprintf( p, n, "%s=", short_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200774 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200775 ret = mbedtls_snprintf( p, n, "\?\?=" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200776 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200777
778 for( i = 0; i < name->val.len; i++ )
779 {
780 if( i >= sizeof( s ) - 1 )
781 break;
782
783 c = name->val.p[i];
Koh M. Nakagawa46b87822020-05-16 10:08:09 +0900784 if( c < 32 || c >= 127 )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200785 s[i] = '?';
786 else s[i] = c;
787 }
788 s[i] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200789 ret = mbedtls_snprintf( p, n, "%s", s );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200790 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnard555fbf82015-02-04 17:11:55 +0000791
792 merge = name->next_merged;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200793 name = name->next;
794 }
795
796 return( (int) ( size - n ) );
797}
798
799/*
800 * Store the serial in printable form into buf; no more
801 * than size characters will be written
802 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200803int mbedtls_x509_serial_gets( char *buf, size_t size, const mbedtls_x509_buf *serial )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200804{
Janos Follath865b3eb2019-12-16 11:46:15 +0000805 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200806 size_t i, n, nr;
807 char *p;
808
809 p = buf;
810 n = size;
811
812 nr = ( serial->len <= 32 )
813 ? serial->len : 28;
814
815 for( i = 0; i < nr; i++ )
816 {
817 if( i == 0 && nr > 1 && serial->p[i] == 0x0 )
818 continue;
819
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200820 ret = mbedtls_snprintf( p, n, "%02X%s",
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200821 serial->p[i], ( i < nr - 1 ) ? ":" : "" );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200822 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200823 }
824
825 if( nr != serial->len )
826 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200827 ret = mbedtls_snprintf( p, n, "...." );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200828 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200829 }
830
831 return( (int) ( size - n ) );
832}
833
Hanno Becker612a2f12020-10-09 09:19:39 +0100834#if !defined(MBEDTLS_X509_REMOVE_INFO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200835/*
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200836 * Helper for writing signature algorithms
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100837 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200838int mbedtls_x509_sig_alg_gets( char *buf, size_t size, const mbedtls_x509_buf *sig_oid,
839 mbedtls_pk_type_t pk_alg, mbedtls_md_type_t md_alg,
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200840 const void *sig_opts )
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100841{
Janos Follath865b3eb2019-12-16 11:46:15 +0000842 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100843 char *p = buf;
844 size_t n = size;
845 const char *desc = NULL;
846
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200847 ret = mbedtls_oid_get_sig_alg_desc( sig_oid, &desc );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100848 if( ret != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200849 ret = mbedtls_snprintf( p, n, "???" );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100850 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200851 ret = mbedtls_snprintf( p, n, "%s", desc );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200852 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100853
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200854#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
855 if( pk_alg == MBEDTLS_PK_RSASSA_PSS )
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100856 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200857 const mbedtls_pk_rsassa_pss_options *pss_opts;
858 const mbedtls_md_info_t *md_info, *mgf_md_info;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100859
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200860 pss_opts = (const mbedtls_pk_rsassa_pss_options *) sig_opts;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100861
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200862 md_info = mbedtls_md_info_from_type( md_alg );
863 mgf_md_info = mbedtls_md_info_from_type( pss_opts->mgf1_hash_id );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100864
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200865 ret = mbedtls_snprintf( p, n, " (%s, MGF1-%s, 0x%02X)",
866 md_info ? mbedtls_md_get_name( md_info ) : "???",
867 mgf_md_info ? mbedtls_md_get_name( mgf_md_info ) : "???",
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200868 (unsigned int) pss_opts->expected_salt_len );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200869 MBEDTLS_X509_SAFE_SNPRINTF;
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100870 }
871#else
872 ((void) pk_alg);
Manuel Pégourié-Gonnard91136032014-06-05 15:41:39 +0200873 ((void) md_alg);
874 ((void) sig_opts);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200875#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100876
Sander Niemeijeref5087d2014-08-16 12:45:52 +0200877 return( (int)( size - n ) );
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100878}
Hanno Becker612a2f12020-10-09 09:19:39 +0100879#endif /* MBEDTLS_X509_REMOVE_INFO */
Manuel Pégourié-Gonnardcac31ee2014-01-25 11:50:59 +0100880
881/*
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200882 * Helper for writing "RSA key size", "EC key size", etc
883 */
Manuel Pégourié-Gonnardfb317c52015-06-18 16:25:56 +0200884int mbedtls_x509_key_size_helper( char *buf, size_t buf_size, const char *name )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200885{
886 char *p = buf;
Manuel Pégourié-Gonnardfb317c52015-06-18 16:25:56 +0200887 size_t n = buf_size;
Janos Follath865b3eb2019-12-16 11:46:15 +0000888 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200889
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200890 ret = mbedtls_snprintf( p, n, "%s key size", name );
Manuel Pégourié-Gonnard16853682015-06-22 11:12:02 +0200891 MBEDTLS_X509_SAFE_SNPRINTF;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200892
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200893 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200894}
895
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +0200896#if defined(MBEDTLS_HAVE_TIME_DATE)
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200897/*
898 * Set the time structure to the current time.
899 * Return 0 on success, non-zero on failure.
900 */
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200901static int x509_get_current_time( mbedtls_x509_time *now )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100902{
Nicholas Wilson512b4ee2017-12-05 12:07:33 +0000903 struct tm *lt, tm_buf;
SimonBd5800b72016-04-26 07:43:27 +0100904 mbedtls_time_t tt;
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200905 int ret = 0;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200906
SimonBd5800b72016-04-26 07:43:27 +0100907 tt = mbedtls_time( NULL );
Hanno Becker6a739782018-09-05 15:06:19 +0100908 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf );
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200909
Manuel Pégourié-Gonnard57e10d72015-06-22 18:59:21 +0200910 if( lt == NULL )
911 ret = -1;
912 else
913 {
914 now->year = lt->tm_year + 1900;
915 now->mon = lt->tm_mon + 1;
916 now->day = lt->tm_mday;
917 now->hour = lt->tm_hour;
918 now->min = lt->tm_min;
919 now->sec = lt->tm_sec;
920 }
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200921
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200922 return ret ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100923}
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200924
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100925/*
926 * Return 0 if before <= after, 1 otherwise
927 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200928static int x509_check_time( const mbedtls_x509_time *before, const mbedtls_x509_time *after )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100929{
930 if( before->year > after->year )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200931 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200932
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100933 if( before->year == after->year &&
934 before->mon > after->mon )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200935 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200936
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100937 if( before->year == after->year &&
938 before->mon == after->mon &&
939 before->day > after->day )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200940 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200941
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100942 if( before->year == after->year &&
943 before->mon == after->mon &&
944 before->day == after->day &&
945 before->hour > after->hour )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200946 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200947
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100948 if( before->year == after->year &&
949 before->mon == after->mon &&
950 before->day == after->day &&
951 before->hour == after->hour &&
952 before->min > after->min )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200953 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200954
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100955 if( before->year == after->year &&
956 before->mon == after->mon &&
957 before->day == after->day &&
958 before->hour == after->hour &&
959 before->min == after->min &&
960 before->sec > after->sec )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200961 return 1 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200962
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200963 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200964}
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100965
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +0100966int mbedtls_x509_time_is_past( const mbedtls_x509_time *to )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100967{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200968 mbedtls_x509_time now;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100969
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200970 if( x509_get_current_time( &now ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200971 return 1 ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100972
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200973 return x509_check_time( &now, to ) ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100974}
975
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +0100976int mbedtls_x509_time_is_future( const mbedtls_x509_time *from )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100977{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200978 mbedtls_x509_time now;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100979
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +0200980 if( x509_get_current_time( &now ) != 0 )
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200981 return 1 ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100982
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200983 return x509_check_time( from, &now ) ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100984}
985
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +0200986#else /* MBEDTLS_HAVE_TIME_DATE */
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100987
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +0100988int mbedtls_x509_time_is_past( const mbedtls_x509_time *to )
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200989{
990 ((void) to);
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200991 return 0 ;
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200992}
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100993
Manuel Pégourié-Gonnardc730ed32015-06-02 10:38:50 +0100994int mbedtls_x509_time_is_future( const mbedtls_x509_time *from )
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100995{
996 ((void) from);
Mateusz Starzyke36f5b12021-07-22 16:43:35 +0200997 return 0 ;
Manuel Pégourié-Gonnard6304f782014-03-10 12:26:11 +0100998}
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +0200999#endif /* MBEDTLS_HAVE_TIME_DATE */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001000#endif /* MBEDTLS_X509_USE_C */