blob: 895eca0d613a573e2c037ce7756d6b02caf8c1d3 [file] [log] [blame]
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001/**
Simon Butcher5b331b92016-01-03 16:14:14 +00002 * \file x509_crl.h
Paul Bakker7c6b2c32013-09-16 13:49:26 +02003 *
4 * \brief X.509 certificate revocation list parsing
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Paul Bakker7c6b2c32013-09-16 13:49:26 +020021 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#ifndef MBEDTLS_X509_CRL_H
23#define MBEDTLS_X509_CRL_H
Paul Bakker7c6b2c32013-09-16 13:49:26 +020024
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amero6609aef2019-07-04 20:01:14 +010026#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020027#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +020030
Jaeden Amero6609aef2019-07-04 20:01:14 +010031#include "mbedtls/x509.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020032
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37/**
38 * \addtogroup x509_module
39 * \{ */
40
41/**
42 * \name Structures and functions for parsing CRLs
43 * \{
44 */
45
46/**
47 * Certificate revocation list entry.
48 * Contains the CA-specific serial numbers and revocation dates.
49 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010050typedef struct mbedtls_x509_crl_entry {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020051 mbedtls_x509_buf raw;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020052
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020053 mbedtls_x509_buf serial;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020054
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020055 mbedtls_x509_time revocation_date;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020056
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020057 mbedtls_x509_buf entry_ext;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020058
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020059 struct mbedtls_x509_crl_entry *next;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020060}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061mbedtls_x509_crl_entry;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020062
63/**
64 * Certificate revocation list structure.
65 * Every CRL may have multiple entries.
66 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010067typedef struct mbedtls_x509_crl {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020068 mbedtls_x509_buf raw; /**< The raw certificate data (DER). */
69 mbedtls_x509_buf tbs; /**< The raw certificate body (DER). The part that is To Be Signed. */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020070
Manuel Pégourié-Gonnardf4e1b642014-06-19 11:39:46 +020071 int version; /**< CRL version (1=v1, 2=v2) */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072 mbedtls_x509_buf sig_oid; /**< CRL signature type identifier */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020073
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074 mbedtls_x509_buf issuer_raw; /**< The raw issuer data (DER). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020075
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076 mbedtls_x509_name issuer; /**< The parsed issuer data (named information object). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020077
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078 mbedtls_x509_time this_update;
79 mbedtls_x509_time next_update;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020080
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081 mbedtls_x509_crl_entry entry; /**< The CRL entries containing the certificate revocation times for this CA. */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020082
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083 mbedtls_x509_buf crl_ext;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020084
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020085 mbedtls_x509_buf sig_oid2;
86 mbedtls_x509_buf sig;
87 mbedtls_md_type_t sig_md; /**< Internal representation of the MD algorithm of the signature algorithm, e.g. MBEDTLS_MD_SHA256 */
88 mbedtls_pk_type_t sig_pk; /**< Internal representation of the Public Key algorithm of the signature algorithm, e.g. MBEDTLS_PK_RSA */
89 void *sig_opts; /**< Signature options to be passed to mbedtls_pk_verify_ext(), e.g. for RSASSA-PSS */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020090
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020091 struct mbedtls_x509_crl *next;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020092}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020093mbedtls_x509_crl;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020094
95/**
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +010096 * \brief Parse a DER-encoded CRL and append it to the chained list
Paul Bakker7c6b2c32013-09-16 13:49:26 +020097 *
98 * \param chain points to the start of the chain
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +010099 * \param buf buffer holding the CRL data in DER format
Simon Butcher5b331b92016-01-03 16:14:14 +0000100 * \param buflen size of the buffer
Manuel Pégourié-Gonnardddbb1662016-01-04 12:40:15 +0100101 * (including the terminating null byte for PEM data)
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +0100102 *
103 * \return 0 if successful, or a specific X509 or PEM error code
104 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100105int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain,
106 const unsigned char *buf, size_t buflen);
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +0100107/**
108 * \brief Parse one or more CRLs and append them to the chained list
109 *
Antonin Décimo36e89b52019-01-23 15:24:37 +0100110 * \note Multiple CRLs are accepted only if using PEM format
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +0100111 *
112 * \param chain points to the start of the chain
113 * \param buf buffer holding the CRL data in PEM or DER format
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200114 * \param buflen size of the buffer
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200115 * (including the terminating null byte for PEM data)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200116 *
117 * \return 0 if successful, or a specific X509 or PEM error code
118 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100119int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200120
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200121#if defined(MBEDTLS_FS_IO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200122/**
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +0100123 * \brief Load one or more CRLs and append them to the chained list
124 *
Antonin Décimo36e89b52019-01-23 15:24:37 +0100125 * \note Multiple CRLs are accepted only if using PEM format
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200126 *
127 * \param chain points to the start of the chain
Manuel Pégourié-Gonnard426d4ae2014-11-19 16:58:28 +0100128 * \param path filename to read the CRLs from (in PEM or DER encoding)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200129 *
130 * \return 0 if successful, or a specific X509 or PEM error code
131 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100132int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200133#endif /* MBEDTLS_FS_IO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200134
135/**
Paul Bakkerddf26b42013-09-18 13:46:23 +0200136 * \brief Returns an informational string about the CRL.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200137 *
138 * \param buf Buffer to write to
139 * \param size Maximum size of buffer
140 * \param prefix A line prefix
141 * \param crl The X509 CRL to represent
142 *
Manuel Pégourié-Gonnarde244f9f2015-06-23 12:10:45 +0200143 * \return The length of the string written (not including the
144 * terminated nul byte), or a negative error code.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200145 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100146int mbedtls_x509_crl_info(char *buf, size_t size, const char *prefix,
147 const mbedtls_x509_crl *crl);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200148
149/**
Paul Bakker369d2eb2013-09-18 11:58:25 +0200150 * \brief Initialize a CRL (chain)
151 *
152 * \param crl CRL chain to initialize
153 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100154void mbedtls_x509_crl_init(mbedtls_x509_crl *crl);
Paul Bakker369d2eb2013-09-18 11:58:25 +0200155
156/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200157 * \brief Unallocate all CRL data
158 *
159 * \param crl CRL chain to free
160 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100161void mbedtls_x509_crl_free(mbedtls_x509_crl *crl);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200162
Andrzej Kurek73afe272022-01-24 10:31:06 -0500163/** \} name Structures and functions for parsing CRLs */
164/** \} addtogroup x509_module */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200165
166#ifdef __cplusplus
167}
168#endif
169
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200170#endif /* mbedtls_x509_crl.h */